Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [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 | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 14 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 0a3bd39 | 2020-06-04 08:52:38 +0200 | [diff] [blame] | 15 | #include <haproxy/compression.h> |
Willy Tarreau | 2741c8c | 2020-06-02 11:28:02 +0200 | [diff] [blame] | 16 | #include <haproxy/dynbuf.h> |
Willy Tarreau | c7babd8 | 2020-06-04 21:29:29 +0200 | [diff] [blame] | 17 | #include <haproxy/filters.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 18 | #include <haproxy/http.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 19 | #include <haproxy/http_ana-t.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 20 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 21 | #include <haproxy/htx.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 22 | #include <haproxy/list.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 23 | #include <haproxy/proxy-t.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 24 | #include <haproxy/sample.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 25 | #include <haproxy/stream.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 26 | #include <haproxy/tools.h> |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 27 | |
Christopher Faulet | f4a4ef7 | 2018-12-07 17:39:53 +0100 | [diff] [blame] | 28 | const char *http_comp_flt_id = "compression filter"; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 29 | |
| 30 | struct flt_ops comp_ops; |
| 31 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 32 | struct comp_state { |
| 33 | struct comp_ctx *comp_ctx; /* compression context */ |
| 34 | struct comp_algo *comp_algo; /* compression algorithm if not NULL */ |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 35 | }; |
| 36 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 37 | /* Pools used to allocate comp_state structs */ |
| 38 | DECLARE_STATIC_POOL(pool_head_comp_state, "comp_state", sizeof(struct comp_state)); |
| 39 | |
| 40 | static THREAD_LOCAL struct buffer tmpbuf; |
| 41 | static THREAD_LOCAL struct buffer zbuf; |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 42 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 43 | static int select_compression_request_header(struct comp_state *st, |
| 44 | struct stream *s, |
| 45 | struct http_msg *msg); |
| 46 | static int select_compression_response_header(struct comp_state *st, |
| 47 | struct stream *s, |
| 48 | struct http_msg *msg); |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 49 | static int set_compression_response_header(struct comp_state *st, |
| 50 | struct stream *s, |
| 51 | struct http_msg *msg); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 52 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 53 | static int htx_compression_buffer_init(struct htx *htx, struct buffer *out); |
| 54 | static int htx_compression_buffer_add_data(struct comp_state *st, const char *data, size_t len, |
| 55 | struct buffer *out); |
| 56 | static int htx_compression_buffer_end(struct comp_state *st, struct buffer *out, int end); |
| 57 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 58 | /***********************************************************************/ |
| 59 | static int |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 60 | comp_flt_init(struct proxy *px, struct flt_conf *fconf) |
| 61 | { |
Christopher Faulet | 6e54095 | 2018-12-03 22:43:41 +0100 | [diff] [blame] | 62 | fconf->flags |= FLT_CFG_FL_HTX; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | static int |
Christopher Faulet | 8ca3b4b | 2017-07-25 11:07:15 +0200 | [diff] [blame] | 67 | comp_flt_init_per_thread(struct proxy *px, struct flt_conf *fconf) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 68 | { |
Willy Tarreau | 862ad82 | 2021-03-22 16:16:22 +0100 | [diff] [blame] | 69 | if (b_alloc(&tmpbuf) == NULL) |
Christopher Faulet | b77c5c2 | 2015-12-07 16:48:42 +0100 | [diff] [blame] | 70 | return -1; |
Willy Tarreau | 862ad82 | 2021-03-22 16:16:22 +0100 | [diff] [blame] | 71 | if (b_alloc(&zbuf) == NULL) |
Christopher Faulet | b77c5c2 | 2015-12-07 16:48:42 +0100 | [diff] [blame] | 72 | return -1; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | static void |
Christopher Faulet | 8ca3b4b | 2017-07-25 11:07:15 +0200 | [diff] [blame] | 77 | comp_flt_deinit_per_thread(struct proxy *px, struct flt_conf *fconf) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 78 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 79 | if (tmpbuf.size) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 80 | b_free(&tmpbuf); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 81 | if (zbuf.size) |
Christopher Faulet | b77c5c2 | 2015-12-07 16:48:42 +0100 | [diff] [blame] | 82 | b_free(&zbuf); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | static int |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 86 | comp_strm_init(struct stream *s, struct filter *filter) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 87 | { |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 88 | struct comp_state *st; |
Christopher Faulet | 8ca3b4b | 2017-07-25 11:07:15 +0200 | [diff] [blame] | 89 | |
Willy Tarreau | 5bfeb21 | 2021-03-22 15:08:17 +0100 | [diff] [blame] | 90 | st = pool_alloc(pool_head_comp_state); |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 91 | if (st == NULL) |
| 92 | return -1; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 93 | |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 94 | st->comp_algo = NULL; |
| 95 | st->comp_ctx = NULL; |
| 96 | filter->ctx = st; |
Christopher Faulet | 3dc860d | 2017-09-15 11:39:36 +0200 | [diff] [blame] | 97 | |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 98 | /* Register post-analyzer on AN_RES_WAIT_HTTP because we need to |
| 99 | * analyze response headers before http-response rules execution |
| 100 | * to be sure we can use res.comp and res.comp_algo sample |
| 101 | * fetches */ |
| 102 | filter->post_analyzers |= AN_RES_WAIT_HTTP; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 103 | return 1; |
| 104 | } |
| 105 | |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 106 | static void |
| 107 | comp_strm_deinit(struct stream *s, struct filter *filter) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 108 | { |
| 109 | struct comp_state *st = filter->ctx; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 110 | |
Christopher Faulet | d60b3cf | 2017-06-26 11:47:13 +0200 | [diff] [blame] | 111 | if (!st) |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 112 | return; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 113 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 114 | /* release any possible compression context */ |
Christopher Faulet | d60b3cf | 2017-06-26 11:47:13 +0200 | [diff] [blame] | 115 | if (st->comp_algo) |
| 116 | st->comp_algo->end(&st->comp_ctx); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 117 | pool_free(pool_head_comp_state, st); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 118 | filter->ctx = NULL; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static int |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 122 | comp_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg) |
| 123 | { |
| 124 | struct comp_state *st = filter->ctx; |
| 125 | |
| 126 | if (!strm_fe(s)->comp && !s->be->comp) |
| 127 | goto end; |
| 128 | |
| 129 | if (!(msg->chn->flags & CF_ISRESP)) |
| 130 | select_compression_request_header(st, s, msg); |
| 131 | else { |
Christopher Faulet | 3dc860d | 2017-09-15 11:39:36 +0200 | [diff] [blame] | 132 | /* Response headers have already been checked in |
| 133 | * comp_http_post_analyze callback. */ |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 134 | if (st->comp_algo) { |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 135 | if (!set_compression_response_header(st, s, msg)) |
| 136 | goto end; |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 137 | register_data_filter(s, msg->chn, filter); |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
| 141 | end: |
| 142 | return 1; |
| 143 | } |
| 144 | |
| 145 | static int |
Christopher Faulet | 3dc860d | 2017-09-15 11:39:36 +0200 | [diff] [blame] | 146 | comp_http_post_analyze(struct stream *s, struct filter *filter, |
| 147 | struct channel *chn, unsigned an_bit) |
| 148 | { |
| 149 | struct http_txn *txn = s->txn; |
| 150 | struct http_msg *msg = &txn->rsp; |
| 151 | struct comp_state *st = filter->ctx; |
| 152 | |
| 153 | if (an_bit != AN_RES_WAIT_HTTP) |
| 154 | goto end; |
| 155 | |
| 156 | if (!strm_fe(s)->comp && !s->be->comp) |
| 157 | goto end; |
| 158 | |
| 159 | select_compression_response_header(st, s, msg); |
| 160 | |
| 161 | end: |
| 162 | return 1; |
| 163 | } |
| 164 | |
| 165 | static int |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 166 | comp_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg, |
| 167 | unsigned int offset, unsigned int len) |
| 168 | { |
| 169 | struct comp_state *st = filter->ctx; |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 170 | struct htx *htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | e6a62bf | 2020-03-02 16:20:05 +0100 | [diff] [blame] | 171 | struct htx_ret htxret = htx_find_offset(htx, offset); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 172 | struct htx_blk *blk, *next; |
| 173 | int ret, consumed = 0, to_forward = 0, last = 0; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 174 | |
Christopher Faulet | e6a62bf | 2020-03-02 16:20:05 +0100 | [diff] [blame] | 175 | blk = htxret.blk; |
| 176 | offset = htxret.ret; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 177 | for (next = NULL; blk && len; blk = next) { |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 178 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 179 | uint32_t sz = htx_get_blksz(blk); |
| 180 | struct ist v; |
| 181 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 182 | next = htx_get_next_blk(htx, blk); |
| 183 | while (next && htx_get_blk_type(next) == HTX_BLK_UNUSED) |
| 184 | next = htx_get_next_blk(htx, blk); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 185 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 186 | if (!(msg->flags & HTTP_MSGF_COMPRESSING)) |
| 187 | goto consume; |
| 188 | |
| 189 | if (htx_compression_buffer_init(htx, &trash) < 0) { |
| 190 | msg->chn->flags |= CF_WAKE_WRITE; |
| 191 | goto end; |
| 192 | } |
| 193 | |
| 194 | switch (type) { |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 195 | case HTX_BLK_DATA: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 196 | /* it is the last data block */ |
| 197 | last = ((!next && (htx->flags & HTX_FL_EOM)) || (next && htx_get_blk_type(next) != HTX_BLK_DATA)); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 198 | v = htx_get_blk_value(htx, blk); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 199 | v = istadv(v, offset); |
| 200 | if (v.len > len) { |
| 201 | last = 0; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 202 | v.len = len; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 203 | } |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 204 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 205 | ret = htx_compression_buffer_add_data(st, v.ptr, v.len, &trash); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 206 | if (ret < 0 || htx_compression_buffer_end(st, &trash, last) < 0) |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 207 | goto error; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 208 | BUG_ON(v.len != ret); |
| 209 | |
| 210 | if (ret == sz && !b_data(&trash)) |
| 211 | next = htx_remove_blk(htx, blk); |
| 212 | else |
| 213 | blk = htx_replace_blk_value(htx, blk, v, ist2(b_head(&trash), b_data(&trash))); |
| 214 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 215 | len -= ret; |
| 216 | consumed += ret; |
| 217 | to_forward += b_data(&trash); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 218 | if (last) |
| 219 | msg->flags &= ~HTTP_MSGF_COMPRESSING; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 220 | break; |
| 221 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 222 | case HTX_BLK_TLR: |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 223 | case HTX_BLK_EOT: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 224 | if (htx_compression_buffer_end(st, &trash, 1) < 0) |
| 225 | goto error; |
| 226 | if (b_data(&trash)) { |
| 227 | struct htx_blk *last = htx_add_last_data(htx, ist2(b_head(&trash), b_data(&trash))); |
| 228 | if (!last) |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 229 | goto error; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 230 | blk = htx_get_next_blk(htx, last); |
| 231 | if (!blk) |
| 232 | goto error; |
| 233 | to_forward += b_data(&trash); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 234 | } |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 235 | msg->flags &= ~HTTP_MSGF_COMPRESSING; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 236 | /* fall through */ |
| 237 | |
| 238 | default: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 239 | consume: |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 240 | sz -= offset; |
| 241 | if (sz > len) |
| 242 | sz = len; |
| 243 | consumed += sz; |
| 244 | to_forward += sz; |
| 245 | len -= sz; |
| 246 | break; |
| 247 | } |
| 248 | |
| 249 | offset = 0; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | end: |
| 253 | if (to_forward != consumed) |
| 254 | flt_update_offsets(filter, msg->chn, to_forward - consumed); |
| 255 | |
| 256 | if (st->comp_ctx && st->comp_ctx->cur_lvl > 0) { |
Willy Tarreau | ef6fd85 | 2019-02-04 11:48:03 +0100 | [diff] [blame] | 257 | update_freq_ctr(&global.comp_bps_in, consumed); |
Olivier Houchard | 43da343 | 2019-03-08 18:50:27 +0100 | [diff] [blame] | 258 | _HA_ATOMIC_ADD(&strm_fe(s)->fe_counters.comp_in, consumed); |
| 259 | _HA_ATOMIC_ADD(&s->be->be_counters.comp_in, consumed); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 260 | update_freq_ctr(&global.comp_bps_out, to_forward); |
Olivier Houchard | 43da343 | 2019-03-08 18:50:27 +0100 | [diff] [blame] | 261 | _HA_ATOMIC_ADD(&strm_fe(s)->fe_counters.comp_out, to_forward); |
| 262 | _HA_ATOMIC_ADD(&s->be->be_counters.comp_out, to_forward); |
Willy Tarreau | ef6fd85 | 2019-02-04 11:48:03 +0100 | [diff] [blame] | 263 | } else { |
Olivier Houchard | 43da343 | 2019-03-08 18:50:27 +0100 | [diff] [blame] | 264 | _HA_ATOMIC_ADD(&strm_fe(s)->fe_counters.comp_byp, consumed); |
| 265 | _HA_ATOMIC_ADD(&s->be->be_counters.comp_byp, consumed); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 266 | } |
| 267 | return to_forward; |
| 268 | |
| 269 | error: |
| 270 | return -1; |
| 271 | } |
| 272 | |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 273 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 274 | static int |
Christopher Faulet | d60b3cf | 2017-06-26 11:47:13 +0200 | [diff] [blame] | 275 | comp_http_end(struct stream *s, struct filter *filter, |
| 276 | struct http_msg *msg) |
| 277 | { |
| 278 | struct comp_state *st = filter->ctx; |
| 279 | |
| 280 | if (!(msg->chn->flags & CF_ISRESP) || !st || !st->comp_algo) |
| 281 | goto end; |
| 282 | |
| 283 | if (strm_fe(s)->mode == PR_MODE_HTTP) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 284 | _HA_ATOMIC_INC(&strm_fe(s)->fe_counters.p.http.comp_rsp); |
Christopher Faulet | d60b3cf | 2017-06-26 11:47:13 +0200 | [diff] [blame] | 285 | if ((s->flags & SF_BE_ASSIGNED) && (s->be->mode == PR_MODE_HTTP)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 286 | _HA_ATOMIC_INC(&s->be->be_counters.p.http.comp_rsp); |
Christopher Faulet | d60b3cf | 2017-06-26 11:47:13 +0200 | [diff] [blame] | 287 | end: |
| 288 | return 1; |
| 289 | } |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 290 | |
Christopher Faulet | 89f2b16 | 2019-07-15 21:16:04 +0200 | [diff] [blame] | 291 | /***********************************************************************/ |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 292 | static int |
Christopher Faulet | 89f2b16 | 2019-07-15 21:16:04 +0200 | [diff] [blame] | 293 | set_compression_response_header(struct comp_state *st, struct stream *s, struct http_msg *msg) |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 294 | { |
| 295 | struct htx *htx = htxbuf(&msg->chn->buf); |
Tim Duesterhus | b229f01 | 2019-01-29 16:38:56 +0100 | [diff] [blame] | 296 | struct http_hdr_ctx ctx; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 297 | |
| 298 | /* |
| 299 | * Add Content-Encoding header when it's not identity encoding. |
| 300 | * RFC 2616 : Identity encoding: This content-coding is used only in the |
| 301 | * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding |
| 302 | * header. |
| 303 | */ |
| 304 | if (st->comp_algo->cfg_name_len != 8 || memcmp(st->comp_algo->cfg_name, "identity", 8) != 0) { |
| 305 | struct ist v = ist2(st->comp_algo->ua_name, st->comp_algo->ua_name_len); |
| 306 | |
| 307 | if (!http_add_header(htx, ist("Content-Encoding"), v)) |
| 308 | goto error; |
| 309 | } |
| 310 | |
| 311 | /* remove Content-Length header */ |
| 312 | if (msg->flags & HTTP_MSGF_CNT_LEN) { |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 313 | ctx.blk = NULL; |
| 314 | while (http_find_header(htx, ist("Content-Length"), &ctx, 1)) |
| 315 | http_remove_header(htx, &ctx); |
| 316 | } |
| 317 | |
| 318 | /* add "Transfer-Encoding: chunked" header */ |
| 319 | if (!(msg->flags & HTTP_MSGF_TE_CHNK)) { |
| 320 | if (!http_add_header(htx, ist("Transfer-Encoding"), ist("chunked"))) |
| 321 | goto error; |
| 322 | } |
| 323 | |
Tim Duesterhus | b229f01 | 2019-01-29 16:38:56 +0100 | [diff] [blame] | 324 | /* convert "ETag" header to a weak ETag */ |
| 325 | ctx.blk = NULL; |
| 326 | if (http_find_header(htx, ist("ETag"), &ctx, 1)) { |
| 327 | if (ctx.value.ptr[0] == '"') { |
| 328 | /* This a strong ETag. Convert it to a weak one. */ |
| 329 | struct ist v = ist2(trash.area, 0); |
| 330 | if (istcat(&v, ist("W/"), trash.size) == -1 || istcat(&v, ctx.value, trash.size) == -1) |
| 331 | goto error; |
| 332 | |
| 333 | if (!http_replace_header_value(htx, &ctx, v)) |
| 334 | goto error; |
| 335 | } |
| 336 | } |
| 337 | |
Tim Duesterhus | 721d686 | 2019-06-17 16:10:07 +0200 | [diff] [blame] | 338 | if (!http_add_header(htx, ist("Vary"), ist("Accept-Encoding"))) |
| 339 | goto error; |
| 340 | |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 341 | return 1; |
| 342 | |
| 343 | error: |
| 344 | st->comp_algo->end(&st->comp_ctx); |
| 345 | st->comp_algo = NULL; |
| 346 | return 0; |
| 347 | } |
| 348 | |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 349 | /* |
| 350 | * Selects a compression algorithm depending on the client request. |
| 351 | */ |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 352 | static int |
Christopher Faulet | 89f2b16 | 2019-07-15 21:16:04 +0200 | [diff] [blame] | 353 | select_compression_request_header(struct comp_state *st, struct stream *s, struct http_msg *msg) |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 354 | { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 355 | struct htx *htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 356 | struct http_hdr_ctx ctx; |
| 357 | struct comp_algo *comp_algo = NULL; |
| 358 | struct comp_algo *comp_algo_back = NULL; |
| 359 | |
| 360 | /* Disable compression for older user agents announcing themselves as "Mozilla/4" |
| 361 | * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later). |
| 362 | * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details. |
| 363 | */ |
| 364 | ctx.blk = NULL; |
| 365 | if (http_find_header(htx, ist("User-Agent"), &ctx, 1) && |
| 366 | ctx.value.len >= 9 && |
| 367 | memcmp(ctx.value.ptr, "Mozilla/4", 9) == 0 && |
| 368 | (ctx.value.len < 31 || |
| 369 | memcmp(ctx.value.ptr + 25, "MSIE ", 5) != 0 || |
| 370 | *(ctx.value.ptr + 30) < '6' || |
| 371 | (*(ctx.value.ptr + 30) == '6' && |
| 372 | (ctx.value.len < 54 || memcmp(ctx.value.ptr + 51, "SV1", 3) != 0)))) { |
| 373 | st->comp_algo = NULL; |
| 374 | return 0; |
| 375 | } |
| 376 | |
| 377 | /* search for the algo in the backend in priority or the frontend */ |
| 378 | if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || |
| 379 | (strm_fe(s)->comp && (comp_algo_back = strm_fe(s)->comp->algos))) { |
| 380 | int best_q = 0; |
| 381 | |
| 382 | ctx.blk = NULL; |
| 383 | while (http_find_header(htx, ist("Accept-Encoding"), &ctx, 0)) { |
| 384 | const char *qval; |
| 385 | int q; |
| 386 | int toklen; |
| 387 | |
| 388 | /* try to isolate the token from the optional q-value */ |
| 389 | toklen = 0; |
| 390 | while (toklen < ctx.value.len && HTTP_IS_TOKEN(*(ctx.value.ptr + toklen))) |
| 391 | toklen++; |
| 392 | |
| 393 | qval = ctx.value.ptr + toklen; |
| 394 | while (1) { |
| 395 | while (qval < ctx.value.ptr + ctx.value.len && HTTP_IS_LWS(*qval)) |
| 396 | qval++; |
| 397 | |
| 398 | if (qval >= ctx.value.ptr + ctx.value.len || *qval != ';') { |
| 399 | qval = NULL; |
| 400 | break; |
| 401 | } |
| 402 | qval++; |
| 403 | |
| 404 | while (qval < ctx.value.ptr + ctx.value.len && HTTP_IS_LWS(*qval)) |
| 405 | qval++; |
| 406 | |
| 407 | if (qval >= ctx.value.ptr + ctx.value.len) { |
| 408 | qval = NULL; |
| 409 | break; |
| 410 | } |
| 411 | if (strncmp(qval, "q=", MIN(ctx.value.ptr + ctx.value.len - qval, 2)) == 0) |
| 412 | break; |
| 413 | |
| 414 | while (qval < ctx.value.ptr + ctx.value.len && *qval != ';') |
| 415 | qval++; |
| 416 | } |
| 417 | |
| 418 | /* here we have qval pointing to the first "q=" attribute or NULL if not found */ |
| 419 | q = qval ? http_parse_qvalue(qval + 2, NULL) : 1000; |
| 420 | |
| 421 | if (q <= best_q) |
| 422 | continue; |
| 423 | |
| 424 | for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) { |
| 425 | if (*(ctx.value.ptr) == '*' || |
| 426 | word_match(ctx.value.ptr, toklen, comp_algo->ua_name, comp_algo->ua_name_len)) { |
| 427 | st->comp_algo = comp_algo; |
| 428 | best_q = q; |
| 429 | break; |
| 430 | } |
| 431 | } |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | /* remove all occurrences of the header when "compression offload" is set */ |
| 436 | if (st->comp_algo) { |
| 437 | if ((s->be->comp && s->be->comp->offload) || |
| 438 | (strm_fe(s)->comp && strm_fe(s)->comp->offload)) { |
| 439 | http_remove_header(htx, &ctx); |
| 440 | ctx.blk = NULL; |
| 441 | while (http_find_header(htx, ist("Accept-Encoding"), &ctx, 1)) |
| 442 | http_remove_header(htx, &ctx); |
| 443 | } |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 444 | return 1; |
| 445 | } |
| 446 | |
| 447 | /* identity is implicit does not require headers */ |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 448 | if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || |
| 449 | (strm_fe(s)->comp && (comp_algo_back = strm_fe(s)->comp->algos))) { |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 450 | for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) { |
| 451 | if (comp_algo->cfg_name_len == 8 && memcmp(comp_algo->cfg_name, "identity", 8) == 0) { |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 452 | st->comp_algo = comp_algo; |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 453 | return 1; |
| 454 | } |
| 455 | } |
| 456 | } |
| 457 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 458 | st->comp_algo = NULL; |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 459 | return 0; |
| 460 | } |
| 461 | |
| 462 | /* |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 463 | * Selects a compression algorithm depending of the server response. |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 464 | */ |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 465 | static int |
Christopher Faulet | 89f2b16 | 2019-07-15 21:16:04 +0200 | [diff] [blame] | 466 | select_compression_response_header(struct comp_state *st, struct stream *s, struct http_msg *msg) |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 467 | { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 468 | struct htx *htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 469 | struct http_txn *txn = s->txn; |
| 470 | struct http_hdr_ctx ctx; |
| 471 | struct comp_type *comp_type; |
| 472 | |
| 473 | /* no common compression algorithm was found in request header */ |
| 474 | if (st->comp_algo == NULL) |
| 475 | goto fail; |
| 476 | |
Christopher Faulet | 1d3613a | 2019-01-07 14:41:59 +0100 | [diff] [blame] | 477 | /* compression already in progress */ |
| 478 | if (msg->flags & HTTP_MSGF_COMPRESSING) |
| 479 | goto fail; |
| 480 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 481 | /* HTTP < 1.1 should not be compressed */ |
| 482 | if (!(msg->flags & HTTP_MSGF_VER_11) || !(txn->req.flags & HTTP_MSGF_VER_11)) |
| 483 | goto fail; |
| 484 | |
| 485 | if (txn->meth == HTTP_METH_HEAD) |
| 486 | goto fail; |
| 487 | |
| 488 | /* compress 200,201,202,203 responses only */ |
| 489 | if ((txn->status != 200) && |
| 490 | (txn->status != 201) && |
| 491 | (txn->status != 202) && |
| 492 | (txn->status != 203)) |
| 493 | goto fail; |
| 494 | |
Christopher Faulet | c963eb2 | 2018-12-21 14:53:54 +0100 | [diff] [blame] | 495 | if (!(msg->flags & HTTP_MSGF_XFER_LEN) || msg->flags & HTTP_MSGF_BODYLESS) |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 496 | goto fail; |
| 497 | |
| 498 | /* content is already compressed */ |
| 499 | ctx.blk = NULL; |
| 500 | if (http_find_header(htx, ist("Content-Encoding"), &ctx, 1)) |
| 501 | goto fail; |
| 502 | |
| 503 | /* no compression when Cache-Control: no-transform is present in the message */ |
| 504 | ctx.blk = NULL; |
| 505 | while (http_find_header(htx, ist("Cache-Control"), &ctx, 0)) { |
| 506 | if (word_match(ctx.value.ptr, ctx.value.len, "no-transform", 12)) |
| 507 | goto fail; |
| 508 | } |
| 509 | |
Tim Duesterhus | b229f01 | 2019-01-29 16:38:56 +0100 | [diff] [blame] | 510 | /* no compression when ETag is malformed */ |
| 511 | ctx.blk = NULL; |
| 512 | if (http_find_header(htx, ist("ETag"), &ctx, 1)) { |
Tim Duesterhus | 6414cd1 | 2020-09-01 18:32:35 +0200 | [diff] [blame] | 513 | if (http_get_etag_type(ctx.value) == ETAG_INVALID) |
Tim Duesterhus | b229f01 | 2019-01-29 16:38:56 +0100 | [diff] [blame] | 514 | goto fail; |
Tim Duesterhus | b229f01 | 2019-01-29 16:38:56 +0100 | [diff] [blame] | 515 | } |
| 516 | /* no compression when multiple ETags are present |
| 517 | * Note: Do not reset ctx.blk! |
| 518 | */ |
| 519 | if (http_find_header(htx, ist("ETag"), &ctx, 1)) |
| 520 | goto fail; |
| 521 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 522 | comp_type = NULL; |
| 523 | |
| 524 | /* we don't want to compress multipart content-types, nor content-types that are |
| 525 | * not listed in the "compression type" directive if any. If no content-type was |
| 526 | * found but configuration requires one, we don't compress either. Backend has |
| 527 | * the priority. |
| 528 | */ |
| 529 | ctx.blk = NULL; |
| 530 | if (http_find_header(htx, ist("Content-Type"), &ctx, 1)) { |
| 531 | if (ctx.value.len >= 9 && strncasecmp("multipart", ctx.value.ptr, 9) == 0) |
| 532 | goto fail; |
| 533 | |
| 534 | if ((s->be->comp && (comp_type = s->be->comp->types)) || |
| 535 | (strm_fe(s)->comp && (comp_type = strm_fe(s)->comp->types))) { |
| 536 | for (; comp_type; comp_type = comp_type->next) { |
| 537 | if (ctx.value.len >= comp_type->name_len && |
| 538 | strncasecmp(ctx.value.ptr, comp_type->name, comp_type->name_len) == 0) |
| 539 | /* this Content-Type should be compressed */ |
| 540 | break; |
| 541 | } |
| 542 | /* this Content-Type should not be compressed */ |
| 543 | if (comp_type == NULL) |
| 544 | goto fail; |
| 545 | } |
| 546 | } |
| 547 | else { /* no content-type header */ |
| 548 | if ((s->be->comp && s->be->comp->types) || |
| 549 | (strm_fe(s)->comp && strm_fe(s)->comp->types)) |
| 550 | goto fail; /* a content-type was required */ |
| 551 | } |
| 552 | |
| 553 | /* limit compression rate */ |
| 554 | if (global.comp_rate_lim > 0) |
| 555 | if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim) |
| 556 | goto fail; |
| 557 | |
| 558 | /* limit cpu usage */ |
Willy Tarreau | 81036f2 | 2019-05-20 19:24:50 +0200 | [diff] [blame] | 559 | if (ti->idle_pct < compress_min_idle) |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 560 | goto fail; |
| 561 | |
| 562 | /* initialize compression */ |
| 563 | if (st->comp_algo->init(&st->comp_ctx, global.tune.comp_maxlevel) < 0) |
| 564 | goto fail; |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 565 | msg->flags |= HTTP_MSGF_COMPRESSING; |
| 566 | return 1; |
| 567 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 568 | fail: |
| 569 | st->comp_algo = NULL; |
| 570 | return 0; |
| 571 | } |
| 572 | |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 573 | /***********************************************************************/ |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 574 | static int |
| 575 | htx_compression_buffer_init(struct htx *htx, struct buffer *out) |
| 576 | { |
| 577 | /* output stream requires at least 10 bytes for the gzip header, plus |
| 578 | * at least 8 bytes for the gzip trailer (crc+len), plus a possible |
| 579 | * plus at most 5 bytes per 32kB block and 2 bytes to close the stream. |
| 580 | */ |
| 581 | if (htx_free_space(htx) < 20 + 5 * ((htx->data + 32767) >> 15)) |
| 582 | return -1; |
| 583 | b_reset(out); |
| 584 | return 0; |
| 585 | } |
| 586 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 587 | static int |
| 588 | htx_compression_buffer_add_data(struct comp_state *st, const char *data, size_t len, |
| 589 | struct buffer *out) |
| 590 | { |
| 591 | return st->comp_algo->add_data(st->comp_ctx, data, len, out); |
| 592 | } |
| 593 | |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 594 | static int |
| 595 | htx_compression_buffer_end(struct comp_state *st, struct buffer *out, int end) |
| 596 | { |
| 597 | if (end) |
| 598 | return st->comp_algo->finish(st->comp_ctx, out); |
| 599 | else |
| 600 | return st->comp_algo->flush(st->comp_ctx, out); |
| 601 | } |
| 602 | |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 603 | |
| 604 | /***********************************************************************/ |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 605 | struct flt_ops comp_ops = { |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 606 | .init = comp_flt_init, |
Christopher Faulet | 8ca3b4b | 2017-07-25 11:07:15 +0200 | [diff] [blame] | 607 | .init_per_thread = comp_flt_init_per_thread, |
| 608 | .deinit_per_thread = comp_flt_deinit_per_thread, |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 609 | |
Christopher Faulet | 5e89651 | 2020-03-06 14:59:05 +0100 | [diff] [blame] | 610 | .attach = comp_strm_init, |
| 611 | .detach = comp_strm_deinit, |
| 612 | |
Christopher Faulet | 3dc860d | 2017-09-15 11:39:36 +0200 | [diff] [blame] | 613 | .channel_post_analyze = comp_http_post_analyze, |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 614 | |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 615 | .http_headers = comp_http_headers, |
Christopher Faulet | e6902cd | 2018-11-30 22:29:48 +0100 | [diff] [blame] | 616 | .http_payload = comp_http_payload, |
| 617 | .http_end = comp_http_end, |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 618 | }; |
| 619 | |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 620 | static int |
| 621 | parse_compression_options(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 622 | const struct proxy *defpx, const char *file, int line, |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 623 | char **err) |
| 624 | { |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 625 | struct comp *comp; |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 626 | |
| 627 | if (proxy->comp == NULL) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 628 | comp = calloc(1, sizeof(*comp)); |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 629 | proxy->comp = comp; |
| 630 | } |
| 631 | else |
| 632 | comp = proxy->comp; |
| 633 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 634 | if (strcmp(args[1], "algo") == 0) { |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 635 | struct comp_ctx *ctx; |
| 636 | int cur_arg = 2; |
| 637 | |
| 638 | if (!*args[cur_arg]) { |
| 639 | memprintf(err, "parsing [%s:%d] : '%s' expects <algorithm>\n", |
| 640 | file, line, args[0]); |
| 641 | return -1; |
| 642 | } |
| 643 | while (*(args[cur_arg])) { |
| 644 | if (comp_append_algo(comp, args[cur_arg]) < 0) { |
| 645 | memprintf(err, "'%s' : '%s' is not a supported algorithm.\n", |
| 646 | args[0], args[cur_arg]); |
| 647 | return -1; |
| 648 | } |
| 649 | if (proxy->comp->algos->init(&ctx, 9) == 0) |
| 650 | proxy->comp->algos->end(&ctx); |
| 651 | else { |
| 652 | memprintf(err, "'%s' : Can't init '%s' algorithm.\n", |
| 653 | args[0], args[cur_arg]); |
| 654 | return -1; |
| 655 | } |
| 656 | cur_arg++; |
| 657 | continue; |
| 658 | } |
| 659 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 660 | else if (strcmp(args[1], "offload") == 0) |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 661 | comp->offload = 1; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 662 | else if (strcmp(args[1], "type") == 0) { |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 663 | int cur_arg = 2; |
| 664 | |
| 665 | if (!*args[cur_arg]) { |
| 666 | memprintf(err, "'%s' expects <type>\n", args[0]); |
| 667 | return -1; |
| 668 | } |
| 669 | while (*(args[cur_arg])) { |
| 670 | comp_append_type(comp, args[cur_arg]); |
| 671 | cur_arg++; |
| 672 | continue; |
| 673 | } |
| 674 | } |
| 675 | else { |
| 676 | memprintf(err, "'%s' expects 'algo', 'type' or 'offload'\n", |
| 677 | args[0]); |
| 678 | return -1; |
| 679 | } |
| 680 | |
| 681 | return 0; |
| 682 | } |
| 683 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 684 | static int |
| 685 | parse_http_comp_flt(char **args, int *cur_arg, struct proxy *px, |
Thierry Fournier | 3610c39 | 2016-04-13 18:27:51 +0200 | [diff] [blame] | 686 | struct flt_conf *fconf, char **err, void *private) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 687 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 688 | struct flt_conf *fc, *back; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 689 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 690 | list_for_each_entry_safe(fc, back, &px->filter_configs, list) { |
| 691 | if (fc->id == http_comp_flt_id) { |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 692 | memprintf(err, "%s: Proxy supports only one compression filter\n", px->id); |
| 693 | return -1; |
| 694 | } |
| 695 | } |
| 696 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 697 | fconf->id = http_comp_flt_id; |
| 698 | fconf->conf = NULL; |
| 699 | fconf->ops = &comp_ops; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 700 | (*cur_arg)++; |
| 701 | |
| 702 | return 0; |
| 703 | } |
| 704 | |
| 705 | |
| 706 | int |
Christopher Faulet | c9df7f7 | 2018-12-10 16:14:04 +0100 | [diff] [blame] | 707 | check_implicit_http_comp_flt(struct proxy *proxy) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 708 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 709 | struct flt_conf *fconf; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 710 | int explicit = 0; |
| 711 | int comp = 0; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 712 | int err = 0; |
| 713 | |
| 714 | if (proxy->comp == NULL) |
| 715 | goto end; |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 716 | if (!LIST_ISEMPTY(&proxy->filter_configs)) { |
| 717 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
| 718 | if (fconf->id == http_comp_flt_id) |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 719 | comp = 1; |
| 720 | else if (fconf->id == cache_store_flt_id) { |
| 721 | if (comp) { |
| 722 | ha_alert("config: %s '%s': unable to enable the compression filter " |
| 723 | "before any cache filter.\n", |
| 724 | proxy_type_str(proxy), proxy->id); |
| 725 | err++; |
| 726 | goto end; |
| 727 | } |
| 728 | } |
Christopher Faulet | 78fbb9f | 2019-08-11 23:11:03 +0200 | [diff] [blame] | 729 | else if (fconf->id == fcgi_flt_id) |
| 730 | continue; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 731 | else |
| 732 | explicit = 1; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 733 | } |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 734 | } |
| 735 | if (comp) |
| 736 | goto end; |
| 737 | else if (explicit) { |
| 738 | ha_alert("config: %s '%s': require an explicit filter declaration to use " |
| 739 | "HTTP compression\n", proxy_type_str(proxy), proxy->id); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 740 | err++; |
| 741 | goto end; |
| 742 | } |
| 743 | |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 744 | /* Implicit declaration of the compression filter is always the last |
| 745 | * one */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 746 | fconf = calloc(1, sizeof(*fconf)); |
| 747 | if (!fconf) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 748 | ha_alert("config: %s '%s': out of memory\n", |
| 749 | proxy_type_str(proxy), proxy->id); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 750 | err++; |
| 751 | goto end; |
| 752 | } |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 753 | fconf->id = http_comp_flt_id; |
| 754 | fconf->conf = NULL; |
| 755 | fconf->ops = &comp_ops; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 756 | LIST_APPEND(&proxy->filter_configs, &fconf->list); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 757 | end: |
| 758 | return err; |
| 759 | } |
| 760 | |
| 761 | /* |
| 762 | * boolean, returns true if compression is used (either gzip or deflate) in the |
| 763 | * response. |
| 764 | */ |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 765 | static int |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 766 | smp_fetch_res_comp(const struct arg *args, struct sample *smp, const char *kw, |
| 767 | void *private) |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 768 | { |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 769 | struct http_txn *txn = smp->strm ? smp->strm->txn : NULL; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 770 | |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 771 | smp->data.type = SMP_T_BOOL; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 772 | smp->data.u.sint = (txn && (txn->rsp.flags & HTTP_MSGF_COMPRESSING)); |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 773 | return 1; |
| 774 | } |
| 775 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 776 | /* |
| 777 | * string, returns algo |
| 778 | */ |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 779 | static int |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 780 | smp_fetch_res_comp_algo(const struct arg *args, struct sample *smp, |
| 781 | const char *kw, void *private) |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 782 | { |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 783 | struct http_txn *txn = smp->strm ? smp->strm->txn : NULL; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 784 | struct filter *filter; |
| 785 | struct comp_state *st; |
| 786 | |
Christopher Faulet | 03d8553 | 2017-09-15 10:14:43 +0200 | [diff] [blame] | 787 | if (!txn || !(txn->rsp.flags & HTTP_MSGF_COMPRESSING)) |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 788 | return 0; |
| 789 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 790 | list_for_each_entry(filter, &strm_flt(smp->strm)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 791 | if (FLT_ID(filter) != http_comp_flt_id) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 792 | continue; |
| 793 | |
| 794 | if (!(st = filter->ctx)) |
| 795 | break; |
| 796 | |
| 797 | smp->data.type = SMP_T_STR; |
| 798 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 799 | smp->data.u.str.area = st->comp_algo->cfg_name; |
| 800 | smp->data.u.str.data = st->comp_algo->cfg_name_len; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 801 | return 1; |
| 802 | } |
| 803 | return 0; |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | /* Declare the config parser for "compression" keyword */ |
| 807 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 808 | { CFG_LISTEN, "compression", parse_compression_options }, |
| 809 | { 0, NULL, NULL }, |
| 810 | } |
| 811 | }; |
| 812 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 813 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 814 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 815 | /* Declare the filter parser for "compression" keyword */ |
| 816 | static struct flt_kw_list filter_kws = { "COMP", { }, { |
Thierry Fournier | 3610c39 | 2016-04-13 18:27:51 +0200 | [diff] [blame] | 817 | { "compression", parse_http_comp_flt, NULL }, |
| 818 | { NULL, NULL, NULL }, |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 819 | } |
| 820 | }; |
| 821 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 822 | INITCALL1(STG_REGISTER, flt_register_keywords, &filter_kws); |
| 823 | |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 824 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 825 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 826 | { "res.comp", smp_fetch_res_comp, 0, NULL, SMP_T_BOOL, SMP_USE_HRSHP }, |
| 827 | { "res.comp_algo", smp_fetch_res_comp_algo, 0, NULL, SMP_T_STR, SMP_USE_HRSHP }, |
| 828 | { /* END */ }, |
| 829 | } |
| 830 | }; |
Christopher Faulet | 3d97c90 | 2015-12-09 14:59:38 +0100 | [diff] [blame] | 831 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 832 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |