blob: ce43ec5991ec81e08b2b4d9c8d009ed7e0cefe5a [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
Willy Tarreau42250582007-04-01 01:30:43 +020020#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25
Willy Tarreaub05405a2012-01-23 15:35:52 +010026#include <netinet/tcp.h>
27
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010028#include <common/base64.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/compat.h>
31#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010032#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020033#include <common/memory.h>
34#include <common/mini-clist.h>
35#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020036#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020037#include <common/time.h>
38#include <common/uri_auth.h>
39#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
Willy Tarreau8797c062007-05-07 00:55:35 +020044#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020045#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010046#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020048#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010049#include <proto/checks.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020050#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020051#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020053#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010055#include <proto/hdr_idx.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010056#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020057#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010059#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020060#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020061#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010062#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020063#include <proto/stream.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010064#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020065#include <proto/task.h>
Baptiste Assmannfabcbe02014-04-24 22:16:59 +020066#include <proto/pattern.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020067#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau522d6c02009-12-06 18:49:18 +010069const char HTTP_100[] =
70 "HTTP/1.1 100 Continue\r\n\r\n";
71
72const struct chunk http_100_chunk = {
73 .str = (char *)&HTTP_100,
74 .len = sizeof(HTTP_100)-1
75};
76
Willy Tarreaua9679ac2010-01-03 17:32:57 +010077/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020078const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010080 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020081 "Location: "; /* not terminated since it will be concatenated with the URL */
82
Willy Tarreau0f772532006-12-23 20:51:41 +010083const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010084 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010085 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010087 "Location: "; /* not terminated since it will be concatenated with the URL */
88
89/* same as 302 except that the browser MUST retry with the GET method */
90const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010091 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010092 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010093 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010094 "Location: "; /* not terminated since it will be concatenated with the URL */
95
Yves Lafon3e8d1ae2013-03-11 11:06:05 -040096
97/* same as 302 except that the browser MUST retry with the same method */
98const char *HTTP_307 =
99 "HTTP/1.1 307 Temporary Redirect\r\n"
100 "Cache-Control: no-cache\r\n"
101 "Content-length: 0\r\n"
102 "Location: "; /* not terminated since it will be concatenated with the URL */
103
104/* same as 301 except that the browser MUST retry with the same method */
105const char *HTTP_308 =
106 "HTTP/1.1 308 Permanent Redirect\r\n"
107 "Content-length: 0\r\n"
108 "Location: "; /* not terminated since it will be concatenated with the URL */
109
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
111const char *HTTP_401_fmt =
112 "HTTP/1.0 401 Unauthorized\r\n"
113 "Cache-Control: no-cache\r\n"
114 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200115 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
117 "\r\n"
118 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
119
Willy Tarreau844a7e72010-01-31 21:46:18 +0100120const char *HTTP_407_fmt =
121 "HTTP/1.0 407 Unauthorized\r\n"
122 "Cache-Control: no-cache\r\n"
123 "Connection: close\r\n"
124 "Content-Type: text/html\r\n"
125 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
126 "\r\n"
Godbach1f1fae62014-12-17 16:32:05 +0800127 "<html><body><h1>407 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
Willy Tarreau844a7e72010-01-31 21:46:18 +0100128
Willy Tarreau0f772532006-12-23 20:51:41 +0100129
130const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200131 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100132 [HTTP_ERR_400] = 400,
133 [HTTP_ERR_403] = 403,
CJ Ess108b1dd2015-04-07 12:03:37 -0400134 [HTTP_ERR_405] = 405,
Willy Tarreau0f772532006-12-23 20:51:41 +0100135 [HTTP_ERR_408] = 408,
CJ Ess108b1dd2015-04-07 12:03:37 -0400136 [HTTP_ERR_429] = 429,
Willy Tarreau0f772532006-12-23 20:51:41 +0100137 [HTTP_ERR_500] = 500,
138 [HTTP_ERR_502] = 502,
139 [HTTP_ERR_503] = 503,
140 [HTTP_ERR_504] = 504,
141};
142
Willy Tarreau80587432006-12-24 17:47:20 +0100143static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200144 [HTTP_ERR_200] =
145 "HTTP/1.0 200 OK\r\n"
146 "Cache-Control: no-cache\r\n"
147 "Connection: close\r\n"
148 "Content-Type: text/html\r\n"
149 "\r\n"
150 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
151
Willy Tarreau0f772532006-12-23 20:51:41 +0100152 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100153 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100154 "Cache-Control: no-cache\r\n"
155 "Connection: close\r\n"
156 "Content-Type: text/html\r\n"
157 "\r\n"
158 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
159
160 [HTTP_ERR_403] =
161 "HTTP/1.0 403 Forbidden\r\n"
162 "Cache-Control: no-cache\r\n"
163 "Connection: close\r\n"
164 "Content-Type: text/html\r\n"
165 "\r\n"
166 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
167
CJ Ess108b1dd2015-04-07 12:03:37 -0400168 [HTTP_ERR_405] =
169 "HTTP/1.0 405 Method Not Allowed\r\n"
170 "Cache-Control: no-cache\r\n"
171 "Connection: close\r\n"
172 "Content-Type: text/html\r\n"
173 "\r\n"
174 "<html><body><h1>405 Method Not Allowed</h1>\nA request was made of a resource using a request method not supported by that resource\n</body></html>\n",
175
Willy Tarreau0f772532006-12-23 20:51:41 +0100176 [HTTP_ERR_408] =
177 "HTTP/1.0 408 Request Time-out\r\n"
178 "Cache-Control: no-cache\r\n"
179 "Connection: close\r\n"
180 "Content-Type: text/html\r\n"
181 "\r\n"
182 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
183
CJ Ess108b1dd2015-04-07 12:03:37 -0400184 [HTTP_ERR_429] =
185 "HTTP/1.0 429 Too Many Requests\r\n"
186 "Cache-Control: no-cache\r\n"
187 "Connection: close\r\n"
188 "Content-Type: text/html\r\n"
189 "\r\n"
190 "<html><body><h1>429 Too Many Requests</h1>\nYou have sent too many requests in a given amount of time.\n</body></html>\n",
191
Willy Tarreau0f772532006-12-23 20:51:41 +0100192 [HTTP_ERR_500] =
193 "HTTP/1.0 500 Server Error\r\n"
194 "Cache-Control: no-cache\r\n"
195 "Connection: close\r\n"
196 "Content-Type: text/html\r\n"
197 "\r\n"
198 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
199
200 [HTTP_ERR_502] =
201 "HTTP/1.0 502 Bad Gateway\r\n"
202 "Cache-Control: no-cache\r\n"
203 "Connection: close\r\n"
204 "Content-Type: text/html\r\n"
205 "\r\n"
206 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
207
208 [HTTP_ERR_503] =
209 "HTTP/1.0 503 Service Unavailable\r\n"
210 "Cache-Control: no-cache\r\n"
211 "Connection: close\r\n"
212 "Content-Type: text/html\r\n"
213 "\r\n"
214 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
215
216 [HTTP_ERR_504] =
217 "HTTP/1.0 504 Gateway Time-out\r\n"
218 "Cache-Control: no-cache\r\n"
219 "Connection: close\r\n"
220 "Content-Type: text/html\r\n"
221 "\r\n"
222 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
223
224};
225
Cyril Bonté19979e12012-04-04 12:57:21 +0200226/* status codes available for the stats admin page (strictly 4 chars length) */
227const char *stat_status_codes[STAT_STATUS_SIZE] = {
228 [STAT_STATUS_DENY] = "DENY",
229 [STAT_STATUS_DONE] = "DONE",
230 [STAT_STATUS_ERRP] = "ERRP",
231 [STAT_STATUS_EXCD] = "EXCD",
232 [STAT_STATUS_NONE] = "NONE",
233 [STAT_STATUS_PART] = "PART",
234 [STAT_STATUS_UNKN] = "UNKN",
235};
236
237
William Lallemand73025dd2014-04-24 14:38:37 +0200238/* List head of all known action keywords for "http-request" */
239struct http_req_action_kw_list http_req_keywords = {
240 .list = LIST_HEAD_INIT(http_req_keywords.list)
241};
242
243/* List head of all known action keywords for "http-response" */
244struct http_res_action_kw_list http_res_keywords = {
245 .list = LIST_HEAD_INIT(http_res_keywords.list)
246};
247
Willy Tarreau80587432006-12-24 17:47:20 +0100248/* We must put the messages here since GCC cannot initialize consts depending
249 * on strlen().
250 */
251struct chunk http_err_chunks[HTTP_ERR_SIZE];
252
Willy Tarreaua890d072013-04-02 12:01:06 +0200253/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
254static struct hdr_ctx static_hdr_ctx;
255
Willy Tarreau42250582007-04-01 01:30:43 +0200256#define FD_SETS_ARE_BITFIELDS
257#ifdef FD_SETS_ARE_BITFIELDS
258/*
259 * This map is used with all the FD_* macros to check whether a particular bit
260 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
261 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
262 * byte should be encoded. Be careful to always pass bytes from 0 to 255
263 * exclusively to the macros.
264 */
265fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
266fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100267fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Willy Tarreau42250582007-04-01 01:30:43 +0200268
269#else
270#error "Check if your OS uses bitfields for fd_sets"
271#endif
272
Willy Tarreau87b09662015-04-03 00:22:06 +0200273static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn);
Willy Tarreau0b748332014-04-29 00:13:29 +0200274
Willy Tarreau80587432006-12-24 17:47:20 +0100275void init_proto_http()
276{
Willy Tarreau42250582007-04-01 01:30:43 +0200277 int i;
278 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100279 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200280
Willy Tarreau80587432006-12-24 17:47:20 +0100281 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
282 if (!http_err_msgs[msg]) {
283 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
284 abort();
285 }
286
287 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
288 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
289 }
Willy Tarreau42250582007-04-01 01:30:43 +0200290
291 /* initialize the log header encoding map : '{|}"#' should be encoded with
292 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
293 * URL encoding only requires '"', '#' to be encoded as well as non-
294 * printable characters above.
295 */
296 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
297 memset(url_encode_map, 0, sizeof(url_encode_map));
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100298 memset(http_encode_map, 0, sizeof(url_encode_map));
Willy Tarreau42250582007-04-01 01:30:43 +0200299 for (i = 0; i < 32; i++) {
300 FD_SET(i, hdr_encode_map);
301 FD_SET(i, url_encode_map);
302 }
303 for (i = 127; i < 256; i++) {
304 FD_SET(i, hdr_encode_map);
305 FD_SET(i, url_encode_map);
306 }
307
308 tmp = "\"#{|}";
309 while (*tmp) {
310 FD_SET(*tmp, hdr_encode_map);
311 tmp++;
312 }
313
314 tmp = "\"#";
315 while (*tmp) {
316 FD_SET(*tmp, url_encode_map);
317 tmp++;
318 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200319
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100320 /* initialize the http header encoding map. The draft httpbis define the
321 * header content as:
322 *
323 * HTTP-message = start-line
324 * *( header-field CRLF )
325 * CRLF
326 * [ message-body ]
327 * header-field = field-name ":" OWS field-value OWS
328 * field-value = *( field-content / obs-fold )
329 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
330 * obs-fold = CRLF 1*( SP / HTAB )
331 * field-vchar = VCHAR / obs-text
332 * VCHAR = %x21-7E
333 * obs-text = %x80-FF
334 *
335 * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB.
336 * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The
337 * "obs-fold" is volontary forgotten because haproxy remove this.
338 */
339 memset(http_encode_map, 0, sizeof(http_encode_map));
340 for (i = 0x00; i <= 0x08; i++)
341 FD_SET(i, http_encode_map);
342 for (i = 0x0a; i <= 0x1f; i++)
343 FD_SET(i, http_encode_map);
344 FD_SET(0x7f, http_encode_map);
345
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200346 /* memory allocations */
Willy Tarreau63986c72015-04-03 22:55:33 +0200347 pool2_http_txn = create_pool("http_txn", sizeof(struct http_txn), MEM_F_SHARED);
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200348 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
William Lallemanda73203e2012-03-12 12:48:57 +0100349 pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100350}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200351
Willy Tarreau53b6c742006-12-17 13:37:46 +0100352/*
353 * We have 26 list of methods (1 per first letter), each of which can have
354 * up to 3 entries (2 valid, 1 null).
355 */
356struct http_method_desc {
Willy Tarreauc8987b32013-12-06 23:43:17 +0100357 enum http_meth_t meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100358 int len;
359 const char text[8];
360};
361
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100362const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100363 ['C' - 'A'] = {
364 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
365 },
366 ['D' - 'A'] = {
367 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
368 },
369 ['G' - 'A'] = {
370 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
371 },
372 ['H' - 'A'] = {
373 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
374 },
375 ['P' - 'A'] = {
376 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
377 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
378 },
379 ['T' - 'A'] = {
380 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
381 },
382 /* rest is empty like this :
383 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
384 */
385};
386
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100387const struct http_method_name http_known_methods[HTTP_METH_OTHER] = {
388 [HTTP_METH_NONE] = { "", 0 },
389 [HTTP_METH_OPTIONS] = { "OPTIONS", 7 },
390 [HTTP_METH_GET] = { "GET", 3 },
391 [HTTP_METH_HEAD] = { "HEAD", 4 },
392 [HTTP_METH_POST] = { "POST", 4 },
393 [HTTP_METH_PUT] = { "PUT", 3 },
394 [HTTP_METH_DELETE] = { "DELETE", 6 },
395 [HTTP_METH_TRACE] = { "TRACE", 5 },
396 [HTTP_METH_CONNECT] = { "CONNECT", 7 },
397};
398
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100399/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200400 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100401 * RFC2616 for those chars.
402 */
403
404const char http_is_spht[256] = {
405 [' '] = 1, ['\t'] = 1,
406};
407
408const char http_is_crlf[256] = {
409 ['\r'] = 1, ['\n'] = 1,
410};
411
412const char http_is_lws[256] = {
413 [' '] = 1, ['\t'] = 1,
414 ['\r'] = 1, ['\n'] = 1,
415};
416
417const char http_is_sep[256] = {
418 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
419 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
420 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
421 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
422 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
423};
424
425const char http_is_ctl[256] = {
426 [0 ... 31] = 1,
427 [127] = 1,
428};
429
430/*
431 * A token is any ASCII char that is neither a separator nor a CTL char.
432 * Do not overwrite values in assignment since gcc-2.95 will not handle
433 * them correctly. Instead, define every non-CTL char's status.
434 */
435const char http_is_token[256] = {
436 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
437 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
438 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
439 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
440 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
441 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
442 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
443 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
444 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
445 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
446 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
447 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
448 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
449 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
450 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
451 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
452 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
453 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
454 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
455 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
456 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
457 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
458 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
459 ['|'] = 1, ['}'] = 0, ['~'] = 1,
460};
461
462
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100463/*
464 * An http ver_token is any ASCII which can be found in an HTTP version,
465 * which includes 'H', 'T', 'P', '/', '.' and any digit.
466 */
467const char http_is_ver_token[256] = {
468 ['.'] = 1, ['/'] = 1,
469 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
470 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
Thierry FOURNIER63d692c2015-02-28 19:03:56 +0100471 ['H'] = 1, ['P'] = 1, ['R'] = 1, ['S'] = 1, ['T'] = 1,
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100472};
473
474
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100475/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100476 * Adds a header and its CRLF at the tail of the message's buffer, just before
477 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100478 * The header is also automatically added to the index <hdr_idx>, and the end
479 * of headers is automatically adjusted. The number of bytes added is returned
480 * on success, otherwise <0 is returned indicating an error.
481 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100482int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100483{
484 int bytes, len;
485
486 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200487 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100488 if (!bytes)
489 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100490 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100491 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
492}
493
494/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100495 * Adds a header and its CRLF at the tail of the message's buffer, just before
496 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100497 * the buffer is only opened and the space reserved, but nothing is copied.
498 * The header is also automatically added to the index <hdr_idx>, and the end
499 * of headers is automatically adjusted. The number of bytes added is returned
500 * on success, otherwise <0 is returned indicating an error.
501 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100502int http_header_add_tail2(struct http_msg *msg,
503 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100504{
505 int bytes;
506
Willy Tarreau9b28e032012-10-12 23:49:43 +0200507 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100508 if (!bytes)
509 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100510 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100511 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
512}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200513
514/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100515 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
516 * If so, returns the position of the first non-space character relative to
517 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
518 * to return a pointer to the place after the first space. Returns 0 if the
519 * header name does not match. Checks are case-insensitive.
520 */
521int http_header_match2(const char *hdr, const char *end,
522 const char *name, int len)
523{
524 const char *val;
525
526 if (hdr + len >= end)
527 return 0;
528 if (hdr[len] != ':')
529 return 0;
530 if (strncasecmp(hdr, name, len) != 0)
531 return 0;
532 val = hdr + len + 1;
533 while (val < end && HTTP_IS_SPHT(*val))
534 val++;
535 if ((val >= end) && (len + 2 <= end - hdr))
536 return len + 2; /* we may replace starting from second space */
537 return val - hdr;
538}
539
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200540/* Find the first or next occurrence of header <name> in message buffer <sol>
541 * using headers index <idx>, and return it in the <ctx> structure. This
542 * structure holds everything necessary to use the header and find next
543 * occurrence. If its <idx> member is 0, the header is searched from the
544 * beginning. Otherwise, the next occurrence is returned. The function returns
545 * 1 when it finds a value, and 0 when there is no more. It is very similar to
546 * http_find_header2() except that it is designed to work with full-line headers
547 * whose comma is not a delimiter but is part of the syntax. As a special case,
548 * if ctx->val is NULL when searching for a new values of a header, the current
549 * header is rescanned. This allows rescanning after a header deletion.
550 */
551int http_find_full_header2(const char *name, int len,
552 char *sol, struct hdr_idx *idx,
553 struct hdr_ctx *ctx)
554{
555 char *eol, *sov;
556 int cur_idx, old_idx;
557
558 cur_idx = ctx->idx;
559 if (cur_idx) {
560 /* We have previously returned a header, let's search another one */
561 sol = ctx->line;
562 eol = sol + idx->v[cur_idx].len;
563 goto next_hdr;
564 }
565
566 /* first request for this header */
567 sol += hdr_idx_first_pos(idx);
568 old_idx = 0;
569 cur_idx = hdr_idx_first_idx(idx);
570 while (cur_idx) {
571 eol = sol + idx->v[cur_idx].len;
572
573 if (len == 0) {
574 /* No argument was passed, we want any header.
575 * To achieve this, we simply build a fake request. */
576 while (sol + len < eol && sol[len] != ':')
577 len++;
578 name = sol;
579 }
580
581 if ((len < eol - sol) &&
582 (sol[len] == ':') &&
583 (strncasecmp(sol, name, len) == 0)) {
584 ctx->del = len;
585 sov = sol + len + 1;
586 while (sov < eol && http_is_lws[(unsigned char)*sov])
587 sov++;
588
589 ctx->line = sol;
590 ctx->prev = old_idx;
591 ctx->idx = cur_idx;
592 ctx->val = sov - sol;
593 ctx->tws = 0;
594 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
595 eol--;
596 ctx->tws++;
597 }
598 ctx->vlen = eol - sov;
599 return 1;
600 }
601 next_hdr:
602 sol = eol + idx->v[cur_idx].cr + 1;
603 old_idx = cur_idx;
604 cur_idx = idx->v[cur_idx].next;
605 }
606 return 0;
607}
608
Willy Tarreauc90dc232015-02-20 13:51:36 +0100609/* Find the first or next header field in message buffer <sol> using headers
610 * index <idx>, and return it in the <ctx> structure. This structure holds
611 * everything necessary to use the header and find next occurrence. If its
612 * <idx> member is 0, the first header is retrieved. Otherwise, the next
613 * occurrence is returned. The function returns 1 when it finds a value, and
614 * 0 when there is no more. It is equivalent to http_find_full_header2() with
615 * no header name.
616 */
617int http_find_next_header(char *sol, struct hdr_idx *idx, struct hdr_ctx *ctx)
618{
619 char *eol, *sov;
620 int cur_idx, old_idx;
621 int len;
622
623 cur_idx = ctx->idx;
624 if (cur_idx) {
625 /* We have previously returned a header, let's search another one */
626 sol = ctx->line;
627 eol = sol + idx->v[cur_idx].len;
628 goto next_hdr;
629 }
630
631 /* first request for this header */
632 sol += hdr_idx_first_pos(idx);
633 old_idx = 0;
634 cur_idx = hdr_idx_first_idx(idx);
635 while (cur_idx) {
636 eol = sol + idx->v[cur_idx].len;
637
638 len = 0;
639 while (1) {
640 if (len >= eol - sol)
641 goto next_hdr;
642 if (sol[len] == ':')
643 break;
644 len++;
645 }
646
647 ctx->del = len;
648 sov = sol + len + 1;
649 while (sov < eol && http_is_lws[(unsigned char)*sov])
650 sov++;
651
652 ctx->line = sol;
653 ctx->prev = old_idx;
654 ctx->idx = cur_idx;
655 ctx->val = sov - sol;
656 ctx->tws = 0;
657
658 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
659 eol--;
660 ctx->tws++;
661 }
662 ctx->vlen = eol - sov;
663 return 1;
664
665 next_hdr:
666 sol = eol + idx->v[cur_idx].cr + 1;
667 old_idx = cur_idx;
668 cur_idx = idx->v[cur_idx].next;
669 }
670 return 0;
671}
672
Willy Tarreau68085d82010-01-18 14:54:04 +0100673/* Find the end of the header value contained between <s> and <e>. See RFC2616,
674 * par 2.2 for more information. Note that it requires a valid header to return
675 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200676 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100677char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200678{
679 int quoted, qdpair;
680
681 quoted = qdpair = 0;
682 for (; s < e; s++) {
683 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200684 else if (quoted) {
685 if (*s == '\\') qdpair = 1;
686 else if (*s == '"') quoted = 0;
687 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200688 else if (*s == '"') quoted = 1;
689 else if (*s == ',') return s;
690 }
691 return s;
692}
693
694/* Find the first or next occurrence of header <name> in message buffer <sol>
695 * using headers index <idx>, and return it in the <ctx> structure. This
696 * structure holds everything necessary to use the header and find next
697 * occurrence. If its <idx> member is 0, the header is searched from the
698 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100699 * 1 when it finds a value, and 0 when there is no more. It is designed to work
700 * with headers defined as comma-separated lists. As a special case, if ctx->val
701 * is NULL when searching for a new values of a header, the current header is
702 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200703 */
704int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100705 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200706 struct hdr_ctx *ctx)
707{
Willy Tarreau68085d82010-01-18 14:54:04 +0100708 char *eol, *sov;
709 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200710
Willy Tarreau68085d82010-01-18 14:54:04 +0100711 cur_idx = ctx->idx;
712 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200713 /* We have previously returned a value, let's search
714 * another one on the same line.
715 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200716 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200717 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100718 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200719 eol = sol + idx->v[cur_idx].len;
720
721 if (sov >= eol)
722 /* no more values in this header */
723 goto next_hdr;
724
Willy Tarreau68085d82010-01-18 14:54:04 +0100725 /* values remaining for this header, skip the comma but save it
726 * for later use (eg: for header deletion).
727 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200728 sov++;
729 while (sov < eol && http_is_lws[(unsigned char)*sov])
730 sov++;
731
732 goto return_hdr;
733 }
734
735 /* first request for this header */
736 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100737 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200738 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200739 while (cur_idx) {
740 eol = sol + idx->v[cur_idx].len;
741
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200742 if (len == 0) {
743 /* No argument was passed, we want any header.
744 * To achieve this, we simply build a fake request. */
745 while (sol + len < eol && sol[len] != ':')
746 len++;
747 name = sol;
748 }
749
Willy Tarreau33a7e692007-06-10 19:45:56 +0200750 if ((len < eol - sol) &&
751 (sol[len] == ':') &&
752 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100753 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200754 sov = sol + len + 1;
755 while (sov < eol && http_is_lws[(unsigned char)*sov])
756 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100757
Willy Tarreau33a7e692007-06-10 19:45:56 +0200758 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100759 ctx->prev = old_idx;
760 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200761 ctx->idx = cur_idx;
762 ctx->val = sov - sol;
763
764 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200765 ctx->tws = 0;
Willy Tarreau275600b2011-09-16 08:11:26 +0200766 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200767 eol--;
768 ctx->tws++;
769 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200770 ctx->vlen = eol - sov;
771 return 1;
772 }
773 next_hdr:
774 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100775 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200776 cur_idx = idx->v[cur_idx].next;
777 }
778 return 0;
779}
780
781int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100782 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200783 struct hdr_ctx *ctx)
784{
785 return http_find_header2(name, strlen(name), sol, idx, ctx);
786}
787
Willy Tarreau68085d82010-01-18 14:54:04 +0100788/* Remove one value of a header. This only works on a <ctx> returned by one of
789 * the http_find_header functions. The value is removed, as well as surrounding
790 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100791 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100792 * message <msg>. The new index is returned. If it is zero, it means there is
793 * no more header, so any processing may stop. The ctx is always left in a form
794 * that can be handled by http_find_header2() to find next occurrence.
795 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100796int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100797{
798 int cur_idx = ctx->idx;
799 char *sol = ctx->line;
800 struct hdr_idx_elem *hdr;
801 int delta, skip_comma;
802
803 if (!cur_idx)
804 return 0;
805
806 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200807 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100808 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200809 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +0100810 http_msg_move_end(msg, delta);
811 idx->used--;
812 hdr->len = 0; /* unused entry */
813 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100814 if (idx->tail == ctx->idx)
815 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100816 ctx->idx = ctx->prev; /* walk back to the end of previous header */
Willy Tarreau7c1c2172015-01-07 17:23:50 +0100817 ctx->line -= idx->v[ctx->idx].len + idx->v[ctx->idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100818 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200819 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100820 return ctx->idx;
821 }
822
823 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200824 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
825 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100826 */
827
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200828 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200829 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200830 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100831 NULL, 0);
832 hdr->len += delta;
833 http_msg_move_end(msg, delta);
834 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200835 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100836 return ctx->idx;
837}
838
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100839/* This function handles a server error at the stream interface level. The
840 * stream interface is assumed to be already in a closed state. An optional
841 * message is copied into the input buffer, and an HTTP status code stored.
842 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100843 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200844 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200845static void http_server_error(struct stream *s, struct stream_interface *si,
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100846 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200847{
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100848 channel_auto_read(si_oc(si));
849 channel_abort(si_oc(si));
850 channel_auto_close(si_oc(si));
851 channel_erase(si_oc(si));
852 channel_auto_close(si_ic(si));
853 channel_auto_read(si_ic(si));
Willy Tarreau0f772532006-12-23 20:51:41 +0100854 if (status > 0 && msg) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200855 s->txn->status = status;
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100856 bo_inject(si_ic(si), msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200858 if (!(s->flags & SF_ERR_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200859 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200860 if (!(s->flags & SF_FINST_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200861 s->flags |= finst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200862}
863
Willy Tarreau87b09662015-04-03 00:22:06 +0200864/* This function returns the appropriate error location for the given stream
Willy Tarreau80587432006-12-24 17:47:20 +0100865 * and message.
866 */
867
Willy Tarreau87b09662015-04-03 00:22:06 +0200868struct chunk *http_error_message(struct stream *s, int msgnum)
Willy Tarreau80587432006-12-24 17:47:20 +0100869{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200870 if (s->be->errmsg[msgnum].str)
871 return &s->be->errmsg[msgnum];
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200872 else if (strm_fe(s)->errmsg[msgnum].str)
873 return &strm_fe(s)->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100874 else
875 return &http_err_chunks[msgnum];
876}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200877
Willy Tarreau53b6c742006-12-17 13:37:46 +0100878/*
879 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
880 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
881 */
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100882enum http_meth_t find_http_meth(const char *str, const int len)
Willy Tarreau53b6c742006-12-17 13:37:46 +0100883{
884 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100885 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100886
887 m = ((unsigned)*str - 'A');
888
889 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100890 for (h = http_methods[m]; h->len > 0; h++) {
891 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100892 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100893 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100894 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100895 };
896 return HTTP_METH_OTHER;
897 }
898 return HTTP_METH_NONE;
899
900}
901
Willy Tarreau21d2af32008-02-14 20:25:24 +0100902/* Parse the URI from the given transaction (which is assumed to be in request
903 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
904 * It is returned otherwise.
905 */
906static char *
907http_get_path(struct http_txn *txn)
908{
909 char *ptr, *end;
910
Willy Tarreau9b28e032012-10-12 23:49:43 +0200911 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100912 end = ptr + txn->req.sl.rq.u_l;
913
914 if (ptr >= end)
915 return NULL;
916
917 /* RFC2616, par. 5.1.2 :
918 * Request-URI = "*" | absuri | abspath | authority
919 */
920
921 if (*ptr == '*')
922 return NULL;
923
924 if (isalpha((unsigned char)*ptr)) {
925 /* this is a scheme as described by RFC3986, par. 3.1 */
926 ptr++;
927 while (ptr < end &&
928 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
929 ptr++;
930 /* skip '://' */
931 if (ptr == end || *ptr++ != ':')
932 return NULL;
933 if (ptr == end || *ptr++ != '/')
934 return NULL;
935 if (ptr == end || *ptr++ != '/')
936 return NULL;
937 }
938 /* skip [user[:passwd]@]host[:[port]] */
939
940 while (ptr < end && *ptr != '/')
941 ptr++;
942
943 if (ptr == end)
944 return NULL;
945
946 /* OK, we got the '/' ! */
947 return ptr;
948}
949
William Lallemand65ad6e12014-01-31 15:08:02 +0100950/* Parse the URI from the given string and look for the "/" beginning the PATH.
951 * If not found, return NULL. It is returned otherwise.
952 */
953static char *
954http_get_path_from_string(char *str)
955{
956 char *ptr = str;
957
958 /* RFC2616, par. 5.1.2 :
959 * Request-URI = "*" | absuri | abspath | authority
960 */
961
962 if (*ptr == '*')
963 return NULL;
964
965 if (isalpha((unsigned char)*ptr)) {
966 /* this is a scheme as described by RFC3986, par. 3.1 */
967 ptr++;
968 while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')
969 ptr++;
970 /* skip '://' */
971 if (*ptr == '\0' || *ptr++ != ':')
972 return NULL;
973 if (*ptr == '\0' || *ptr++ != '/')
974 return NULL;
975 if (*ptr == '\0' || *ptr++ != '/')
976 return NULL;
977 }
978 /* skip [user[:passwd]@]host[:[port]] */
979
980 while (*ptr != '\0' && *ptr != ' ' && *ptr != '/')
981 ptr++;
982
983 if (*ptr == '\0' || *ptr == ' ')
984 return NULL;
985
986 /* OK, we got the '/' ! */
987 return ptr;
988}
989
Willy Tarreau71241ab2012-12-27 11:30:54 +0100990/* Returns a 302 for a redirectable request that reaches a server working in
991 * in redirect mode. This may only be called just after the stream interface
992 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
993 * follow normal proxy processing. NOTE: this function is designed to support
994 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100995 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200996void http_perform_server_redirect(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100997{
998 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +0100999 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001000 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001001 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001002
1003 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001004 trash.len = strlen(HTTP_302);
1005 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001006
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001007 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001008
Willy Tarreauefb453c2008-10-26 20:49:47 +01001009 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001010 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001011 return;
1012
Willy Tarreaudcb75c42010-01-10 00:24:22 +01001013 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +01001014 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001015 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
1016 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +01001017 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001018
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001019 /* 3: add the request URI. Since it was already forwarded, we need
1020 * to temporarily rewind the buffer.
1021 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001022 txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001023 b_rew(s->req.buf, rewind = http_hdr_rewind(&txn->req));
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001024
Willy Tarreauefb453c2008-10-26 20:49:47 +01001025 path = http_get_path(txn);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001026 len = buffer_count(s->req.buf, path, b_ptr(s->req.buf, txn->req.sl.rq.u + txn->req.sl.rq.u_l));
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001027
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001028 b_adv(s->req.buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001029
Willy Tarreauefb453c2008-10-26 20:49:47 +01001030 if (!path)
1031 return;
1032
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001033 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +01001034 return;
1035
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001036 memcpy(trash.str + trash.len, path, len);
1037 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001038
1039 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001040 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
1041 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001042 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001043 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
1044 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001045 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001046
1047 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001048 si_shutr(si);
1049 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001050 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001051 si->state = SI_ST_CLO;
1052
1053 /* send the message */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001054 http_server_error(s, si, SF_ERR_LOCAL, SF_FINST_C, 302, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001055
1056 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +01001057 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001058 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001059}
1060
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001061/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +01001062 * that the server side is closed. Note that err_type is actually a
1063 * bitmask, where almost only aborts may be cumulated with other
1064 * values. We consider that aborted operations are more important
1065 * than timeouts or errors due to the fact that nobody else in the
1066 * logs might explain incomplete retries. All others should avoid
1067 * being cumulated. It should normally not be possible to have multiple
1068 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001069 * Note that connection errors appearing on the second request of a keep-alive
1070 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +01001071 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001072void http_return_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001073{
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001074 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001075
1076 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001077 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001078 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001079 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001080 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C,
Willy Tarreaueee5b512015-04-03 23:46:31 +02001081 503, (s->txn->flags & TX_NOT_FIRST) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001082 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001083 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001084 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001085 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001086 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001087 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001088 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001089 else if (err_type & SI_ET_CONN_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001090 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C,
Willy Tarreaueee5b512015-04-03 23:46:31 +02001091 503, (s->txn->flags & TX_NOT_FIRST) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001092 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001093 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001094 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C,
1095 503, (s->flags & SF_SRV_REUSED) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001096 http_error_message(s, HTTP_ERR_503));
Willy Tarreau2d400bb2012-05-14 12:11:47 +02001097 else if (err_type & SI_ET_CONN_RES)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001098 http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C,
Willy Tarreaueee5b512015-04-03 23:46:31 +02001099 503, (s->txn->flags & TX_NOT_FIRST) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001100 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001101 else /* SI_ET_CONN_OTHER and others */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001102 http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +02001103 500, http_error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001104}
1105
Willy Tarreau42250582007-04-01 01:30:43 +02001106extern const char sess_term_cond[8];
1107extern const char sess_fin_state[8];
1108extern const char *monthname[12];
Willy Tarreau63986c72015-04-03 22:55:33 +02001109struct pool_head *pool2_http_txn;
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001110struct pool_head *pool2_requri;
Willy Tarreau193b8c62012-11-22 00:17:38 +01001111struct pool_head *pool2_capture = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001112struct pool_head *pool2_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001113
Willy Tarreau117f59e2007-03-04 18:17:17 +01001114/*
1115 * Capture headers from message starting at <som> according to header list
Willy Tarreau54da8db2014-06-13 16:11:48 +02001116 * <cap_hdr>, and fill the <cap> pointers appropriately.
Willy Tarreau117f59e2007-03-04 18:17:17 +01001117 */
1118void capture_headers(char *som, struct hdr_idx *idx,
1119 char **cap, struct cap_hdr *cap_hdr)
1120{
1121 char *eol, *sol, *col, *sov;
1122 int cur_idx;
1123 struct cap_hdr *h;
1124 int len;
1125
1126 sol = som + hdr_idx_first_pos(idx);
1127 cur_idx = hdr_idx_first_idx(idx);
1128
1129 while (cur_idx) {
1130 eol = sol + idx->v[cur_idx].len;
1131
1132 col = sol;
1133 while (col < eol && *col != ':')
1134 col++;
1135
1136 sov = col + 1;
1137 while (sov < eol && http_is_lws[(unsigned char)*sov])
1138 sov++;
1139
1140 for (h = cap_hdr; h; h = h->next) {
Willy Tarreau54da8db2014-06-13 16:11:48 +02001141 if (h->namelen && (h->namelen == col - sol) &&
Willy Tarreau117f59e2007-03-04 18:17:17 +01001142 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1143 if (cap[h->index] == NULL)
1144 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001145 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001146
1147 if (cap[h->index] == NULL) {
1148 Alert("HTTP capture : out of memory.\n");
1149 continue;
1150 }
1151
1152 len = eol - sov;
1153 if (len > h->len)
1154 len = h->len;
1155
1156 memcpy(cap[h->index], sov, len);
1157 cap[h->index][len]=0;
1158 }
1159 }
1160 sol = eol + idx->v[cur_idx].cr + 1;
1161 cur_idx = idx->v[cur_idx].next;
1162 }
1163}
1164
1165
Willy Tarreau42250582007-04-01 01:30:43 +02001166/* either we find an LF at <ptr> or we jump to <bad>.
1167 */
1168#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1169
1170/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1171 * otherwise to <http_msg_ood> with <state> set to <st>.
1172 */
1173#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1174 ptr++; \
1175 if (likely(ptr < end)) \
1176 goto good; \
1177 else { \
1178 state = (st); \
1179 goto http_msg_ood; \
1180 } \
1181 } while (0)
1182
1183
Willy Tarreaubaaee002006-06-26 02:48:02 +02001184/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001185 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001186 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1187 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1188 * will give undefined results.
1189 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1190 * and that msg->sol points to the beginning of the response.
1191 * If a complete line is found (which implies that at least one CR or LF is
1192 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1193 * returned indicating an incomplete line (which does not mean that parts have
1194 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1195 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1196 * upon next call.
1197 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001198 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001199 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1200 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001201 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001202 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001203const char *http_parse_stsline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001204 enum ht_state state, const char *ptr, const char *end,
1205 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001206{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001207 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001208
Willy Tarreau8973c702007-01-21 23:58:29 +01001209 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001210 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001211 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001212 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001213 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1214
1215 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001216 msg->sl.st.v_l = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001217 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1218 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001219 state = HTTP_MSG_ERROR;
1220 break;
1221
Willy Tarreau8973c702007-01-21 23:58:29 +01001222 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001223 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001224 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001225 msg->sl.st.c = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001226 goto http_msg_rpcode;
1227 }
1228 if (likely(HTTP_IS_SPHT(*ptr)))
1229 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1230 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001231 state = HTTP_MSG_ERROR;
1232 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001233
Willy Tarreau8973c702007-01-21 23:58:29 +01001234 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001235 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001236 if (likely(!HTTP_IS_LWS(*ptr)))
1237 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1238
1239 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001240 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001241 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1242 }
1243
1244 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001245 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001246 http_msg_rsp_reason:
1247 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001248 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001249 msg->sl.st.r_l = 0;
1250 goto http_msg_rpline_eol;
1251
Willy Tarreau8973c702007-01-21 23:58:29 +01001252 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001253 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001254 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001255 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001256 goto http_msg_rpreason;
1257 }
1258 if (likely(HTTP_IS_SPHT(*ptr)))
1259 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1260 /* so it's a CR/LF, so there is no reason phrase */
1261 goto http_msg_rsp_reason;
1262
Willy Tarreau8973c702007-01-21 23:58:29 +01001263 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001264 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001265 if (likely(!HTTP_IS_CRLF(*ptr)))
1266 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreauea1175a2012-03-05 15:52:30 +01001267 msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001268 http_msg_rpline_eol:
1269 /* We have seen the end of line. Note that we do not
1270 * necessarily have the \n yet, but at least we know that we
1271 * have EITHER \r OR \n, otherwise the response would not be
1272 * complete. We can then record the response length and return
1273 * to the caller which will be able to register it.
1274 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001275 msg->sl.st.l = ptr - msg_start - msg->sol;
Willy Tarreau8973c702007-01-21 23:58:29 +01001276 return ptr;
1277
Willy Tarreau8973c702007-01-21 23:58:29 +01001278 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001279#ifdef DEBUG_FULL
Willy Tarreau8973c702007-01-21 23:58:29 +01001280 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1281 exit(1);
1282#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001283 ;
Willy Tarreau8973c702007-01-21 23:58:29 +01001284 }
1285
1286 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001287 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001288 if (ret_state)
1289 *ret_state = state;
1290 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001291 *ret_ptr = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001292 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001293}
1294
Willy Tarreau8973c702007-01-21 23:58:29 +01001295/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001296 * This function parses a request line between <ptr> and <end>, starting with
1297 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1298 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1299 * will give undefined results.
1300 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1301 * and that msg->sol points to the beginning of the request.
1302 * If a complete line is found (which implies that at least one CR or LF is
1303 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1304 * returned indicating an incomplete line (which does not mean that parts have
1305 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1306 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1307 * upon next call.
1308 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001309 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001310 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1311 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001312 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001313 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001314const char *http_parse_reqline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001315 enum ht_state state, const char *ptr, const char *end,
1316 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001317{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001318 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001319
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001320 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001321 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001322 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001323 if (likely(HTTP_IS_TOKEN(*ptr)))
1324 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001325
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001326 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001327 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001328 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1329 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001330
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001331 if (likely(HTTP_IS_CRLF(*ptr))) {
1332 /* HTTP 0.9 request */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001333 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001334 http_msg_req09_uri:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001335 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001336 http_msg_req09_uri_e:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001337 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001338 http_msg_req09_ver:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001339 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001340 msg->sl.rq.v_l = 0;
1341 goto http_msg_rqline_eol;
1342 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001343 state = HTTP_MSG_ERROR;
1344 break;
1345
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001346 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001347 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001348 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001349 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001350 goto http_msg_rquri;
1351 }
1352 if (likely(HTTP_IS_SPHT(*ptr)))
1353 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1354 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1355 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001356
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001357 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001358 http_msg_rquri:
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001359 if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001360 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001361
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001362 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001363 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001364 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1365 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001366
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001367 if (likely((unsigned char)*ptr >= 128)) {
Willy Tarreau422246e2012-01-07 23:54:13 +01001368 /* non-ASCII chars are forbidden unless option
1369 * accept-invalid-http-request is enabled in the frontend.
1370 * In any case, we capture the faulty char.
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001371 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001372 if (msg->err_pos < -1)
1373 goto invalid_char;
1374 if (msg->err_pos == -1)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001375 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001376 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
1377 }
1378
1379 if (likely(HTTP_IS_CRLF(*ptr))) {
1380 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1381 goto http_msg_req09_uri_e;
1382 }
1383
1384 /* OK forbidden chars, 0..31 or 127 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001385 invalid_char:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001386 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001387 state = HTTP_MSG_ERROR;
1388 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001389
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001390 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001391 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001392 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001393 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001394 goto http_msg_rqver;
1395 }
1396 if (likely(HTTP_IS_SPHT(*ptr)))
1397 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1398 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1399 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001400
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001401 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001402 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001403 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001404 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001405
1406 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001407 msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001408 http_msg_rqline_eol:
1409 /* We have seen the end of line. Note that we do not
1410 * necessarily have the \n yet, but at least we know that we
1411 * have EITHER \r OR \n, otherwise the request would not be
1412 * complete. We can then record the request length and return
1413 * to the caller which will be able to register it.
1414 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001415 msg->sl.rq.l = ptr - msg_start - msg->sol;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001416 return ptr;
1417 }
1418
1419 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001420 state = HTTP_MSG_ERROR;
1421 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001422
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001423 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001424#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001425 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1426 exit(1);
1427#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001428 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001429 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001430
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001431 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001432 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001433 if (ret_state)
1434 *ret_state = state;
1435 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001436 *ret_ptr = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001437 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001438}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001439
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001440/*
1441 * Returns the data from Authorization header. Function may be called more
1442 * than once so data is stored in txn->auth_data. When no header is found
1443 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
Thierry FOURNIER98d96952014-01-23 12:13:02 +01001444 * searching again for something we are unable to find anyway. However, if
1445 * the result if valid, the cache is not reused because we would risk to
Willy Tarreau87b09662015-04-03 00:22:06 +02001446 * have the credentials overwritten by another stream in parallel.
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001447 */
1448
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001449/* This bufffer is initialized in the file 'src/haproxy.c'. This length is
1450 * set according to global.tune.bufsize.
1451 */
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001452char *get_http_auth_buff;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001453
1454int
Willy Tarreau87b09662015-04-03 00:22:06 +02001455get_http_auth(struct stream *s)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001456{
1457
Willy Tarreaueee5b512015-04-03 23:46:31 +02001458 struct http_txn *txn = s->txn;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001459 struct chunk auth_method;
1460 struct hdr_ctx ctx;
1461 char *h, *p;
1462 int len;
1463
1464#ifdef DEBUG_AUTH
Willy Tarreau87b09662015-04-03 00:22:06 +02001465 printf("Auth for stream %p: %d\n", s, txn->auth.method);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001466#endif
1467
1468 if (txn->auth.method == HTTP_AUTH_WRONG)
1469 return 0;
1470
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001471 txn->auth.method = HTTP_AUTH_WRONG;
1472
1473 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001474
1475 if (txn->flags & TX_USE_PX_CONN) {
1476 h = "Proxy-Authorization";
1477 len = strlen(h);
1478 } else {
1479 h = "Authorization";
1480 len = strlen(h);
1481 }
1482
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001483 if (!http_find_header2(h, len, s->req.buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001484 return 0;
1485
1486 h = ctx.line + ctx.val;
1487
1488 p = memchr(h, ' ', ctx.vlen);
1489 if (!p || p == h)
1490 return 0;
1491
1492 chunk_initlen(&auth_method, h, 0, p-h);
1493 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1494
1495 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1496
1497 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001498 get_http_auth_buff, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001499
1500 if (len < 0)
1501 return 0;
1502
1503
1504 get_http_auth_buff[len] = '\0';
1505
1506 p = strchr(get_http_auth_buff, ':');
1507
1508 if (!p)
1509 return 0;
1510
1511 txn->auth.user = get_http_auth_buff;
1512 *p = '\0';
1513 txn->auth.pass = p+1;
1514
1515 txn->auth.method = HTTP_AUTH_BASIC;
1516 return 1;
1517 }
1518
1519 return 0;
1520}
1521
Willy Tarreau58f10d72006-12-04 02:26:12 +01001522
Willy Tarreau8973c702007-01-21 23:58:29 +01001523/*
1524 * This function parses an HTTP message, either a request or a response,
Willy Tarreau8b1323e2012-03-09 14:46:19 +01001525 * depending on the initial msg->msg_state. The caller is responsible for
1526 * ensuring that the message does not wrap. The function can be preempted
1527 * everywhere when data are missing and recalled at the exact same location
1528 * with no information loss. The message may even be realigned between two
1529 * calls. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001530 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau26927362012-05-18 23:22:52 +02001531 * fields. Note that msg->sol will be initialized after completing the first
1532 * state, so that none of the msg pointers has to be initialized prior to the
1533 * first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001534 */
Willy Tarreaua560c212012-03-09 13:50:57 +01001535void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001536{
Willy Tarreau3770f232013-12-07 00:01:53 +01001537 enum ht_state state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001538 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001539 struct buffer *buf;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001540
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001541 state = msg->msg_state;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001542 buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001543 ptr = buf->p + msg->next;
1544 end = buf->p + buf->i;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001545
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001546 if (unlikely(ptr >= end))
1547 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001548
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001549 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001550 /*
1551 * First, states that are specific to the response only.
1552 * We check them first so that request and headers are
1553 * closer to each other (accessed more often).
1554 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001555 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001556 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001557 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001558 /* we have a start of message, but we have to check
1559 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001560 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001561 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001562 if (unlikely(ptr != buf->p)) {
1563 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001564 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001565 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001566 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8973c702007-01-21 23:58:29 +01001567 }
Willy Tarreau26927362012-05-18 23:22:52 +02001568 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001569 msg->sl.st.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001570 hdr_idx_init(idx);
1571 state = HTTP_MSG_RPVER;
1572 goto http_msg_rpver;
1573 }
1574
1575 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1576 goto http_msg_invalid;
1577
1578 if (unlikely(*ptr == '\n'))
1579 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1580 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1581 /* stop here */
1582
Willy Tarreau8973c702007-01-21 23:58:29 +01001583 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001584 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001585 EXPECT_LF_HERE(ptr, http_msg_invalid);
1586 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1587 /* stop here */
1588
Willy Tarreau8973c702007-01-21 23:58:29 +01001589 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001590 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001591 case HTTP_MSG_RPVER_SP:
1592 case HTTP_MSG_RPCODE:
1593 case HTTP_MSG_RPCODE_SP:
1594 case HTTP_MSG_RPREASON:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001595 ptr = (char *)http_parse_stsline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001596 state, ptr, end,
1597 &msg->next, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001598 if (unlikely(!ptr))
1599 return;
1600
1601 /* we have a full response and we know that we have either a CR
1602 * or an LF at <ptr>.
1603 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001604 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1605
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001606 msg->sol = ptr - buf->p;
Willy Tarreau8973c702007-01-21 23:58:29 +01001607 if (likely(*ptr == '\r'))
1608 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1609 goto http_msg_rpline_end;
1610
Willy Tarreau8973c702007-01-21 23:58:29 +01001611 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001612 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001613 /* msg->sol must point to the first of CR or LF. */
1614 EXPECT_LF_HERE(ptr, http_msg_invalid);
1615 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1616 /* stop here */
1617
1618 /*
1619 * Second, states that are specific to the request only
1620 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001621 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001622 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001623 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001624 /* we have a start of message, but we have to check
1625 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001626 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001627 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001628 if (likely(ptr != buf->p)) {
1629 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001630 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001631 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001632 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001633 }
Willy Tarreau26927362012-05-18 23:22:52 +02001634 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001635 msg->sl.rq.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001636 state = HTTP_MSG_RQMETH;
1637 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001638 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001639
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001640 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1641 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001642
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001643 if (unlikely(*ptr == '\n'))
1644 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1645 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001646 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001647
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001648 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001649 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001650 EXPECT_LF_HERE(ptr, http_msg_invalid);
1651 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001652 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001653
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001654 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001655 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001656 case HTTP_MSG_RQMETH_SP:
1657 case HTTP_MSG_RQURI:
1658 case HTTP_MSG_RQURI_SP:
1659 case HTTP_MSG_RQVER:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001660 ptr = (char *)http_parse_reqline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001661 state, ptr, end,
1662 &msg->next, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001663 if (unlikely(!ptr))
1664 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001665
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001666 /* we have a full request and we know that we have either a CR
1667 * or an LF at <ptr>.
1668 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001669 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001670
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001671 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001672 if (likely(*ptr == '\r'))
1673 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001674 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001675
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001676 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001677 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001678 /* check for HTTP/0.9 request : no version information available.
1679 * msg->sol must point to the first of CR or LF.
1680 */
1681 if (unlikely(msg->sl.rq.v_l == 0))
1682 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001683
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001684 EXPECT_LF_HERE(ptr, http_msg_invalid);
1685 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001686 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001687
Willy Tarreau8973c702007-01-21 23:58:29 +01001688 /*
1689 * Common states below
1690 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001691 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001692 http_msg_hdr_first:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001693 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001694 if (likely(!HTTP_IS_CRLF(*ptr))) {
1695 goto http_msg_hdr_name;
1696 }
1697
1698 if (likely(*ptr == '\r'))
1699 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1700 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001701
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001702 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001703 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001704 /* assumes msg->sol points to the first char */
1705 if (likely(HTTP_IS_TOKEN(*ptr)))
1706 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001707
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001708 if (likely(*ptr == ':'))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001709 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001710
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001711 if (likely(msg->err_pos < -1) || *ptr == '\n')
1712 goto http_msg_invalid;
1713
1714 if (msg->err_pos == -1) /* capture error pointer */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001715 msg->err_pos = ptr - buf->p; /* >= 0 now */
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001716
1717 /* and we still accept this non-token character */
1718 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001719
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001720 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001721 http_msg_hdr_l1_sp:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001722 /* assumes msg->sol points to the first char */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001723 if (likely(HTTP_IS_SPHT(*ptr)))
1724 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001725
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001726 /* header value can be basically anything except CR/LF */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001727 msg->sov = ptr - buf->p;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001728
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001729 if (likely(!HTTP_IS_CRLF(*ptr))) {
1730 goto http_msg_hdr_val;
1731 }
1732
1733 if (likely(*ptr == '\r'))
1734 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1735 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001736
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001737 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001738 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001739 EXPECT_LF_HERE(ptr, http_msg_invalid);
1740 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001741
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001742 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001743 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001744 if (likely(HTTP_IS_SPHT(*ptr))) {
1745 /* replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001746 for (; buf->p + msg->sov < ptr; msg->sov++)
1747 buf->p[msg->sov] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001748 goto http_msg_hdr_l1_sp;
1749 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001750 /* we had a header consisting only in spaces ! */
Willy Tarreau12e48b32012-03-05 16:57:34 +01001751 msg->eol = msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001752 goto http_msg_complete_header;
1753
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001754 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001755 http_msg_hdr_val:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001756 /* assumes msg->sol points to the first char, and msg->sov
1757 * points to the first character of the value.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001758 */
1759 if (likely(!HTTP_IS_CRLF(*ptr)))
1760 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001761
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001762 msg->eol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001763 /* Note: we could also copy eol into ->eoh so that we have the
1764 * real header end in case it ends with lots of LWS, but is this
1765 * really needed ?
1766 */
1767 if (likely(*ptr == '\r'))
1768 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1769 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001770
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001771 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001772 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001773 EXPECT_LF_HERE(ptr, http_msg_invalid);
1774 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001775
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001776 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001777 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001778 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1779 /* LWS: replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001780 for (; buf->p + msg->eol < ptr; msg->eol++)
1781 buf->p[msg->eol] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001782 goto http_msg_hdr_val;
1783 }
1784 http_msg_complete_header:
1785 /*
1786 * It was a new header, so the last one is finished.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001787 * Assumes msg->sol points to the first char, msg->sov points
1788 * to the first character of the value and msg->eol to the
1789 * first CR or LF so we know how the line ends. We insert last
1790 * header into the index.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001791 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001792 if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r',
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001793 idx, idx->tail) < 0))
1794 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001795
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001796 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001797 if (likely(!HTTP_IS_CRLF(*ptr))) {
1798 goto http_msg_hdr_name;
1799 }
1800
1801 if (likely(*ptr == '\r'))
1802 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1803 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001804
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001805 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001806 http_msg_last_lf:
Willy Tarreau0558a022014-03-13 15:48:45 +01001807 /* Assumes msg->sol points to the first of either CR or LF.
1808 * Sets ->sov and ->next to the total header length, ->eoh to
1809 * the last CRLF, and ->eol to the last CRLF length (1 or 2).
1810 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001811 EXPECT_LF_HERE(ptr, http_msg_invalid);
1812 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001813 msg->sov = msg->next = ptr - buf->p;
Willy Tarreau3a215be2012-03-09 21:39:51 +01001814 msg->eoh = msg->sol;
1815 msg->sol = 0;
Willy Tarreau0558a022014-03-13 15:48:45 +01001816 msg->eol = msg->sov - msg->eoh;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001817 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001818 return;
Willy Tarreaub56928a2012-04-16 14:51:55 +02001819
1820 case HTTP_MSG_ERROR:
1821 /* this may only happen if we call http_msg_analyser() twice with an error */
1822 break;
1823
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001824 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001825#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001826 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1827 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001828#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001829 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001830 }
1831 http_msg_ood:
1832 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001833 msg->msg_state = state;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001834 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001835 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001836
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001837 http_msg_invalid:
1838 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001839 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001840 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001841 return;
1842}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001843
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001844/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1845 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1846 * nothing is done and 1 is returned.
1847 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001848static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001849{
1850 int delta;
1851 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001852 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001853
1854 if (msg->sl.rq.v_l != 0)
1855 return 1;
1856
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001857 /* RFC 1945 allows only GET for HTTP/0.9 requests */
1858 if (txn->meth != HTTP_METH_GET)
1859 return 0;
1860
Willy Tarreau9b28e032012-10-12 23:49:43 +02001861 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001862 delta = 0;
1863
1864 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001865 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
1866 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001867 }
1868 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001869 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001870 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001871 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001872 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001873 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001874 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001875 NULL, NULL);
1876 if (unlikely(!cur_end))
1877 return 0;
1878
1879 /* we have a full HTTP/1.0 request now and we know that
1880 * we have either a CR or an LF at <ptr>.
1881 */
1882 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1883 return 1;
1884}
1885
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001886/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001887 * and "keep-alive" values. If we already know that some headers may safely
1888 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001889 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1890 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01001891 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001892 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1893 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1894 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001895 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001896 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001897void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001898{
Willy Tarreau5b154472009-12-21 20:11:07 +01001899 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001900 const char *hdr_val = "Connection";
1901 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001902
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001903 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001904 return;
1905
Willy Tarreau88d349d2010-01-25 12:15:43 +01001906 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1907 hdr_val = "Proxy-Connection";
1908 hdr_len = 16;
1909 }
1910
Willy Tarreau5b154472009-12-21 20:11:07 +01001911 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001912 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001913 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001914 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1915 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001916 if (to_del & 2)
1917 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001918 else
1919 txn->flags |= TX_CON_KAL_SET;
1920 }
1921 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1922 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001923 if (to_del & 1)
1924 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001925 else
1926 txn->flags |= TX_CON_CLO_SET;
1927 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01001928 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
1929 txn->flags |= TX_HDR_CONN_UPG;
1930 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001931 }
1932
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001933 txn->flags |= TX_HDR_CONN_PRS;
1934 return;
1935}
Willy Tarreau5b154472009-12-21 20:11:07 +01001936
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001937/* Apply desired changes on the Connection: header. Values may be removed and/or
1938 * added depending on the <wanted> flags, which are exclusively composed of
1939 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1940 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1941 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001942void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001943{
1944 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001945 const char *hdr_val = "Connection";
1946 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001947
1948 ctx.idx = 0;
1949
Willy Tarreau88d349d2010-01-25 12:15:43 +01001950
1951 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1952 hdr_val = "Proxy-Connection";
1953 hdr_len = 16;
1954 }
1955
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001956 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001957 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001958 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1959 if (wanted & TX_CON_KAL_SET)
1960 txn->flags |= TX_CON_KAL_SET;
1961 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001962 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01001963 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001964 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1965 if (wanted & TX_CON_CLO_SET)
1966 txn->flags |= TX_CON_CLO_SET;
1967 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001968 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01001969 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001970 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001971
1972 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
1973 return;
1974
1975 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
1976 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001977 hdr_val = "Connection: close";
1978 hdr_len = 17;
1979 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1980 hdr_val = "Proxy-Connection: close";
1981 hdr_len = 23;
1982 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001983 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001984 }
1985
1986 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
1987 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001988 hdr_val = "Connection: keep-alive";
1989 hdr_len = 22;
1990 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1991 hdr_val = "Proxy-Connection: keep-alive";
1992 hdr_len = 28;
1993 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001994 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001995 }
1996 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01001997}
1998
Willy Tarreauc24715e2014-04-17 15:21:20 +02001999/* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to
2000 * the first byte of data after the chunk size, so that we know we can forward
2001 * exactly msg->next bytes. msg->sol contains the exact number of bytes forming
2002 * the chunk size. That way it is always possible to differentiate between the
2003 * start of the body and the start of the data.
Willy Tarreau115acb92009-12-26 13:56:06 +01002004 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002005 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01002006 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002007static inline int http_parse_chunk_size(struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01002008{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002009 const struct buffer *buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002010 const char *ptr = b_ptr(buf, msg->next);
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002011 const char *ptr_old = ptr;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002012 const char *end = buf->data + buf->size;
2013 const char *stop = bi_end(buf);
Willy Tarreau115acb92009-12-26 13:56:06 +01002014 unsigned int chunk = 0;
2015
2016 /* The chunk size is in the following form, though we are only
2017 * interested in the size and CRLF :
2018 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
2019 */
2020 while (1) {
2021 int c;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002022 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01002023 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002024 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01002025 if (c < 0) /* not a hex digit anymore */
2026 break;
Willy Tarreau0161d622013-04-02 01:26:55 +02002027 if (unlikely(++ptr >= end))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002028 ptr = buf->data;
Willy Tarreau431946e2012-02-24 19:20:12 +01002029 if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002030 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002031 chunk = (chunk << 4) + c;
2032 }
2033
Willy Tarreaud98cf932009-12-27 22:54:55 +01002034 /* empty size not allowed */
Willy Tarreau0161d622013-04-02 01:26:55 +02002035 if (unlikely(ptr == ptr_old))
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002036 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002037
2038 while (http_is_spht[(unsigned char)*ptr]) {
2039 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002040 ptr = buf->data;
Willy Tarreau0161d622013-04-02 01:26:55 +02002041 if (unlikely(ptr == stop))
Willy Tarreau115acb92009-12-26 13:56:06 +01002042 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01002043 }
2044
Willy Tarreaud98cf932009-12-27 22:54:55 +01002045 /* Up to there, we know that at least one byte is present at *ptr. Check
2046 * for the end of chunk size.
2047 */
2048 while (1) {
2049 if (likely(HTTP_IS_CRLF(*ptr))) {
2050 /* we now have a CR or an LF at ptr */
2051 if (likely(*ptr == '\r')) {
2052 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002053 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002054 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002055 return 0;
2056 }
Willy Tarreau115acb92009-12-26 13:56:06 +01002057
Willy Tarreaud98cf932009-12-27 22:54:55 +01002058 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002059 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002060 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002061 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002062 /* done */
2063 break;
2064 }
2065 else if (*ptr == ';') {
2066 /* chunk extension, ends at next CRLF */
2067 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002068 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002069 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01002070 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002071
2072 while (!HTTP_IS_CRLF(*ptr)) {
2073 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002074 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002075 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002076 return 0;
2077 }
2078 /* we have a CRLF now, loop above */
2079 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01002080 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002081 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002082 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002083 }
2084
Willy Tarreaud98cf932009-12-27 22:54:55 +01002085 /* OK we found our CRLF and now <ptr> points to the next byte,
Willy Tarreauc24715e2014-04-17 15:21:20 +02002086 * which may or may not be present. We save that into ->next,
2087 * and the number of bytes parsed into msg->sol.
Willy Tarreau115acb92009-12-26 13:56:06 +01002088 */
Willy Tarreauc24715e2014-04-17 15:21:20 +02002089 msg->sol = ptr - ptr_old;
Willy Tarreau0161d622013-04-02 01:26:55 +02002090 if (unlikely(ptr < ptr_old))
Willy Tarreauc24715e2014-04-17 15:21:20 +02002091 msg->sol += buf->size;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002092 msg->next = buffer_count(buf, buf->p, ptr);
Willy Tarreau124d9912011-03-01 20:30:48 +01002093 msg->chunk_len = chunk;
2094 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002095 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002096 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002097 error:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002098 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002099 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002100}
2101
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002102/* This function skips trailers in the buffer associated with HTTP
Willy Tarreaua458b672012-03-05 11:17:50 +01002103 * message <msg>. The first visited position is msg->next. If the end of
Willy Tarreaud98cf932009-12-27 22:54:55 +01002104 * the trailers is found, it is automatically scheduled to be forwarded,
2105 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2106 * If not enough data are available, the function does not change anything
Willy Tarreauc24715e2014-04-17 15:21:20 +02002107 * except maybe msg->next if it could parse some lines, and returns zero.
2108 * If a parse error is encountered, the function returns < 0 and does not
2109 * change anything except maybe msg->next. Note that the message must
2110 * already be in HTTP_MSG_TRAILERS state before calling this function,
Willy Tarreau638cd022010-01-03 07:42:04 +01002111 * which implies that all non-trailers data have already been scheduled for
Willy Tarreauc24715e2014-04-17 15:21:20 +02002112 * forwarding, and that msg->next exactly matches the length of trailers
2113 * already parsed and not forwarded. It is also important to note that this
2114 * function is designed to be able to parse wrapped headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002115 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002116static int http_forward_trailers(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002117{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002118 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002119
Willy Tarreaua458b672012-03-05 11:17:50 +01002120 /* we have msg->next which points to next line. Look for CRLF. */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002121 while (1) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002122 const char *p1 = NULL, *p2 = NULL;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002123 const char *ptr = b_ptr(buf, msg->next);
2124 const char *stop = bi_end(buf);
Willy Tarreau638cd022010-01-03 07:42:04 +01002125 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002126
2127 /* scan current line and stop at LF or CRLF */
2128 while (1) {
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002129 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002130 return 0;
2131
2132 if (*ptr == '\n') {
2133 if (!p1)
2134 p1 = ptr;
2135 p2 = ptr;
2136 break;
2137 }
2138
2139 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002140 if (p1) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002141 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002142 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002143 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002144 p1 = ptr;
2145 }
2146
2147 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002148 if (ptr >= buf->data + buf->size)
2149 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002150 }
2151
2152 /* after LF; point to beginning of next line */
2153 p2++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002154 if (p2 >= buf->data + buf->size)
2155 p2 = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002156
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002157 bytes = p2 - b_ptr(buf, msg->next);
Willy Tarreau638cd022010-01-03 07:42:04 +01002158 if (bytes < 0)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002159 bytes += buf->size;
Willy Tarreau638cd022010-01-03 07:42:04 +01002160
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002161 if (p1 == b_ptr(buf, msg->next)) {
Willy Tarreau638cd022010-01-03 07:42:04 +01002162 /* LF/CRLF at beginning of line => end of trailers at p2.
2163 * Everything was scheduled for forwarding, there's nothing
2164 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002165 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002166 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002167 msg->msg_state = HTTP_MSG_DONE;
2168 return 1;
2169 }
2170 /* OK, next line then */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002171 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002172 }
2173}
2174
Willy Tarreauc24715e2014-04-17 15:21:20 +02002175/* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF
2176 * or a possible LF alone at the end of a chunk. It automatically adjusts
2177 * msg->next in order to include this part into the next forwarding phase.
Willy Tarreaua458b672012-03-05 11:17:50 +01002178 * Note that the caller must ensure that ->p points to the first byte to parse.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002179 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2180 * not enough data are available, the function does not change anything and
2181 * returns zero. If a parse error is encountered, the function returns < 0 and
2182 * does not change anything. Note: this function is designed to parse wrapped
2183 * CRLF at the end of the buffer.
2184 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002185static inline int http_skip_chunk_crlf(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002186{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002187 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002188 const char *ptr;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002189 int bytes;
2190
2191 /* NB: we'll check data availabilty at the end. It's not a
2192 * problem because whatever we match first will be checked
2193 * against the correct length.
2194 */
2195 bytes = 1;
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002196 ptr = b_ptr(buf, msg->next);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002197 if (*ptr == '\r') {
2198 bytes++;
2199 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002200 if (ptr >= buf->data + buf->size)
2201 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002202 }
2203
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002204 if (msg->next + bytes > buf->i)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002205 return 0;
2206
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002207 if (*ptr != '\n') {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002208 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002209 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002210 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002211
2212 ptr++;
Willy Tarreau0161d622013-04-02 01:26:55 +02002213 if (unlikely(ptr >= buf->data + buf->size))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002214 ptr = buf->data;
Willy Tarreauc24715e2014-04-17 15:21:20 +02002215 /* Advance ->next to allow the CRLF to be forwarded */
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002216 msg->next += bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002217 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2218 return 1;
2219}
Willy Tarreau5b154472009-12-21 20:11:07 +01002220
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002221/* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the
2222 * value is larger than 1000, it is bound to 1000. The parser consumes up to
2223 * 1 digit, one dot and 3 digits and stops on the first invalid character.
2224 * Unparsable qvalues return 1000 as "q=1.000".
2225 */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002226int parse_qvalue(const char *qvalue, const char **end)
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002227{
2228 int q = 1000;
2229
Willy Tarreau506c69a2014-07-08 00:59:48 +02002230 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002231 goto out;
2232 q = (*qvalue++ - '0') * 1000;
2233
2234 if (*qvalue++ != '.')
2235 goto out;
2236
Willy Tarreau506c69a2014-07-08 00:59:48 +02002237 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002238 goto out;
2239 q += (*qvalue++ - '0') * 100;
2240
Willy Tarreau506c69a2014-07-08 00:59:48 +02002241 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002242 goto out;
2243 q += (*qvalue++ - '0') * 10;
2244
Willy Tarreau506c69a2014-07-08 00:59:48 +02002245 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002246 goto out;
2247 q += (*qvalue++ - '0') * 1;
2248 out:
2249 if (q > 1000)
2250 q = 1000;
Willy Tarreau38b3aa52014-04-22 23:32:05 +02002251 if (end)
Thierry FOURNIERad903512014-04-11 17:51:01 +02002252 *end = qvalue;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002253 return q;
2254}
William Lallemand82fe75c2012-10-23 10:25:10 +02002255
2256/*
2257 * Selects a compression algorithm depending on the client request.
Willy Tarreau05d84602012-10-26 02:11:25 +02002258 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002259int select_compression_request_header(struct stream *s, struct buffer *req)
William Lallemand82fe75c2012-10-23 10:25:10 +02002260{
Willy Tarreaueee5b512015-04-03 23:46:31 +02002261 struct http_txn *txn = s->txn;
Willy Tarreau70737d12012-10-27 00:34:28 +02002262 struct http_msg *msg = &txn->req;
William Lallemand82fe75c2012-10-23 10:25:10 +02002263 struct hdr_ctx ctx;
2264 struct comp_algo *comp_algo = NULL;
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002265 struct comp_algo *comp_algo_back = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002266
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002267 /* Disable compression for older user agents announcing themselves as "Mozilla/4"
2268 * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later).
Willy Tarreau05d84602012-10-26 02:11:25 +02002269 * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details.
2270 */
2271 ctx.idx = 0;
2272 if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) &&
2273 ctx.vlen >= 9 &&
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002274 memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 &&
2275 (ctx.vlen < 31 ||
2276 memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 ||
2277 ctx.line[ctx.val + 30] < '6' ||
2278 (ctx.line[ctx.val + 30] == '6' &&
2279 (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) {
2280 s->comp_algo = NULL;
2281 return 0;
Willy Tarreau05d84602012-10-26 02:11:25 +02002282 }
2283
William Lallemand82fe75c2012-10-23 10:25:10 +02002284 /* search for the algo in the backend in priority or the frontend */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002285 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (strm_fe(s)->comp && (comp_algo_back = strm_fe(s)->comp->algos))) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002286 int best_q = 0;
2287
William Lallemand82fe75c2012-10-23 10:25:10 +02002288 ctx.idx = 0;
2289 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002290 const char *qval;
2291 int q;
2292 int toklen;
2293
2294 /* try to isolate the token from the optional q-value */
2295 toklen = 0;
2296 while (toklen < ctx.vlen && http_is_token[(unsigned char)*(ctx.line + ctx.val + toklen)])
2297 toklen++;
2298
2299 qval = ctx.line + ctx.val + toklen;
2300 while (1) {
2301 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2302 qval++;
2303
2304 if (qval >= ctx.line + ctx.val + ctx.vlen || *qval != ';') {
2305 qval = NULL;
2306 break;
2307 }
2308 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002309
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002310 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2311 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002312
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002313 if (qval >= ctx.line + ctx.val + ctx.vlen) {
2314 qval = NULL;
2315 break;
William Lallemand82fe75c2012-10-23 10:25:10 +02002316 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002317 if (strncmp(qval, "q=", MIN(ctx.line + ctx.val + ctx.vlen - qval, 2)) == 0)
2318 break;
2319
2320 while (qval < ctx.line + ctx.val + ctx.vlen && *qval != ';')
2321 qval++;
2322 }
2323
2324 /* here we have qval pointing to the first "q=" attribute or NULL if not found */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002325 q = qval ? parse_qvalue(qval + 2, NULL) : 1000;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002326
2327 if (q <= best_q)
2328 continue;
2329
2330 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
2331 if (*(ctx.line + ctx.val) == '*' ||
Willy Tarreau615105e2015-03-28 16:40:46 +01002332 word_match(ctx.line + ctx.val, toklen, comp_algo->ua_name, comp_algo->ua_name_len)) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002333 s->comp_algo = comp_algo;
2334 best_q = q;
2335 break;
2336 }
2337 }
2338 }
2339 }
2340
2341 /* remove all occurrences of the header when "compression offload" is set */
2342 if (s->comp_algo) {
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002343 if ((s->be->comp && s->be->comp->offload) || (strm_fe(s)->comp && strm_fe(s)->comp->offload)) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002344 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2345 ctx.idx = 0;
2346 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
2347 http_remove_header2(msg, &txn->hdr_idx, &ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +02002348 }
2349 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002350 return 1;
William Lallemand82fe75c2012-10-23 10:25:10 +02002351 }
2352
2353 /* identity is implicit does not require headers */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002354 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (strm_fe(s)->comp && (comp_algo_back = strm_fe(s)->comp->algos))) {
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002355 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
Willy Tarreau615105e2015-03-28 16:40:46 +01002356 if (comp_algo->cfg_name_len == 8 && memcmp(comp_algo->cfg_name, "identity", 8) == 0) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002357 s->comp_algo = comp_algo;
2358 return 1;
2359 }
2360 }
2361 }
2362
2363 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002364 return 0;
2365}
2366
2367/*
2368 * Selects a comression algorithm depending of the server response.
2369 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002370int select_compression_response_header(struct stream *s, struct buffer *res)
William Lallemand82fe75c2012-10-23 10:25:10 +02002371{
Willy Tarreaueee5b512015-04-03 23:46:31 +02002372 struct http_txn *txn = s->txn;
William Lallemand82fe75c2012-10-23 10:25:10 +02002373 struct http_msg *msg = &txn->rsp;
2374 struct hdr_ctx ctx;
2375 struct comp_type *comp_type;
William Lallemand82fe75c2012-10-23 10:25:10 +02002376
2377 /* no common compression algorithm was found in request header */
2378 if (s->comp_algo == NULL)
2379 goto fail;
2380
2381 /* HTTP < 1.1 should not be compressed */
Willy Tarreau72575502013-12-24 14:41:35 +01002382 if (!(msg->flags & HTTP_MSGF_VER_11) || !(txn->req.flags & HTTP_MSGF_VER_11))
William Lallemand82fe75c2012-10-23 10:25:10 +02002383 goto fail;
2384
Jesse Hathaway2468d4e2015-03-06 20:16:15 +00002385 /* compress 200,201,202,203 responses only */
2386 if ((txn->status != 200) &&
2387 (txn->status != 201) &&
2388 (txn->status != 202) &&
2389 (txn->status != 203))
William Lallemandd3002612012-11-26 14:34:47 +01002390 goto fail;
2391
William Lallemand82fe75c2012-10-23 10:25:10 +02002392 /* Content-Length is null */
2393 if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0)
2394 goto fail;
2395
2396 /* content is already compressed */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002397 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002398 if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx))
2399 goto fail;
2400
Willy Tarreau56e9ffa2013-01-05 16:20:35 +01002401 /* no compression when Cache-Control: no-transform is present in the message */
2402 ctx.idx = 0;
2403 while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) {
2404 if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12))
2405 goto fail;
2406 }
2407
William Lallemand82fe75c2012-10-23 10:25:10 +02002408 comp_type = NULL;
2409
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002410 /* we don't want to compress multipart content-types, nor content-types that are
2411 * not listed in the "compression type" directive if any. If no content-type was
2412 * found but configuration requires one, we don't compress either. Backend has
2413 * the priority.
William Lallemand82fe75c2012-10-23 10:25:10 +02002414 */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002415 ctx.idx = 0;
2416 if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) {
2417 if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0)
2418 goto fail;
2419
2420 if ((s->be->comp && (comp_type = s->be->comp->types)) ||
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002421 (strm_fe(s)->comp && (comp_type = strm_fe(s)->comp->types))) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002422 for (; comp_type; comp_type = comp_type->next) {
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002423 if (ctx.vlen >= comp_type->name_len &&
2424 strncasecmp(ctx.line+ctx.val, comp_type->name, comp_type->name_len) == 0)
William Lallemand82fe75c2012-10-23 10:25:10 +02002425 /* this Content-Type should be compressed */
2426 break;
2427 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002428 /* this Content-Type should not be compressed */
2429 if (comp_type == NULL)
2430 goto fail;
William Lallemand82fe75c2012-10-23 10:25:10 +02002431 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002432 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002433 else { /* no content-type header */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002434 if ((s->be->comp && s->be->comp->types) || (strm_fe(s)->comp && strm_fe(s)->comp->types))
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002435 goto fail; /* a content-type was required */
William Lallemandd3002612012-11-26 14:34:47 +01002436 }
2437
William Lallemandd85f9172012-11-09 17:05:39 +01002438 /* limit compression rate */
2439 if (global.comp_rate_lim > 0)
2440 if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim)
2441 goto fail;
2442
William Lallemand072a2bf2012-11-20 17:01:01 +01002443 /* limit cpu usage */
2444 if (idle_pct < compress_min_idle)
2445 goto fail;
2446
William Lallemand4c49fae2012-11-07 15:00:23 +01002447 /* initialize compression */
William Lallemandf3747832012-11-09 12:33:10 +01002448 if (s->comp_algo->init(&s->comp_ctx, global.tune.comp_maxlevel) < 0)
William Lallemand4c49fae2012-11-07 15:00:23 +01002449 goto fail;
2450
Willy Tarreaue7dff022015-04-03 01:14:29 +02002451 s->flags |= SF_COMP_READY;
William Lallemandec3e3892012-11-12 17:02:18 +01002452
William Lallemand82fe75c2012-10-23 10:25:10 +02002453 /* remove Content-Length header */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002454 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002455 if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx))
2456 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2457
2458 /* add Transfer-Encoding header */
2459 if (!(msg->flags & HTTP_MSGF_TE_CHNK))
2460 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26);
2461
2462 /*
2463 * Add Content-Encoding header when it's not identity encoding.
2464 * RFC 2616 : Identity encoding: This content-coding is used only in the
2465 * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding
2466 * header.
2467 */
Willy Tarreau615105e2015-03-28 16:40:46 +01002468 if (s->comp_algo->cfg_name_len != 8 || memcmp(s->comp_algo->cfg_name, "identity", 8) != 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002469 trash.len = 18;
2470 memcpy(trash.str, "Content-Encoding: ", trash.len);
Willy Tarreau615105e2015-03-28 16:40:46 +01002471 memcpy(trash.str + trash.len, s->comp_algo->ua_name, s->comp_algo->ua_name_len);
2472 trash.len += s->comp_algo->ua_name_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002473 trash.str[trash.len] = '\0';
2474 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
William Lallemand82fe75c2012-10-23 10:25:10 +02002475 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002476 return 1;
2477
2478fail:
Willy Tarreaub97b6192012-11-19 14:55:02 +01002479 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002480 return 0;
2481}
2482
Willy Tarreau87b09662015-04-03 00:22:06 +02002483void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg)
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002484{
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002485 struct proxy *fe = strm_fe(s);
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002486 int tmp = TX_CON_WANT_KAL;
2487
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002488 if (!((fe->options2|s->be->options2) & PR_O2_FAKE_KA)) {
2489 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002490 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
2491 tmp = TX_CON_WANT_TUN;
2492
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002493 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002494 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2495 tmp = TX_CON_WANT_TUN;
2496 }
2497
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002498 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002499 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) {
2500 /* option httpclose + server_close => forceclose */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002501 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002502 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2503 tmp = TX_CON_WANT_CLO;
2504 else
2505 tmp = TX_CON_WANT_SCL;
2506 }
2507
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002508 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002509 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
2510 tmp = TX_CON_WANT_CLO;
2511
2512 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
2513 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
2514
2515 if (!(txn->flags & TX_HDR_CONN_PRS) &&
2516 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
2517 /* parse the Connection header and possibly clean it */
2518 int to_del = 0;
2519 if ((msg->flags & HTTP_MSGF_VER_11) ||
2520 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002521 !((fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002522 to_del |= 2; /* remove "keep-alive" */
2523 if (!(msg->flags & HTTP_MSGF_VER_11))
2524 to_del |= 1; /* remove "close" */
2525 http_parse_connection_header(txn, msg, to_del);
2526 }
2527
2528 /* check if client or config asks for explicit close in KAL/SCL */
2529 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
2530 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
2531 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
2532 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
2533 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002534 fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002535 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
2536}
William Lallemand82fe75c2012-10-23 10:25:10 +02002537
Willy Tarreaud787e662009-07-07 10:14:51 +02002538/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2539 * processing can continue on next analysers, or zero if it either needs more
2540 * data or wants to immediately abort the request (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002541 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
Willy Tarreaud787e662009-07-07 10:14:51 +02002542 * when it has nothing left to do, and may remove any analyser when it wants to
2543 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002544 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002545int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002546{
Willy Tarreau59234e92008-11-30 23:51:27 +01002547 /*
2548 * We will parse the partial (or complete) lines.
2549 * We will check the request syntax, and also join multi-line
2550 * headers. An index of all the lines will be elaborated while
2551 * parsing.
2552 *
2553 * For the parsing, we use a 28 states FSM.
2554 *
2555 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02002556 * req->buf->p = beginning of request
2557 * req->buf->p + msg->eoh = end of processed headers / start of current one
2558 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02002559 * msg->eol = end of current header or line (LF or CRLF)
2560 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02002561 *
2562 * At end of parsing, we may perform a capture of the error (if any), and
Willy Tarreaue7dff022015-04-03 01:14:29 +02002563 * we will set a few fields (txn->meth, sn->flags/SF_REDIRECTABLE).
Willy Tarreaud787e662009-07-07 10:14:51 +02002564 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2565 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002566 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002567
Willy Tarreau59234e92008-11-30 23:51:27 +01002568 int cur_idx;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002569 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002570 struct http_txn *txn = s->txn;
Willy Tarreau59234e92008-11-30 23:51:27 +01002571 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002572 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002573
Willy Tarreau87b09662015-04-03 00:22:06 +02002574 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +01002575 now_ms, __FUNCTION__,
2576 s,
2577 req,
2578 req->rex, req->wex,
2579 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002580 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01002581 req->analysers);
2582
Willy Tarreau52a0c602009-08-16 22:45:38 +02002583 /* we're speaking HTTP here, so let's speak HTTP to the client */
2584 s->srv_error = http_return_srv_error;
2585
Willy Tarreau83e3af02009-12-28 17:39:57 +01002586 /* There's a protected area at the end of the buffer for rewriting
2587 * purposes. We don't want to start to parse the request if the
2588 * protected area is affected, because we may have to move processed
2589 * data later, which is much more complicated.
2590 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002591 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +02002592 if (txn->flags & TX_NOT_FIRST) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01002593 if (unlikely(!channel_is_rewritable(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002594 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002595 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002596 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002597 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002598 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002599 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002600 return 0;
2601 }
Willy Tarreau379357a2013-06-08 12:55:46 +02002602 if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2603 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite))
2604 buffer_slow_realign(req->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002605 }
2606
Willy Tarreau065e8332010-01-08 00:30:20 +01002607 /* Note that we have the same problem with the response ; we
2608 * may want to send a redirect, error or anything which requires
2609 * some spare space. So we'll ensure that we have at least
2610 * maxrewrite bytes available in the response buffer before
2611 * processing that one. This will only affect pipelined
2612 * keep-alive requests.
2613 */
2614 if ((txn->flags & TX_NOT_FIRST) &&
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002615 unlikely(!channel_is_rewritable(&s->res) ||
2616 bi_end(s->res.buf) < b_ptr(s->res.buf, txn->rsp.next) ||
2617 bi_end(s->res.buf) > s->res.buf->data + s->res.buf->size - global.tune.maxrewrite)) {
2618 if (s->res.buf->o) {
2619 if (s->res.flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002620 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002621 /* don't let a connection request be initiated */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002622 channel_dont_connect(req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002623 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
2624 s->res.flags |= CF_WAKE_WRITE;
2625 s->res.analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002626 return 0;
2627 }
2628 }
2629
Willy Tarreau9b28e032012-10-12 23:49:43 +02002630 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01002631 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002632 }
2633
Willy Tarreau59234e92008-11-30 23:51:27 +01002634 /* 1: we might have to print this header in debug mode */
2635 if (unlikely((global.mode & MODE_DEBUG) &&
2636 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02002637 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002638 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002639
Willy Tarreau9b28e032012-10-12 23:49:43 +02002640 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02002641 /* this is a bit complex : in case of error on the request line,
2642 * we know that rq.l is still zero, so we display only the part
2643 * up to the end of the line (truncated by debug_hdr).
2644 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002645 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01002646 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002647
Willy Tarreau59234e92008-11-30 23:51:27 +01002648 sol += hdr_idx_first_pos(&txn->hdr_idx);
2649 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002650
Willy Tarreau59234e92008-11-30 23:51:27 +01002651 while (cur_idx) {
2652 eol = sol + txn->hdr_idx.v[cur_idx].len;
2653 debug_hdr("clihdr", s, sol, eol);
2654 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2655 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002656 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002657 }
2658
Willy Tarreau58f10d72006-12-04 02:26:12 +01002659
Willy Tarreau59234e92008-11-30 23:51:27 +01002660 /*
2661 * Now we quickly check if we have found a full valid request.
2662 * If not so, we check the FD and buffer states before leaving.
2663 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002664 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002665 * requests are checked first. When waiting for a second request
Willy Tarreau87b09662015-04-03 00:22:06 +02002666 * on a keep-alive stream, if we encounter and error, close, t/o,
2667 * we note the error in the stream flags but don't set any state.
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002668 * Since the error will be noted there, it will not be counted by
Willy Tarreau87b09662015-04-03 00:22:06 +02002669 * process_stream() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002670 * Last, we may increase some tracked counters' http request errors on
2671 * the cases that are deliberately the client's fault. For instance,
2672 * a timeout or connection reset is not counted as an error. However
2673 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002674 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002675
Willy Tarreau655dce92009-11-08 13:10:58 +01002676 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002677 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002678 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002679 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002680 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02002681 stream_inc_http_req_ctr(s);
2682 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002683 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002684 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002685 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002686
Willy Tarreau59234e92008-11-30 23:51:27 +01002687 /* 1: Since we are in header mode, if there's no space
2688 * left for headers, we won't be able to free more
Willy Tarreau87b09662015-04-03 00:22:06 +02002689 * later, so the stream will never terminate. We
Willy Tarreau59234e92008-11-30 23:51:27 +01002690 * must terminate it now.
2691 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002692 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002693 /* FIXME: check if URI is set and return Status
2694 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002695 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002696 stream_inc_http_req_ctr(s);
2697 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002698 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002699 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02002700 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01002701 goto return_bad_req;
2702 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002703
Willy Tarreau59234e92008-11-30 23:51:27 +01002704 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002705 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002706 if (!(s->flags & SF_ERR_MASK))
2707 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002708
Willy Tarreaufcffa692010-01-10 14:21:19 +01002709 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002710 goto failed_keep_alive;
2711
Willy Tarreau0f228a02015-05-01 15:37:53 +02002712 if (sess->fe->options & PR_O_IGNORE_PRB)
2713 goto failed_keep_alive;
2714
Willy Tarreau59234e92008-11-30 23:51:27 +01002715 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002716 if (msg->err_pos >= 0) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002717 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +02002718 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002719 }
2720
Willy Tarreaudc979f22012-12-04 10:39:01 +01002721 txn->status = 400;
Willy Tarreau350f4872014-11-28 14:42:25 +01002722 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreau59234e92008-11-30 23:51:27 +01002723 msg->msg_state = HTTP_MSG_ERROR;
2724 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002725
Willy Tarreau87b09662015-04-03 00:22:06 +02002726 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002727 proxy_inc_fe_req_ctr(sess->fe);
2728 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002729 if (sess->listener->counters)
2730 sess->listener->counters->failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002731
Willy Tarreaue7dff022015-04-03 01:14:29 +02002732 if (!(s->flags & SF_FINST_MASK))
2733 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +01002734 return 0;
2735 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002736
Willy Tarreau59234e92008-11-30 23:51:27 +01002737 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002738 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002739 if (!(s->flags & SF_ERR_MASK))
2740 s->flags |= SF_ERR_CLITO;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002741
Willy Tarreaufcffa692010-01-10 14:21:19 +01002742 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002743 goto failed_keep_alive;
2744
Willy Tarreau0f228a02015-05-01 15:37:53 +02002745 if (sess->fe->options & PR_O_IGNORE_PRB)
2746 goto failed_keep_alive;
2747
Willy Tarreau59234e92008-11-30 23:51:27 +01002748 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002749 if (msg->err_pos >= 0) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002750 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +02002751 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002752 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002753 txn->status = 408;
Willy Tarreau350f4872014-11-28 14:42:25 +01002754 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_408));
Willy Tarreau59234e92008-11-30 23:51:27 +01002755 msg->msg_state = HTTP_MSG_ERROR;
2756 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002757
Willy Tarreau87b09662015-04-03 00:22:06 +02002758 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002759 proxy_inc_fe_req_ctr(sess->fe);
2760 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002761 if (sess->listener->counters)
2762 sess->listener->counters->failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002763
Willy Tarreaue7dff022015-04-03 01:14:29 +02002764 if (!(s->flags & SF_FINST_MASK))
2765 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +01002766 return 0;
2767 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002768
Willy Tarreau59234e92008-11-30 23:51:27 +01002769 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002770 else if (req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002771 if (!(s->flags & SF_ERR_MASK))
2772 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002773
Willy Tarreaufcffa692010-01-10 14:21:19 +01002774 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002775 goto failed_keep_alive;
2776
Willy Tarreau0f228a02015-05-01 15:37:53 +02002777 if (sess->fe->options & PR_O_IGNORE_PRB)
2778 goto failed_keep_alive;
2779
Willy Tarreau4076a152009-04-02 15:18:36 +02002780 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002781 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002782 txn->status = 400;
Willy Tarreau350f4872014-11-28 14:42:25 +01002783 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Willy Tarreau59234e92008-11-30 23:51:27 +01002784 msg->msg_state = HTTP_MSG_ERROR;
2785 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002786
Willy Tarreau87b09662015-04-03 00:22:06 +02002787 stream_inc_http_err_ctr(s);
2788 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002789 proxy_inc_fe_req_ctr(sess->fe);
2790 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002791 if (sess->listener->counters)
2792 sess->listener->counters->failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002793
Willy Tarreaue7dff022015-04-03 01:14:29 +02002794 if (!(s->flags & SF_FINST_MASK))
2795 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002796 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002797 }
2798
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002799 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002800 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002801 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01002802#ifdef TCP_QUICKACK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002803 if (sess->listener->options & LI_O_NOQUICKACK && req->buf->i &&
2804 objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) {
Willy Tarreau5e205522011-12-17 16:34:27 +01002805 /* We need more data, we have to re-enable quick-ack in case we
2806 * previously disabled it, otherwise we might cause the client
2807 * to delay next data.
2808 */
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002809 setsockopt(__objt_conn(sess->origin)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01002810 }
2811#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002812
Willy Tarreaufcffa692010-01-10 14:21:19 +01002813 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2814 /* If the client starts to talk, let's fall back to
2815 * request timeout processing.
2816 */
2817 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002818 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002819 }
2820
Willy Tarreau59234e92008-11-30 23:51:27 +01002821 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002822 if (!tick_isset(req->analyse_exp)) {
2823 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2824 (txn->flags & TX_WAIT_NEXT_RQ) &&
2825 tick_isset(s->be->timeout.httpka))
2826 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2827 else
2828 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2829 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002830
Willy Tarreau59234e92008-11-30 23:51:27 +01002831 /* we're not ready yet */
2832 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002833
2834 failed_keep_alive:
2835 /* Here we process low-level errors for keep-alive requests. In
2836 * short, if the request is not the first one and it experiences
2837 * a timeout, read error or shutdown, we just silently close so
2838 * that the client can try again.
2839 */
2840 txn->status = 0;
2841 msg->msg_state = HTTP_MSG_RQBEFORE;
2842 req->analysers = 0;
2843 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +02002844 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002845 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau350f4872014-11-28 14:42:25 +01002846 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002847 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002848 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002849
Willy Tarreaud787e662009-07-07 10:14:51 +02002850 /* OK now we have a complete HTTP request with indexed headers. Let's
2851 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02002852 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01002853 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01002854 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002855 * byte after the last LF. msg->sov points to the first byte of data.
2856 * msg->eol cannot be trusted because it may have been left uninitialized
2857 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002858 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002859
Willy Tarreau87b09662015-04-03 00:22:06 +02002860 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002861 proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002862
Willy Tarreaub16a5742010-01-10 14:46:16 +01002863 if (txn->flags & TX_WAIT_NEXT_RQ) {
2864 /* kill the pending keep-alive timeout */
2865 txn->flags &= ~TX_WAIT_NEXT_RQ;
2866 req->analyse_exp = TICK_ETERNITY;
2867 }
2868
2869
Willy Tarreaud787e662009-07-07 10:14:51 +02002870 /* Maybe we found in invalid header name while we were configured not
2871 * to block on that, so we have to capture it now.
2872 */
2873 if (unlikely(msg->err_pos >= 0))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002874 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002875
Willy Tarreau59234e92008-11-30 23:51:27 +01002876 /*
2877 * 1: identify the method
2878 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002879 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002880
2881 /* we can make use of server redirect on GET and HEAD */
2882 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +02002883 s->flags |= SF_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002884
Willy Tarreau59234e92008-11-30 23:51:27 +01002885 /*
2886 * 2: check if the URI matches the monitor_uri.
2887 * We have to do this for every request which gets in, because
2888 * the monitor-uri is defined by the frontend.
2889 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002890 if (unlikely((sess->fe->monitor_uri_len != 0) &&
2891 (sess->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002892 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002893 sess->fe->monitor_uri,
2894 sess->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002895 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002896 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002897 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002898 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002899
Willy Tarreaue7dff022015-04-03 01:14:29 +02002900 s->flags |= SF_MONITOR;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002901 sess->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002902
Willy Tarreau59234e92008-11-30 23:51:27 +01002903 /* Check if we want to fail this monitor request or not */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002904 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
Willy Tarreau192252e2015-04-04 01:47:55 +02002905 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02002906
Willy Tarreau59234e92008-11-30 23:51:27 +01002907 ret = acl_pass(ret);
2908 if (cond->pol == ACL_COND_UNLESS)
2909 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002910
Willy Tarreau59234e92008-11-30 23:51:27 +01002911 if (ret) {
2912 /* we fail this request, let's return 503 service unavail */
2913 txn->status = 503;
Willy Tarreau350f4872014-11-28 14:42:25 +01002914 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_503));
Willy Tarreaue7dff022015-04-03 01:14:29 +02002915 if (!(s->flags & SF_ERR_MASK))
2916 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002917 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002918 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002919 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002920
Willy Tarreau59234e92008-11-30 23:51:27 +01002921 /* nothing to fail, let's reply normaly */
2922 txn->status = 200;
Willy Tarreau350f4872014-11-28 14:42:25 +01002923 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_200));
Willy Tarreaue7dff022015-04-03 01:14:29 +02002924 if (!(s->flags & SF_ERR_MASK))
2925 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002926 goto return_prx_cond;
2927 }
2928
2929 /*
2930 * 3: Maybe we have to copy the original REQURI for the logs ?
2931 * Note: we cannot log anymore if the request has been
2932 * classified as invalid.
2933 */
2934 if (unlikely(s->logs.logwait & LW_REQ)) {
2935 /* we have a complete HTTP request that we must log */
2936 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2937 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002938
Willy Tarreau59234e92008-11-30 23:51:27 +01002939 if (urilen >= REQURI_LEN)
2940 urilen = REQURI_LEN - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02002941 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01002942 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002943
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002944 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01002945 s->do_log(s);
2946 } else {
2947 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002948 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002949 }
Willy Tarreau06619262006-12-17 08:37:22 +01002950
Willy Tarreau91852eb2015-05-01 13:26:00 +02002951 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
2952 * exactly one digit "." one digit. This check may be disabled using
2953 * option accept-invalid-http-request.
2954 */
2955 if (!(sess->fe->options2 & PR_O2_REQBUG_OK)) {
2956 if (msg->sl.rq.v_l != 8) {
2957 msg->err_pos = msg->sl.rq.v;
2958 goto return_bad_req;
2959 }
2960
2961 if (req->buf->p[msg->sl.rq.v + 4] != '/' ||
2962 !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 5]) ||
2963 req->buf->p[msg->sl.rq.v + 6] != '.' ||
2964 !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 7])) {
2965 msg->err_pos = msg->sl.rq.v + 4;
2966 goto return_bad_req;
2967 }
2968 }
Willy Tarreau13317662015-05-01 13:47:08 +02002969 else {
2970 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
2971 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
2972 goto return_bad_req;
2973 }
Willy Tarreau91852eb2015-05-01 13:26:00 +02002974
Willy Tarreau5b154472009-12-21 20:11:07 +01002975 /* ... and check if the request is HTTP/1.1 or above */
2976 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002977 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
2978 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
2979 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002980 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01002981
2982 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01002983 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL | TX_HDR_CONN_UPG);
Willy Tarreau5b154472009-12-21 20:11:07 +01002984
Willy Tarreau88d349d2010-01-25 12:15:43 +01002985 /* if the frontend has "option http-use-proxy-header", we'll check if
2986 * we have what looks like a proxied connection instead of a connection,
2987 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2988 * Note that this is *not* RFC-compliant, however browsers and proxies
2989 * happen to do that despite being non-standard :-(
2990 * We consider that a request not beginning with either '/' or '*' is
2991 * a proxied connection, which covers both "scheme://location" and
2992 * CONNECT ip:port.
2993 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002994 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002995 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01002996 txn->flags |= TX_USE_PX_CONN;
2997
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002998 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002999 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003000
Willy Tarreau59234e92008-11-30 23:51:27 +01003001 /* 5: we may need to capture headers */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02003002 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02003003 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreaucb7dd012015-04-03 22:16:32 +02003004 s->req_cap, sess->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02003005
Willy Tarreau557f1992015-05-01 10:05:17 +02003006 /* 6: determine the transfer-length according to RFC2616 #4.4, updated
3007 * by RFC7230#3.3.3 :
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003008 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003009 * The length of a message body is determined by one of the following
3010 * (in order of precedence):
Willy Tarreau32b47f42009-10-18 20:55:02 +02003011 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003012 * 1. Any response to a HEAD request and any response with a 1xx
3013 * (Informational), 204 (No Content), or 304 (Not Modified) status
3014 * code is always terminated by the first empty line after the
3015 * header fields, regardless of the header fields present in the
3016 * message, and thus cannot contain a message body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02003017 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003018 * 2. Any 2xx (Successful) response to a CONNECT request implies that
3019 * the connection will become a tunnel immediately after the empty
3020 * line that concludes the header fields. A client MUST ignore any
3021 * Content-Length or Transfer-Encoding header fields received in
3022 * such a message.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003023 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003024 * 3. If a Transfer-Encoding header field is present and the chunked
3025 * transfer coding (Section 4.1) is the final encoding, the message
3026 * body length is determined by reading and decoding the chunked
3027 * data until the transfer coding indicates the data is complete.
3028 *
3029 * If a Transfer-Encoding header field is present in a response and
3030 * the chunked transfer coding is not the final encoding, the
3031 * message body length is determined by reading the connection until
3032 * it is closed by the server. If a Transfer-Encoding header field
3033 * is present in a request and the chunked transfer coding is not
3034 * the final encoding, the message body length cannot be determined
3035 * reliably; the server MUST respond with the 400 (Bad Request)
3036 * status code and then close the connection.
3037 *
3038 * If a message is received with both a Transfer-Encoding and a
3039 * Content-Length header field, the Transfer-Encoding overrides the
3040 * Content-Length. Such a message might indicate an attempt to
3041 * perform request smuggling (Section 9.5) or response splitting
3042 * (Section 9.4) and ought to be handled as an error. A sender MUST
3043 * remove the received Content-Length field prior to forwarding such
3044 * a message downstream.
3045 *
3046 * 4. If a message is received without Transfer-Encoding and with
3047 * either multiple Content-Length header fields having differing
3048 * field-values or a single Content-Length header field having an
3049 * invalid value, then the message framing is invalid and the
3050 * recipient MUST treat it as an unrecoverable error. If this is a
3051 * request message, the server MUST respond with a 400 (Bad Request)
3052 * status code and then close the connection. If this is a response
3053 * message received by a proxy, the proxy MUST close the connection
3054 * to the server, discard the received response, and send a 502 (Bad
3055 * Gateway) response to the client. If this is a response message
3056 * received by a user agent, the user agent MUST close the
3057 * connection to the server and discard the received response.
3058 *
3059 * 5. If a valid Content-Length header field is present without
3060 * Transfer-Encoding, its decimal value defines the expected message
3061 * body length in octets. If the sender closes the connection or
3062 * the recipient times out before the indicated number of octets are
3063 * received, the recipient MUST consider the message to be
3064 * incomplete and close the connection.
3065 *
3066 * 6. If this is a request message and none of the above are true, then
3067 * the message body length is zero (no message body is present).
3068 *
3069 * 7. Otherwise, this is a response message without a declared message
3070 * body length, so the message body length is determined by the
3071 * number of octets received prior to the server closing the
3072 * connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02003073 */
3074
Willy Tarreau32b47f42009-10-18 20:55:02 +02003075 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003076 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau4979d5c2015-05-01 10:06:30 +02003077 while (http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003078 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003079 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
3080 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau34dfc602015-05-01 10:09:49 +02003081 /* chunked not last, return badreq */
3082 goto return_bad_req;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003083 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003084 }
3085
Willy Tarreau1c913912015-04-30 10:57:51 +02003086 /* Chunked requests must have their content-length removed */
Willy Tarreau32b47f42009-10-18 20:55:02 +02003087 ctx.idx = 0;
Willy Tarreau1c913912015-04-30 10:57:51 +02003088 if (msg->flags & HTTP_MSGF_TE_CHNK) {
3089 while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx))
3090 http_remove_header2(msg, &txn->hdr_idx, &ctx);
3091 }
Willy Tarreau34dfc602015-05-01 10:09:49 +02003092 else while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02003093 signed long long cl;
3094
Willy Tarreauad14f752011-09-02 20:33:27 +02003095 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003096 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003097 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02003098 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003099
Willy Tarreauad14f752011-09-02 20:33:27 +02003100 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003101 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003102 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02003103 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003104
Willy Tarreauad14f752011-09-02 20:33:27 +02003105 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003106 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003107 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02003108 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003109
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003110 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003111 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003112 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02003113 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003114
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003115 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01003116 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003117 }
3118
Willy Tarreau34dfc602015-05-01 10:09:49 +02003119 /* even bodyless requests have a known length */
3120 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003121
Willy Tarreau179085c2014-04-28 16:48:56 +02003122 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
3123 * only change if both the request and the config reference something else.
3124 * Option httpclose by itself sets tunnel mode where headers are mangled.
3125 * However, if another mode is set, it will affect it (eg: server-close/
3126 * keep-alive + httpclose = close). Note that we avoid to redo the same work
3127 * if FE and BE have the same settings (common). The method consists in
3128 * checking if options changed between the two calls (implying that either
3129 * one is non-null, or one of them is non-null and we are there for the first
3130 * time.
3131 */
3132 if (!(txn->flags & TX_HDR_CONN_PRS) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003133 ((sess->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02003134 http_adjust_conn_mode(s, txn, msg);
Willy Tarreau179085c2014-04-28 16:48:56 +02003135
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02003136 /* we may have to wait for the request's body */
3137 if ((s->be->options & PR_O_WREQ_BODY) &&
3138 (msg->body_len || (msg->flags & HTTP_MSGF_TE_CHNK)))
3139 req->analysers |= AN_REQ_HTTP_BODY;
3140
Willy Tarreaud787e662009-07-07 10:14:51 +02003141 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02003142 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003143 req->analyse_exp = TICK_ETERNITY;
3144 return 1;
3145
3146 return_bad_req:
3147 /* We centralize bad requests processing here */
3148 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3149 /* we detected a parsing error. We want to archive this request
3150 * in the dedicated proxy area for later troubleshooting.
3151 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003152 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02003153 }
3154
3155 txn->req.msg_state = HTTP_MSG_ERROR;
3156 txn->status = 400;
Willy Tarreau350f4872014-11-28 14:42:25 +01003157 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003158
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003159 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003160 if (sess->listener->counters)
3161 sess->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02003162
3163 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02003164 if (!(s->flags & SF_ERR_MASK))
3165 s->flags |= SF_ERR_PRXCOND;
3166 if (!(s->flags & SF_FINST_MASK))
3167 s->flags |= SF_FINST_R;
Willy Tarreaud787e662009-07-07 10:14:51 +02003168
3169 req->analysers = 0;
3170 req->analyse_exp = TICK_ETERNITY;
3171 return 0;
3172}
3173
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02003174
Willy Tarreau347a35d2013-11-22 17:51:09 +01003175/* This function prepares an applet to handle the stats. It can deal with the
3176 * "100-continue" expectation, check that admin rules are met for POST requests,
3177 * and program a response message if something was unexpected. It cannot fail
3178 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003179 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003180 * s->target which is supposed to already point to the stats applet. The caller
Willy Tarreau87b09662015-04-03 00:22:06 +02003181 * is expected to have already assigned an appctx to the stream.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003182 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003183int http_handle_stats(struct stream *s, struct channel *req)
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003184{
3185 struct stats_admin_rule *stats_admin_rule;
Willy Tarreau350f4872014-11-28 14:42:25 +01003186 struct stream_interface *si = &s->si[1];
Willy Tarreau192252e2015-04-04 01:47:55 +02003187 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003188 struct http_txn *txn = s->txn;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003189 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003190 struct uri_auth *uri_auth = s->be->uri_auth;
3191 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003192 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003193
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003194 appctx = si_appctx(si);
3195 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
3196 appctx->st1 = appctx->st2 = 0;
3197 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
3198 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreaueee5b512015-04-03 23:46:31 +02003199 if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn->meth != HTTP_METH_HEAD))
Willy Tarreauaf3cf702014-04-22 22:19:53 +02003200 appctx->ctx.stats.flags |= STAT_CHUNKED;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003201
3202 uri = msg->chn->buf->p + msg->sl.rq.u;
3203 lookup = uri + uri_auth->uri_len;
3204
3205 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
3206 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003207 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003208 break;
3209 }
3210 }
3211
3212 if (uri_auth->refresh) {
3213 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
3214 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003215 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003216 break;
3217 }
3218 }
3219 }
3220
3221 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
3222 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003223 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003224 break;
3225 }
3226 }
3227
3228 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3229 if (memcmp(h, ";st=", 4) == 0) {
3230 int i;
3231 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003232 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003233 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
3234 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003235 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003236 break;
3237 }
3238 }
3239 break;
3240 }
3241 }
3242
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003243 appctx->ctx.stats.scope_str = 0;
3244 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003245 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3246 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
3247 int itx = 0;
3248 const char *h2;
3249 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
3250 const char *err;
3251
3252 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
3253 h2 = h;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003254 appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003255 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
3256 itx++;
3257 h++;
3258 }
3259
3260 if (itx > STAT_SCOPE_TXT_MAXLEN)
3261 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003262 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003263
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003264 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003265 memcpy(scope_txt, h2, itx);
3266 scope_txt[itx] = '\0';
3267 err = invalid_char(scope_txt);
3268 if (err) {
3269 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003270 appctx->ctx.stats.scope_str = 0;
3271 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003272 }
3273 break;
3274 }
3275 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003276
3277 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003278 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003279 int ret = 1;
3280
3281 if (stats_admin_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02003282 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003283 ret = acl_pass(ret);
3284 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3285 ret = !ret;
3286 }
3287
3288 if (ret) {
3289 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003290 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003291 break;
3292 }
3293 }
3294
3295 /* Was the status page requested with a POST ? */
Willy Tarreaub8cdf522015-05-29 01:09:15 +02003296 if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003297 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Willy Tarreaucfe7fdd2014-04-26 22:08:32 +02003298 /* we'll need the request body, possibly after sending 100-continue */
Willy Tarreaub8cdf522015-05-29 01:09:15 +02003299 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE)
3300 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003301 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003302 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003303 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003304 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
3305 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003306 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003307 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003308 else {
3309 /* So it was another method (GET/HEAD) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003310 appctx->st0 = STAT_HTTP_HEAD;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003311 }
3312
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003313 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003314 return 1;
3315}
3316
Lukas Tribus67db8df2013-06-23 17:37:13 +02003317/* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets
3318 * (as per RFC3260 #4 and BCP37 #4.2 and #5.2).
3319 */
Thierry FOURNIER7fe75e02015-03-16 12:03:44 +01003320void inet_set_tos(int fd, struct sockaddr_storage from, int tos)
Lukas Tribus67db8df2013-06-23 17:37:13 +02003321{
3322#ifdef IP_TOS
3323 if (from.ss_family == AF_INET)
3324 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3325#endif
3326#ifdef IPV6_TCLASS
3327 if (from.ss_family == AF_INET6) {
3328 if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&from)->sin6_addr))
3329 /* v4-mapped addresses need IP_TOS */
3330 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3331 else
3332 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos));
3333 }
3334#endif
3335}
3336
Willy Tarreau87b09662015-04-03 00:22:06 +02003337int http_transform_header_str(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003338 const char* name, unsigned int name_len,
3339 const char *str, struct my_regex *re,
3340 int action)
Sasha Pachev218f0642014-06-16 12:05:59 -06003341{
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003342 struct hdr_ctx ctx;
3343 char *buf = msg->chn->buf->p;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003344 struct hdr_idx *idx = &s->txn->hdr_idx;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003345 int (*http_find_hdr_func)(const char *name, int len, char *sol,
3346 struct hdr_idx *idx, struct hdr_ctx *ctx);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003347 struct chunk *output = get_trash_chunk();
3348
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003349 ctx.idx = 0;
Sasha Pachev218f0642014-06-16 12:05:59 -06003350
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003351 /* Choose the header browsing function. */
3352 switch (action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003353 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003354 http_find_hdr_func = http_find_header2;
3355 break;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003356 case ACT_HTTP_REPLACE_HDR:
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003357 http_find_hdr_func = http_find_full_header2;
3358 break;
3359 default: /* impossible */
3360 return -1;
3361 }
3362
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003363 while (http_find_hdr_func(name, name_len, buf, idx, &ctx)) {
3364 struct hdr_idx_elem *hdr = idx->v + ctx.idx;
Sasha Pachev218f0642014-06-16 12:05:59 -06003365 int delta;
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003366 char *val = ctx.line + ctx.val;
3367 char* val_end = val + ctx.vlen;
Sasha Pachev218f0642014-06-16 12:05:59 -06003368
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003369 if (!regex_exec_match2(re, val, val_end-val, MAX_MATCH, pmatch, 0))
3370 continue;
Sasha Pachev218f0642014-06-16 12:05:59 -06003371
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003372 output->len = exp_replace(output->str, output->size, val, str, pmatch);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003373 if (output->len == -1)
Sasha Pachev218f0642014-06-16 12:05:59 -06003374 return -1;
Sasha Pachev218f0642014-06-16 12:05:59 -06003375
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003376 delta = buffer_replace2(msg->chn->buf, val, val_end, output->str, output->len);
Sasha Pachev218f0642014-06-16 12:05:59 -06003377
3378 hdr->len += delta;
3379 http_msg_move_end(msg, delta);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003380
3381 /* Adjust the length of the current value of the index. */
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003382 ctx.vlen += delta;
Sasha Pachev218f0642014-06-16 12:05:59 -06003383 }
3384
3385 return 0;
3386}
3387
Willy Tarreau87b09662015-04-03 00:22:06 +02003388static int http_transform_header(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003389 const char* name, unsigned int name_len,
3390 struct list *fmt, struct my_regex *re,
3391 int action)
3392{
3393 struct chunk *replace = get_trash_chunk();
3394
3395 replace->len = build_logline(s, replace->str, replace->size, fmt);
3396 if (replace->len >= replace->size - 1)
3397 return -1;
3398
3399 return http_transform_header_str(s, msg, name, name_len, replace->str, re, action);
3400}
3401
Willy Tarreau87b09662015-04-03 00:22:06 +02003402/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
Willy Tarreau0b748332014-04-29 00:13:29 +02003403 * transaction <txn>. Returns the verdict of the first rule that prevents
3404 * further processing of the request (auth, deny, ...), and defaults to
3405 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
3406 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
3407 * on txn->flags if it encounters a tarpit rule.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003408 */
Willy Tarreau0b748332014-04-29 00:13:29 +02003409enum rule_result
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003410http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003411{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003412 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003413 struct http_txn *txn = s->txn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003414 struct connection *cli_conn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003415 struct act_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01003416 struct hdr_ctx ctx;
Willy Tarreauae3c0102014-04-28 23:22:08 +02003417 const char *auth_realm;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003418
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003419 /* If "the current_rule_list" match the executed rule list, we are in
3420 * resume condition. If a resume is needed it is always in the action
3421 * and never in the ACL or converters. In this case, we initialise the
3422 * current rule, and go to the action execution point.
3423 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02003424 if (s->current_rule) {
3425 rule = s->current_rule;
3426 s->current_rule = NULL;
3427 if (s->current_rule_list == rules)
3428 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003429 }
3430 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02003431
Willy Tarreauff011f22011-01-06 17:51:27 +01003432 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003433
Willy Tarreau96257ec2012-12-27 10:46:37 +01003434 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01003435 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01003436 int ret;
3437
Willy Tarreau192252e2015-04-04 01:47:55 +02003438 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003439 ret = acl_pass(ret);
3440
Willy Tarreauff011f22011-01-06 17:51:27 +01003441 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003442 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003443
3444 if (!ret) /* condition not matched */
3445 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003446 }
3447
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003448resume_execution:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003449 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003450 case ACT_ACTION_ALLOW:
Willy Tarreau0b748332014-04-29 00:13:29 +02003451 return HTTP_RULE_RES_STOP;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003452
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003453 case ACT_ACTION_DENY:
CJ Ess108b1dd2015-04-07 12:03:37 -04003454 txn->rule_deny_status = rule->deny_status;
Willy Tarreau0b748332014-04-29 00:13:29 +02003455 return HTTP_RULE_RES_DENY;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003456
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003457 case ACT_HTTP_REQ_TARPIT:
Willy Tarreauccbcc372012-12-27 12:37:57 +01003458 txn->flags |= TX_CLTARPIT;
CJ Ess108b1dd2015-04-07 12:03:37 -04003459 txn->rule_deny_status = rule->deny_status;
Willy Tarreau0b748332014-04-29 00:13:29 +02003460 return HTTP_RULE_RES_DENY;
Willy Tarreauccbcc372012-12-27 12:37:57 +01003461
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003462 case ACT_HTTP_REQ_AUTH:
Willy Tarreauae3c0102014-04-28 23:22:08 +02003463 /* Auth might be performed on regular http-req rules as well as on stats */
3464 auth_realm = rule->arg.auth.realm;
3465 if (!auth_realm) {
3466 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
3467 auth_realm = STATS_DEFAULT_REALM;
3468 else
3469 auth_realm = px->id;
3470 }
3471 /* send 401/407 depending on whether we use a proxy or not. We still
3472 * count one error, because normal browsing won't significantly
3473 * increase the counter but brute force attempts will.
3474 */
3475 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm);
3476 txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401;
3477 stream_int_retnclose(&s->si[0], &trash);
Willy Tarreau87b09662015-04-03 00:22:06 +02003478 stream_inc_http_err_ctr(s);
Willy Tarreau0b748332014-04-29 00:13:29 +02003479 return HTTP_RULE_RES_ABRT;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003480
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003481 case ACT_HTTP_REDIR:
Willy Tarreau0b748332014-04-29 00:13:29 +02003482 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3483 return HTTP_RULE_RES_BADREQ;
3484 return HTTP_RULE_RES_DONE;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003485
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003486 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003487 s->task->nice = rule->arg.nice;
3488 break;
3489
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003490 case ACT_HTTP_SET_TOS:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003491 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003492 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003493 break;
3494
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003495 case ACT_HTTP_SET_MARK:
Willy Tarreau51347ed2013-06-11 19:34:13 +02003496#ifdef SO_MARK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003497 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003498 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003499#endif
3500 break;
3501
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003502 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003503 s->logs.level = rule->arg.loglevel;
3504 break;
3505
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003506 case ACT_HTTP_REPLACE_HDR:
3507 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003508 if (http_transform_header(s, &txn->req, rule->arg.hdr_add.name,
3509 rule->arg.hdr_add.name_len,
3510 &rule->arg.hdr_add.fmt,
3511 &rule->arg.hdr_add.re, rule->action))
Sasha Pachev218f0642014-06-16 12:05:59 -06003512 return HTTP_RULE_RES_BADREQ;
3513 break;
3514
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003515 case ACT_HTTP_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003516 ctx.idx = 0;
3517 /* remove all occurrences of the header */
3518 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3519 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3520 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01003521 }
Willy Tarreau85603282015-01-21 20:39:27 +01003522 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003523
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003524 case ACT_HTTP_SET_HDR:
3525 case ACT_HTTP_ADD_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003526 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3527 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3528 trash.len = rule->arg.hdr_add.name_len;
3529 trash.str[trash.len++] = ':';
3530 trash.str[trash.len++] = ' ';
3531 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01003532
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003533 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01003534 /* remove all occurrences of the header */
3535 ctx.idx = 0;
3536 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3537 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3538 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
3539 }
3540 }
3541
Willy Tarreau96257ec2012-12-27 10:46:37 +01003542 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len);
3543 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003544
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003545 case ACT_HTTP_DEL_ACL:
3546 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003547 struct pat_ref *ref;
3548 char *key;
3549 int len;
3550
3551 /* collect reference */
3552 ref = pat_ref_lookup(rule->arg.map.ref);
3553 if (!ref)
3554 continue;
3555
3556 /* collect key */
3557 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3558 key = trash.str;
3559 key[len] = '\0';
3560
3561 /* perform update */
3562 /* returned code: 1=ok, 0=ko */
3563 pat_ref_delete(ref, key);
3564
3565 break;
3566 }
3567
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003568 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003569 struct pat_ref *ref;
3570 char *key;
3571 struct chunk *trash_key;
3572 int len;
3573
3574 trash_key = get_trash_chunk();
3575
3576 /* collect reference */
3577 ref = pat_ref_lookup(rule->arg.map.ref);
3578 if (!ref)
3579 continue;
3580
3581 /* collect key */
3582 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3583 key = trash_key->str;
3584 key[len] = '\0';
3585
3586 /* perform update */
3587 /* add entry only if it does not already exist */
3588 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003589 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003590
3591 break;
3592 }
3593
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003594 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003595 struct pat_ref *ref;
3596 char *key, *value;
3597 struct chunk *trash_key, *trash_value;
3598 int len;
3599
3600 trash_key = get_trash_chunk();
3601 trash_value = get_trash_chunk();
3602
3603 /* collect reference */
3604 ref = pat_ref_lookup(rule->arg.map.ref);
3605 if (!ref)
3606 continue;
3607
3608 /* collect key */
3609 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3610 key = trash_key->str;
3611 key[len] = '\0';
3612
3613 /* collect value */
3614 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3615 value = trash_value->str;
3616 value[len] = '\0';
3617
3618 /* perform update */
3619 if (pat_ref_find_elt(ref, key) != NULL)
3620 /* update entry if it exists */
3621 pat_ref_set(ref, key, value, NULL);
3622 else
3623 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003624 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003625
3626 break;
3627 }
William Lallemand73025dd2014-04-24 14:38:37 +02003628
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02003629 case ACT_ACTION_CONT:
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003630 switch (rule->action_ptr(rule, px, s->sess, s)) {
3631 case ACT_RET_ERR:
3632 case ACT_RET_CONT:
3633 break;
3634 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02003635 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003636 return HTTP_RULE_RES_YIELD;
3637 }
William Lallemand73025dd2014-04-24 14:38:37 +02003638 break;
3639
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02003640 case ACT_ACTION_STOP:
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003641 switch (rule->action_ptr(rule, px, s->sess, s)) {
3642 case ACT_RET_YIELD:
3643 case ACT_RET_ERR:
3644 case ACT_RET_CONT:
3645 return HTTP_RULE_RES_DONE;
3646 }
3647 break;
Willy Tarreau09448f72014-06-25 18:12:15 +02003648
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003649 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
Willy Tarreau09448f72014-06-25 18:12:15 +02003650 /* Note: only the first valid tracking parameter of each
3651 * applies.
3652 */
3653
3654 if (stkctr_entry(&s->stkctr[http_req_trk_idx(rule->action)]) == NULL) {
3655 struct stktable *t;
3656 struct stksess *ts;
3657 struct stktable_key *key;
3658 void *ptr;
3659
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02003660 t = rule->arg.trk_ctr.table.t;
3661 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
Willy Tarreau09448f72014-06-25 18:12:15 +02003662
3663 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreau87b09662015-04-03 00:22:06 +02003664 stream_track_stkctr(&s->stkctr[http_req_trk_idx(rule->action)], t, ts);
Willy Tarreau09448f72014-06-25 18:12:15 +02003665
3666 /* let's count a new HTTP request as it's the first time we do it */
3667 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3668 if (ptr)
3669 stktable_data_cast(ptr, http_req_cnt)++;
3670
3671 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3672 if (ptr)
3673 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
3674 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3675
3676 stkctr_set_flags(&s->stkctr[http_req_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003677 if (sess->fe != s->be)
Willy Tarreau09448f72014-06-25 18:12:15 +02003678 stkctr_set_flags(&s->stkctr[http_req_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
3679 }
3680 }
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003681 break;
3682
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003683 case ACT_HTTP_REQ_SET_SRC:
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003684 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
3685 struct sample *smp;
3686
Thierry FOURNIERa002dc92015-07-31 08:50:51 +02003687 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR);
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003688
3689 if (smp) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003690 if (smp->data.type == SMP_T_IPV4) {
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003691 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_family = AF_INET;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003692 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = smp->data.u.ipv4.s_addr;
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003693 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003694 } else if (smp->data.type == SMP_T_IPV6) {
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003695 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_family = AF_INET6;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003696 memcpy(&((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, &smp->data.u.ipv6, sizeof(struct in6_addr));
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003697 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = 0;
3698 }
3699 }
3700 }
3701 break;
Thierry FOURNIER22e49012015-08-05 19:13:48 +02003702
3703 /* other flags exists, but normaly, they never be matched. */
3704 default:
3705 break;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003706 }
3707 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003708
3709 /* we reached the end of the rules, nothing to report */
Willy Tarreau0b748332014-04-29 00:13:29 +02003710 return HTTP_RULE_RES_CONT;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003711}
3712
Willy Tarreau71241ab2012-12-27 11:30:54 +01003713
Willy Tarreau51d861a2015-05-22 17:30:48 +02003714/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
3715 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
3716 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
3717 * is returned, the process can continue the evaluation of next rule list. If
3718 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
3719 * is returned, it means the operation could not be processed and a server error
3720 * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a
3721 * deny rule. If *YIELD is returned, the caller must call again the function
3722 * with the same context.
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003723 */
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003724static enum rule_result
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003725http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003726{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003727 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003728 struct http_txn *txn = s->txn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003729 struct connection *cli_conn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003730 struct act_rule *rule;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003731 struct hdr_ctx ctx;
3732
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003733 /* If "the current_rule_list" match the executed rule list, we are in
3734 * resume condition. If a resume is needed it is always in the action
3735 * and never in the ACL or converters. In this case, we initialise the
3736 * current rule, and go to the action execution point.
3737 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02003738 if (s->current_rule) {
3739 rule = s->current_rule;
3740 s->current_rule = NULL;
3741 if (s->current_rule_list == rules)
3742 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003743 }
3744 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02003745
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003746 list_for_each_entry(rule, rules, list) {
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003747
3748 /* check optional condition */
3749 if (rule->cond) {
3750 int ret;
3751
Willy Tarreau192252e2015-04-04 01:47:55 +02003752 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003753 ret = acl_pass(ret);
3754
3755 if (rule->cond->pol == ACL_COND_UNLESS)
3756 ret = !ret;
3757
3758 if (!ret) /* condition not matched */
3759 continue;
3760 }
3761
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003762resume_execution:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003763 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003764 case ACT_ACTION_ALLOW:
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003765 return HTTP_RULE_RES_STOP; /* "allow" rules are OK */
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003766
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003767 case ACT_ACTION_DENY:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003768 txn->flags |= TX_SVDENY;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003769 return HTTP_RULE_RES_STOP;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003770
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003771 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003772 s->task->nice = rule->arg.nice;
3773 break;
3774
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003775 case ACT_HTTP_SET_TOS:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003776 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003777 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003778 break;
3779
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003780 case ACT_HTTP_SET_MARK:
Willy Tarreau51347ed2013-06-11 19:34:13 +02003781#ifdef SO_MARK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003782 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003783 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003784#endif
3785 break;
3786
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003787 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003788 s->logs.level = rule->arg.loglevel;
3789 break;
3790
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003791 case ACT_HTTP_REPLACE_HDR:
3792 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003793 if (http_transform_header(s, &txn->rsp, rule->arg.hdr_add.name,
3794 rule->arg.hdr_add.name_len,
3795 &rule->arg.hdr_add.fmt,
3796 &rule->arg.hdr_add.re, rule->action))
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003797 return HTTP_RULE_RES_STOP; /* note: we should report an error here */
Sasha Pachev218f0642014-06-16 12:05:59 -06003798 break;
3799
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003800 case ACT_HTTP_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003801 ctx.idx = 0;
3802 /* remove all occurrences of the header */
3803 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3804 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3805 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3806 }
Willy Tarreau85603282015-01-21 20:39:27 +01003807 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003808
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003809 case ACT_HTTP_SET_HDR:
3810 case ACT_HTTP_ADD_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003811 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3812 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3813 trash.len = rule->arg.hdr_add.name_len;
3814 trash.str[trash.len++] = ':';
3815 trash.str[trash.len++] = ' ';
3816 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01003817
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003818 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01003819 /* remove all occurrences of the header */
3820 ctx.idx = 0;
3821 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3822 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3823 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3824 }
3825 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003826 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
3827 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003828
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003829 case ACT_HTTP_DEL_ACL:
3830 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003831 struct pat_ref *ref;
3832 char *key;
3833 int len;
3834
3835 /* collect reference */
3836 ref = pat_ref_lookup(rule->arg.map.ref);
3837 if (!ref)
3838 continue;
3839
3840 /* collect key */
3841 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3842 key = trash.str;
3843 key[len] = '\0';
3844
3845 /* perform update */
3846 /* returned code: 1=ok, 0=ko */
3847 pat_ref_delete(ref, key);
3848
3849 break;
3850 }
3851
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003852 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003853 struct pat_ref *ref;
3854 char *key;
3855 struct chunk *trash_key;
3856 int len;
3857
3858 trash_key = get_trash_chunk();
3859
3860 /* collect reference */
3861 ref = pat_ref_lookup(rule->arg.map.ref);
3862 if (!ref)
3863 continue;
3864
3865 /* collect key */
3866 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3867 key = trash_key->str;
3868 key[len] = '\0';
3869
3870 /* perform update */
3871 /* check if the entry already exists */
3872 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003873 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003874
3875 break;
3876 }
3877
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003878 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003879 struct pat_ref *ref;
3880 char *key, *value;
3881 struct chunk *trash_key, *trash_value;
3882 int len;
3883
3884 trash_key = get_trash_chunk();
3885 trash_value = get_trash_chunk();
3886
3887 /* collect reference */
3888 ref = pat_ref_lookup(rule->arg.map.ref);
3889 if (!ref)
3890 continue;
3891
3892 /* collect key */
3893 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3894 key = trash_key->str;
3895 key[len] = '\0';
3896
3897 /* collect value */
3898 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3899 value = trash_value->str;
3900 value[len] = '\0';
3901
3902 /* perform update */
3903 if (pat_ref_find_elt(ref, key) != NULL)
3904 /* update entry if it exists */
3905 pat_ref_set(ref, key, value, NULL);
3906 else
3907 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003908 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003909
3910 break;
3911 }
William Lallemand73025dd2014-04-24 14:38:37 +02003912
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003913 case ACT_HTTP_REDIR:
Willy Tarreau51d861a2015-05-22 17:30:48 +02003914 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3915 return HTTP_RULE_RES_BADREQ;
3916 return HTTP_RULE_RES_DONE;
3917
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02003918 case ACT_ACTION_CONT:
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003919 switch (rule->action_ptr(rule, px, s->sess, s)) {
3920 case ACT_RET_ERR:
3921 case ACT_RET_CONT:
3922 break;
3923 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02003924 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003925 return HTTP_RULE_RES_YIELD;
3926 }
William Lallemand73025dd2014-04-24 14:38:37 +02003927 break;
3928
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02003929 case ACT_ACTION_STOP:
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003930 rule->action_ptr(rule, px, s->sess, s);
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003931 return HTTP_RULE_RES_STOP;
Thierry FOURNIER22e49012015-08-05 19:13:48 +02003932
3933 /* other flags exists, but normaly, they never be matched. */
3934 default:
3935 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003936 }
3937 }
3938
3939 /* we reached the end of the rules, nothing to report */
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003940 return HTTP_RULE_RES_CONT;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003941}
3942
3943
Willy Tarreau71241ab2012-12-27 11:30:54 +01003944/* Perform an HTTP redirect based on the information in <rule>. The function
3945 * returns non-zero on success, or zero in case of a, irrecoverable error such
3946 * as too large a request to build a valid response.
3947 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003948static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Willy Tarreau71241ab2012-12-27 11:30:54 +01003949{
Willy Tarreaub329a312015-05-22 16:27:37 +02003950 struct http_msg *req = &txn->req;
3951 struct http_msg *res = &txn->rsp;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003952 const char *msg_fmt;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003953 const char *location;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003954
3955 /* build redirect message */
3956 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04003957 case 308:
3958 msg_fmt = HTTP_308;
3959 break;
3960 case 307:
3961 msg_fmt = HTTP_307;
3962 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003963 case 303:
3964 msg_fmt = HTTP_303;
3965 break;
3966 case 301:
3967 msg_fmt = HTTP_301;
3968 break;
3969 case 302:
3970 default:
3971 msg_fmt = HTTP_302;
3972 break;
3973 }
3974
3975 if (unlikely(!chunk_strcpy(&trash, msg_fmt)))
3976 return 0;
3977
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003978 location = trash.str + trash.len;
3979
Willy Tarreau71241ab2012-12-27 11:30:54 +01003980 switch(rule->type) {
3981 case REDIRECT_TYPE_SCHEME: {
3982 const char *path;
3983 const char *host;
3984 struct hdr_ctx ctx;
3985 int pathlen;
3986 int hostlen;
3987
3988 host = "";
3989 hostlen = 0;
3990 ctx.idx = 0;
Willy Tarreaub329a312015-05-22 16:27:37 +02003991 if (http_find_header2("Host", 4, req->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003992 host = ctx.line + ctx.val;
3993 hostlen = ctx.vlen;
3994 }
3995
3996 path = http_get_path(txn);
3997 /* build message using path */
3998 if (path) {
Willy Tarreaub329a312015-05-22 16:27:37 +02003999 pathlen = req->sl.rq.u_l + (req->chn->buf->p + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004000 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
4001 int qs = 0;
4002 while (qs < pathlen) {
4003 if (path[qs] == '?') {
4004 pathlen = qs;
4005 break;
4006 }
4007 qs++;
4008 }
4009 }
4010 } else {
4011 path = "/";
4012 pathlen = 1;
4013 }
4014
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004015 if (rule->rdr_str) { /* this is an old "redirect" rule */
4016 /* check if we can add scheme + "://" + host + path */
4017 if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4)
4018 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004019
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004020 /* add scheme */
4021 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
4022 trash.len += rule->rdr_len;
4023 }
4024 else {
4025 /* add scheme with executing log format */
4026 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01004027
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004028 /* check if we can add scheme + "://" + host + path */
4029 if (trash.len + 3 + hostlen + pathlen > trash.size - 4)
4030 return 0;
4031 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004032 /* add "://" */
4033 memcpy(trash.str + trash.len, "://", 3);
4034 trash.len += 3;
4035
4036 /* add host */
4037 memcpy(trash.str + trash.len, host, hostlen);
4038 trash.len += hostlen;
4039
4040 /* add path */
4041 memcpy(trash.str + trash.len, path, pathlen);
4042 trash.len += pathlen;
4043
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004044 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01004045 if (trash.len && trash.str[trash.len - 1] != '/' &&
4046 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
4047 if (trash.len > trash.size - 5)
4048 return 0;
4049 trash.str[trash.len] = '/';
4050 trash.len++;
4051 }
4052
4053 break;
4054 }
4055 case REDIRECT_TYPE_PREFIX: {
4056 const char *path;
4057 int pathlen;
4058
4059 path = http_get_path(txn);
4060 /* build message using path */
4061 if (path) {
Willy Tarreaub329a312015-05-22 16:27:37 +02004062 pathlen = req->sl.rq.u_l + (req->chn->buf->p + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004063 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
4064 int qs = 0;
4065 while (qs < pathlen) {
4066 if (path[qs] == '?') {
4067 pathlen = qs;
4068 break;
4069 }
4070 qs++;
4071 }
4072 }
4073 } else {
4074 path = "/";
4075 pathlen = 1;
4076 }
4077
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004078 if (rule->rdr_str) { /* this is an old "redirect" rule */
4079 if (trash.len + rule->rdr_len + pathlen > trash.size - 4)
4080 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004081
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004082 /* add prefix. Note that if prefix == "/", we don't want to
4083 * add anything, otherwise it makes it hard for the user to
4084 * configure a self-redirection.
4085 */
4086 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
4087 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
4088 trash.len += rule->rdr_len;
4089 }
4090 }
4091 else {
4092 /* add prefix with executing log format */
4093 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
4094
4095 /* Check length */
4096 if (trash.len + pathlen > trash.size - 4)
4097 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004098 }
4099
4100 /* add path */
4101 memcpy(trash.str + trash.len, path, pathlen);
4102 trash.len += pathlen;
4103
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004104 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01004105 if (trash.len && trash.str[trash.len - 1] != '/' &&
4106 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
4107 if (trash.len > trash.size - 5)
4108 return 0;
4109 trash.str[trash.len] = '/';
4110 trash.len++;
4111 }
4112
4113 break;
4114 }
4115 case REDIRECT_TYPE_LOCATION:
4116 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004117 if (rule->rdr_str) { /* this is an old "redirect" rule */
4118 if (trash.len + rule->rdr_len > trash.size - 4)
4119 return 0;
4120
4121 /* add location */
4122 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
4123 trash.len += rule->rdr_len;
4124 }
4125 else {
4126 /* add location with executing log format */
4127 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01004128
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004129 /* Check left length */
4130 if (trash.len > trash.size - 4)
4131 return 0;
4132 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004133 break;
4134 }
4135
4136 if (rule->cookie_len) {
4137 memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14);
4138 trash.len += 14;
4139 memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len);
4140 trash.len += rule->cookie_len;
4141 memcpy(trash.str + trash.len, "\r\n", 2);
4142 trash.len += 2;
4143 }
4144
4145 /* add end of headers and the keep-alive/close status.
4146 * We may choose to set keep-alive if the Location begins
4147 * with a slash, because the client will come back to the
4148 * same server.
4149 */
4150 txn->status = rule->code;
4151 /* let's log the request time */
4152 s->logs.tv_request = now;
4153
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004154 if (*location == '/' &&
Willy Tarreaub329a312015-05-22 16:27:37 +02004155 (req->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau2de8a502015-05-28 17:23:54 +02004156 ((!(req->flags & HTTP_MSGF_TE_CHNK) && !req->body_len) || (req->msg_state == HTTP_MSG_DONE)) &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01004157 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
4158 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
4159 /* keep-alive possible */
Willy Tarreaub329a312015-05-22 16:27:37 +02004160 if (!(req->flags & HTTP_MSGF_VER_11)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01004161 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
4162 memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30);
4163 trash.len += 30;
4164 } else {
4165 memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24);
4166 trash.len += 24;
4167 }
4168 }
4169 memcpy(trash.str + trash.len, "\r\n\r\n", 4);
4170 trash.len += 4;
Willy Tarreaub329a312015-05-22 16:27:37 +02004171 bo_inject(res->chn, trash.str, trash.len);
Willy Tarreau71241ab2012-12-27 11:30:54 +01004172 /* "eat" the request */
Willy Tarreaub329a312015-05-22 16:27:37 +02004173 bi_fast_delete(req->chn->buf, req->sov);
4174 req->next -= req->sov;
4175 req->sov = 0;
4176 s->req.analysers = AN_REQ_HTTP_XFER_BODY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004177 s->res.analysers = AN_RES_HTTP_XFER_BODY;
Willy Tarreaub329a312015-05-22 16:27:37 +02004178 req->msg_state = HTTP_MSG_CLOSED;
4179 res->msg_state = HTTP_MSG_DONE;
Willy Tarreau51d861a2015-05-22 17:30:48 +02004180 /* Trim any possible response */
4181 res->chn->buf->i = 0;
4182 res->next = res->sov = 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004183 } else {
4184 /* keep-alive not possible */
4185 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
4186 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
4187 trash.len += 29;
4188 } else {
4189 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
4190 trash.len += 23;
4191 }
Willy Tarreau350f4872014-11-28 14:42:25 +01004192 stream_int_retnclose(&s->si[0], &trash);
Willy Tarreaub329a312015-05-22 16:27:37 +02004193 req->chn->analysers = 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004194 }
4195
Willy Tarreaue7dff022015-04-03 01:14:29 +02004196 if (!(s->flags & SF_ERR_MASK))
4197 s->flags |= SF_ERR_LOCAL;
4198 if (!(s->flags & SF_FINST_MASK))
4199 s->flags |= SF_FINST_R;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004200
4201 return 1;
4202}
4203
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004204/* This stream analyser runs all HTTP request processing which is common to
4205 * frontends and backends, which means blocking ACLs, filters, connection-close,
4206 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02004207 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004208 * either needs more data or wants to immediately abort the request (eg: deny,
4209 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02004210 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004211int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02004212{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004213 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004214 struct http_txn *txn = s->txn;
Willy Tarreaud787e662009-07-07 10:14:51 +02004215 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004216 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01004217 struct cond_wordlist *wl;
Willy Tarreau0b748332014-04-29 00:13:29 +02004218 enum rule_result verdict;
Willy Tarreaud787e662009-07-07 10:14:51 +02004219
Willy Tarreau655dce92009-11-08 13:10:58 +01004220 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004221 /* we need more data */
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004222 goto return_prx_yield;
Willy Tarreau51aecc72009-07-12 09:47:04 +02004223 }
4224
Willy Tarreau87b09662015-04-03 00:22:06 +02004225 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02004226 now_ms, __FUNCTION__,
4227 s,
4228 req,
4229 req->rex, req->wex,
4230 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004231 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02004232 req->analysers);
4233
Willy Tarreau65410832014-04-28 21:25:43 +02004234 /* just in case we have some per-backend tracking */
Willy Tarreau87b09662015-04-03 00:22:06 +02004235 stream_inc_be_http_req_ctr(s);
Willy Tarreau65410832014-04-28 21:25:43 +02004236
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004237 /* evaluate http-request rules */
Willy Tarreau0b748332014-04-29 00:13:29 +02004238 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Willy Tarreau987e3fb2015-04-04 01:09:08 +02004239 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s);
Willy Tarreau51425942010-02-01 10:40:19 +01004240
Willy Tarreau0b748332014-04-29 00:13:29 +02004241 switch (verdict) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004242 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
4243 goto return_prx_yield;
4244
Willy Tarreau0b748332014-04-29 00:13:29 +02004245 case HTTP_RULE_RES_CONT:
4246 case HTTP_RULE_RES_STOP: /* nothing to do */
4247 break;
Willy Tarreau52542592014-04-28 18:33:26 +02004248
Willy Tarreau0b748332014-04-29 00:13:29 +02004249 case HTTP_RULE_RES_DENY: /* deny or tarpit */
4250 if (txn->flags & TX_CLTARPIT)
4251 goto tarpit;
4252 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02004253
Willy Tarreau0b748332014-04-29 00:13:29 +02004254 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
4255 goto return_prx_cond;
Willy Tarreau52542592014-04-28 18:33:26 +02004256
Willy Tarreau0b748332014-04-29 00:13:29 +02004257 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Willy Tarreau52542592014-04-28 18:33:26 +02004258 goto done;
4259
Willy Tarreau0b748332014-04-29 00:13:29 +02004260 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
4261 goto return_bad_req;
4262 }
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004263 }
4264
Willy Tarreau52542592014-04-28 18:33:26 +02004265 /* OK at this stage, we know that the request was accepted according to
4266 * the http-request rules, we can check for the stats. Note that the
4267 * URI is detected *before* the req* rules in order not to be affected
4268 * by a possible reqrep, while they are processed *after* so that a
4269 * reqdeny can still block them. This clearly needs to change in 1.6!
4270 */
Willy Tarreau350f4872014-11-28 14:42:25 +01004271 if (stats_check_uri(&s->si[1], txn, px)) {
Willy Tarreau52542592014-04-28 18:33:26 +02004272 s->target = &http_stats_applet.obj_type;
Willy Tarreau350f4872014-11-28 14:42:25 +01004273 if (unlikely(!stream_int_register_handler(&s->si[1], objt_applet(s->target)))) {
Willy Tarreau52542592014-04-28 18:33:26 +02004274 txn->status = 500;
4275 s->logs.tv_request = now;
Willy Tarreau350f4872014-11-28 14:42:25 +01004276 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_500));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004277
Willy Tarreaue7dff022015-04-03 01:14:29 +02004278 if (!(s->flags & SF_ERR_MASK))
4279 s->flags |= SF_ERR_RESOURCE;
Willy Tarreau52542592014-04-28 18:33:26 +02004280 goto return_prx_cond;
4281 }
4282
4283 /* parse the whole stats request and extract the relevant information */
4284 http_handle_stats(s, req);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02004285 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s);
Willy Tarreau0b748332014-04-29 00:13:29 +02004286 /* not all actions implemented: deny, allow, auth */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004287
Willy Tarreau0b748332014-04-29 00:13:29 +02004288 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
4289 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02004290
Willy Tarreau0b748332014-04-29 00:13:29 +02004291 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
4292 goto return_prx_cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01004293 }
4294
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004295 /* evaluate the req* rules except reqadd */
4296 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01004297 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004298 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01004299
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004300 if (txn->flags & TX_CLDENY)
4301 goto deny;
Willy Tarreauc465fd72009-08-31 00:17:18 +02004302
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004303 if (txn->flags & TX_CLTARPIT)
4304 goto tarpit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004305 }
Willy Tarreau06619262006-12-17 08:37:22 +01004306
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004307 /* add request headers from the rule sets in the same order */
4308 list_for_each_entry(wl, &px->req_add, list) {
4309 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02004310 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004311 ret = acl_pass(ret);
4312 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
4313 ret = !ret;
4314 if (!ret)
4315 continue;
4316 }
4317
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004318 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004319 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01004320 }
4321
Willy Tarreau52542592014-04-28 18:33:26 +02004322
4323 /* Proceed with the stats now. */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01004324 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01004325 /* process the stats request now */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004326 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
4327 sess->fe->fe_counters.intercepted_req++;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004328
Willy Tarreaue7dff022015-04-03 01:14:29 +02004329 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
4330 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
4331 if (!(s->flags & SF_FINST_MASK))
4332 s->flags |= SF_FINST_R;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004333
Willy Tarreau70730dd2014-04-24 18:06:27 +02004334 /* we may want to compress the stats page */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004335 if (sess->fe->comp || s->be->comp)
Willy Tarreau70730dd2014-04-24 18:06:27 +02004336 select_compression_request_header(s, req->buf);
4337
4338 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
Willy Tarreau5506e3f2014-11-20 22:23:10 +01004339 req->analysers = (req->analysers & AN_REQ_HTTP_BODY) | AN_REQ_HTTP_XFER_BODY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004340 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004341 }
Willy Tarreaub2513902006-12-17 14:52:38 +01004342
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004343 /* check whether we have some ACLs set to redirect this request */
4344 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01004345 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01004346 int ret;
4347
Willy Tarreau192252e2015-04-04 01:47:55 +02004348 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01004349 ret = acl_pass(ret);
4350 if (rule->cond->pol == ACL_COND_UNLESS)
4351 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004352 if (!ret)
4353 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01004354 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004355 if (!http_apply_redirect_rule(rule, s, txn))
4356 goto return_bad_req;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004357 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004358 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004359
Willy Tarreau2be39392010-01-03 17:24:51 +01004360 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
4361 * If this happens, then the data will not come immediately, so we must
4362 * send all what we have without waiting. Note that due to the small gain
4363 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004364 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01004365 * itself once used.
4366 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004367 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01004368
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004369 done: /* done with this analyser, continue with next ones that the calling
4370 * points will have set, if any.
4371 */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004372 req->analyse_exp = TICK_ETERNITY;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02004373 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
4374 req->analysers &= ~an_bit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004375 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02004376
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004377 tarpit:
4378 /* When a connection is tarpitted, we use the tarpit timeout,
4379 * which may be the same as the connect timeout if unspecified.
4380 * If unset, then set it to zero because we really want it to
4381 * eventually expire. We build the tarpit as an analyser.
4382 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004383 channel_erase(&s->req);
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004384
4385 /* wipe the request out so that we can drop the connection early
4386 * if the client closes first.
4387 */
4388 channel_dont_connect(req);
4389 req->analysers = 0; /* remove switching rules etc... */
4390 req->analysers |= AN_REQ_HTTP_TARPIT;
4391 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
4392 if (!req->analyse_exp)
4393 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreau87b09662015-04-03 00:22:06 +02004394 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004395 sess->fe->fe_counters.denied_req++;
4396 if (sess->fe != s->be)
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004397 s->be->be_counters.denied_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004398 if (sess->listener->counters)
4399 sess->listener->counters->denied_req++;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02004400 goto done_without_exp;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004401
4402 deny: /* this request was blocked (denied) */
Willy Tarreau0b748332014-04-29 00:13:29 +02004403 txn->flags |= TX_CLDENY;
CJ Ess108b1dd2015-04-07 12:03:37 -04004404 txn->status = http_err_codes[txn->rule_deny_status];
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004405 s->logs.tv_request = now;
CJ Ess108b1dd2015-04-07 12:03:37 -04004406 stream_int_retnclose(&s->si[0], http_error_message(s, txn->rule_deny_status));
Willy Tarreau87b09662015-04-03 00:22:06 +02004407 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004408 sess->fe->fe_counters.denied_req++;
4409 if (sess->fe != s->be)
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004410 s->be->be_counters.denied_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004411 if (sess->listener->counters)
4412 sess->listener->counters->denied_req++;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004413 goto return_prx_cond;
4414
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004415 return_bad_req:
4416 /* We centralize bad requests processing here */
4417 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
4418 /* we detected a parsing error. We want to archive this request
4419 * in the dedicated proxy area for later troubleshooting.
4420 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004421 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004422 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004423
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004424 txn->req.msg_state = HTTP_MSG_ERROR;
4425 txn->status = 400;
Willy Tarreau350f4872014-11-28 14:42:25 +01004426 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004427
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004428 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004429 if (sess->listener->counters)
4430 sess->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02004431
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004432 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02004433 if (!(s->flags & SF_ERR_MASK))
4434 s->flags |= SF_ERR_PRXCOND;
4435 if (!(s->flags & SF_FINST_MASK))
4436 s->flags |= SF_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01004437
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004438 req->analysers = 0;
4439 req->analyse_exp = TICK_ETERNITY;
4440 return 0;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004441
4442 return_prx_yield:
4443 channel_dont_connect(req);
4444 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004445}
Willy Tarreau58f10d72006-12-04 02:26:12 +01004446
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004447/* This function performs all the processing enabled for the current request.
4448 * It returns 1 if the processing can continue on next analysers, or zero if it
4449 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004450 * request. It relies on buffers flags, and updates s->req.analysers.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004451 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004452int http_process_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004453{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004454 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004455 struct http_txn *txn = s->txn;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004456 struct http_msg *msg = &txn->req;
Willy Tarreauee335e62015-04-21 18:15:13 +02004457 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004458
Willy Tarreau655dce92009-11-08 13:10:58 +01004459 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004460 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004461 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02004462 return 0;
4463 }
4464
Willy Tarreau87b09662015-04-03 00:22:06 +02004465 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004466 now_ms, __FUNCTION__,
4467 s,
4468 req,
4469 req->rex, req->wex,
4470 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004471 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004472 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01004473
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004474 if (sess->fe->comp || s->be->comp)
William Lallemand82fe75c2012-10-23 10:25:10 +02004475 select_compression_request_header(s, req->buf);
4476
Willy Tarreau59234e92008-11-30 23:51:27 +01004477 /*
4478 * Right now, we know that we have processed the entire headers
4479 * and that unwanted requests have been filtered out. We can do
4480 * whatever we want with the remaining request. Also, now we
4481 * may have separate values for ->fe, ->be.
4482 */
Willy Tarreau06619262006-12-17 08:37:22 +01004483
Willy Tarreau59234e92008-11-30 23:51:27 +01004484 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004485 * If HTTP PROXY is set we simply get remote server address parsing
4486 * incoming request. Note that this requires that a connection is
4487 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01004488 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02004489 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004490 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004491 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004492
Willy Tarreau9471b8c2013-12-15 13:31:35 +01004493 /* Note that for now we don't reuse existing proxy connections */
Willy Tarreau973a5422015-08-05 21:47:23 +02004494 if (unlikely((conn = si_alloc_conn(&s->si[1])) == NULL)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004495 txn->req.msg_state = HTTP_MSG_ERROR;
4496 txn->status = 500;
4497 req->analysers = 0;
Willy Tarreau350f4872014-11-28 14:42:25 +01004498 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_500));
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004499
Willy Tarreaue7dff022015-04-03 01:14:29 +02004500 if (!(s->flags & SF_ERR_MASK))
4501 s->flags |= SF_ERR_RESOURCE;
4502 if (!(s->flags & SF_FINST_MASK))
4503 s->flags |= SF_FINST_R;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004504
4505 return 0;
4506 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004507
4508 path = http_get_path(txn);
4509 url2sa(req->buf->p + msg->sl.rq.u,
4510 path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l,
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01004511 &conn->addr.to, NULL);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004512 /* if the path was found, we have to remove everything between
4513 * req->buf->p + msg->sl.rq.u and path (excluded). If it was not
4514 * found, we need to replace from req->buf->p + msg->sl.rq.u for
4515 * u_l characters by a single "/".
4516 */
4517 if (path) {
4518 char *cur_ptr = req->buf->p;
4519 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4520 int delta;
4521
4522 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0);
4523 http_msg_move_end(&txn->req, delta);
4524 cur_end += delta;
4525 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4526 goto return_bad_req;
4527 }
4528 else {
4529 char *cur_ptr = req->buf->p;
4530 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4531 int delta;
4532
4533 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u,
4534 req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
4535 http_msg_move_end(&txn->req, delta);
4536 cur_end += delta;
4537 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4538 goto return_bad_req;
4539 }
Willy Tarreau59234e92008-11-30 23:51:27 +01004540 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004541
Willy Tarreau59234e92008-11-30 23:51:27 +01004542 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01004543 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01004544 * Note that doing so might move headers in the request, but
4545 * the fields will stay coherent and the URI will not move.
4546 * This should only be performed in the backend.
4547 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02004548 if ((s->be->cookie_name || sess->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01004549 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
4550 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02004551
William Lallemanda73203e2012-03-12 12:48:57 +01004552 /* add unique-id if "header-unique-id" is specified */
4553
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004554 if (!LIST_ISEMPTY(&sess->fe->format_unique_id)) {
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004555 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL)
4556 goto return_bad_req;
4557 s->unique_id[0] = '\0';
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004558 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004559 }
William Lallemanda73203e2012-03-12 12:48:57 +01004560
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004561 if (sess->fe->header_unique_id && s->unique_id) {
4562 chunk_printf(&trash, "%s: %s", sess->fe->header_unique_id, s->unique_id);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004563 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01004564 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004565 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01004566 goto return_bad_req;
4567 }
4568
Cyril Bontéb21570a2009-11-29 20:04:48 +01004569 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01004570 * 9: add X-Forwarded-For if either the frontend or the backend
4571 * asks for it.
4572 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004573 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004574 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004575 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
4576 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
4577 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004578 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004579 /* The header is set to be added only if none is present
4580 * and we found it, so don't do anything.
4581 */
4582 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004583 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004584 /* Add an X-Forwarded-For header unless the source IP is
4585 * in the 'except' network range.
4586 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004587 if ((!sess->fe->except_mask.s_addr ||
4588 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
4589 != sess->fe->except_net.s_addr) &&
Willy Tarreau59234e92008-11-30 23:51:27 +01004590 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004591 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004592 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01004593 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01004594 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004595 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02004596
4597 /* Note: we rely on the backend to get the header name to be used for
4598 * x-forwarded-for, because the header is really meant for the backends.
4599 * However, if the backend did not specify any option, we have to rely
4600 * on the frontend's header name.
4601 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004602 if (s->be->fwdfor_hdr_len) {
4603 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004604 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02004605 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004606 len = sess->fe->fwdfor_hdr_len;
4607 memcpy(trash.str, sess->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004608 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004609 len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01004610
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004611 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01004612 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01004613 }
4614 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004615 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004616 /* FIXME: for the sake of completeness, we should also support
4617 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004618 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004619 int len;
4620 char pn[INET6_ADDRSTRLEN];
4621 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004622 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01004623 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004624
Willy Tarreau59234e92008-11-30 23:51:27 +01004625 /* Note: we rely on the backend to get the header name to be used for
4626 * x-forwarded-for, because the header is really meant for the backends.
4627 * However, if the backend did not specify any option, we have to rely
4628 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004629 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004630 if (s->be->fwdfor_hdr_len) {
4631 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004632 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01004633 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004634 len = sess->fe->fwdfor_hdr_len;
4635 memcpy(trash.str, sess->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004636 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004637 len += snprintf(trash.str + len, trash.size - len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02004638
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004639 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01004640 goto return_bad_req;
4641 }
4642 }
4643
4644 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02004645 * 10: add X-Original-To if either the frontend or the backend
4646 * asks for it.
4647 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004648 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004649
4650 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004651 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004652 /* Add an X-Original-To header unless the destination IP is
4653 * in the 'except' network range.
4654 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004655 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02004656
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004657 if (cli_conn->addr.to.ss_family == AF_INET &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004658 ((!sess->fe->except_mask_to.s_addr ||
4659 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
4660 != sess->fe->except_to.s_addr) &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02004661 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004662 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02004663 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004664 int len;
4665 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004666 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02004667
4668 /* Note: we rely on the backend to get the header name to be used for
4669 * x-original-to, because the header is really meant for the backends.
4670 * However, if the backend did not specify any option, we have to rely
4671 * on the frontend's header name.
4672 */
4673 if (s->be->orgto_hdr_len) {
4674 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004675 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02004676 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004677 len = sess->fe->orgto_hdr_len;
4678 memcpy(trash.str, sess->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004679 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004680 len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Maik Broemme2850cb42009-04-17 18:53:21 +02004681
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004682 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02004683 goto return_bad_req;
4684 }
4685 }
4686 }
4687
Willy Tarreau50fc7772012-11-11 22:19:57 +01004688 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
4689 * If an "Upgrade" token is found, the header is left untouched in order not to have
4690 * to deal with some servers bugs : some of them fail an Upgrade if anything but
4691 * "Upgrade" is present in the Connection header.
4692 */
4693 if (!(txn->flags & TX_HDR_CONN_UPG) &&
4694 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004695 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004696 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004697 unsigned int want_flags = 0;
4698
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004699 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02004700 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004701 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004702 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004703 !((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004704 want_flags |= TX_CON_CLO_SET;
4705 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02004706 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004707 ((sess->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL &&
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004708 (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004709 ((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004710 want_flags |= TX_CON_KAL_SET;
4711 }
4712
4713 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004714 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01004715 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004716
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004717
Willy Tarreau522d6c02009-12-06 18:49:18 +01004718 /* If we have no server assigned yet and we're balancing on url_param
4719 * with a POST request, we may be interested in checking the body for
4720 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01004721 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02004722 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreaueee5b512015-04-03 23:46:31 +02004723 s->txn->meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004724 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004725 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004726 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01004727 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004728
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004729 if (msg->flags & HTTP_MSGF_XFER_LEN) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01004730 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01004731#ifdef TCP_QUICKACK
4732 /* We expect some data from the client. Unless we know for sure
4733 * we already have a full request, we have to re-enable quick-ack
4734 * in case we previously disabled it, otherwise we might cause
4735 * the client to delay further data.
4736 */
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004737 if ((sess->listener->options & LI_O_NOQUICKACK) &&
Willy Tarreau3c728722014-01-23 13:50:42 +01004738 cli_conn && conn_ctrl_ready(cli_conn) &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004739 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004740 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004741 setsockopt(cli_conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01004742#endif
4743 }
Willy Tarreau03945942009-12-22 16:50:27 +01004744
Willy Tarreau59234e92008-11-30 23:51:27 +01004745 /*************************************************************
4746 * OK, that's finished for the headers. We have done what we *
4747 * could. Let's switch to the DATA state. *
4748 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01004749 req->analyse_exp = TICK_ETERNITY;
4750 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004751
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004752 /* if the server closes the connection, we want to immediately react
4753 * and close the socket to save packets and syscalls.
4754 */
Willy Tarreau40f151a2012-12-20 12:10:09 +01004755 if (!(req->analysers & AN_REQ_HTTP_XFER_BODY))
Willy Tarreau350f4872014-11-28 14:42:25 +01004756 s->si[1].flags |= SI_FL_NOHALF;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004757
Willy Tarreau59234e92008-11-30 23:51:27 +01004758 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01004759 /* OK let's go on with the BODY now */
4760 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01004761
Willy Tarreau59234e92008-11-30 23:51:27 +01004762 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02004763 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01004764 /* we detected a parsing error. We want to archive this request
4765 * in the dedicated proxy area for later troubleshooting.
4766 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004767 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01004768 }
Willy Tarreau4076a152009-04-02 15:18:36 +02004769
Willy Tarreau59234e92008-11-30 23:51:27 +01004770 txn->req.msg_state = HTTP_MSG_ERROR;
4771 txn->status = 400;
4772 req->analysers = 0;
Willy Tarreau350f4872014-11-28 14:42:25 +01004773 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004774
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004775 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004776 if (sess->listener->counters)
4777 sess->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004778
Willy Tarreaue7dff022015-04-03 01:14:29 +02004779 if (!(s->flags & SF_ERR_MASK))
4780 s->flags |= SF_ERR_PRXCOND;
4781 if (!(s->flags & SF_FINST_MASK))
4782 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02004783 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004784}
Willy Tarreauadfb8562008-08-11 15:24:42 +02004785
Willy Tarreau60b85b02008-11-30 23:28:40 +01004786/* This function is an analyser which processes the HTTP tarpit. It always
4787 * returns zero, at the beginning because it prevents any other processing
4788 * from occurring, and at the end because it terminates the request.
4789 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004790int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01004791{
Willy Tarreaueee5b512015-04-03 23:46:31 +02004792 struct http_txn *txn = s->txn;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004793
4794 /* This connection is being tarpitted. The CLIENT side has
4795 * already set the connect expiration date to the right
4796 * timeout. We just have to check that the client is still
4797 * there and that the timeout has not expired.
4798 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004799 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004800 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01004801 !tick_is_expired(req->analyse_exp, now_ms))
4802 return 0;
4803
4804 /* We will set the queue timer to the time spent, just for
4805 * logging purposes. We fake a 500 server error, so that the
4806 * attacker will not suspect his connection has been tarpitted.
4807 * It will not cause trouble to the logs because we can exclude
4808 * the tarpitted connections by filtering on the 'PT' status flags.
4809 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01004810 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
4811
4812 txn->status = 500;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004813 if (!(req->flags & CF_READ_ERROR))
Willy Tarreau350f4872014-11-28 14:42:25 +01004814 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_500));
Willy Tarreau60b85b02008-11-30 23:28:40 +01004815
4816 req->analysers = 0;
4817 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004818
Willy Tarreaue7dff022015-04-03 01:14:29 +02004819 if (!(s->flags & SF_ERR_MASK))
4820 s->flags |= SF_ERR_PRXCOND;
4821 if (!(s->flags & SF_FINST_MASK))
4822 s->flags |= SF_FINST_T;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004823 return 0;
4824}
4825
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004826/* This function is an analyser which waits for the HTTP request body. It waits
4827 * for either the buffer to be full, or the full advertised contents to have
4828 * reached the buffer. It must only be called after the standard HTTP request
4829 * processing has occurred, because it expects the request to be parsed and will
4830 * look for the Expect header. It may send a 100-Continue interim response. It
4831 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
4832 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
4833 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01004834 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004835int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01004836{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004837 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004838 struct http_txn *txn = s->txn;
4839 struct http_msg *msg = &s->txn->req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004840
4841 /* We have to parse the HTTP request body to find any required data.
4842 * "balance url_param check_post" should have been the only way to get
4843 * into this. We were brought here after HTTP header analysis, so all
4844 * related structures are ready.
4845 */
4846
Willy Tarreau890988f2014-04-10 11:59:33 +02004847 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4848 /* This is the first call */
4849 if (msg->msg_state < HTTP_MSG_BODY)
4850 goto missing_data;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004851
Willy Tarreau890988f2014-04-10 11:59:33 +02004852 if (msg->msg_state < HTTP_MSG_100_SENT) {
4853 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4854 * send an HTTP/1.1 100 Continue intermediate response.
4855 */
4856 if (msg->flags & HTTP_MSGF_VER_11) {
4857 struct hdr_ctx ctx;
4858 ctx.idx = 0;
4859 /* Expect is allowed in 1.1, look for it */
4860 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
4861 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004862 bo_inject(&s->res, http_100_chunk.str, http_100_chunk.len);
Willy Tarreau890988f2014-04-10 11:59:33 +02004863 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004864 }
Willy Tarreau890988f2014-04-10 11:59:33 +02004865 msg->msg_state = HTTP_MSG_100_SENT;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004866 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004867
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004868 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau877e78d2013-04-07 18:48:08 +02004869 * req->buf->p still points to the beginning of the message. We
4870 * must save the body in msg->next because it survives buffer
4871 * re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004872 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004873 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004874
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004875 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004876 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4877 else
4878 msg->msg_state = HTTP_MSG_DATA;
4879 }
4880
Willy Tarreau890988f2014-04-10 11:59:33 +02004881 if (!(msg->flags & HTTP_MSGF_TE_CHNK)) {
4882 /* We're in content-length mode, we just have to wait for enough data. */
Willy Tarreaue115b492015-05-01 23:05:14 +02004883 if (http_body_bytes(msg) < msg->body_len)
Willy Tarreau890988f2014-04-10 11:59:33 +02004884 goto missing_data;
4885
4886 /* OK we have everything we need now */
4887 goto http_end;
4888 }
4889
4890 /* OK here we're parsing a chunked-encoded message */
4891
Willy Tarreau522d6c02009-12-06 18:49:18 +01004892 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004893 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004894 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004895 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004896 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004897 int ret = http_parse_chunk_size(msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01004898
Willy Tarreau115acb92009-12-26 13:56:06 +01004899 if (!ret)
4900 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004901 else if (ret < 0) {
Willy Tarreau87b09662015-04-03 00:22:06 +02004902 stream_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004903 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004904 }
Willy Tarreaud34af782008-11-30 23:36:37 +01004905 }
4906
Willy Tarreaud98cf932009-12-27 22:54:55 +01004907 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaue115b492015-05-01 23:05:14 +02004908 * We have the first data byte is in msg->sov + msg->sol. We're waiting
4909 * for at least a whole chunk or the whole content length bytes after
4910 * msg->sov + msg->sol.
Willy Tarreaud34af782008-11-30 23:36:37 +01004911 */
Willy Tarreau890988f2014-04-10 11:59:33 +02004912 if (msg->msg_state == HTTP_MSG_TRAILERS)
4913 goto http_end;
4914
Willy Tarreaue115b492015-05-01 23:05:14 +02004915 if (http_body_bytes(msg) >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004916 goto http_end;
4917
4918 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02004919 /* we get here if we need to wait for more data. If the buffer is full,
4920 * we have the maximum we can expect.
4921 */
4922 if (buffer_full(req->buf, global.tune.maxrewrite))
4923 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01004924
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004925 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004926 txn->status = 408;
Willy Tarreau350f4872014-11-28 14:42:25 +01004927 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02004928
Willy Tarreaue7dff022015-04-03 01:14:29 +02004929 if (!(s->flags & SF_ERR_MASK))
4930 s->flags |= SF_ERR_CLITO;
4931 if (!(s->flags & SF_FINST_MASK))
4932 s->flags |= SF_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004933 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01004934 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004935
4936 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02004937 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01004938 /* Not enough data. We'll re-use the http-request
4939 * timeout here. Ideally, we should set the timeout
4940 * relative to the accept() date. We just set the
4941 * request timeout once at the beginning of the
4942 * request.
4943 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004944 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01004945 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02004946 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01004947 return 0;
4948 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004949
4950 http_end:
4951 /* The situation will not evolve, so let's give up on the analysis. */
4952 s->logs.tv_request = now; /* update the request timer to reflect full request */
4953 req->analysers &= ~an_bit;
4954 req->analyse_exp = TICK_ETERNITY;
4955 return 1;
4956
4957 return_bad_req: /* let's centralize all bad requests */
4958 txn->req.msg_state = HTTP_MSG_ERROR;
4959 txn->status = 400;
Willy Tarreau350f4872014-11-28 14:42:25 +01004960 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Willy Tarreau522d6c02009-12-06 18:49:18 +01004961
Willy Tarreaue7dff022015-04-03 01:14:29 +02004962 if (!(s->flags & SF_ERR_MASK))
4963 s->flags |= SF_ERR_PRXCOND;
4964 if (!(s->flags & SF_FINST_MASK))
4965 s->flags |= SF_FINST_R;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004966
Willy Tarreau522d6c02009-12-06 18:49:18 +01004967 return_err_msg:
4968 req->analysers = 0;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004969 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004970 if (sess->listener->counters)
4971 sess->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004972 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01004973}
4974
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004975/* send a server's name with an outgoing request over an established connection.
4976 * Note: this function is designed to be called once the request has been scheduled
4977 * for being forwarded. This is the reason why it rewinds the buffer before
4978 * proceeding.
4979 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01004980int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004981
4982 struct hdr_ctx ctx;
4983
Mark Lamourinec2247f02012-01-04 13:02:01 -05004984 char *hdr_name = be->server_id_hdr_name;
4985 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02004986 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004987 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004988 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004989
William Lallemandd9e90662012-01-30 17:27:17 +01004990 ctx.idx = 0;
4991
Willy Tarreau211cdec2014-04-17 20:18:08 +02004992 old_o = http_hdr_rewind(&txn->req);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004993 if (old_o) {
4994 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004995 b_rew(chn->buf, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02004996 txn->req.next += old_o;
4997 txn->req.sov += old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004998 }
4999
Willy Tarreau9b28e032012-10-12 23:49:43 +02005000 old_i = chn->buf->i;
5001 while (http_find_header2(hdr_name, hdr_name_len, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05005002 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005003 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05005004 }
5005
5006 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005007 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05005008 memcpy(hdr_val, hdr_name, hdr_name_len);
5009 hdr_val += hdr_name_len;
5010 *hdr_val++ = ':';
5011 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005012 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
5013 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05005014
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005015 if (old_o) {
5016 /* If this was a forwarded request, we must readjust the amount of
5017 * data to be forwarded in order to take into account the size
Willy Tarreau877e78d2013-04-07 18:48:08 +02005018 * variations. Note that the current state is >= HTTP_MSG_BODY,
5019 * so we don't have to adjust ->sol.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005020 */
Willy Tarreau877e78d2013-04-07 18:48:08 +02005021 old_o += chn->buf->i - old_i;
5022 b_adv(chn->buf, old_o);
5023 txn->req.next -= old_o;
5024 txn->req.sov -= old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005025 }
5026
Mark Lamourinec2247f02012-01-04 13:02:01 -05005027 return 0;
5028}
5029
Willy Tarreau610ecce2010-01-04 21:15:02 +01005030/* Terminate current transaction and prepare a new one. This is very tricky
5031 * right now but it works.
5032 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005033void http_end_txn_clean_session(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005034{
Willy Tarreaueee5b512015-04-03 23:46:31 +02005035 int prev_status = s->txn->status;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005036 struct proxy *fe = strm_fe(s);
Willy Tarreau323a2d92015-08-04 19:00:17 +02005037 struct connection *srv_conn;
5038 struct server *srv;
Willy Tarreau449d74a2015-08-05 17:16:33 +02005039 unsigned int prev_flags = s->txn->flags;
Willy Tarreau068621e2013-12-23 15:11:25 +01005040
Willy Tarreau610ecce2010-01-04 21:15:02 +01005041 /* FIXME: We need a more portable way of releasing a backend's and a
5042 * server's connections. We need a safer way to reinitialize buffer
5043 * flags. We also need a more accurate method for computing per-request
5044 * data.
5045 */
Willy Tarreau323a2d92015-08-04 19:00:17 +02005046 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005047
Willy Tarreau4213a112013-12-15 10:25:42 +01005048 /* unless we're doing keep-alive, we want to quickly close the connection
5049 * to the server.
5050 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02005051 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Willy Tarreau350f4872014-11-28 14:42:25 +01005052 !si_conn_ready(&s->si[1])) {
5053 s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
5054 si_shutr(&s->si[1]);
5055 si_shutw(&s->si[1]);
Willy Tarreau4213a112013-12-15 10:25:42 +01005056 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005057
Willy Tarreaue7dff022015-04-03 01:14:29 +02005058 if (s->flags & SF_BE_ASSIGNED) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005059 s->be->beconn--;
Willy Tarreau2d5cd472012-03-01 23:34:37 +01005060 if (unlikely(s->srv_conn))
5061 sess_change_server(s, NULL);
5062 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005063
5064 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02005065 stream_process_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005066
Willy Tarreaueee5b512015-04-03 23:46:31 +02005067 if (s->txn->status) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005068 int n;
5069
Willy Tarreaueee5b512015-04-03 23:46:31 +02005070 n = s->txn->status / 100;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005071 if (n < 1 || n > 5)
5072 n = 0;
5073
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005074 if (fe->mode == PR_MODE_HTTP) {
5075 fe->fe_counters.p.http.rsp[n]++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02005076 if (s->comp_algo && (s->flags & SF_COMP_READY))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005077 fe->fe_counters.p.http.comp_rsp++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01005078 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02005079 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01005080 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005081 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01005082 s->be->be_counters.p.http.cum_req++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02005083 if (s->comp_algo && (s->flags & SF_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01005084 s->be->be_counters.p.http.comp_rsp++;
5085 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005086 }
5087
5088 /* don't count other requests' data */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005089 s->logs.bytes_in -= s->req.buf->i;
5090 s->logs.bytes_out -= s->res.buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005091
5092 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005093 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02005094 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005095 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005096 s->do_log(s);
5097 }
5098
Willy Tarreaud713bcc2014-06-25 15:36:04 +02005099 /* stop tracking content-based counters */
Willy Tarreau87b09662015-04-03 00:22:06 +02005100 stream_stop_content_counters(s);
5101 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02005102
Willy Tarreau610ecce2010-01-04 21:15:02 +01005103 s->logs.accept_date = date; /* user-visible date for logging */
5104 s->logs.tv_accept = now; /* corrected date for internal use */
5105 tv_zero(&s->logs.tv_request);
5106 s->logs.t_queue = -1;
5107 s->logs.t_connect = -1;
5108 s->logs.t_data = -1;
5109 s->logs.t_close = 0;
5110 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
5111 s->logs.srv_queue_size = 0; /* we will get this number soon */
5112
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005113 s->logs.bytes_in = s->req.total = s->req.buf->i;
5114 s->logs.bytes_out = s->res.total = s->res.buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005115
5116 if (s->pend_pos)
5117 pendconn_free(s->pend_pos);
5118
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005119 if (objt_server(s->target)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02005120 if (s->flags & SF_CURR_SESS) {
5121 s->flags &= ~SF_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005122 objt_server(s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005123 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005124 if (may_dequeue_tasks(objt_server(s->target), s->be))
5125 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01005126 }
5127
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005128 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005129
Willy Tarreau4213a112013-12-15 10:25:42 +01005130 /* only release our endpoint if we don't intend to reuse the
5131 * connection.
5132 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02005133 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Willy Tarreau350f4872014-11-28 14:42:25 +01005134 !si_conn_ready(&s->si[1])) {
5135 si_release_endpoint(&s->si[1]);
Willy Tarreau323a2d92015-08-04 19:00:17 +02005136 srv_conn = NULL;
Willy Tarreau4213a112013-12-15 10:25:42 +01005137 }
5138
Willy Tarreau350f4872014-11-28 14:42:25 +01005139 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
5140 s->si[1].err_type = SI_ET_NONE;
5141 s->si[1].conn_retries = 0; /* used for logging too */
5142 s->si[1].exp = TICK_ETERNITY;
Willy Tarreau87b09662015-04-03 00:22:06 +02005143 s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005144 s->req.flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT|CF_WAKE_CONNECT|CF_WROTE_DATA);
5145 s->res.flags &= ~(CF_SHUTR|CF_SHUTR_NOW|CF_READ_ATTACHED|CF_READ_ERROR|CF_READ_NOEXP|CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_PARTIAL|CF_NEVER_WAIT|CF_WROTE_DATA);
Willy Tarreaue7dff022015-04-03 01:14:29 +02005146 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
5147 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
5148 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
Willy Tarreau543db622012-11-15 16:41:22 +01005149
Willy Tarreaueee5b512015-04-03 23:46:31 +02005150 s->txn->meth = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005151 http_reset_txn(s);
Willy Tarreaueee5b512015-04-03 23:46:31 +02005152 s->txn->flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01005153
5154 if (prev_status == 401 || prev_status == 407) {
5155 /* In HTTP keep-alive mode, if we receive a 401, we still have
5156 * a chance of being able to send the visitor again to the same
5157 * server over the same connection. This is required by some
5158 * broken protocols such as NTLM, and anyway whenever there is
5159 * an opportunity for sending the challenge to the proper place,
5160 * it's better to do it (at least it helps with debugging).
5161 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02005162 s->txn->flags |= TX_PREFER_LAST;
Willy Tarreau387ebf82015-08-04 19:24:13 +02005163 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau068621e2013-12-23 15:11:25 +01005164 }
5165
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005166 if (fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau350f4872014-11-28 14:42:25 +01005167 s->si[1].flags |= SI_FL_INDEP_STR;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005168
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005169 if (fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005170 s->req.flags |= CF_NEVER_WAIT;
5171 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02005172 }
5173
Willy Tarreau610ecce2010-01-04 21:15:02 +01005174 /* if the request buffer is not empty, it means we're
5175 * about to process another request, so send pending
5176 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01005177 * Just don't do this if the buffer is close to be full,
5178 * because the request will wait for it to flush a little
5179 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005180 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005181 if (s->req.buf->i) {
5182 if (s->res.buf->o &&
5183 !buffer_full(s->res.buf, global.tune.maxrewrite) &&
5184 bi_end(s->res.buf) <= s->res.buf->data + s->res.buf->size - global.tune.maxrewrite)
5185 s->res.flags |= CF_EXPECT_MORE;
Willy Tarreau065e8332010-01-08 00:30:20 +01005186 }
Willy Tarreau90deb182010-01-07 00:20:41 +01005187
5188 /* we're removing the analysers, we MUST re-enable events detection */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005189 channel_auto_read(&s->req);
5190 channel_auto_close(&s->req);
5191 channel_auto_read(&s->res);
5192 channel_auto_close(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005193
Willy Tarreau27375622013-12-17 00:00:28 +01005194 /* we're in keep-alive with an idle connection, monitor it */
Willy Tarreau4320eaa2015-08-05 11:08:30 +02005195 if (srv_conn) {
Willy Tarreau323a2d92015-08-04 19:00:17 +02005196 srv = objt_server(srv_conn->target);
Willy Tarreau8dff9982015-08-04 20:45:52 +02005197 if (!srv)
5198 si_idle_conn(&s->si[1], NULL);
5199 else if ((srv_conn->flags & CO_FL_PRIVATE) ||
5200 ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR))
5201 si_idle_conn(&s->si[1], &srv->priv_conns);
Willy Tarreau449d74a2015-08-05 17:16:33 +02005202 else if (prev_flags & TX_NOT_FIRST)
5203 /* note: we check the request, not the connection, but
5204 * this is valid for strategies SAFE and AGGR, and in
5205 * case of ALWS, we don't care anyway.
5206 */
5207 si_idle_conn(&s->si[1], &srv->safe_conns);
Willy Tarreau8dff9982015-08-04 20:45:52 +02005208 else
5209 si_idle_conn(&s->si[1], &srv->idle_conns);
Willy Tarreau4320eaa2015-08-05 11:08:30 +02005210 }
Willy Tarreau27375622013-12-17 00:00:28 +01005211
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005212 s->req.analysers = strm_li(s)->analysers;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005213 s->res.analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005214}
5215
5216
5217/* This function updates the request state machine according to the response
5218 * state machine and buffer flags. It returns 1 if it changes anything (flag
5219 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
5220 * it is only used to find when a request/response couple is complete. Both
5221 * this function and its equivalent should loop until both return zero. It
5222 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
5223 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005224int http_sync_req_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005225{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005226 struct channel *chn = &s->req;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005227 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005228 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005229 unsigned int old_state = txn->req.msg_state;
5230
Willy Tarreau610ecce2010-01-04 21:15:02 +01005231 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
5232 return 0;
5233
5234 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01005235 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005236 * We can shut the read side unless we want to abort_on_close,
5237 * or we have a POST request. The issue with POST requests is
5238 * that some browsers still send a CRLF after the request, and
5239 * this CRLF must be read so that it does not remain in the kernel
5240 * buffers, otherwise a close could cause an RST on some systems
5241 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01005242 * Note that if we're using keep-alive on the client side, we'd
5243 * rather poll now and keep the polling enabled for the whole
Willy Tarreau87b09662015-04-03 00:22:06 +02005244 * stream's life than enabling/disabling it between each
Willy Tarreau3988d932013-12-27 23:03:08 +01005245 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01005246 */
Willy Tarreau3988d932013-12-27 23:03:08 +01005247 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
5248 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
5249 !(s->be->options & PR_O_ABRT_CLOSE) &&
5250 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005251 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005252
Willy Tarreau40f151a2012-12-20 12:10:09 +01005253 /* if the server closes the connection, we want to immediately react
5254 * and close the socket to save packets and syscalls.
5255 */
Willy Tarreau350f4872014-11-28 14:42:25 +01005256 s->si[1].flags |= SI_FL_NOHALF;
Willy Tarreau40f151a2012-12-20 12:10:09 +01005257
Willy Tarreau610ecce2010-01-04 21:15:02 +01005258 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
5259 goto wait_other_side;
5260
5261 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
5262 /* The server has not finished to respond, so we
5263 * don't want to move in order not to upset it.
5264 */
5265 goto wait_other_side;
5266 }
5267
5268 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
5269 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005270 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005271 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02005272 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005273 goto wait_other_side;
5274 }
5275
5276 /* When we get here, it means that both the request and the
5277 * response have finished receiving. Depending on the connection
5278 * mode, we'll have to wait for the last bytes to leave in either
5279 * direction, and sometimes for a close to be effective.
5280 */
5281
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005282 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5283 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005284 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
5285 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005286 }
5287 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5288 /* Option forceclose is set, or either side wants to close,
5289 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02005290 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005291 * once both states are CLOSED.
5292 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005293 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5294 channel_shutr_now(chn);
5295 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005296 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005297 }
5298 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005299 /* The last possible modes are keep-alive and tunnel. Tunnel mode
5300 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005301 */
Willy Tarreau4213a112013-12-15 10:25:42 +01005302 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
5303 channel_auto_read(chn);
5304 txn->req.msg_state = HTTP_MSG_TUNNEL;
5305 chn->flags |= CF_NEVER_WAIT;
5306 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005307 }
5308
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005309 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005310 /* if we've just closed an output, let's switch */
Willy Tarreau350f4872014-11-28 14:42:25 +01005311 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005312
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005313 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005314 txn->req.msg_state = HTTP_MSG_CLOSING;
5315 goto http_msg_closing;
5316 }
5317 else {
5318 txn->req.msg_state = HTTP_MSG_CLOSED;
5319 goto http_msg_closed;
5320 }
5321 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005322 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005323 }
5324
5325 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
5326 http_msg_closing:
5327 /* nothing else to forward, just waiting for the output buffer
5328 * to be empty and for the shutw_now to take effect.
5329 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005330 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005331 txn->req.msg_state = HTTP_MSG_CLOSED;
5332 goto http_msg_closed;
5333 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005334 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005335 txn->req.msg_state = HTTP_MSG_ERROR;
5336 goto wait_other_side;
5337 }
5338 }
5339
5340 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
5341 http_msg_closed:
Willy Tarreau3988d932013-12-27 23:03:08 +01005342 /* see above in MSG_DONE why we only do this in these states */
5343 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
5344 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
5345 !(s->be->options & PR_O_ABRT_CLOSE))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01005346 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005347 goto wait_other_side;
5348 }
5349
5350 wait_other_side:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005351 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005352}
5353
5354
5355/* This function updates the response state machine according to the request
5356 * state machine and buffer flags. It returns 1 if it changes anything (flag
5357 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
5358 * it is only used to find when a request/response couple is complete. Both
5359 * this function and its equivalent should loop until both return zero. It
5360 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
5361 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005362int http_sync_res_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005363{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005364 struct channel *chn = &s->res;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005365 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005366 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005367 unsigned int old_state = txn->rsp.msg_state;
5368
Willy Tarreau610ecce2010-01-04 21:15:02 +01005369 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
5370 return 0;
5371
5372 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
5373 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01005374 * still monitor the server connection for a possible close
5375 * while the request is being uploaded, so we don't disable
5376 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005377 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005378 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005379
5380 if (txn->req.msg_state == HTTP_MSG_ERROR)
5381 goto wait_other_side;
5382
5383 if (txn->req.msg_state < HTTP_MSG_DONE) {
5384 /* The client seems to still be sending data, probably
5385 * because we got an error response during an upload.
5386 * We have the choice of either breaking the connection
5387 * or letting it pass through. Let's do the later.
5388 */
5389 goto wait_other_side;
5390 }
5391
5392 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
5393 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005394 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005395 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02005396 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005397 goto wait_other_side;
5398 }
5399
5400 /* When we get here, it means that both the request and the
5401 * response have finished receiving. Depending on the connection
5402 * mode, we'll have to wait for the last bytes to leave in either
5403 * direction, and sometimes for a close to be effective.
5404 */
5405
5406 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5407 /* Server-close mode : shut read and wait for the request
5408 * side to close its output buffer. The caller will detect
5409 * when we're in DONE and the other is in CLOSED and will
5410 * catch that for the final cleanup.
5411 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005412 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
5413 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005414 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005415 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5416 /* Option forceclose is set, or either side wants to close,
5417 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02005418 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005419 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005420 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005421 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5422 channel_shutr_now(chn);
5423 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005424 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005425 }
5426 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005427 /* The last possible modes are keep-alive and tunnel. Tunnel will
5428 * need to forward remaining data. Keep-alive will need to monitor
5429 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005430 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005431 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02005432 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01005433 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
5434 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005435 }
5436
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005437 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005438 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005439 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005440 txn->rsp.msg_state = HTTP_MSG_CLOSING;
5441 goto http_msg_closing;
5442 }
5443 else {
5444 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5445 goto http_msg_closed;
5446 }
5447 }
5448 goto wait_other_side;
5449 }
5450
5451 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
5452 http_msg_closing:
5453 /* nothing else to forward, just waiting for the output buffer
5454 * to be empty and for the shutw_now to take effect.
5455 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005456 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005457 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5458 goto http_msg_closed;
5459 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005460 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005461 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005462 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005463 if (objt_server(s->target))
5464 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005465 goto wait_other_side;
5466 }
5467 }
5468
5469 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
5470 http_msg_closed:
5471 /* drop any pending data */
Willy Tarreau319f7452015-01-14 20:32:59 +01005472 channel_truncate(chn);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005473 channel_auto_close(chn);
5474 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005475 goto wait_other_side;
5476 }
5477
5478 wait_other_side:
Willy Tarreaufc47f912012-10-20 10:38:09 +02005479 /* We force the response to leave immediately if we're waiting for the
5480 * other side, since there is no pending shutdown to push it out.
5481 */
5482 if (!channel_is_empty(chn))
5483 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005484 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005485}
5486
5487
5488/* Resync the request and response state machines. Return 1 if either state
5489 * changes.
5490 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005491int http_resync_states(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005492{
Willy Tarreaueee5b512015-04-03 23:46:31 +02005493 struct http_txn *txn = s->txn;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005494 int old_req_state = txn->req.msg_state;
5495 int old_res_state = txn->rsp.msg_state;
5496
Willy Tarreau610ecce2010-01-04 21:15:02 +01005497 http_sync_req_state(s);
5498 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005499 if (!http_sync_res_state(s))
5500 break;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005501 if (!http_sync_req_state(s))
5502 break;
5503 }
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02005504
Willy Tarreau610ecce2010-01-04 21:15:02 +01005505 /* OK, both state machines agree on a compatible state.
5506 * There are a few cases we're interested in :
5507 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
5508 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
5509 * directions, so let's simply disable both analysers.
5510 * - HTTP_MSG_CLOSED on the response only means we must abort the
5511 * request.
5512 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
5513 * with server-close mode means we've completed one request and we
5514 * must re-initialize the server connection.
5515 */
5516
5517 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
5518 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
5519 (txn->req.msg_state == HTTP_MSG_CLOSED &&
5520 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005521 s->req.analysers = 0;
5522 channel_auto_close(&s->req);
5523 channel_auto_read(&s->req);
5524 s->res.analysers = 0;
5525 channel_auto_close(&s->res);
5526 channel_auto_read(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005527 }
Willy Tarreau40f151a2012-12-20 12:10:09 +01005528 else if ((txn->req.msg_state >= HTTP_MSG_DONE &&
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005529 (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->res.flags & CF_SHUTW))) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005530 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01005531 txn->req.msg_state == HTTP_MSG_ERROR) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005532 s->res.analysers = 0;
5533 channel_auto_close(&s->res);
5534 channel_auto_read(&s->res);
5535 s->req.analysers = 0;
5536 channel_abort(&s->req);
5537 channel_auto_close(&s->req);
5538 channel_auto_read(&s->req);
5539 channel_truncate(&s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005540 }
Willy Tarreau4213a112013-12-15 10:25:42 +01005541 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
5542 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01005543 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01005544 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
5545 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
5546 /* server-close/keep-alive: terminate this transaction,
5547 * possibly killing the server connection and reinitialize
5548 * a fresh-new transaction.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005549 */
5550 http_end_txn_clean_session(s);
5551 }
5552
Willy Tarreau610ecce2010-01-04 21:15:02 +01005553 return txn->req.msg_state != old_req_state ||
5554 txn->rsp.msg_state != old_res_state;
5555}
5556
Willy Tarreaud98cf932009-12-27 22:54:55 +01005557/* This function is an analyser which forwards request body (including chunk
5558 * sizes if any). It is called as soon as we must forward, even if we forward
5559 * zero byte. The only situation where it must not be called is when we're in
5560 * tunnel mode and we want to forward till the close. It's used both to forward
5561 * remaining data and to resync after end of body. It expects the msg_state to
5562 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02005563 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreau124d9912011-03-01 20:30:48 +01005564 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreauc24715e2014-04-17 15:21:20 +02005565 * bytes of pending data + the headers if not already done.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005566 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005567int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005568{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005569 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005570 struct http_txn *txn = s->txn;
5571 struct http_msg *msg = &s->txn->req;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005572
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005573 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5574 return 0;
5575
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005576 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02005577 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005578 /* Output closed while we were sending data. We must abort and
5579 * wake the other side up.
5580 */
5581 msg->msg_state = HTTP_MSG_ERROR;
5582 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005583 return 1;
5584 }
5585
Willy Tarreaud98cf932009-12-27 22:54:55 +01005586 /* Note that we don't have to send 100-continue back because we don't
5587 * need the data to complete our job, and it's up to the server to
5588 * decide whether to return 100, 417 or anything else in return of
5589 * an "Expect: 100-continue" header.
5590 */
5591
Willy Tarreaubb2e6692014-07-10 19:06:10 +02005592 if (msg->sov > 0) {
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005593 /* we have msg->sov which points to the first byte of message
5594 * body, and req->buf.p still points to the beginning of the
5595 * message. We forward the headers now, as we don't need them
5596 * anymore, and we want to flush them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005597 */
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005598 b_adv(req->buf, msg->sov);
5599 msg->next -= msg->sov;
5600 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01005601
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005602 /* The previous analysers guarantee that the state is somewhere
5603 * between MSG_BODY and the first MSG_DATA. So msg->sol and
5604 * msg->next are always correct.
5605 */
5606 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
5607 if (msg->flags & HTTP_MSGF_TE_CHNK)
5608 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5609 else
5610 msg->msg_state = HTTP_MSG_DATA;
5611 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005612 }
5613
Willy Tarreau7ba23542014-04-17 21:50:00 +02005614 /* Some post-connect processing might want us to refrain from starting to
5615 * forward data. Currently, the only reason for this is "balance url_param"
5616 * whichs need to parse/process the request after we've enabled forwarding.
5617 */
5618 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005619 if (!(s->res.flags & CF_READ_ATTACHED)) {
Willy Tarreau7ba23542014-04-17 21:50:00 +02005620 channel_auto_connect(req);
Willy Tarreau644c1012014-04-30 18:11:11 +02005621 req->flags |= CF_WAKE_CONNECT;
Willy Tarreau7ba23542014-04-17 21:50:00 +02005622 goto missing_data;
5623 }
5624 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
5625 }
5626
Willy Tarreau80a92c02014-03-12 10:41:13 +01005627 /* in most states, we should abort in case of early close */
5628 channel_auto_close(req);
5629
Willy Tarreauefdf0942014-04-24 20:08:57 +02005630 if (req->to_forward) {
5631 /* We can't process the buffer's contents yet */
5632 req->flags |= CF_WAKE_WRITE;
5633 goto missing_data;
5634 }
5635
Willy Tarreaud98cf932009-12-27 22:54:55 +01005636 while (1) {
Willy Tarreaucaabe412010-01-03 23:08:28 +01005637 if (msg->msg_state == HTTP_MSG_DATA) {
5638 /* must still forward */
Willy Tarreaubed410e2014-04-22 08:19:34 +02005639 /* we may have some pending data starting at req->buf->p */
5640 if (msg->chunk_len > req->buf->i - msg->next) {
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005641 req->flags |= CF_WAKE_WRITE;
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005642 goto missing_data;
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005643 }
Willy Tarreaubed410e2014-04-22 08:19:34 +02005644 msg->next += msg->chunk_len;
5645 msg->chunk_len = 0;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005646
5647 /* nothing left to forward */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005648 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005649 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005650 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01005651 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005652 }
5653 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005654 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreauc24715e2014-04-17 15:21:20 +02005655 * set ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01005656 * TRAILERS state.
5657 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005658 int ret = http_parse_chunk_size(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005659
Willy Tarreau54d23df2012-10-25 19:04:45 +02005660 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005661 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005662 else if (ret < 0) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005663 stream_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005664 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005665 http_capture_bad_message(&sess->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005666 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005667 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005668 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005669 }
Willy Tarreau54d23df2012-10-25 19:04:45 +02005670 else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005671 /* we want the CRLF after the data */
Willy Tarreau54d23df2012-10-25 19:04:45 +02005672 int ret = http_skip_chunk_crlf(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005673
5674 if (ret == 0)
5675 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005676 else if (ret < 0) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005677 stream_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005678 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005679 http_capture_bad_message(&sess->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005680 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005681 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005682 /* we're in MSG_CHUNK_SIZE now */
5683 }
5684 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005685 int ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005686
5687 if (ret == 0)
5688 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005689 else if (ret < 0) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005690 stream_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005691 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005692 http_capture_bad_message(&sess->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005693 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005694 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005695 /* we're in HTTP_MSG_DONE now */
5696 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005697 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005698 int old_state = msg->msg_state;
5699
Willy Tarreau610ecce2010-01-04 21:15:02 +01005700 /* other states, DONE...TUNNEL */
Willy Tarreaubed410e2014-04-22 08:19:34 +02005701
5702 /* we may have some pending data starting at req->buf->p
5703 * such as last chunk of data or trailers.
5704 */
5705 b_adv(req->buf, msg->next);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005706 if (unlikely(!(s->req.flags & CF_WROTE_DATA)))
Willy Tarreaubb2e6692014-07-10 19:06:10 +02005707 msg->sov -= msg->next;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005708 msg->next = 0;
5709
Willy Tarreaubbfb6c42015-05-11 18:30:33 +02005710 /* we don't want to forward closes on DONE except in
5711 * tunnel mode.
5712 */
5713 if ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005714 channel_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005715 if (http_resync_states(s)) {
5716 /* some state changes occurred, maybe the analyser
5717 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01005718 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005719 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005720 if (req->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005721 /* request errors are most likely due to
5722 * the server aborting the transfer.
5723 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005724 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005725 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005726 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005727 http_capture_bad_message(&sess->fe->invalid_req, s, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005728 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005729 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005730 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005731 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005732
5733 /* If "option abortonclose" is set on the backend, we
5734 * want to monitor the client's connection and forward
5735 * any shutdown notification to the server, which will
5736 * decide whether to close or to go on processing the
Willy Tarreaubbfb6c42015-05-11 18:30:33 +02005737 * request. We only do that in tunnel mode, and not in
5738 * other modes since it can be abused to exhaust source
5739 * ports.
Willy Tarreau5c54c712010-07-17 08:02:58 +02005740 */
5741 if (s->be->options & PR_O_ABRT_CLOSE) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005742 channel_auto_read(req);
Willy Tarreaubbfb6c42015-05-11 18:30:33 +02005743 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) &&
5744 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN))
5745 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005746 channel_auto_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02005747 }
Willy Tarreaueee5b512015-04-03 23:46:31 +02005748 else if (s->txn->meth == HTTP_METH_POST) {
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005749 /* POST requests may require to read extra CRLF
5750 * sent by broken browsers and which could cause
5751 * an RST to be sent upon close on some systems
5752 * (eg: Linux).
5753 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005754 channel_auto_read(req);
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005755 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005756
Willy Tarreau610ecce2010-01-04 21:15:02 +01005757 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005758 }
5759 }
5760
Willy Tarreaud98cf932009-12-27 22:54:55 +01005761 missing_data:
Willy Tarreaubed410e2014-04-22 08:19:34 +02005762 /* we may have some pending data starting at req->buf->p */
5763 b_adv(req->buf, msg->next);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005764 if (unlikely(!(s->req.flags & CF_WROTE_DATA)))
Willy Tarreaubb2e6692014-07-10 19:06:10 +02005765 msg->sov -= msg->next + MIN(msg->chunk_len, req->buf->i);
5766
Willy Tarreaubed410e2014-04-22 08:19:34 +02005767 msg->next = 0;
5768 msg->chunk_len -= channel_forward(req, msg->chunk_len);
5769
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005770 /* stop waiting for data if the input is closed before the end */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005771 if (req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02005772 if (!(s->flags & SF_ERR_MASK))
5773 s->flags |= SF_ERR_CLICL;
5774 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005775 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005776 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005777 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005778 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005779 }
5780
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005781 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005782 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005783 if (objt_server(s->target))
5784 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005785
5786 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02005787 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005788
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005789 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005790 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005791 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005792
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005793 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005794 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005795 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005796 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005797 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005798
Willy Tarreau5c620922011-05-11 19:56:11 +02005799 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005800 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005801 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01005802 * modes are already handled by the stream sock layer. We must not do
5803 * this in content-length mode because it could present the MSG_MORE
5804 * flag with the last block of forwarded data, which would cause an
5805 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02005806 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005807 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005808 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005809
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005810 return 0;
5811
Willy Tarreaud98cf932009-12-27 22:54:55 +01005812 return_bad_req: /* let's centralize all bad requests */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005813 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005814 if (sess->listener->counters)
5815 sess->listener->counters->failed_req++;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005816
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005817 return_bad_req_stats_ok:
Willy Tarreaubed410e2014-04-22 08:19:34 +02005818 /* we may have some pending data starting at req->buf->p */
5819 b_adv(req->buf, msg->next);
5820 msg->next = 0;
5821
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005822 txn->req.msg_state = HTTP_MSG_ERROR;
5823 if (txn->status) {
5824 /* Note: we don't send any error if some data were already sent */
Willy Tarreau350f4872014-11-28 14:42:25 +01005825 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005826 } else {
5827 txn->status = 400;
Willy Tarreau350f4872014-11-28 14:42:25 +01005828 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005829 }
5830 req->analysers = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005831 s->res.analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005832
Willy Tarreaue7dff022015-04-03 01:14:29 +02005833 if (!(s->flags & SF_ERR_MASK))
5834 s->flags |= SF_ERR_PRXCOND;
5835 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005836 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005837 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005838 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005839 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005840 }
5841 return 0;
5842
5843 aborted_xfer:
5844 txn->req.msg_state = HTTP_MSG_ERROR;
5845 if (txn->status) {
5846 /* Note: we don't send any error if some data were already sent */
Willy Tarreau350f4872014-11-28 14:42:25 +01005847 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005848 } else {
5849 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01005850 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005851 }
5852 req->analysers = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005853 s->res.analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005854
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005855 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005856 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005857 if (objt_server(s->target))
5858 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005859
Willy Tarreaue7dff022015-04-03 01:14:29 +02005860 if (!(s->flags & SF_ERR_MASK))
5861 s->flags |= SF_ERR_SRVCL;
5862 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005863 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005864 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005865 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005866 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005867 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005868 return 0;
5869}
5870
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005871/* This stream analyser waits for a complete HTTP response. It returns 1 if the
5872 * processing can continue on next analysers, or zero if it either needs more
5873 * data or wants to immediately abort the response (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005874 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005875 * when it has nothing left to do, and may remove any analyser when it wants to
5876 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005877 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005878int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005879{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005880 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005881 struct http_txn *txn = s->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005882 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005883 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005884 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005885 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005886 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02005887
Willy Tarreau87b09662015-04-03 00:22:06 +02005888 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02005889 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005890 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005891 rep,
5892 rep->rex, rep->wex,
5893 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005894 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005895 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02005896
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005897 /*
5898 * Now parse the partial (or complete) lines.
5899 * We will check the response syntax, and also join multi-line
5900 * headers. An index of all the lines will be elaborated while
5901 * parsing.
5902 *
5903 * For the parsing, we use a 28 states FSM.
5904 *
5905 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02005906 * rep->buf->p = beginning of response
5907 * rep->buf->p + msg->eoh = end of processed headers / start of current one
5908 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02005909 * msg->eol = end of current header or line (LF or CRLF)
5910 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005911 */
5912
Willy Tarreau628c40c2014-04-24 19:11:26 +02005913 next_one:
Willy Tarreau83e3af02009-12-28 17:39:57 +01005914 /* There's a protected area at the end of the buffer for rewriting
5915 * purposes. We don't want to start to parse the request if the
5916 * protected area is affected, because we may have to move processed
5917 * data later, which is much more complicated.
5918 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005919 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01005920 if (unlikely(!channel_is_rewritable(rep))) {
Willy Tarreau379357a2013-06-08 12:55:46 +02005921 /* some data has still not left the buffer, wake us once that's done */
5922 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
5923 goto abort_response;
5924 channel_dont_close(rep);
5925 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01005926 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02005927 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01005928 }
5929
Willy Tarreau379357a2013-06-08 12:55:46 +02005930 if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
5931 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite))
5932 buffer_slow_realign(rep->buf);
5933
Willy Tarreau9b28e032012-10-12 23:49:43 +02005934 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01005935 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01005936 }
5937
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005938 /* 1: we might have to print this header in debug mode */
5939 if (unlikely((global.mode & MODE_DEBUG) &&
5940 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02005941 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005942 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005943
Willy Tarreau9b28e032012-10-12 23:49:43 +02005944 sol = rep->buf->p;
5945 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005946 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005947
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005948 sol += hdr_idx_first_pos(&txn->hdr_idx);
5949 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005950
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005951 while (cur_idx) {
5952 eol = sol + txn->hdr_idx.v[cur_idx].len;
5953 debug_hdr("srvhdr", s, sol, eol);
5954 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5955 cur_idx = txn->hdr_idx.v[cur_idx].next;
5956 }
5957 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005958
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005959 /*
5960 * Now we quickly check if we have found a full valid response.
5961 * If not so, we check the FD and buffer states before leaving.
5962 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005963 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005964 * responses are checked first.
5965 *
5966 * Depending on whether the client is still there or not, we
5967 * may send an error response back or not. Note that normally
5968 * we should only check for HTTP status there, and check I/O
5969 * errors somewhere else.
5970 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005971
Willy Tarreau655dce92009-11-08 13:10:58 +01005972 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005973 /* Invalid response */
5974 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5975 /* we detected a parsing error. We want to archive this response
5976 * in the dedicated proxy area for later troubleshooting.
5977 */
5978 hdr_response_bad:
5979 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005980 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005981
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005982 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005983 if (objt_server(s->target)) {
5984 objt_server(s->target)->counters.failed_resp++;
5985 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005986 }
Willy Tarreau64648412010-03-05 10:41:54 +01005987 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005988 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005989 rep->analysers = 0;
5990 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01005991 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005992 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01005993 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005994
Willy Tarreaue7dff022015-04-03 01:14:29 +02005995 if (!(s->flags & SF_ERR_MASK))
5996 s->flags |= SF_ERR_PRXCOND;
5997 if (!(s->flags & SF_FINST_MASK))
5998 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005999
6000 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006001 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006002
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006003 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02006004 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02006005 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02006006 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006007 goto hdr_response_bad;
6008 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006009
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006010 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006011 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006012 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006013 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006014 else if (txn->flags & TX_NOT_FIRST)
6015 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02006016
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006017 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006018 if (objt_server(s->target)) {
6019 objt_server(s->target)->counters.failed_resp++;
6020 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006021 }
Willy Tarreau461f6622008-08-15 23:43:19 +02006022
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006023 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006024 rep->analysers = 0;
6025 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01006026 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006027 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01006028 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02006029
Willy Tarreaue7dff022015-04-03 01:14:29 +02006030 if (!(s->flags & SF_ERR_MASK))
6031 s->flags |= SF_ERR_SRVCL;
6032 if (!(s->flags & SF_FINST_MASK))
6033 s->flags |= SF_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02006034 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006035 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006036
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02006037 /* read timeout : return a 504 to the client. */
6038 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006039 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006040 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006041 else if (txn->flags & TX_NOT_FIRST)
6042 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01006043
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006044 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006045 if (objt_server(s->target)) {
6046 objt_server(s->target)->counters.failed_resp++;
6047 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006048 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01006049
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006050 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006051 rep->analysers = 0;
6052 txn->status = 504;
Willy Tarreau350f4872014-11-28 14:42:25 +01006053 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006054 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01006055 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02006056
Willy Tarreaue7dff022015-04-03 01:14:29 +02006057 if (!(s->flags & SF_ERR_MASK))
6058 s->flags |= SF_ERR_SRVTO;
6059 if (!(s->flags & SF_FINST_MASK))
6060 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006061 return 0;
6062 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02006063
Willy Tarreauf003d372012-11-26 13:35:37 +01006064 /* client abort with an abortonclose */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006065 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006066 sess->fe->fe_counters.cli_aborts++;
Willy Tarreauf003d372012-11-26 13:35:37 +01006067 s->be->be_counters.cli_aborts++;
6068 if (objt_server(s->target))
6069 objt_server(s->target)->counters.cli_aborts++;
6070
6071 rep->analysers = 0;
6072 channel_auto_close(rep);
6073
6074 txn->status = 400;
Willy Tarreau319f7452015-01-14 20:32:59 +01006075 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01006076 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400));
Willy Tarreauf003d372012-11-26 13:35:37 +01006077
Willy Tarreaue7dff022015-04-03 01:14:29 +02006078 if (!(s->flags & SF_ERR_MASK))
6079 s->flags |= SF_ERR_CLICL;
6080 if (!(s->flags & SF_FINST_MASK))
6081 s->flags |= SF_FINST_H;
Willy Tarreauf003d372012-11-26 13:35:37 +01006082
Willy Tarreau87b09662015-04-03 00:22:06 +02006083 /* process_stream() will take care of the error */
Willy Tarreauf003d372012-11-26 13:35:37 +01006084 return 0;
6085 }
6086
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02006087 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006088 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02006089 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006090 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006091 else if (txn->flags & TX_NOT_FIRST)
6092 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01006093
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006094 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006095 if (objt_server(s->target)) {
6096 objt_server(s->target)->counters.failed_resp++;
6097 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006098 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01006099
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006100 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006101 rep->analysers = 0;
6102 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01006103 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006104 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01006105 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01006106
Willy Tarreaue7dff022015-04-03 01:14:29 +02006107 if (!(s->flags & SF_ERR_MASK))
6108 s->flags |= SF_ERR_SRVCL;
6109 if (!(s->flags & SF_FINST_MASK))
6110 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006111 return 0;
6112 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02006113
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006114 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006115 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006116 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006117 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006118 else if (txn->flags & TX_NOT_FIRST)
6119 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02006120
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006121 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006122 rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006123 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006124
Willy Tarreaue7dff022015-04-03 01:14:29 +02006125 if (!(s->flags & SF_ERR_MASK))
6126 s->flags |= SF_ERR_CLICL;
6127 if (!(s->flags & SF_FINST_MASK))
6128 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006129
Willy Tarreau87b09662015-04-03 00:22:06 +02006130 /* process_stream() will take care of the error */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006131 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006132 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01006133
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006134 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01006135 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006136 return 0;
6137 }
6138
6139 /* More interesting part now : we know that we have a complete
6140 * response which at least looks like HTTP. We have an indicator
6141 * of each header's length, so we can parse them quickly.
6142 */
6143
6144 if (unlikely(msg->err_pos >= 0))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006145 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006146
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006147 /*
6148 * 1: get the status code
6149 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02006150 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006151 if (n < 1 || n > 5)
6152 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02006153 /* when the client triggers a 4xx from the server, it's most often due
6154 * to a missing object or permission. These events should be tracked
6155 * because if they happen often, it may indicate a brute force or a
6156 * vulnerability scan.
6157 */
6158 if (n == 4)
Willy Tarreau87b09662015-04-03 00:22:06 +02006159 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02006160
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006161 if (objt_server(s->target))
6162 objt_server(s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006163
Willy Tarreau91852eb2015-05-01 13:26:00 +02006164 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
6165 * exactly one digit "." one digit. This check may be disabled using
6166 * option accept-invalid-http-response.
6167 */
6168 if (!(s->be->options2 & PR_O2_RSPBUG_OK)) {
6169 if (msg->sl.st.v_l != 8) {
6170 msg->err_pos = 0;
6171 goto hdr_response_bad;
6172 }
6173
6174 if (rep->buf->p[4] != '/' ||
6175 !isdigit((unsigned char)rep->buf->p[5]) ||
6176 rep->buf->p[6] != '.' ||
6177 !isdigit((unsigned char)rep->buf->p[7])) {
6178 msg->err_pos = 4;
6179 goto hdr_response_bad;
6180 }
6181 }
6182
Willy Tarreau5b154472009-12-21 20:11:07 +01006183 /* check if the response is HTTP/1.1 or above */
6184 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02006185 ((rep->buf->p[5] > '1') ||
6186 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006187 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01006188
6189 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01006190 txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_HDR_CONN_UPG|TX_CON_CLO_SET|TX_CON_KAL_SET);
Willy Tarreau5b154472009-12-21 20:11:07 +01006191
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006192 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006193 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006194
Willy Tarreau9b28e032012-10-12 23:49:43 +02006195 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006196
Willy Tarreau39650402010-03-15 19:44:39 +01006197 /* Adjust server's health based on status code. Note: status codes 501
6198 * and 505 are triggered on demand by client request, so we must not
6199 * count them as server failures.
6200 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006201 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02006202 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006203 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02006204 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006205 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02006206 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006207
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006208 /*
6209 * 2: check for cacheability.
6210 */
6211
6212 switch (txn->status) {
Willy Tarreau628c40c2014-04-24 19:11:26 +02006213 case 100:
6214 /*
6215 * We may be facing a 100-continue response, in which case this
6216 * is not the right response, and we're waiting for the next one.
6217 * Let's allow this response to go to the client and wait for the
6218 * next one.
6219 */
6220 hdr_idx_init(&txn->hdr_idx);
6221 msg->next -= channel_forward(rep, msg->next);
6222 msg->msg_state = HTTP_MSG_RPBEFORE;
6223 txn->status = 0;
6224 s->logs.t_data = -1; /* was not a response yet */
6225 goto next_one;
6226
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006227 case 200:
6228 case 203:
6229 case 206:
6230 case 300:
6231 case 301:
6232 case 410:
6233 /* RFC2616 @13.4:
6234 * "A response received with a status code of
6235 * 200, 203, 206, 300, 301 or 410 MAY be stored
6236 * by a cache (...) unless a cache-control
6237 * directive prohibits caching."
6238 *
6239 * RFC2616 @9.5: POST method :
6240 * "Responses to this method are not cacheable,
6241 * unless the response includes appropriate
6242 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006243 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006244 if (likely(txn->meth != HTTP_METH_POST) &&
Willy Tarreau67402132012-05-31 20:40:20 +02006245 ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006246 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
6247 break;
6248 default:
6249 break;
6250 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006251
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006252 /*
6253 * 3: we may need to capture headers
6254 */
6255 s->logs.logwait &= ~LW_RESP;
Willy Tarreaucb7dd012015-04-03 22:16:32 +02006256 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02006257 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaucb7dd012015-04-03 22:16:32 +02006258 s->res_cap, sess->fe->rsp_cap);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006259
Willy Tarreau557f1992015-05-01 10:05:17 +02006260 /* 4: determine the transfer-length according to RFC2616 #4.4, updated
6261 * by RFC7230#3.3.3 :
6262 *
6263 * The length of a message body is determined by one of the following
6264 * (in order of precedence):
6265 *
6266 * 1. Any response to a HEAD request and any response with a 1xx
6267 * (Informational), 204 (No Content), or 304 (Not Modified) status
6268 * code is always terminated by the first empty line after the
6269 * header fields, regardless of the header fields present in the
6270 * message, and thus cannot contain a message body.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006271 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006272 * 2. Any 2xx (Successful) response to a CONNECT request implies that
6273 * the connection will become a tunnel immediately after the empty
6274 * line that concludes the header fields. A client MUST ignore any
6275 * Content-Length or Transfer-Encoding header fields received in
6276 * such a message.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006277 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006278 * 3. If a Transfer-Encoding header field is present and the chunked
6279 * transfer coding (Section 4.1) is the final encoding, the message
6280 * body length is determined by reading and decoding the chunked
6281 * data until the transfer coding indicates the data is complete.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006282 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006283 * If a Transfer-Encoding header field is present in a response and
6284 * the chunked transfer coding is not the final encoding, the
6285 * message body length is determined by reading the connection until
6286 * it is closed by the server. If a Transfer-Encoding header field
6287 * is present in a request and the chunked transfer coding is not
6288 * the final encoding, the message body length cannot be determined
6289 * reliably; the server MUST respond with the 400 (Bad Request)
6290 * status code and then close the connection.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006291 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006292 * If a message is received with both a Transfer-Encoding and a
6293 * Content-Length header field, the Transfer-Encoding overrides the
6294 * Content-Length. Such a message might indicate an attempt to
6295 * perform request smuggling (Section 9.5) or response splitting
6296 * (Section 9.4) and ought to be handled as an error. A sender MUST
6297 * remove the received Content-Length field prior to forwarding such
6298 * a message downstream.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006299 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006300 * 4. If a message is received without Transfer-Encoding and with
6301 * either multiple Content-Length header fields having differing
6302 * field-values or a single Content-Length header field having an
6303 * invalid value, then the message framing is invalid and the
6304 * recipient MUST treat it as an unrecoverable error. If this is a
6305 * request message, the server MUST respond with a 400 (Bad Request)
6306 * status code and then close the connection. If this is a response
6307 * message received by a proxy, the proxy MUST close the connection
6308 * to the server, discard the received response, and send a 502 (Bad
6309 * Gateway) response to the client. If this is a response message
6310 * received by a user agent, the user agent MUST close the
6311 * connection to the server and discard the received response.
6312 *
6313 * 5. If a valid Content-Length header field is present without
6314 * Transfer-Encoding, its decimal value defines the expected message
6315 * body length in octets. If the sender closes the connection or
6316 * the recipient times out before the indicated number of octets are
6317 * received, the recipient MUST consider the message to be
6318 * incomplete and close the connection.
6319 *
6320 * 6. If this is a request message and none of the above are true, then
6321 * the message body length is zero (no message body is present).
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006322 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006323 * 7. Otherwise, this is a response message without a declared message
6324 * body length, so the message body length is determined by the
6325 * number of octets received prior to the server closing the
6326 * connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006327 */
6328
6329 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01006330 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006331 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006332 * FIXME: should we parse anyway and return an error on chunked encoding ?
6333 */
6334 if (txn->meth == HTTP_METH_HEAD ||
6335 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006336 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006337 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreau91015352012-11-27 07:31:33 +01006338 s->comp_algo = NULL;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006339 goto skip_content_length;
6340 }
6341
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006342 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006343 ctx.idx = 0;
Willy Tarreau4979d5c2015-05-01 10:06:30 +02006344 while (http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006345 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006346 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
6347 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006348 /* bad transfer-encoding (chunked followed by something else) */
6349 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006350 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006351 break;
6352 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006353 }
6354
Willy Tarreau1c913912015-04-30 10:57:51 +02006355 /* Chunked responses must have their content-length removed */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006356 ctx.idx = 0;
Willy Tarreaub4d0c032015-05-01 10:25:45 +02006357 if (use_close_only || (msg->flags & HTTP_MSGF_TE_CHNK)) {
Willy Tarreau1c913912015-04-30 10:57:51 +02006358 while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx))
6359 http_remove_header2(msg, &txn->hdr_idx, &ctx);
6360 }
Willy Tarreaub4d0c032015-05-01 10:25:45 +02006361 else while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006362 signed long long cl;
6363
Willy Tarreauad14f752011-09-02 20:33:27 +02006364 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006365 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006366 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02006367 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006368
Willy Tarreauad14f752011-09-02 20:33:27 +02006369 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006370 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006371 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02006372 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006373
Willy Tarreauad14f752011-09-02 20:33:27 +02006374 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006375 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006376 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02006377 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006378
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006379 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006380 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006381 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02006382 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006383
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006384 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01006385 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006386 }
6387
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006388 if (sess->fe->comp || s->be->comp)
William Lallemand82fe75c2012-10-23 10:25:10 +02006389 select_compression_response_header(s, rep->buf);
6390
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006391skip_content_length:
Willy Tarreau5b154472009-12-21 20:11:07 +01006392 /* Now we have to check if we need to modify the Connection header.
6393 * This is more difficult on the response than it is on the request,
6394 * because we can have two different HTTP versions and we don't know
6395 * how the client will interprete a response. For instance, let's say
6396 * that the client sends a keep-alive request in HTTP/1.0 and gets an
6397 * HTTP/1.1 response without any header. Maybe it will bound itself to
6398 * HTTP/1.0 because it only knows about it, and will consider the lack
6399 * of header as a close, or maybe it knows HTTP/1.1 and can consider
6400 * the lack of header as a keep-alive. Thus we will use two flags
6401 * indicating how a request MAY be understood by the client. In case
6402 * of multiple possibilities, we'll fix the header to be explicit. If
6403 * ambiguous cases such as both close and keepalive are seen, then we
6404 * will fall back to explicit close. Note that we won't take risks with
6405 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01006406 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01006407 */
6408
Willy Tarreaudc008c52010-02-01 16:20:08 +01006409 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
6410 txn->status == 101)) {
6411 /* Either we've established an explicit tunnel, or we're
6412 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006413 * to understand the next protocols. We have to switch to tunnel
6414 * mode, so that we transfer the request and responses then let
6415 * this protocol pass unmodified. When we later implement specific
6416 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01006417 * header which contains information about that protocol for
6418 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006419 */
6420 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
6421 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01006422 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
6423 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006424 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006425 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01006426 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01006427
Willy Tarreau70dffda2014-01-30 03:07:23 +01006428 /* this situation happens when combining pretend-keepalive with httpclose. */
6429 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006430 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006431 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))
Willy Tarreau70dffda2014-01-30 03:07:23 +01006432 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
6433
Willy Tarreau60466522010-01-18 19:08:45 +01006434 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006435 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01006436 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
6437 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01006438
Willy Tarreau60466522010-01-18 19:08:45 +01006439 /* now adjust header transformations depending on current state */
6440 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
6441 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
6442 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006443 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01006444 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006445 }
Willy Tarreau60466522010-01-18 19:08:45 +01006446 else { /* SCL / KAL */
6447 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006448 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01006449 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006450 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006451
Willy Tarreau60466522010-01-18 19:08:45 +01006452 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01006453 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01006454
Willy Tarreau60466522010-01-18 19:08:45 +01006455 /* Some keep-alive responses are converted to Server-close if
6456 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01006457 */
Willy Tarreau60466522010-01-18 19:08:45 +01006458 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
6459 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006460 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01006461 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01006462 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006463 }
6464
Willy Tarreau7959a552013-09-23 16:44:27 +02006465 /* we want to have the response time before we start processing it */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006466 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau7959a552013-09-23 16:44:27 +02006467
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006468 /* end of job, return OK */
6469 rep->analysers &= ~an_bit;
6470 rep->analyse_exp = TICK_ETERNITY;
6471 channel_auto_close(rep);
6472 return 1;
6473
6474 abort_keep_alive:
6475 /* A keep-alive request to the server failed on a network error.
6476 * The client is required to retry. We need to close without returning
6477 * any other information so that the client retries.
6478 */
6479 txn->status = 0;
6480 rep->analysers = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006481 s->req.analysers = 0;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006482 channel_auto_close(rep);
6483 s->logs.logwait = 0;
6484 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006485 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau319f7452015-01-14 20:32:59 +01006486 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01006487 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006488 return 0;
6489}
6490
6491/* This function performs all the processing enabled for the current response.
6492 * It normally returns 1 unless it wants to break. It relies on buffers flags,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006493 * and updates s->res.analysers. It might make sense to explode it into several
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006494 * other functions. It works like process_request (see indications above).
6495 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006496int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006497{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02006498 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006499 struct http_txn *txn = s->txn;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006500 struct http_msg *msg = &txn->rsp;
6501 struct proxy *cur_proxy;
6502 struct cond_wordlist *wl;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01006503 enum rule_result ret = HTTP_RULE_RES_CONT;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006504
Willy Tarreau87b09662015-04-03 00:22:06 +02006505 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006506 now_ms, __FUNCTION__,
6507 s,
6508 rep,
6509 rep->rex, rep->wex,
6510 rep->flags,
6511 rep->buf->i,
6512 rep->analysers);
6513
6514 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
6515 return 0;
6516
Willy Tarreau70730dd2014-04-24 18:06:27 +02006517 /* The stats applet needs to adjust the Connection header but we don't
6518 * apply any filter there.
6519 */
Willy Tarreau612adb82015-03-10 15:25:54 +01006520 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
6521 rep->analysers &= ~an_bit;
6522 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau70730dd2014-04-24 18:06:27 +02006523 goto skip_filters;
Willy Tarreau612adb82015-03-10 15:25:54 +01006524 }
Willy Tarreau70730dd2014-04-24 18:06:27 +02006525
Willy Tarreau58975672014-04-24 21:13:57 +02006526 /*
6527 * We will have to evaluate the filters.
6528 * As opposed to version 1.2, now they will be evaluated in the
6529 * filters order and not in the header order. This means that
6530 * each filter has to be validated among all headers.
6531 *
6532 * Filters are tried with ->be first, then with ->fe if it is
6533 * different from ->be.
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006534 *
6535 * Maybe we are in resume condiion. In this case I choose the
6536 * "struct proxy" which contains the rule list matching the resume
6537 * pointer. If none of theses "struct proxy" match, I initialise
6538 * the process with the first one.
6539 *
6540 * In fact, I check only correspondance betwwen the current list
6541 * pointer and the ->fe rule list. If it doesn't match, I initialize
6542 * the loop with the ->be.
Willy Tarreau58975672014-04-24 21:13:57 +02006543 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006544 if (s->current_rule_list == &sess->fe->http_res_rules)
6545 cur_proxy = sess->fe;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006546 else
6547 cur_proxy = s->be;
Willy Tarreau58975672014-04-24 21:13:57 +02006548 while (1) {
6549 struct proxy *rule_set = cur_proxy;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006550
Willy Tarreau58975672014-04-24 21:13:57 +02006551 /* evaluate http-response rules */
Willy Tarreau51d861a2015-05-22 17:30:48 +02006552 if (ret == HTTP_RULE_RES_CONT) {
Willy Tarreau987e3fb2015-04-04 01:09:08 +02006553 ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02006554
Willy Tarreau51d861a2015-05-22 17:30:48 +02006555 if (ret == HTTP_RULE_RES_BADREQ)
6556 goto return_srv_prx_502;
6557
6558 if (ret == HTTP_RULE_RES_DONE) {
6559 rep->analysers &= ~an_bit;
6560 rep->analyse_exp = TICK_ETERNITY;
6561 return 1;
6562 }
6563 }
6564
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006565 /* we need to be called again. */
6566 if (ret == HTTP_RULE_RES_YIELD) {
6567 channel_dont_close(rep);
6568 return 0;
6569 }
6570
Willy Tarreau58975672014-04-24 21:13:57 +02006571 /* try headers filters */
6572 if (rule_set->rsp_exp != NULL) {
6573 if (apply_filters_to_response(s, rep, rule_set) < 0) {
6574 return_bad_resp:
6575 if (objt_server(s->target)) {
6576 objt_server(s->target)->counters.failed_resp++;
6577 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_RSP);
Willy Tarreau21d2af32008-02-14 20:25:24 +01006578 }
Willy Tarreau58975672014-04-24 21:13:57 +02006579 s->be->be_counters.failed_resp++;
6580 return_srv_prx_502:
6581 rep->analysers = 0;
6582 txn->status = 502;
6583 s->logs.t_data = -1; /* was not a valid response */
Willy Tarreau350f4872014-11-28 14:42:25 +01006584 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006585 channel_truncate(rep);
Willy Tarreau350f4872014-11-28 14:42:25 +01006586 stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502));
Willy Tarreaue7dff022015-04-03 01:14:29 +02006587 if (!(s->flags & SF_ERR_MASK))
6588 s->flags |= SF_ERR_PRXCOND;
6589 if (!(s->flags & SF_FINST_MASK))
6590 s->flags |= SF_FINST_H;
Willy Tarreau58975672014-04-24 21:13:57 +02006591 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006592 }
Willy Tarreau58975672014-04-24 21:13:57 +02006593 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006594
Willy Tarreau58975672014-04-24 21:13:57 +02006595 /* has the response been denied ? */
6596 if (txn->flags & TX_SVDENY) {
6597 if (objt_server(s->target))
6598 objt_server(s->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006599
Willy Tarreau58975672014-04-24 21:13:57 +02006600 s->be->be_counters.denied_resp++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006601 sess->fe->fe_counters.denied_resp++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02006602 if (sess->listener->counters)
6603 sess->listener->counters->denied_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006604
Willy Tarreau58975672014-04-24 21:13:57 +02006605 goto return_srv_prx_502;
6606 }
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02006607
Willy Tarreau58975672014-04-24 21:13:57 +02006608 /* add response headers from the rule sets in the same order */
6609 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreauce730de2014-09-16 10:40:38 +02006610 if (txn->status < 200 && txn->status != 101)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006611 break;
Willy Tarreau58975672014-04-24 21:13:57 +02006612 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02006613 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreau58975672014-04-24 21:13:57 +02006614 ret = acl_pass(ret);
6615 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
6616 ret = !ret;
6617 if (!ret)
6618 continue;
6619 }
6620 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
6621 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006622 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006623
Willy Tarreau58975672014-04-24 21:13:57 +02006624 /* check whether we're already working on the frontend */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006625 if (cur_proxy == sess->fe)
Willy Tarreau58975672014-04-24 21:13:57 +02006626 break;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006627 cur_proxy = sess->fe;
Willy Tarreau58975672014-04-24 21:13:57 +02006628 }
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006629
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006630 /* After this point, this anayzer can't return yield, so we can
6631 * remove the bit corresponding to this analyzer from the list.
6632 *
6633 * Note that the intermediate returns and goto found previously
6634 * reset the analyzers.
6635 */
6636 rep->analysers &= ~an_bit;
6637 rep->analyse_exp = TICK_ETERNITY;
6638
Willy Tarreau58975672014-04-24 21:13:57 +02006639 /* OK that's all we can do for 1xx responses */
Willy Tarreauce730de2014-09-16 10:40:38 +02006640 if (unlikely(txn->status < 200 && txn->status != 101))
Willy Tarreau58975672014-04-24 21:13:57 +02006641 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006642
Willy Tarreau58975672014-04-24 21:13:57 +02006643 /*
6644 * Now check for a server cookie.
6645 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02006646 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Willy Tarreau58975672014-04-24 21:13:57 +02006647 manage_server_side_cookies(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006648
Willy Tarreau58975672014-04-24 21:13:57 +02006649 /*
6650 * Check for cache-control or pragma headers if required.
6651 */
Willy Tarreauce730de2014-09-16 10:40:38 +02006652 if (((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)) && txn->status != 101)
Willy Tarreau58975672014-04-24 21:13:57 +02006653 check_response_for_cacheability(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006654
Willy Tarreau58975672014-04-24 21:13:57 +02006655 /*
6656 * Add server cookie in the response if needed
6657 */
6658 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
6659 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02006660 (!(s->flags & SF_DIRECT) ||
Willy Tarreau58975672014-04-24 21:13:57 +02006661 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
6662 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
6663 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
6664 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
6665 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02006666 !(s->flags & SF_IGNORE_PRST)) {
Willy Tarreau58975672014-04-24 21:13:57 +02006667 /* the server is known, it's not the one the client requested, or the
6668 * cookie's last seen date needs to be refreshed. We have to
6669 * insert a set-cookie here, except if we want to insert only on POST
6670 * requests and this one isn't. Note that servers which don't have cookies
6671 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006672 */
Willy Tarreau58975672014-04-24 21:13:57 +02006673 if (!objt_server(s->target)->cookie) {
6674 chunk_printf(&trash,
6675 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
6676 s->be->cookie_name);
6677 }
6678 else {
6679 chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006680
Willy Tarreau58975672014-04-24 21:13:57 +02006681 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
6682 /* emit last_date, which is mandatory */
6683 trash.str[trash.len++] = COOKIE_DELIM_DATE;
6684 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
6685 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006686
Willy Tarreau58975672014-04-24 21:13:57 +02006687 if (s->be->cookie_maxlife) {
6688 /* emit first_date, which is either the original one or
6689 * the current date.
6690 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006691 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreau58975672014-04-24 21:13:57 +02006692 s30tob64(txn->cookie_first_date ?
6693 txn->cookie_first_date >> 2 :
6694 (date.tv_sec+3) >> 2, trash.str + trash.len);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006695 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006696 }
Willy Tarreauef4f3912010-10-07 21:00:29 +02006697 }
Willy Tarreau58975672014-04-24 21:13:57 +02006698 chunk_appendf(&trash, "; path=/");
6699 }
Willy Tarreau4992dd22012-05-31 21:02:17 +02006700
Willy Tarreau58975672014-04-24 21:13:57 +02006701 if (s->be->cookie_domain)
6702 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
Willy Tarreauef4f3912010-10-07 21:00:29 +02006703
Willy Tarreau58975672014-04-24 21:13:57 +02006704 if (s->be->ck_opts & PR_CK_HTTPONLY)
6705 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006706
Willy Tarreau58975672014-04-24 21:13:57 +02006707 if (s->be->ck_opts & PR_CK_SECURE)
6708 chunk_appendf(&trash, "; Secure");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006709
Willy Tarreau58975672014-04-24 21:13:57 +02006710 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
6711 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006712
Willy Tarreau58975672014-04-24 21:13:57 +02006713 txn->flags &= ~TX_SCK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02006714 if (objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
Willy Tarreau58975672014-04-24 21:13:57 +02006715 /* the server did not change, only the date was updated */
6716 txn->flags |= TX_SCK_UPDATED;
6717 else
6718 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006719
Willy Tarreau58975672014-04-24 21:13:57 +02006720 /* Here, we will tell an eventual cache on the client side that we don't
6721 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
6722 * Some caches understand the correct form: 'no-cache="set-cookie"', but
6723 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006724 */
Willy Tarreau58975672014-04-24 21:13:57 +02006725 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006726
Willy Tarreau58975672014-04-24 21:13:57 +02006727 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006728
Willy Tarreau58975672014-04-24 21:13:57 +02006729 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
6730 "Cache-control: private", 22) < 0))
6731 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006732 }
Willy Tarreau58975672014-04-24 21:13:57 +02006733 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006734
Willy Tarreau58975672014-04-24 21:13:57 +02006735 /*
6736 * Check if result will be cacheable with a cookie.
6737 * We'll block the response if security checks have caught
6738 * nasty things such as a cacheable cookie.
6739 */
6740 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
6741 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
6742 (s->be->options & PR_O_CHK_CACHE)) {
6743 /* we're in presence of a cacheable response containing
6744 * a set-cookie header. We'll block it as requested by
6745 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006746 */
Willy Tarreau58975672014-04-24 21:13:57 +02006747 if (objt_server(s->target))
6748 objt_server(s->target)->counters.failed_secu++;
Willy Tarreau60466522010-01-18 19:08:45 +01006749
Willy Tarreau58975672014-04-24 21:13:57 +02006750 s->be->be_counters.denied_resp++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006751 sess->fe->fe_counters.denied_resp++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02006752 if (sess->listener->counters)
6753 sess->listener->counters->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006754
Willy Tarreau58975672014-04-24 21:13:57 +02006755 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
6756 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6757 send_log(s->be, LOG_ALERT,
6758 "Blocking cacheable cookie in response from instance %s, server %s.\n",
6759 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6760 goto return_srv_prx_502;
6761 }
Willy Tarreau03945942009-12-22 16:50:27 +01006762
Willy Tarreau70730dd2014-04-24 18:06:27 +02006763 skip_filters:
Willy Tarreau58975672014-04-24 21:13:57 +02006764 /*
6765 * Adjust "Connection: close" or "Connection: keep-alive" if needed.
6766 * If an "Upgrade" token is found, the header is left untouched in order
6767 * not to have to deal with some client bugs : some of them fail an upgrade
Willy Tarreauce730de2014-09-16 10:40:38 +02006768 * if anything but "Upgrade" is present in the Connection header. We don't
6769 * want to touch any 101 response either since it's switching to another
6770 * protocol.
Willy Tarreau58975672014-04-24 21:13:57 +02006771 */
Willy Tarreauce730de2014-09-16 10:40:38 +02006772 if ((txn->status != 101) && !(txn->flags & TX_HDR_CONN_UPG) &&
Willy Tarreau58975672014-04-24 21:13:57 +02006773 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006774 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau58975672014-04-24 21:13:57 +02006775 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
6776 unsigned int want_flags = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006777
Willy Tarreau58975672014-04-24 21:13:57 +02006778 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6779 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
6780 /* we want a keep-alive response here. Keep-alive header
6781 * required if either side is not 1.1.
6782 */
6783 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
6784 want_flags |= TX_CON_KAL_SET;
6785 }
6786 else {
6787 /* we want a close response here. Close header required if
6788 * the server is 1.1, regardless of the client.
6789 */
6790 if (msg->flags & HTTP_MSGF_VER_11)
6791 want_flags |= TX_CON_CLO_SET;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006792 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006793
Willy Tarreau58975672014-04-24 21:13:57 +02006794 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
6795 http_change_connection_header(txn, msg, want_flags);
6796 }
6797
6798 skip_header_mangling:
6799 if ((msg->flags & HTTP_MSGF_XFER_LEN) ||
6800 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
6801 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006802
Willy Tarreau58975672014-04-24 21:13:57 +02006803 /* if the user wants to log as soon as possible, without counting
6804 * bytes from the server, then this is the right moment. We have
6805 * to temporarily assign bytes_out to log what we currently have.
6806 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006807 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau58975672014-04-24 21:13:57 +02006808 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
6809 s->logs.bytes_out = txn->rsp.eoh;
6810 s->do_log(s);
6811 s->logs.bytes_out = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006812 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006813 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006814}
Willy Tarreaua15645d2007-03-18 16:22:39 +01006815
Willy Tarreaud98cf932009-12-27 22:54:55 +01006816/* This function is an analyser which forwards response body (including chunk
6817 * sizes if any). It is called as soon as we must forward, even if we forward
6818 * zero byte. The only situation where it must not be called is when we're in
6819 * tunnel mode and we want to forward till the close. It's used both to forward
6820 * remaining data and to resync after end of body. It expects the msg_state to
6821 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02006822 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreaud3510212014-04-21 11:24:13 +02006823 *
6824 * It is capable of compressing response data both in content-length mode and
6825 * in chunked mode. The state machines follows different flows depending on
6826 * whether content-length and chunked modes are used, since there are no
6827 * trailers in content-length :
6828 *
6829 * chk-mode cl-mode
6830 * ,----- BODY -----.
6831 * / \
6832 * V size > 0 V chk-mode
6833 * .--> SIZE -------------> DATA -------------> CRLF
6834 * | | size == 0 | last byte |
6835 * | v final crlf v inspected |
6836 * | TRAILERS -----------> DONE |
6837 * | |
6838 * `----------------------------------------------'
6839 *
6840 * Compression only happens in the DATA state, and must be flushed in final
6841 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
6842 * is performed at once on final states for all bytes parsed, or when leaving
6843 * on missing data.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006844 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006845int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006846{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006847 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006848 struct http_txn *txn = s->txn;
6849 struct http_msg *msg = &s->txn->rsp;
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +01006850 static struct buffer *tmpbuf = &buf_empty;
William Lallemand82fe75c2012-10-23 10:25:10 +02006851 int compressing = 0;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006852 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006853
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006854 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
6855 return 0;
6856
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006857 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02006858 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006859 !s->req.analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02006860 /* Output closed while we were sending data. We must abort and
6861 * wake the other side up.
6862 */
6863 msg->msg_state = HTTP_MSG_ERROR;
6864 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01006865 return 1;
6866 }
6867
Willy Tarreau4fe41902010-06-07 22:27:41 +02006868 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006869 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006870
Willy Tarreaubb2e6692014-07-10 19:06:10 +02006871 if (msg->sov > 0) {
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006872 /* we have msg->sov which points to the first byte of message
6873 * body, and res->buf.p still points to the beginning of the
6874 * message. We forward the headers now, as we don't need them
6875 * anymore, and we want to flush them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006876 */
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006877 b_adv(res->buf, msg->sov);
6878 msg->next -= msg->sov;
6879 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01006880
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006881 /* The previous analysers guarantee that the state is somewhere
6882 * between MSG_BODY and the first MSG_DATA. So msg->sol and
6883 * msg->next are always correct.
6884 */
6885 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
6886 if (msg->flags & HTTP_MSGF_TE_CHNK)
6887 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
6888 else
6889 msg->msg_state = HTTP_MSG_DATA;
6890 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01006891 }
6892
Willy Tarreauefdf0942014-04-24 20:08:57 +02006893 if (res->to_forward) {
6894 /* We can't process the buffer's contents yet */
6895 res->flags |= CF_WAKE_WRITE;
6896 goto missing_data;
6897 }
6898
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006899 if (unlikely(s->comp_algo != NULL) && msg->msg_state < HTTP_MSG_TRAILERS) {
6900 /* We need a compression buffer in the DATA state to put the
6901 * output of compressed data, and in CRLF state to let the
6902 * TRAILERS state finish the job of removing the trailing CRLF.
6903 */
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +01006904 if (unlikely(!tmpbuf->size)) {
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006905 /* this is the first time we need the compression buffer */
Willy Tarreaue583ea52014-11-24 11:30:16 +01006906 if (b_alloc(&tmpbuf) == NULL)
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006907 goto aborted_xfer; /* no memory */
6908 }
6909
6910 ret = http_compression_buffer_init(s, res->buf, tmpbuf);
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006911 if (ret < 0) {
6912 res->flags |= CF_WAKE_WRITE;
William Lallemand82fe75c2012-10-23 10:25:10 +02006913 goto missing_data; /* not enough spaces in buffers */
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006914 }
William Lallemand82fe75c2012-10-23 10:25:10 +02006915 compressing = 1;
6916 }
6917
Willy Tarreaud98cf932009-12-27 22:54:55 +01006918 while (1) {
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006919 switch (msg->msg_state - HTTP_MSG_DATA) {
6920 case HTTP_MSG_DATA - HTTP_MSG_DATA: /* must still forward */
Willy Tarreauc623c172014-04-18 09:53:50 +02006921 /* we may have some pending data starting at res->buf->p */
6922 if (unlikely(s->comp_algo)) {
Willy Tarreau7f2f8d52014-04-18 00:20:14 +02006923 ret = http_compression_buffer_add_data(s, res->buf, tmpbuf);
William Lallemandbf3ae612012-11-19 12:35:37 +01006924 if (ret < 0)
6925 goto aborted_xfer;
Willy Tarreauc623c172014-04-18 09:53:50 +02006926
Willy Tarreaud5a67832014-04-21 10:54:27 +02006927 if (msg->chunk_len) {
6928 /* input empty or output full */
6929 if (res->buf->i > msg->next)
6930 res->flags |= CF_WAKE_WRITE;
Willy Tarreauc623c172014-04-18 09:53:50 +02006931 goto missing_data;
6932 }
William Lallemandbf3ae612012-11-19 12:35:37 +01006933 }
Willy Tarreauc623c172014-04-18 09:53:50 +02006934 else {
Willy Tarreaud5a67832014-04-21 10:54:27 +02006935 if (msg->chunk_len > res->buf->i - msg->next) {
6936 /* output full */
6937 res->flags |= CF_WAKE_WRITE;
6938 goto missing_data;
6939 }
Willy Tarreauc623c172014-04-18 09:53:50 +02006940 msg->next += msg->chunk_len;
6941 msg->chunk_len = 0;
6942 }
Willy Tarreaucaabe412010-01-03 23:08:28 +01006943
6944 /* nothing left to forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01006945 if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau54d23df2012-10-25 19:04:45 +02006946 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
William Lallemandbf3ae612012-11-19 12:35:37 +01006947 } else {
Willy Tarreaucaabe412010-01-03 23:08:28 +01006948 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006949 break;
William Lallemandbf3ae612012-11-19 12:35:37 +01006950 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006951 /* fall through for HTTP_MSG_CHUNK_CRLF */
6952
6953 case HTTP_MSG_CHUNK_CRLF - HTTP_MSG_DATA:
6954 /* we want the CRLF after the data */
6955
6956 ret = http_skip_chunk_crlf(msg);
6957 if (ret == 0)
6958 goto missing_data;
6959 else if (ret < 0) {
6960 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006961 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, sess->fe);
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006962 goto return_bad_res;
6963 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006964 /* we're in MSG_CHUNK_SIZE now, fall through */
6965
6966 case HTTP_MSG_CHUNK_SIZE - HTTP_MSG_DATA:
Willy Tarreau124d9912011-03-01 20:30:48 +01006967 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreauc24715e2014-04-17 15:21:20 +02006968 * set ->next to point to the body and switch to DATA or
Willy Tarreaua458b672012-03-05 11:17:50 +01006969 * TRAILERS state.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006970 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01006971
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006972 ret = http_parse_chunk_size(msg);
Willy Tarreau54d23df2012-10-25 19:04:45 +02006973 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006974 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006975 else if (ret < 0) {
6976 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006977 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, sess->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006978 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006979 }
Willy Tarreau0161d622013-04-02 01:26:55 +02006980 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006981 break;
Willy Tarreau5523b322009-12-29 12:05:52 +01006982
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006983 case HTTP_MSG_TRAILERS - HTTP_MSG_DATA:
Willy Tarreau168ebc52014-04-18 00:53:43 +02006984 if (unlikely(compressing)) {
6985 /* we need to flush output contents before syncing FSMs */
6986 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6987 compressing = 0;
6988 }
6989
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006990 ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006991 if (ret == 0)
6992 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006993 else if (ret < 0) {
6994 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006995 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, sess->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006996 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006997 }
Willy Tarreau168ebc52014-04-18 00:53:43 +02006998 /* we're in HTTP_MSG_DONE now, fall through */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006999
7000 default:
Willy Tarreau610ecce2010-01-04 21:15:02 +01007001 /* other states, DONE...TUNNEL */
Willy Tarreau168ebc52014-04-18 00:53:43 +02007002 if (unlikely(compressing)) {
7003 /* we need to flush output contents before syncing FSMs */
7004 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
7005 compressing = 0;
7006 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02007007
Willy Tarreauc623c172014-04-18 09:53:50 +02007008 /* we may have some pending data starting at res->buf->p
7009 * such as a last chunk of data or trailers.
7010 */
7011 b_adv(res->buf, msg->next);
7012 msg->next = 0;
7013
Willy Tarreaud655ffe2013-04-02 01:48:58 +02007014 ret = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02007015 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02007016 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
7017 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02007018 channel_dont_close(res);
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02007019
Willy Tarreau610ecce2010-01-04 21:15:02 +01007020 if (http_resync_states(s)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01007021 /* some state changes occurred, maybe the analyser
7022 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01007023 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01007024 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02007025 if (res->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01007026 /* response errors are most likely due to
7027 * the client aborting the transfer.
7028 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007029 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01007030 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01007031 if (msg->err_pos >= 0)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007032 http_capture_bad_message(&s->be->invalid_rep, s, msg, ret, sess->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01007033 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01007034 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01007035 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01007036 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01007037 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01007038 }
7039 }
7040
Willy Tarreaud98cf932009-12-27 22:54:55 +01007041 missing_data:
Willy Tarreauc623c172014-04-18 09:53:50 +02007042 /* we may have some pending data starting at res->buf->p */
Willy Tarreau168ebc52014-04-18 00:53:43 +02007043 if (unlikely(compressing)) {
7044 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
William Lallemand82fe75c2012-10-23 10:25:10 +02007045 compressing = 0;
7046 }
Willy Tarreauf003d372012-11-26 13:35:37 +01007047
Willy Tarreauc623c172014-04-18 09:53:50 +02007048 if ((s->comp_algo == NULL || msg->msg_state >= HTTP_MSG_TRAILERS)) {
7049 b_adv(res->buf, msg->next);
7050 msg->next = 0;
7051 msg->chunk_len -= channel_forward(res, msg->chunk_len);
7052 }
7053
Willy Tarreauf003d372012-11-26 13:35:37 +01007054 if (res->flags & CF_SHUTW)
7055 goto aborted_xfer;
7056
7057 /* stop waiting for data if the input is closed before the end. If the
7058 * client side was already closed, it means that the client has aborted,
7059 * so we don't want to count this as a server abort. Otherwise it's a
7060 * server abort.
7061 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02007062 if (res->flags & CF_SHUTR) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007063 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Willy Tarreauf003d372012-11-26 13:35:37 +01007064 goto aborted_xfer;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007065 if (!(s->flags & SF_ERR_MASK))
7066 s->flags |= SF_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01007067 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007068 if (objt_server(s->target))
7069 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007070 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01007071 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01007072
Willy Tarreau40dba092010-03-04 18:14:51 +01007073 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007074 if (!s->req.analysers)
Willy Tarreau610ecce2010-01-04 21:15:02 +01007075 goto return_bad_res;
7076
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02007077 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02007078 * chunks even if the server has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02007079 * Similarly, with keep-alive on the client side, we don't want to forward a
7080 * close.
7081 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02007082 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02007083 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
7084 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02007085 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02007086
Willy Tarreau5c620922011-05-11 19:56:11 +02007087 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02007088 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02007089 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01007090 * modes are already handled by the stream sock layer. We must not do
7091 * this in content-length mode because it could present the MSG_MORE
7092 * flag with the last block of forwarded data, which would cause an
7093 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02007094 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02007095 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02007096 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02007097
Willy Tarreau87b09662015-04-03 00:22:06 +02007098 /* the stream handler will take care of timeouts and errors */
Willy Tarreaud98cf932009-12-27 22:54:55 +01007099 return 0;
7100
Willy Tarreau40dba092010-03-04 18:14:51 +01007101 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01007102 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007103 if (objt_server(s->target))
7104 objt_server(s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007105
7106 return_bad_res_stats_ok:
Willy Tarreaud01f4262014-04-21 11:00:13 +02007107 if (unlikely(compressing)) {
Willy Tarreau168ebc52014-04-18 00:53:43 +02007108 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
Willy Tarreaud01f4262014-04-21 11:00:13 +02007109 compressing = 0;
7110 }
7111
Willy Tarreauc623c172014-04-18 09:53:50 +02007112 /* we may have some pending data starting at res->buf->p */
7113 if (s->comp_algo == NULL) {
7114 b_adv(res->buf, msg->next);
7115 msg->next = 0;
7116 }
7117
Willy Tarreaud98cf932009-12-27 22:54:55 +01007118 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01007119 /* don't send any error message as we're in the body */
Willy Tarreau350f4872014-11-28 14:42:25 +01007120 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01007121 res->analysers = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007122 s->req.analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007123 if (objt_server(s->target))
7124 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01007125
Willy Tarreaue7dff022015-04-03 01:14:29 +02007126 if (!(s->flags & SF_ERR_MASK))
7127 s->flags |= SF_ERR_PRXCOND;
7128 if (!(s->flags & SF_FINST_MASK))
7129 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007130 return 0;
7131
7132 aborted_xfer:
Willy Tarreau6fef8ae2014-04-22 21:22:06 +02007133 if (unlikely(compressing)) {
7134 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
7135 compressing = 0;
7136 }
7137
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007138 txn->rsp.msg_state = HTTP_MSG_ERROR;
7139 /* don't send any error message as we're in the body */
Willy Tarreau350f4872014-11-28 14:42:25 +01007140 stream_int_retnclose(&s->si[0], NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007141 res->analysers = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007142 s->req.analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007143
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007144 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01007145 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007146 if (objt_server(s->target))
7147 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007148
Willy Tarreaue7dff022015-04-03 01:14:29 +02007149 if (!(s->flags & SF_ERR_MASK))
7150 s->flags |= SF_ERR_CLICL;
7151 if (!(s->flags & SF_FINST_MASK))
7152 s->flags |= SF_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01007153 return 0;
7154}
7155
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007156/* Iterate the same filter through all request headers.
7157 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007158 * Since it can manage the switch to another backend, it updates the per-proxy
7159 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007160 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007161int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007162{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007163 char *cur_ptr, *cur_end, *cur_next;
7164 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007165 struct http_txn *txn = s->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007166 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007167 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01007168
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007169 last_hdr = 0;
7170
Willy Tarreau9b28e032012-10-12 23:49:43 +02007171 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007172 old_idx = 0;
7173
7174 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007175 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007176 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007177 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007178 (exp->action == ACT_ALLOW ||
7179 exp->action == ACT_DENY ||
7180 exp->action == ACT_TARPIT))
7181 return 0;
7182
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007183 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007184 if (!cur_idx)
7185 break;
7186
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007187 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007188 cur_ptr = cur_next;
7189 cur_end = cur_ptr + cur_hdr->len;
7190 cur_next = cur_end + cur_hdr->cr + 1;
7191
7192 /* Now we have one header between cur_ptr and cur_end,
7193 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007194 */
7195
Willy Tarreau15a53a42015-01-21 13:39:42 +01007196 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007197 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007198 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007199 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007200 last_hdr = 1;
7201 break;
7202
7203 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007204 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007205 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007206 break;
7207
7208 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01007209 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007210 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007211 break;
7212
7213 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007214 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7215 if (trash.len < 0)
7216 return -1;
7217
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007218 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007219 /* FIXME: if the user adds a newline in the replacement, the
7220 * index will not be recalculated for now, and the new line
7221 * will not be counted as a new header.
7222 */
7223
7224 cur_end += delta;
7225 cur_next += delta;
7226 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007227 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007228 break;
7229
7230 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007231 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007232 cur_next += delta;
7233
Willy Tarreaufa355d42009-11-29 18:12:29 +01007234 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007235 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7236 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007237 cur_hdr->len = 0;
7238 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007239 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007240 break;
7241
7242 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007243 }
7244
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007245 /* keep the link from this header to next one in case of later
7246 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007247 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007248 old_idx = cur_idx;
7249 }
7250 return 0;
7251}
7252
7253
7254/* Apply the filter to the request line.
7255 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7256 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007257 * Since it can manage the switch to another backend, it updates the per-proxy
7258 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007259 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007260int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007261{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007262 char *cur_ptr, *cur_end;
7263 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007264 struct http_txn *txn = s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007265 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007266
Willy Tarreau3d300592007-03-18 18:34:41 +01007267 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007268 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007269 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007270 (exp->action == ACT_ALLOW ||
7271 exp->action == ACT_DENY ||
7272 exp->action == ACT_TARPIT))
7273 return 0;
7274 else if (exp->action == ACT_REMOVE)
7275 return 0;
7276
7277 done = 0;
7278
Willy Tarreau9b28e032012-10-12 23:49:43 +02007279 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007280 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007281
7282 /* Now we have the request line between cur_ptr and cur_end */
7283
Willy Tarreau15a53a42015-01-21 13:39:42 +01007284 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007285 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007286 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007287 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007288 done = 1;
7289 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007290
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007291 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007292 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007293 done = 1;
7294 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007295
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007296 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01007297 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007298 done = 1;
7299 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007300
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007301 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007302 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7303 if (trash.len < 0)
7304 return -1;
7305
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007306 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007307 /* FIXME: if the user adds a newline in the replacement, the
7308 * index will not be recalculated for now, and the new line
7309 * will not be counted as a new header.
7310 */
Willy Tarreaua496b602006-12-17 23:15:24 +01007311
Willy Tarreaufa355d42009-11-29 18:12:29 +01007312 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007313 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007314 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007315 HTTP_MSG_RQMETH,
7316 cur_ptr, cur_end + 1,
7317 NULL, NULL);
7318 if (unlikely(!cur_end))
7319 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01007320
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007321 /* we have a full request and we know that we have either a CR
7322 * or an LF at <ptr>.
7323 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007324 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
7325 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007326 /* there is no point trying this regex on headers */
7327 return 1;
7328 }
7329 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007330 return done;
7331}
Willy Tarreau97de6242006-12-27 17:18:38 +01007332
Willy Tarreau58f10d72006-12-04 02:26:12 +01007333
Willy Tarreau58f10d72006-12-04 02:26:12 +01007334
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007335/*
Willy Tarreau87b09662015-04-03 00:22:06 +02007336 * Apply all the req filters of proxy <px> to all headers in buffer <req> of stream <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007337 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01007338 * unparsable request. Since it can manage the switch to another backend, it
7339 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007340 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007341int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007342{
Willy Tarreau192252e2015-04-04 01:47:55 +02007343 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007344 struct http_txn *txn = s->txn;
Willy Tarreau6c123b12010-01-28 20:22:06 +01007345 struct hdr_exp *exp;
7346
7347 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007348 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007349
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007350 /*
7351 * The interleaving of transformations and verdicts
7352 * makes it difficult to decide to continue or stop
7353 * the evaluation.
7354 */
7355
Willy Tarreau6c123b12010-01-28 20:22:06 +01007356 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
7357 break;
7358
Willy Tarreau3d300592007-03-18 18:34:41 +01007359 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007360 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01007361 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007362 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01007363
7364 /* if this filter had a condition, evaluate it now and skip to
7365 * next filter if the condition does not match.
7366 */
7367 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02007368 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01007369 ret = acl_pass(ret);
7370 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7371 ret = !ret;
7372
7373 if (!ret)
7374 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007375 }
7376
7377 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01007378 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007379 if (unlikely(ret < 0))
7380 return -1;
7381
7382 if (likely(ret == 0)) {
7383 /* The filter did not match the request, it can be
7384 * iterated through all headers.
7385 */
Willy Tarreau34d4c3c2015-01-30 20:58:58 +01007386 if (unlikely(apply_filter_to_req_headers(s, req, exp) < 0))
7387 return -1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007388 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007389 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007390 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007391}
7392
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007393
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007394/* Find the end of a cookie value contained between <s> and <e>. It works the
7395 * same way as with headers above except that the semi-colon also ends a token.
7396 * See RFC2965 for more information. Note that it requires a valid header to
7397 * return a valid result.
7398 */
7399char *find_cookie_value_end(char *s, const char *e)
7400{
7401 int quoted, qdpair;
7402
7403 quoted = qdpair = 0;
7404 for (; s < e; s++) {
7405 if (qdpair) qdpair = 0;
7406 else if (quoted) {
7407 if (*s == '\\') qdpair = 1;
7408 else if (*s == '"') quoted = 0;
7409 }
7410 else if (*s == '"') quoted = 1;
7411 else if (*s == ',' || *s == ';') return s;
7412 }
7413 return s;
7414}
7415
7416/* Delete a value in a header between delimiters <from> and <next> in buffer
7417 * <buf>. The number of characters displaced is returned, and the pointer to
7418 * the first delimiter is updated if required. The function tries as much as
7419 * possible to respect the following principles :
7420 * - replace <from> delimiter by the <next> one unless <from> points to a
7421 * colon, in which case <next> is simply removed
7422 * - set exactly one space character after the new first delimiter, unless
7423 * there are not enough characters in the block being moved to do so.
7424 * - remove unneeded spaces before the previous delimiter and after the new
7425 * one.
7426 *
7427 * It is the caller's responsibility to ensure that :
7428 * - <from> points to a valid delimiter or the colon ;
7429 * - <next> points to a valid delimiter or the final CR/LF ;
7430 * - there are non-space chars before <from> ;
7431 * - there is a CR/LF at or after <next>.
7432 */
Willy Tarreauaf819352012-08-27 22:08:00 +02007433int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007434{
7435 char *prev = *from;
7436
7437 if (*prev == ':') {
7438 /* We're removing the first value, preserve the colon and add a
7439 * space if possible.
7440 */
7441 if (!http_is_crlf[(unsigned char)*next])
7442 next++;
7443 prev++;
7444 if (prev < next)
7445 *prev++ = ' ';
7446
7447 while (http_is_spht[(unsigned char)*next])
7448 next++;
7449 } else {
7450 /* Remove useless spaces before the old delimiter. */
7451 while (http_is_spht[(unsigned char)*(prev-1)])
7452 prev--;
7453 *from = prev;
7454
7455 /* copy the delimiter and if possible a space if we're
7456 * not at the end of the line.
7457 */
7458 if (!http_is_crlf[(unsigned char)*next]) {
7459 *prev++ = *next++;
7460 if (prev + 1 < next)
7461 *prev++ = ' ';
7462 while (http_is_spht[(unsigned char)*next])
7463 next++;
7464 }
7465 }
7466 return buffer_replace2(buf, prev, next, NULL, 0);
7467}
7468
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007469/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007470 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007471 * desirable to call it only when needed. This code is quite complex because
7472 * of the multiple very crappy and ambiguous syntaxes we have to support. it
7473 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01007474 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007475void manage_client_side_cookies(struct stream *s, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007476{
Willy Tarreaueee5b512015-04-03 23:46:31 +02007477 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007478 struct session *sess = s->sess;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007479 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007480 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007481 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
7482 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007483
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007484 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01007485 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007486 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007487
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007488 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007489 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007490 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007491
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007492 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007493 hdr_beg = hdr_next;
7494 hdr_end = hdr_beg + cur_hdr->len;
7495 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007496
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007497 /* We have one full header between hdr_beg and hdr_end, and the
7498 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01007499 * "Cookie:" headers.
7500 */
7501
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007502 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007503 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007504 old_idx = cur_idx;
7505 continue;
7506 }
7507
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007508 del_from = NULL; /* nothing to be deleted */
7509 preserve_hdr = 0; /* assume we may kill the whole header */
7510
Willy Tarreau58f10d72006-12-04 02:26:12 +01007511 /* Now look for cookies. Conforming to RFC2109, we have to support
7512 * attributes whose name begin with a '$', and associate them with
7513 * the right cookie, if we want to delete this cookie.
7514 * So there are 3 cases for each cookie read :
7515 * 1) it's a special attribute, beginning with a '$' : ignore it.
7516 * 2) it's a server id cookie that we *MAY* want to delete : save
7517 * some pointers on it (last semi-colon, beginning of cookie...)
7518 * 3) it's an application cookie : we *MAY* have to delete a previous
7519 * "special" cookie.
7520 * At the end of loop, if a "special" cookie remains, we may have to
7521 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007522 * *MUST* delete it.
7523 *
7524 * Note: RFC2965 is unclear about the processing of spaces around
7525 * the equal sign in the ATTR=VALUE form. A careful inspection of
7526 * the RFC explicitly allows spaces before it, and not within the
7527 * tokens (attrs or values). An inspection of RFC2109 allows that
7528 * too but section 10.1.3 lets one think that spaces may be allowed
7529 * after the equal sign too, resulting in some (rare) buggy
7530 * implementations trying to do that. So let's do what servers do.
7531 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
7532 * allowed quoted strings in values, with any possible character
7533 * after a backslash, including control chars and delimitors, which
7534 * causes parsing to become ambiguous. Browsers also allow spaces
7535 * within values even without quotes.
7536 *
7537 * We have to keep multiple pointers in order to support cookie
7538 * removal at the beginning, middle or end of header without
7539 * corrupting the header. All of these headers are valid :
7540 *
7541 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
7542 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
7543 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
7544 * | | | | | | | | |
7545 * | | | | | | | | hdr_end <--+
7546 * | | | | | | | +--> next
7547 * | | | | | | +----> val_end
7548 * | | | | | +-----------> val_beg
7549 * | | | | +--------------> equal
7550 * | | | +----------------> att_end
7551 * | | +---------------------> att_beg
7552 * | +--------------------------> prev
7553 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01007554 */
7555
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007556 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
7557 /* Iterate through all cookies on this line */
7558
7559 /* find att_beg */
7560 att_beg = prev + 1;
7561 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
7562 att_beg++;
7563
7564 /* find att_end : this is the first character after the last non
7565 * space before the equal. It may be equal to hdr_end.
7566 */
7567 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007568
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007569 while (equal < hdr_end) {
7570 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01007571 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007572 if (http_is_spht[(unsigned char)*equal++])
7573 continue;
7574 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007575 }
7576
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007577 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7578 * is between <att_beg> and <equal>, both may be identical.
7579 */
7580
7581 /* look for end of cookie if there is an equal sign */
7582 if (equal < hdr_end && *equal == '=') {
7583 /* look for the beginning of the value */
7584 val_beg = equal + 1;
7585 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
7586 val_beg++;
7587
7588 /* find the end of the value, respecting quotes */
7589 next = find_cookie_value_end(val_beg, hdr_end);
7590
7591 /* make val_end point to the first white space or delimitor after the value */
7592 val_end = next;
7593 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
7594 val_end--;
7595 } else {
7596 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01007597 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007598
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007599 /* We have nothing to do with attributes beginning with '$'. However,
7600 * they will automatically be removed if a header before them is removed,
7601 * since they're supposed to be linked together.
7602 */
7603 if (*att_beg == '$')
7604 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007605
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007606 /* Ignore cookies with no equal sign */
7607 if (equal == next) {
7608 /* This is not our cookie, so we must preserve it. But if we already
7609 * scheduled another cookie for removal, we cannot remove the
7610 * complete header, but we can remove the previous block itself.
7611 */
7612 preserve_hdr = 1;
7613 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007614 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007615 val_end += delta;
7616 next += delta;
7617 hdr_end += delta;
7618 hdr_next += delta;
7619 cur_hdr->len += delta;
7620 http_msg_move_end(&txn->req, delta);
7621 prev = del_from;
7622 del_from = NULL;
7623 }
7624 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01007625 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007626
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007627 /* if there are spaces around the equal sign, we need to
7628 * strip them otherwise we'll get trouble for cookie captures,
7629 * or even for rewrites. Since this happens extremely rarely,
7630 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007631 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007632 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7633 int stripped_before = 0;
7634 int stripped_after = 0;
7635
7636 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007637 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007638 equal += stripped_before;
7639 val_beg += stripped_before;
7640 }
7641
7642 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007643 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007644 val_beg += stripped_after;
7645 stripped_before += stripped_after;
7646 }
7647
7648 val_end += stripped_before;
7649 next += stripped_before;
7650 hdr_end += stripped_before;
7651 hdr_next += stripped_before;
7652 cur_hdr->len += stripped_before;
7653 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007654 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007655 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007656
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007657 /* First, let's see if we want to capture this cookie. We check
7658 * that we don't already have a client side cookie, because we
7659 * can only capture one. Also as an optimisation, we ignore
7660 * cookies shorter than the declared name.
7661 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007662 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
7663 (val_end - att_beg >= sess->fe->capture_namelen) &&
7664 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007665 int log_len = val_end - att_beg;
7666
7667 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
7668 Alert("HTTP logging : out of memory.\n");
7669 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007670 if (log_len > sess->fe->capture_len)
7671 log_len = sess->fe->capture_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007672 memcpy(txn->cli_cookie, att_beg, log_len);
7673 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007674 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007675 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007676
Willy Tarreaubca99692010-10-06 19:25:55 +02007677 /* Persistence cookies in passive, rewrite or insert mode have the
7678 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007679 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007680 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007681 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007682 * For cookies in prefix mode, the form is :
7683 *
7684 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007685 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007686 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
7687 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
7688 struct server *srv = s->be->srv;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007689 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007690
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007691 /* if we're in cookie prefix mode, we'll search the delimitor so that we
7692 * have the server ID between val_beg and delim, and the original cookie between
7693 * delim+1 and val_end. Otherwise, delim==val_end :
7694 *
7695 * Cookie: NAME=SRV; # in all but prefix modes
7696 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
7697 * | || || | |+-> next
7698 * | || || | +--> val_end
7699 * | || || +---------> delim
7700 * | || |+------------> val_beg
7701 * | || +-------------> att_end = equal
7702 * | |+-----------------> att_beg
7703 * | +------------------> prev
7704 * +-------------------------> hdr_beg
7705 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007706
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007707 if (s->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007708 for (delim = val_beg; delim < val_end; delim++)
7709 if (*delim == COOKIE_DELIM)
7710 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02007711 } else {
7712 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007713 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02007714 /* Now check if the cookie contains a date field, which would
7715 * appear after a vertical bar ('|') just after the server name
7716 * and before the delimiter.
7717 */
7718 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
7719 if (vbar1) {
7720 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02007721 * right is the last seen date. It is a base64 encoded
7722 * 30-bit value representing the UNIX date since the
7723 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02007724 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02007725 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02007726 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02007727 if (val_end - vbar1 >= 5) {
7728 val = b64tos30(vbar1);
7729 if (val > 0)
7730 txn->cookie_last_date = val << 2;
7731 }
7732 /* look for a second vertical bar */
7733 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
7734 if (vbar1 && (val_end - vbar1 > 5)) {
7735 val = b64tos30(vbar1 + 1);
7736 if (val > 0)
7737 txn->cookie_first_date = val << 2;
7738 }
Willy Tarreaubca99692010-10-06 19:25:55 +02007739 }
7740 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007741
Willy Tarreauf64d1412010-10-07 20:06:11 +02007742 /* if the cookie has an expiration date and the proxy wants to check
7743 * it, then we do that now. We first check if the cookie is too old,
7744 * then only if it has expired. We detect strict overflow because the
7745 * time resolution here is not great (4 seconds). Cookies with dates
7746 * in the future are ignored if their offset is beyond one day. This
7747 * allows an admin to fix timezone issues without expiring everyone
7748 * and at the same time avoids keeping unwanted side effects for too
7749 * long.
7750 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007751 if (txn->cookie_first_date && s->be->cookie_maxlife &&
7752 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007753 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007754 txn->flags &= ~TX_CK_MASK;
7755 txn->flags |= TX_CK_OLD;
7756 delim = val_beg; // let's pretend we have not found the cookie
7757 txn->cookie_first_date = 0;
7758 txn->cookie_last_date = 0;
7759 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007760 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
7761 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007762 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007763 txn->flags &= ~TX_CK_MASK;
7764 txn->flags |= TX_CK_EXPIRED;
7765 delim = val_beg; // let's pretend we have not found the cookie
7766 txn->cookie_first_date = 0;
7767 txn->cookie_last_date = 0;
7768 }
7769
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007770 /* Here, we'll look for the first running server which supports the cookie.
7771 * This allows to share a same cookie between several servers, for example
7772 * to dedicate backup servers to specific servers only.
7773 * However, to prevent clients from sticking to cookie-less backup server
7774 * when they have incidentely learned an empty cookie, we simply ignore
7775 * empty cookies and mark them as invalid.
7776 * The same behaviour is applied when persistence must be ignored.
7777 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02007778 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007779 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007780
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007781 while (srv) {
7782 if (srv->cookie && (srv->cklen == delim - val_beg) &&
7783 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
Willy Tarreau892337c2014-05-13 23:41:20 +02007784 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007785 (s->be->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02007786 (s->flags & SF_FORCE_PRST)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007787 /* we found the server and we can use it */
7788 txn->flags &= ~TX_CK_MASK;
Willy Tarreau892337c2014-05-13 23:41:20 +02007789 txn->flags |= (srv->state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007790 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007791 s->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007792 break;
7793 } else {
7794 /* we found a server, but it's down,
7795 * mark it as such and go on in case
7796 * another one is available.
7797 */
7798 txn->flags &= ~TX_CK_MASK;
7799 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007800 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007801 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007802 srv = srv->next;
7803 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007804
Willy Tarreauf64d1412010-10-07 20:06:11 +02007805 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007806 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007807 txn->flags &= ~TX_CK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007808 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007809 txn->flags |= TX_CK_UNUSED;
7810 else
7811 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007812 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007813
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007814 /* depending on the cookie mode, we may have to either :
7815 * - delete the complete cookie if we're in insert+indirect mode, so that
7816 * the server never sees it ;
7817 * - remove the server id from the cookie value, and tag the cookie as an
7818 * application cookie so that it does not get accidentely removed later,
7819 * if we're in cookie prefix mode
7820 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007821 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007822 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007823
Willy Tarreau9b28e032012-10-12 23:49:43 +02007824 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007825 val_end += delta;
7826 next += delta;
7827 hdr_end += delta;
7828 hdr_next += delta;
7829 cur_hdr->len += delta;
7830 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007831
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007832 del_from = NULL;
7833 preserve_hdr = 1; /* we want to keep this cookie */
7834 }
7835 else if (del_from == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007836 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007837 del_from = prev;
7838 }
7839 } else {
7840 /* This is not our cookie, so we must preserve it. But if we already
7841 * scheduled another cookie for removal, we cannot remove the
7842 * complete header, but we can remove the previous block itself.
7843 */
7844 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007845
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007846 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007847 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01007848 if (att_beg >= del_from)
7849 att_beg += delta;
7850 if (att_end >= del_from)
7851 att_end += delta;
7852 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007853 val_end += delta;
7854 next += delta;
7855 hdr_end += delta;
7856 hdr_next += delta;
7857 cur_hdr->len += delta;
7858 http_msg_move_end(&txn->req, delta);
7859 prev = del_from;
7860 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007861 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007862 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007863
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007864 /* continue with next cookie on this header line */
7865 att_beg = next;
7866 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007867
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007868 /* There are no more cookies on this line.
7869 * We may still have one (or several) marked for deletion at the
7870 * end of the line. We must do this now in two ways :
7871 * - if some cookies must be preserved, we only delete from the
7872 * mark to the end of line ;
7873 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01007874 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007875 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007876 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007877 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007878 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007879 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007880 cur_hdr->len += delta;
7881 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007882 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007883
7884 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007885 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7886 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007887 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007888 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007889 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007890 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007891 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007892 }
7893
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007894 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007895 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007896 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007897}
7898
7899
Willy Tarreaua15645d2007-03-18 16:22:39 +01007900/* Iterate the same filter through all response headers contained in <rtr>.
7901 * Returns 1 if this filter can be stopped upon return, otherwise 0.
7902 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007903int apply_filter_to_resp_headers(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007904{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007905 char *cur_ptr, *cur_end, *cur_next;
7906 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007907 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007908 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007909 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007910
7911 last_hdr = 0;
7912
Willy Tarreau9b28e032012-10-12 23:49:43 +02007913 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007914 old_idx = 0;
7915
7916 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007917 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007918 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007919 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007920 (exp->action == ACT_ALLOW ||
7921 exp->action == ACT_DENY))
7922 return 0;
7923
7924 cur_idx = txn->hdr_idx.v[old_idx].next;
7925 if (!cur_idx)
7926 break;
7927
7928 cur_hdr = &txn->hdr_idx.v[cur_idx];
7929 cur_ptr = cur_next;
7930 cur_end = cur_ptr + cur_hdr->len;
7931 cur_next = cur_end + cur_hdr->cr + 1;
7932
7933 /* Now we have one header between cur_ptr and cur_end,
7934 * and the next header starts at cur_next.
7935 */
7936
Willy Tarreau15a53a42015-01-21 13:39:42 +01007937 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007938 switch (exp->action) {
7939 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007940 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007941 last_hdr = 1;
7942 break;
7943
7944 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007945 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007946 last_hdr = 1;
7947 break;
7948
7949 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007950 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7951 if (trash.len < 0)
7952 return -1;
7953
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007954 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007955 /* FIXME: if the user adds a newline in the replacement, the
7956 * index will not be recalculated for now, and the new line
7957 * will not be counted as a new header.
7958 */
7959
7960 cur_end += delta;
7961 cur_next += delta;
7962 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007963 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007964 break;
7965
7966 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007967 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007968 cur_next += delta;
7969
Willy Tarreaufa355d42009-11-29 18:12:29 +01007970 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007971 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7972 txn->hdr_idx.used--;
7973 cur_hdr->len = 0;
7974 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007975 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007976 break;
7977
7978 }
7979 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007980
7981 /* keep the link from this header to next one in case of later
7982 * removal of next header.
7983 */
7984 old_idx = cur_idx;
7985 }
7986 return 0;
7987}
7988
7989
7990/* Apply the filter to the status line in the response buffer <rtr>.
7991 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7992 * or -1 if a replacement resulted in an invalid status line.
7993 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007994int apply_filter_to_sts_line(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007995{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007996 char *cur_ptr, *cur_end;
7997 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007998 struct http_txn *txn = s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007999 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008000
8001
Willy Tarreau3d300592007-03-18 18:34:41 +01008002 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008003 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01008004 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01008005 (exp->action == ACT_ALLOW ||
8006 exp->action == ACT_DENY))
8007 return 0;
8008 else if (exp->action == ACT_REMOVE)
8009 return 0;
8010
8011 done = 0;
8012
Willy Tarreau9b28e032012-10-12 23:49:43 +02008013 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02008014 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008015
8016 /* Now we have the status line between cur_ptr and cur_end */
8017
Willy Tarreau15a53a42015-01-21 13:39:42 +01008018 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008019 switch (exp->action) {
8020 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01008021 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008022 done = 1;
8023 break;
8024
8025 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01008026 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008027 done = 1;
8028 break;
8029
8030 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06008031 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
8032 if (trash.len < 0)
8033 return -1;
8034
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008035 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008036 /* FIXME: if the user adds a newline in the replacement, the
8037 * index will not be recalculated for now, and the new line
8038 * will not be counted as a new header.
8039 */
8040
Willy Tarreaufa355d42009-11-29 18:12:29 +01008041 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008042 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008043 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02008044 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01008045 cur_ptr, cur_end + 1,
8046 NULL, NULL);
8047 if (unlikely(!cur_end))
8048 return -1;
8049
8050 /* we have a full respnse and we know that we have either a CR
8051 * or an LF at <ptr>.
8052 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008053 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02008054 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01008055 /* there is no point trying this regex on headers */
8056 return 1;
8057 }
8058 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008059 return done;
8060}
8061
8062
8063
8064/*
Willy Tarreau87b09662015-04-03 00:22:06 +02008065 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of stream <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008066 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
8067 * unparsable response.
8068 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008069int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008070{
Willy Tarreau192252e2015-04-04 01:47:55 +02008071 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02008072 struct http_txn *txn = s->txn;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008073 struct hdr_exp *exp;
8074
8075 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008076 int ret;
8077
8078 /*
8079 * The interleaving of transformations and verdicts
8080 * makes it difficult to decide to continue or stop
8081 * the evaluation.
8082 */
8083
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008084 if (txn->flags & TX_SVDENY)
8085 break;
8086
Willy Tarreau3d300592007-03-18 18:34:41 +01008087 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01008088 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
8089 exp->action == ACT_PASS)) {
8090 exp = exp->next;
8091 continue;
8092 }
8093
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008094 /* if this filter had a condition, evaluate it now and skip to
8095 * next filter if the condition does not match.
8096 */
8097 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02008098 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008099 ret = acl_pass(ret);
8100 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
8101 ret = !ret;
8102 if (!ret)
8103 continue;
8104 }
8105
Willy Tarreaua15645d2007-03-18 16:22:39 +01008106 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008107 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008108 if (unlikely(ret < 0))
8109 return -1;
8110
8111 if (likely(ret == 0)) {
8112 /* The filter did not match the response, it can be
8113 * iterated through all headers.
8114 */
Sasha Pachevc6002042014-05-26 12:33:48 -06008115 if (unlikely(apply_filter_to_resp_headers(s, rtr, exp) < 0))
8116 return -1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008117 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008118 }
8119 return 0;
8120}
8121
8122
Willy Tarreaua15645d2007-03-18 16:22:39 +01008123/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01008124 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02008125 * desirable to call it only when needed. This function is also used when we
8126 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01008127 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008128void manage_server_side_cookies(struct stream *s, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008129{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008130 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008131 struct session *sess = s->sess;
Willy Tarreau827aee92011-03-10 16:55:02 +01008132 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008133 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008134 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008135 char *hdr_beg, *hdr_end, *hdr_next;
8136 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008137
Willy Tarreaua15645d2007-03-18 16:22:39 +01008138 /* Iterate through the headers.
8139 * we start with the start line.
8140 */
8141 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008142 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008143
8144 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
8145 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008146 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008147
8148 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02008149 hdr_beg = hdr_next;
8150 hdr_end = hdr_beg + cur_hdr->len;
8151 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008152
Willy Tarreau24581ba2010-08-31 22:39:35 +02008153 /* We have one full header between hdr_beg and hdr_end, and the
8154 * next header starts at hdr_next. We're only interested in
8155 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008156 */
8157
Willy Tarreau24581ba2010-08-31 22:39:35 +02008158 is_cookie2 = 0;
8159 prev = hdr_beg + 10;
8160 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008161 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008162 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
8163 if (!val) {
8164 old_idx = cur_idx;
8165 continue;
8166 }
8167 is_cookie2 = 1;
8168 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008169 }
8170
Willy Tarreau24581ba2010-08-31 22:39:35 +02008171 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
8172 * <prev> points to the colon.
8173 */
Willy Tarreauf1348312010-10-07 15:54:11 +02008174 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008175
Willy Tarreau24581ba2010-08-31 22:39:35 +02008176 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
8177 * check-cache is enabled) and we are not interested in checking
8178 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02008179 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02008180 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008181 return;
8182
Willy Tarreau24581ba2010-08-31 22:39:35 +02008183 /* OK so now we know we have to process this response cookie.
8184 * The format of the Set-Cookie header is slightly different
8185 * from the format of the Cookie header in that it does not
8186 * support the comma as a cookie delimiter (thus the header
8187 * cannot be folded) because the Expires attribute described in
8188 * the original Netscape's spec may contain an unquoted date
8189 * with a comma inside. We have to live with this because
8190 * many browsers don't support Max-Age and some browsers don't
8191 * support quoted strings. However the Set-Cookie2 header is
8192 * clean.
8193 *
8194 * We have to keep multiple pointers in order to support cookie
8195 * removal at the beginning, middle or end of header without
8196 * corrupting the header (in case of set-cookie2). A special
8197 * pointer, <scav> points to the beginning of the set-cookie-av
8198 * fields after the first semi-colon. The <next> pointer points
8199 * either to the end of line (set-cookie) or next unquoted comma
8200 * (set-cookie2). All of these headers are valid :
8201 *
8202 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
8203 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
8204 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
8205 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
8206 * | | | | | | | | | |
8207 * | | | | | | | | +-> next hdr_end <--+
8208 * | | | | | | | +------------> scav
8209 * | | | | | | +--------------> val_end
8210 * | | | | | +--------------------> val_beg
8211 * | | | | +----------------------> equal
8212 * | | | +------------------------> att_end
8213 * | | +----------------------------> att_beg
8214 * | +------------------------------> prev
8215 * +-----------------------------------------> hdr_beg
8216 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008217
Willy Tarreau24581ba2010-08-31 22:39:35 +02008218 for (; prev < hdr_end; prev = next) {
8219 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008220
Willy Tarreau24581ba2010-08-31 22:39:35 +02008221 /* find att_beg */
8222 att_beg = prev + 1;
8223 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
8224 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008225
Willy Tarreau24581ba2010-08-31 22:39:35 +02008226 /* find att_end : this is the first character after the last non
8227 * space before the equal. It may be equal to hdr_end.
8228 */
8229 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008230
Willy Tarreau24581ba2010-08-31 22:39:35 +02008231 while (equal < hdr_end) {
8232 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
8233 break;
8234 if (http_is_spht[(unsigned char)*equal++])
8235 continue;
8236 att_end = equal;
8237 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008238
Willy Tarreau24581ba2010-08-31 22:39:35 +02008239 /* here, <equal> points to '=', a delimitor or the end. <att_end>
8240 * is between <att_beg> and <equal>, both may be identical.
8241 */
8242
8243 /* look for end of cookie if there is an equal sign */
8244 if (equal < hdr_end && *equal == '=') {
8245 /* look for the beginning of the value */
8246 val_beg = equal + 1;
8247 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
8248 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008249
Willy Tarreau24581ba2010-08-31 22:39:35 +02008250 /* find the end of the value, respecting quotes */
8251 next = find_cookie_value_end(val_beg, hdr_end);
8252
8253 /* make val_end point to the first white space or delimitor after the value */
8254 val_end = next;
8255 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
8256 val_end--;
8257 } else {
8258 /* <equal> points to next comma, semi-colon or EOL */
8259 val_beg = val_end = next = equal;
8260 }
8261
8262 if (next < hdr_end) {
8263 /* Set-Cookie2 supports multiple cookies, and <next> points to
8264 * a colon or semi-colon before the end. So skip all attr-value
8265 * pairs and look for the next comma. For Set-Cookie, since
8266 * commas are permitted in values, skip to the end.
8267 */
8268 if (is_cookie2)
8269 next = find_hdr_value_end(next, hdr_end);
8270 else
8271 next = hdr_end;
8272 }
8273
8274 /* Now everything is as on the diagram above */
8275
8276 /* Ignore cookies with no equal sign */
8277 if (equal == val_end)
8278 continue;
8279
8280 /* If there are spaces around the equal sign, we need to
8281 * strip them otherwise we'll get trouble for cookie captures,
8282 * or even for rewrites. Since this happens extremely rarely,
8283 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008284 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02008285 if (unlikely(att_end != equal || val_beg > equal + 1)) {
8286 int stripped_before = 0;
8287 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008288
Willy Tarreau24581ba2010-08-31 22:39:35 +02008289 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008290 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008291 equal += stripped_before;
8292 val_beg += stripped_before;
8293 }
8294
8295 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008296 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008297 val_beg += stripped_after;
8298 stripped_before += stripped_after;
8299 }
8300
8301 val_end += stripped_before;
8302 next += stripped_before;
8303 hdr_end += stripped_before;
8304 hdr_next += stripped_before;
8305 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02008306 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008307 }
8308
8309 /* First, let's see if we want to capture this cookie. We check
8310 * that we don't already have a server side cookie, because we
8311 * can only capture one. Also as an optimisation, we ignore
8312 * cookies shorter than the declared name.
8313 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008314 if (sess->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01008315 txn->srv_cookie == NULL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008316 (val_end - att_beg >= sess->fe->capture_namelen) &&
8317 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008318 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02008319 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008320 Alert("HTTP logging : out of memory.\n");
8321 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01008322 else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008323 if (log_len > sess->fe->capture_len)
8324 log_len = sess->fe->capture_len;
Willy Tarreauf70fc752010-11-19 11:27:18 +01008325 memcpy(txn->srv_cookie, att_beg, log_len);
8326 txn->srv_cookie[log_len] = 0;
8327 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008328 }
8329
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008330 srv = objt_server(s->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008331 /* now check if we need to process it for persistence */
Willy Tarreaue7dff022015-04-03 01:14:29 +02008332 if (!(s->flags & SF_IGNORE_PRST) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008333 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
8334 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02008335 /* assume passive cookie by default */
8336 txn->flags &= ~TX_SCK_MASK;
8337 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008338
8339 /* If the cookie is in insert mode on a known server, we'll delete
8340 * this occurrence because we'll insert another one later.
8341 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02008342 * a direct access.
8343 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008344 if (s->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02008345 /* The "preserve" flag was set, we don't want to touch the
8346 * server's cookie.
8347 */
8348 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008349 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02008350 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008351 /* this cookie must be deleted */
8352 if (*prev == ':' && next == hdr_end) {
8353 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008354 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008355 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
8356 txn->hdr_idx.used--;
8357 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01008358 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008359 hdr_next += delta;
8360 http_msg_move_end(&txn->rsp, delta);
8361 /* note: while both invalid now, <next> and <hdr_end>
8362 * are still equal, so the for() will stop as expected.
8363 */
8364 } else {
8365 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008366 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008367 next = prev;
8368 hdr_end += delta;
8369 hdr_next += delta;
8370 cur_hdr->len += delta;
8371 http_msg_move_end(&txn->rsp, delta);
8372 }
Willy Tarreauf1348312010-10-07 15:54:11 +02008373 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01008374 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008375 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008376 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008377 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008378 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01008379 * with this server since we know it.
8380 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008381 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008382 next += delta;
8383 hdr_end += delta;
8384 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008385 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008386 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008387
Willy Tarreauf1348312010-10-07 15:54:11 +02008388 txn->flags &= ~TX_SCK_MASK;
8389 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008390 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008391 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008392 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02008393 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01008394 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008395 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008396 next += delta;
8397 hdr_end += delta;
8398 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008399 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008400 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008401
Willy Tarreau827aee92011-03-10 16:55:02 +01008402 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02008403 txn->flags &= ~TX_SCK_MASK;
8404 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008405 }
8406 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02008407 /* that's done for this cookie, check the next one on the same
8408 * line when next != hdr_end (only if is_cookie2).
8409 */
8410 }
8411 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008412 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008413 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008414}
8415
8416
Willy Tarreaua15645d2007-03-18 16:22:39 +01008417/*
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008418 * Check if response is cacheable or not. Updates s->flags.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008419 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008420void check_response_for_cacheability(struct stream *s, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008421{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008422 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008423 char *p1, *p2;
8424
8425 char *cur_ptr, *cur_end, *cur_next;
8426 int cur_idx;
8427
Willy Tarreau5df51872007-11-25 16:20:08 +01008428 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008429 return;
8430
8431 /* Iterate through the headers.
8432 * we start with the start line.
8433 */
8434 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008435 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008436
8437 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
8438 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008439 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008440
8441 cur_hdr = &txn->hdr_idx.v[cur_idx];
8442 cur_ptr = cur_next;
8443 cur_end = cur_ptr + cur_hdr->len;
8444 cur_next = cur_end + cur_hdr->cr + 1;
8445
8446 /* We have one full header between cur_ptr and cur_end, and the
8447 * next header starts at cur_next. We're only interested in
8448 * "Cookie:" headers.
8449 */
8450
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008451 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
8452 if (val) {
8453 if ((cur_end - (cur_ptr + val) >= 8) &&
8454 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
8455 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
8456 return;
8457 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008458 }
8459
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008460 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
8461 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008462 continue;
8463
8464 /* OK, right now we know we have a cache-control header at cur_ptr */
8465
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008466 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008467
8468 if (p1 >= cur_end) /* no more info */
8469 continue;
8470
8471 /* p1 is at the beginning of the value */
8472 p2 = p1;
8473
Willy Tarreau8f8e6452007-06-17 21:51:38 +02008474 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008475 p2++;
8476
8477 /* we have a complete value between p1 and p2 */
8478 if (p2 < cur_end && *p2 == '=') {
8479 /* we have something of the form no-cache="set-cookie" */
8480 if ((cur_end - p1 >= 21) &&
8481 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
8482 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01008483 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008484 continue;
8485 }
8486
8487 /* OK, so we know that either p2 points to the end of string or to a comma */
8488 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02008489 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaua15645d2007-03-18 16:22:39 +01008490 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
8491 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
8492 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008493 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008494 return;
8495 }
8496
8497 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008498 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008499 continue;
8500 }
8501 }
8502}
8503
Willy Tarreau58f10d72006-12-04 02:26:12 +01008504
Willy Tarreaub2513902006-12-17 14:52:38 +01008505/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02008506 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008507 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01008508 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02008509 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01008510 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01008511 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008512 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01008513 */
Willy Tarreau295a8372011-03-10 11:25:07 +01008514int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01008515{
8516 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01008517 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008518 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01008519
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008520 if (!uri_auth)
8521 return 0;
8522
Cyril Bonté70be45d2010-10-12 00:14:35 +02008523 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008524 return 0;
8525
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01008526 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01008527 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01008528 return 0;
8529
Willy Tarreau414e9bb2013-11-23 00:30:38 +01008530 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01008531 return 0;
8532
Willy Tarreaub2513902006-12-17 14:52:38 +01008533 return 1;
8534}
8535
Willy Tarreau4076a152009-04-02 15:18:36 +02008536/*
8537 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008538 * By default it tries to report the error position as msg->err_pos. However if
8539 * this one is not set, it will then report msg->next, which is the last known
8540 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008541 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02008542 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008543void http_capture_bad_message(struct error_snapshot *es, struct stream *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008544 struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01008545 enum ht_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02008546{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008547 struct session *sess = strm_sess(s);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008548 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008549 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008550
Willy Tarreau9b28e032012-10-12 23:49:43 +02008551 es->len = MIN(chn->buf->i, sizeof(es->buf));
8552 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008553 len1 = MIN(len1, es->len);
8554 len2 = es->len - len1; /* remaining data if buffer wraps */
8555
Willy Tarreau9b28e032012-10-12 23:49:43 +02008556 memcpy(es->buf, chn->buf->p, len1);
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008557 if (len2)
Willy Tarreau9b28e032012-10-12 23:49:43 +02008558 memcpy(es->buf + len1, chn->buf->data, len2);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008559
Willy Tarreau4076a152009-04-02 15:18:36 +02008560 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008561 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008562 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008563 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008564
Willy Tarreau4076a152009-04-02 15:18:36 +02008565 es->when = date; // user-visible date
8566 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008567 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02008568 es->oe = other_end;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008569 if (objt_conn(sess->origin))
8570 es->src = __objt_conn(sess->origin)->addr.from;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008571 else
8572 memset(&es->src, 0, sizeof(es->src));
8573
Willy Tarreau078272e2010-12-12 12:46:33 +01008574 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01008575 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008576 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008577 es->s_flags = s->flags;
Willy Tarreaueee5b512015-04-03 23:46:31 +02008578 es->t_flags = s->txn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008579 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008580 es->b_out = chn->buf->o;
8581 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008582 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008583 es->m_clen = msg->chunk_len;
8584 es->m_blen = msg->body_len;
Willy Tarreau4076a152009-04-02 15:18:36 +02008585}
Willy Tarreaub2513902006-12-17 14:52:38 +01008586
Willy Tarreau294c4732011-12-16 21:35:50 +01008587/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8588 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8589 * performed over the whole headers. Otherwise it must contain a valid header
8590 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8591 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8592 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8593 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008594 * -1. The value fetch stops at commas, so this function is suited for use with
8595 * list headers.
Willy Tarreau294c4732011-12-16 21:35:50 +01008596 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02008597 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02008598unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01008599 struct hdr_idx *idx, int occ,
8600 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02008601{
Willy Tarreau294c4732011-12-16 21:35:50 +01008602 struct hdr_ctx local_ctx;
8603 char *ptr_hist[MAX_HDR_HISTORY];
8604 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02008605 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01008606 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02008607
Willy Tarreau294c4732011-12-16 21:35:50 +01008608 if (!ctx) {
8609 local_ctx.idx = 0;
8610 ctx = &local_ctx;
8611 }
8612
Willy Tarreaubce70882009-09-07 11:51:47 +02008613 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008614 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008615 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02008616 occ--;
8617 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008618 *vptr = ctx->line + ctx->val;
8619 *vlen = ctx->vlen;
8620 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008621 }
8622 }
Willy Tarreau294c4732011-12-16 21:35:50 +01008623 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02008624 }
8625
8626 /* negative occurrence, we scan all the list then walk back */
8627 if (-occ > MAX_HDR_HISTORY)
8628 return 0;
8629
Willy Tarreau294c4732011-12-16 21:35:50 +01008630 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008631 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008632 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8633 len_hist[hist_ptr] = ctx->vlen;
8634 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02008635 hist_ptr = 0;
8636 found++;
8637 }
8638 if (-occ > found)
8639 return 0;
8640 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Willy Tarreau67dad272013-06-12 22:27:44 +02008641 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8642 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8643 * to remain in the 0..9 range.
Willy Tarreaubce70882009-09-07 11:51:47 +02008644 */
Willy Tarreau67dad272013-06-12 22:27:44 +02008645 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreaubce70882009-09-07 11:51:47 +02008646 if (hist_ptr >= MAX_HDR_HISTORY)
8647 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01008648 *vptr = ptr_hist[hist_ptr];
8649 *vlen = len_hist[hist_ptr];
8650 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008651}
8652
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008653/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8654 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8655 * performed over the whole headers. Otherwise it must contain a valid header
8656 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8657 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8658 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8659 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
8660 * -1. This function differs from http_get_hdr() in that it only returns full
8661 * line header values and does not stop at commas.
8662 * The return value is 0 if nothing was found, or non-zero otherwise.
8663 */
8664unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
8665 struct hdr_idx *idx, int occ,
8666 struct hdr_ctx *ctx, char **vptr, int *vlen)
8667{
8668 struct hdr_ctx local_ctx;
8669 char *ptr_hist[MAX_HDR_HISTORY];
8670 int len_hist[MAX_HDR_HISTORY];
8671 unsigned int hist_ptr;
8672 int found;
8673
8674 if (!ctx) {
8675 local_ctx.idx = 0;
8676 ctx = &local_ctx;
8677 }
8678
8679 if (occ >= 0) {
8680 /* search from the beginning */
8681 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8682 occ--;
8683 if (occ <= 0) {
8684 *vptr = ctx->line + ctx->val;
8685 *vlen = ctx->vlen;
8686 return 1;
8687 }
8688 }
8689 return 0;
8690 }
8691
8692 /* negative occurrence, we scan all the list then walk back */
8693 if (-occ > MAX_HDR_HISTORY)
8694 return 0;
8695
8696 found = hist_ptr = 0;
8697 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8698 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8699 len_hist[hist_ptr] = ctx->vlen;
8700 if (++hist_ptr >= MAX_HDR_HISTORY)
8701 hist_ptr = 0;
8702 found++;
8703 }
8704 if (-occ > found)
8705 return 0;
8706 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
8707 * find occurrence -occ, so we have to check [hist_ptr+occ].
8708 */
8709 hist_ptr += occ;
8710 if (hist_ptr >= MAX_HDR_HISTORY)
8711 hist_ptr -= MAX_HDR_HISTORY;
8712 *vptr = ptr_hist[hist_ptr];
8713 *vlen = len_hist[hist_ptr];
8714 return 1;
8715}
8716
Willy Tarreaubaaee002006-06-26 02:48:02 +02008717/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02008718 * Print a debug line with a header. Always stop at the first CR or LF char,
8719 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
8720 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01008721 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008722void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008723{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008724 struct session *sess = strm_sess(s);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008725 int max;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008726
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008727 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008728 dir,
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008729 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->t.sock.fd : -1,
Willy Tarreau350f4872014-11-28 14:42:25 +01008730 objt_conn(s->si[1].end) ? (unsigned short)objt_conn(s->si[1].end)->t.sock.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02008731
8732 for (max = 0; start + max < end; max++)
8733 if (start[max] == '\r' || start[max] == '\n')
8734 break;
8735
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008736 UBOUND(max, trash.size - trash.len - 3);
8737 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
8738 trash.str[trash.len++] = '\n';
Willy Tarreau89efaed2013-12-13 15:14:55 +01008739 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008740}
8741
Willy Tarreaueee5b512015-04-03 23:46:31 +02008742
8743/* Allocate a new HTTP transaction for stream <s> unless there is one already.
8744 * The hdr_idx is allocated as well. In case of allocation failure, everything
8745 * allocated is freed and NULL is returned. Otherwise the new transaction is
8746 * assigned to the stream and returned.
8747 */
8748struct http_txn *http_alloc_txn(struct stream *s)
8749{
8750 struct http_txn *txn = s->txn;
8751
8752 if (txn)
8753 return txn;
8754
8755 txn = pool_alloc2(pool2_http_txn);
8756 if (!txn)
8757 return txn;
8758
8759 txn->hdr_idx.size = global.tune.max_http_hdr;
8760 txn->hdr_idx.v = pool_alloc2(pool2_hdr_idx);
8761 if (!txn->hdr_idx.v) {
8762 pool_free2(pool2_http_txn, txn);
8763 return NULL;
8764 }
8765
8766 s->txn = txn;
8767 return txn;
8768}
8769
Willy Tarreau0937bc42009-12-22 15:03:09 +01008770/*
Willy Tarreau87b09662015-04-03 00:22:06 +02008771 * Initialize a new HTTP transaction for stream <s>. It is assumed that all
Willy Tarreau0937bc42009-12-22 15:03:09 +01008772 * the required fields are properly allocated and that we only need to (re)init
8773 * them. This should be used before processing any new request.
8774 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008775void http_init_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008776{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008777 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008778 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008779
8780 txn->flags = 0;
8781 txn->status = -1;
8782
Willy Tarreauf64d1412010-10-07 20:06:11 +02008783 txn->cookie_first_date = 0;
8784 txn->cookie_last_date = 0;
8785
Willy Tarreaueee5b512015-04-03 23:46:31 +02008786 txn->srv_cookie = NULL;
8787 txn->cli_cookie = NULL;
8788 txn->uri = NULL;
8789
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008790 txn->req.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008791 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008792 txn->req.next = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008793 txn->rsp.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008794 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008795 txn->rsp.next = 0;
Willy Tarreau124d9912011-03-01 20:30:48 +01008796 txn->req.chunk_len = 0LL;
8797 txn->req.body_len = 0LL;
8798 txn->rsp.chunk_len = 0LL;
8799 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008800 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
8801 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008802 txn->req.chn = &s->req;
8803 txn->rsp.chn = &s->res;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008804
8805 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008806
8807 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
8808 if (fe->options2 & PR_O2_REQBUG_OK)
8809 txn->req.err_pos = -1; /* let buggy requests pass */
8810
Willy Tarreau0937bc42009-12-22 15:03:09 +01008811 if (txn->hdr_idx.v)
8812 hdr_idx_init(&txn->hdr_idx);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02008813
8814 vars_init(&s->vars_txn, SCOPE_TXN);
8815 vars_init(&s->vars_reqres, SCOPE_REQ);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008816}
8817
8818/* to be used at the end of a transaction */
Willy Tarreau87b09662015-04-03 00:22:06 +02008819void http_end_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008820{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008821 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008822 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008823
Willy Tarreau75195602014-03-11 15:48:55 +01008824 /* release any possible compression context */
Willy Tarreaue7dff022015-04-03 01:14:29 +02008825 if (s->flags & SF_COMP_READY)
Willy Tarreau75195602014-03-11 15:48:55 +01008826 s->comp_algo->end(&s->comp_ctx);
8827 s->comp_algo = NULL;
Willy Tarreaue7dff022015-04-03 01:14:29 +02008828 s->flags &= ~SF_COMP_READY;
Willy Tarreau75195602014-03-11 15:48:55 +01008829
Willy Tarreau0937bc42009-12-22 15:03:09 +01008830 /* these ones will have been dynamically allocated */
8831 pool_free2(pool2_requri, txn->uri);
8832 pool_free2(pool2_capture, txn->cli_cookie);
8833 pool_free2(pool2_capture, txn->srv_cookie);
William Lallemanda73203e2012-03-12 12:48:57 +01008834 pool_free2(pool2_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008835
William Lallemanda73203e2012-03-12 12:48:57 +01008836 s->unique_id = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008837 txn->uri = NULL;
8838 txn->srv_cookie = NULL;
8839 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01008840
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008841 if (s->req_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01008842 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008843 for (h = fe->req_cap; h; h = h->next)
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008844 pool_free2(h->pool, s->req_cap[h->index]);
8845 memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01008846 }
8847
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008848 if (s->res_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01008849 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008850 for (h = fe->rsp_cap; h; h = h->next)
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008851 pool_free2(h->pool, s->res_cap[h->index]);
8852 memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01008853 }
8854
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02008855 vars_prune(&s->vars_txn, s);
8856 vars_prune(&s->vars_reqres, s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008857}
8858
8859/* to be used at the end of a transaction to prepare a new one */
Willy Tarreau87b09662015-04-03 00:22:06 +02008860void http_reset_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008861{
8862 http_end_txn(s);
8863 http_init_txn(s);
8864
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01008865 /* reinitialise the current rule list pointer to NULL. We are sure that
8866 * any rulelist match the NULL pointer.
8867 */
8868 s->current_rule_list = NULL;
8869
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008870 s->be = strm_fe(s);
8871 s->logs.logwait = strm_fe(s)->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02008872 s->logs.level = 0;
Willy Tarreau87b09662015-04-03 00:22:06 +02008873 stream_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008874 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008875 /* re-init store persistence */
8876 s->store_count = 0;
Willy Tarreau1f0da242014-01-25 11:01:50 +01008877 s->uniq_id = global.req_count++;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008878
Willy Tarreau0937bc42009-12-22 15:03:09 +01008879 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008880
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008881 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008882
Willy Tarreau739cfba2010-01-25 23:11:14 +01008883 /* We must trim any excess data from the response buffer, because we
8884 * may have blocked an invalid response from a server that we don't
8885 * want to accidentely forward once we disable the analysers, nor do
8886 * we want those data to come along with next response. A typical
8887 * example of such data would be from a buggy server responding to
8888 * a HEAD with some data, or sending more than the advertised
8889 * content-length.
8890 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008891 if (unlikely(s->res.buf->i))
8892 s->res.buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008893
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008894 s->req.rto = strm_fe(s)->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008895 s->req.wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008896
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008897 s->res.rto = TICK_ETERNITY;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008898 s->res.wto = strm_fe(s)->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008899
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008900 s->req.rex = TICK_ETERNITY;
8901 s->req.wex = TICK_ETERNITY;
8902 s->req.analyse_exp = TICK_ETERNITY;
8903 s->res.rex = TICK_ETERNITY;
8904 s->res.wex = TICK_ETERNITY;
8905 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008906}
Willy Tarreau58f10d72006-12-04 02:26:12 +01008907
Sasha Pachev218f0642014-06-16 12:05:59 -06008908void free_http_res_rules(struct list *r)
8909{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008910 struct act_rule *tr, *pr;
Sasha Pachev218f0642014-06-16 12:05:59 -06008911
8912 list_for_each_entry_safe(pr, tr, r, list) {
8913 LIST_DEL(&pr->list);
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008914 regex_free(&pr->arg.hdr_add.re);
Sasha Pachev218f0642014-06-16 12:05:59 -06008915 free(pr);
8916 }
8917}
8918
8919void free_http_req_rules(struct list *r)
8920{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008921 struct act_rule *tr, *pr;
Willy Tarreauff011f22011-01-06 17:51:27 +01008922
8923 list_for_each_entry_safe(pr, tr, r, list) {
8924 LIST_DEL(&pr->list);
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008925 if (pr->action == ACT_HTTP_REQ_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008926 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01008927
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008928 regex_free(&pr->arg.hdr_add.re);
Willy Tarreauff011f22011-01-06 17:51:27 +01008929 free(pr);
8930 }
8931}
8932
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008933/* parse an "http-request" rule */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008934struct act_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
Willy Tarreauff011f22011-01-06 17:51:27 +01008935{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008936 struct act_rule *rule;
William Lallemand73025dd2014-04-24 14:38:37 +02008937 struct http_req_action_kw *custom = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008938 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008939 char *error;
Willy Tarreauff011f22011-01-06 17:51:27 +01008940
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008941 rule = (struct act_rule*)calloc(1, sizeof(struct act_rule));
Willy Tarreauff011f22011-01-06 17:51:27 +01008942 if (!rule) {
8943 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008944 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008945 }
8946
CJ Ess108b1dd2015-04-07 12:03:37 -04008947 rule->deny_status = HTTP_ERR_403;
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008948 if (!strcmp(args[0], "allow")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008949 rule->action = ACT_ACTION_ALLOW;
Willy Tarreauff011f22011-01-06 17:51:27 +01008950 cur_arg = 1;
Willy Tarreau5bd67592014-04-28 22:00:46 +02008951 } else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block")) {
CJ Ess108b1dd2015-04-07 12:03:37 -04008952 int code;
8953 int hc;
8954
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008955 rule->action = ACT_ACTION_DENY;
Willy Tarreauff011f22011-01-06 17:51:27 +01008956 cur_arg = 1;
CJ Ess108b1dd2015-04-07 12:03:37 -04008957 if (strcmp(args[cur_arg], "deny_status") == 0) {
8958 cur_arg++;
8959 if (!args[cur_arg]) {
8960 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing status code.\n",
8961 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
8962 goto out_err;
8963 }
8964
8965 code = atol(args[cur_arg]);
8966 cur_arg++;
8967 for (hc = 0; hc < HTTP_ERR_SIZE; hc++) {
8968 if (http_err_codes[hc] == code) {
8969 rule->deny_status = hc;
8970 break;
8971 }
8972 }
8973
8974 if (hc >= HTTP_ERR_SIZE) {
8975 Warning("parsing [%s:%d] : status code %d not handled, using default code 403.\n",
8976 file, linenum, code);
8977 }
8978 }
Willy Tarreauccbcc372012-12-27 12:37:57 +01008979 } else if (!strcmp(args[0], "tarpit")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008980 rule->action = ACT_HTTP_REQ_TARPIT;
Willy Tarreauccbcc372012-12-27 12:37:57 +01008981 cur_arg = 1;
Willy Tarreauff011f22011-01-06 17:51:27 +01008982 } else if (!strcmp(args[0], "auth")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008983 rule->action = ACT_HTTP_REQ_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01008984 cur_arg = 1;
8985
8986 while(*args[cur_arg]) {
8987 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008988 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01008989 cur_arg+=2;
8990 continue;
8991 } else
8992 break;
8993 }
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008994 } else if (!strcmp(args[0], "set-nice")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008995 rule->action = ACT_HTTP_SET_NICE;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008996 cur_arg = 1;
8997
8998 if (!*args[cur_arg] ||
8999 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9000 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n",
9001 file, linenum, args[0]);
9002 goto out_err;
9003 }
9004 rule->arg.nice = atoi(args[cur_arg]);
9005 if (rule->arg.nice < -1024)
9006 rule->arg.nice = -1024;
9007 else if (rule->arg.nice > 1024)
9008 rule->arg.nice = 1024;
9009 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009010 } else if (!strcmp(args[0], "set-tos")) {
9011#ifdef IP_TOS
9012 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009013 rule->action = ACT_HTTP_SET_TOS;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009014 cur_arg = 1;
9015
9016 if (!*args[cur_arg] ||
9017 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9018 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
9019 file, linenum, args[0]);
9020 goto out_err;
9021 }
9022
9023 rule->arg.tos = strtol(args[cur_arg], &err, 0);
9024 if (err && *err != '\0') {
9025 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
9026 file, linenum, err, args[0]);
9027 goto out_err;
9028 }
9029 cur_arg++;
9030#else
9031 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
9032 goto out_err;
9033#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02009034 } else if (!strcmp(args[0], "set-mark")) {
9035#ifdef SO_MARK
9036 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009037 rule->action = ACT_HTTP_SET_MARK;
Willy Tarreau51347ed2013-06-11 19:34:13 +02009038 cur_arg = 1;
9039
9040 if (!*args[cur_arg] ||
9041 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9042 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
9043 file, linenum, args[0]);
9044 goto out_err;
9045 }
9046
9047 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
9048 if (err && *err != '\0') {
9049 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
9050 file, linenum, err, args[0]);
9051 goto out_err;
9052 }
9053 cur_arg++;
9054 global.last_checks |= LSTCHK_NETADM;
9055#else
9056 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
9057 goto out_err;
9058#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009059 } else if (!strcmp(args[0], "set-log-level")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009060 rule->action = ACT_HTTP_SET_LOGL;
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009061 cur_arg = 1;
9062
9063 if (!*args[cur_arg] ||
9064 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9065 bad_log_level:
9066 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n",
9067 file, linenum, args[0]);
9068 goto out_err;
9069 }
9070 if (strcmp(args[cur_arg], "silent") == 0)
9071 rule->arg.loglevel = -1;
9072 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
9073 goto bad_log_level;
9074 cur_arg++;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009075 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009076 rule->action = *args[0] == 'a' ? ACT_HTTP_ADD_HDR : ACT_HTTP_SET_HDR;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009077 cur_arg = 1;
9078
Willy Tarreau8d1c5162013-04-03 14:13:58 +02009079 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9080 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01009081 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
9082 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009083 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009084 }
9085
9086 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9087 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9088 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02009089
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01009090 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009091 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009092 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9093 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009094 free(proxy->conf.lfs_file);
9095 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9096 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009097 cur_arg += 2;
Willy Tarreaub8543922014-06-17 18:58:26 +02009098 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009099 rule->action = args[0][8] == 'h' ? ACT_HTTP_REPLACE_HDR : ACT_HTTP_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06009100 cur_arg = 1;
9101
9102 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann92df3702014-06-24 11:10:00 +02009103 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
Sasha Pachev218f0642014-06-16 12:05:59 -06009104 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 3 arguments.\n",
9105 file, linenum, args[0]);
9106 goto out_err;
9107 }
9108
9109 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9110 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9111 LIST_INIT(&rule->arg.hdr_add.fmt);
9112
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009113 error = NULL;
9114 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
9115 Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
9116 args[cur_arg + 1], error);
9117 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06009118 goto out_err;
9119 }
9120
9121 proxy->conf.args.ctx = ARGC_HRQ;
9122 parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
9123 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9124 file, linenum);
9125
9126 free(proxy->conf.lfs_file);
9127 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9128 proxy->conf.lfs_line = proxy->conf.args.line;
9129 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009130 } else if (strcmp(args[0], "del-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009131 rule->action = ACT_HTTP_DEL_HDR;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009132 cur_arg = 1;
9133
9134 if (!*args[cur_arg] ||
9135 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9136 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9137 file, linenum, args[0]);
9138 goto out_err;
9139 }
9140
9141 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9142 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9143
9144 proxy->conf.args.ctx = ARGC_HRQ;
9145 free(proxy->conf.lfs_file);
9146 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9147 proxy->conf.lfs_line = proxy->conf.args.line;
9148 cur_arg += 1;
Willy Tarreau09448f72014-06-25 18:12:15 +02009149 } else if (strncmp(args[0], "track-sc", 8) == 0 &&
9150 args[0][9] == '\0' && args[0][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02009151 args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau09448f72014-06-25 18:12:15 +02009152 struct sample_expr *expr;
9153 unsigned int where;
9154 char *err = NULL;
9155
9156 cur_arg = 1;
9157 proxy->conf.args.ctx = ARGC_TRK;
9158
9159 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
9160 if (!expr) {
9161 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9162 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
9163 free(err);
9164 goto out_err;
9165 }
9166
9167 where = 0;
9168 if (proxy->cap & PR_CAP_FE)
9169 where |= SMP_VAL_FE_HRQ_HDR;
9170 if (proxy->cap & PR_CAP_BE)
9171 where |= SMP_VAL_BE_HRQ_HDR;
9172
9173 if (!(expr->fetch->val & where)) {
9174 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule :"
9175 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
9176 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
9177 args[cur_arg-1], sample_src_names(expr->fetch->use));
9178 free(expr);
9179 goto out_err;
9180 }
9181
9182 if (strcmp(args[cur_arg], "table") == 0) {
9183 cur_arg++;
9184 if (!args[cur_arg]) {
9185 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing table name.\n",
9186 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
9187 free(expr);
9188 goto out_err;
9189 }
9190 /* we copy the table name for now, it will be resolved later */
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02009191 rule->arg.trk_ctr.table.n = strdup(args[cur_arg]);
Willy Tarreau09448f72014-06-25 18:12:15 +02009192 cur_arg++;
9193 }
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02009194 rule->arg.trk_ctr.expr = expr;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009195 rule->action = ACT_ACTION_TRK_SC0 + args[0][8] - '0';
Willy Tarreau81499eb2012-12-27 12:19:02 +01009196 } else if (strcmp(args[0], "redirect") == 0) {
9197 struct redirect_rule *redir;
Willy Tarreau6d4890c2013-11-18 18:04:25 +01009198 char *errmsg = NULL;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009199
Willy Tarreaube4653b2015-05-28 15:26:58 +02009200 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1, 0)) == NULL) {
Willy Tarreau81499eb2012-12-27 12:19:02 +01009201 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9202 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9203 goto out_err;
9204 }
9205
9206 /* this redirect rule might already contain a parsed condition which
9207 * we'll pass to the http-request rule.
9208 */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009209 rule->action = ACT_HTTP_REDIR;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009210 rule->arg.redir = redir;
9211 rule->cond = redir->cond;
9212 redir->cond = NULL;
9213 cur_arg = 2;
9214 return rule;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009215 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9216 /* http-request add-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009217 rule->action = ACT_HTTP_ADD_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009218 /*
9219 * '+ 8' for 'add-acl('
9220 * '- 9' for 'add-acl(' + trailing ')'
9221 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009222 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009223
9224 cur_arg = 1;
9225
9226 if (!*args[cur_arg] ||
9227 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9228 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9229 file, linenum, args[0]);
9230 goto out_err;
9231 }
9232
9233 LIST_INIT(&rule->arg.map.key);
9234 proxy->conf.args.ctx = ARGC_HRQ;
9235 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9236 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9237 file, linenum);
9238 free(proxy->conf.lfs_file);
9239 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9240 proxy->conf.lfs_line = proxy->conf.args.line;
9241 cur_arg += 1;
9242 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9243 /* http-request del-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009244 rule->action = ACT_HTTP_DEL_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009245 /*
9246 * '+ 8' for 'del-acl('
9247 * '- 9' for 'del-acl(' + trailing ')'
9248 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009249 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009250
9251 cur_arg = 1;
9252
9253 if (!*args[cur_arg] ||
9254 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9255 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9256 file, linenum, args[0]);
9257 goto out_err;
9258 }
9259
9260 LIST_INIT(&rule->arg.map.key);
9261 proxy->conf.args.ctx = ARGC_HRQ;
9262 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9263 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9264 file, linenum);
9265 free(proxy->conf.lfs_file);
9266 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9267 proxy->conf.lfs_line = proxy->conf.args.line;
9268 cur_arg += 1;
9269 } else if (strncmp(args[0], "del-map", 7) == 0) {
9270 /* http-request del-map(<reference (map name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009271 rule->action = ACT_HTTP_DEL_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009272 /*
9273 * '+ 8' for 'del-map('
9274 * '- 9' for 'del-map(' + trailing ')'
9275 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009276 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009277
9278 cur_arg = 1;
9279
9280 if (!*args[cur_arg] ||
9281 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9282 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9283 file, linenum, args[0]);
9284 goto out_err;
9285 }
9286
9287 LIST_INIT(&rule->arg.map.key);
9288 proxy->conf.args.ctx = ARGC_HRQ;
9289 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9290 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9291 file, linenum);
9292 free(proxy->conf.lfs_file);
9293 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9294 proxy->conf.lfs_line = proxy->conf.args.line;
9295 cur_arg += 1;
9296 } else if (strncmp(args[0], "set-map", 7) == 0) {
9297 /* http-request set-map(<reference (map name)>) <key pattern> <value pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009298 rule->action = ACT_HTTP_SET_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009299 /*
9300 * '+ 8' for 'set-map('
9301 * '- 9' for 'set-map(' + trailing ')'
9302 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009303 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009304
9305 cur_arg = 1;
9306
9307 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9308 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9309 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
9310 file, linenum, args[0]);
9311 goto out_err;
9312 }
9313
9314 LIST_INIT(&rule->arg.map.key);
9315 LIST_INIT(&rule->arg.map.value);
9316 proxy->conf.args.ctx = ARGC_HRQ;
9317
9318 /* key pattern */
9319 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9320 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9321 file, linenum);
9322
9323 /* value pattern */
9324 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
9325 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9326 file, linenum);
9327 free(proxy->conf.lfs_file);
9328 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9329 proxy->conf.lfs_line = proxy->conf.args.line;
9330
9331 cur_arg += 2;
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02009332 } else if (strncmp(args[0], "set-src", 7) == 0) {
9333 struct sample_expr *expr;
9334 unsigned int where;
9335 char *err = NULL;
9336
9337 cur_arg = 1;
9338 proxy->conf.args.ctx = ARGC_HRQ;
9339
9340 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
9341 if (!expr) {
9342 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9343 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
9344 free(err);
9345 goto out_err;
9346 }
9347
9348 where = 0;
9349 if (proxy->cap & PR_CAP_FE)
9350 where |= SMP_VAL_FE_HRQ_HDR;
9351 if (proxy->cap & PR_CAP_BE)
9352 where |= SMP_VAL_BE_HRQ_HDR;
9353
9354 if (!(expr->fetch->val & where)) {
9355 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule :"
9356 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
9357 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
9358 args[cur_arg-1], sample_src_names(expr->fetch->use));
9359 free(expr);
9360 goto out_err;
9361 }
9362
Thierry FOURNIERa002dc92015-07-31 08:50:51 +02009363 rule->arg.expr = expr;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009364 rule->action = ACT_HTTP_REQ_SET_SRC;
William Lallemand73025dd2014-04-24 14:38:37 +02009365 } else if (((custom = action_http_req_custom(args[0])) != NULL)) {
9366 char *errmsg = NULL;
9367 cur_arg = 1;
9368 /* try in the module list */
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02009369 rule->from = ACT_F_HTTP_REQ;
William Lallemand73025dd2014-04-24 14:38:37 +02009370 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) {
9371 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9372 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9373 free(errmsg);
9374 goto out_err;
9375 }
Willy Tarreauff011f22011-01-06 17:51:27 +01009376 } else {
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02009377 Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', 'set-var', 'set-src', but got '%s'%s.\n",
Willy Tarreau5c2e1982012-12-24 12:00:25 +01009378 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01009379 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009380 }
9381
9382 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9383 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009384 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009385
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009386 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9387 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
9388 file, linenum, args[0], errmsg);
9389 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009390 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009391 }
9392 rule->cond = cond;
9393 }
9394 else if (*args[cur_arg]) {
9395 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
9396 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9397 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009398 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009399 }
9400
9401 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009402 out_err:
9403 free(rule);
9404 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009405}
9406
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009407/* parse an "http-respose" rule */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009408struct act_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009409{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009410 struct act_rule *rule;
William Lallemand73025dd2014-04-24 14:38:37 +02009411 struct http_res_action_kw *custom = NULL;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009412 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009413 char *error;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009414
9415 rule = calloc(1, sizeof(*rule));
9416 if (!rule) {
9417 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
9418 goto out_err;
9419 }
9420
9421 if (!strcmp(args[0], "allow")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009422 rule->action = ACT_ACTION_ALLOW;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009423 cur_arg = 1;
9424 } else if (!strcmp(args[0], "deny")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009425 rule->action = ACT_ACTION_DENY;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009426 cur_arg = 1;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009427 } else if (!strcmp(args[0], "set-nice")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009428 rule->action = ACT_HTTP_SET_NICE;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009429 cur_arg = 1;
9430
9431 if (!*args[cur_arg] ||
9432 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9433 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n",
9434 file, linenum, args[0]);
9435 goto out_err;
9436 }
9437 rule->arg.nice = atoi(args[cur_arg]);
9438 if (rule->arg.nice < -1024)
9439 rule->arg.nice = -1024;
9440 else if (rule->arg.nice > 1024)
9441 rule->arg.nice = 1024;
9442 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009443 } else if (!strcmp(args[0], "set-tos")) {
9444#ifdef IP_TOS
9445 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009446 rule->action = ACT_HTTP_SET_TOS;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009447 cur_arg = 1;
9448
9449 if (!*args[cur_arg] ||
9450 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9451 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9452 file, linenum, args[0]);
9453 goto out_err;
9454 }
9455
9456 rule->arg.tos = strtol(args[cur_arg], &err, 0);
9457 if (err && *err != '\0') {
9458 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9459 file, linenum, err, args[0]);
9460 goto out_err;
9461 }
9462 cur_arg++;
9463#else
9464 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
9465 goto out_err;
9466#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02009467 } else if (!strcmp(args[0], "set-mark")) {
9468#ifdef SO_MARK
9469 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009470 rule->action = ACT_HTTP_SET_MARK;
Willy Tarreau51347ed2013-06-11 19:34:13 +02009471 cur_arg = 1;
9472
9473 if (!*args[cur_arg] ||
9474 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9475 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9476 file, linenum, args[0]);
9477 goto out_err;
9478 }
9479
9480 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
9481 if (err && *err != '\0') {
9482 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9483 file, linenum, err, args[0]);
9484 goto out_err;
9485 }
9486 cur_arg++;
9487 global.last_checks |= LSTCHK_NETADM;
9488#else
9489 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
9490 goto out_err;
9491#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009492 } else if (!strcmp(args[0], "set-log-level")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009493 rule->action = ACT_HTTP_SET_LOGL;
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009494 cur_arg = 1;
9495
9496 if (!*args[cur_arg] ||
9497 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9498 bad_log_level:
9499 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n",
9500 file, linenum, args[0]);
9501 goto out_err;
9502 }
9503 if (strcmp(args[cur_arg], "silent") == 0)
9504 rule->arg.loglevel = -1;
9505 else if ((rule->arg.loglevel = get_log_level(args[cur_arg] + 1)) == 0)
9506 goto bad_log_level;
9507 cur_arg++;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009508 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009509 rule->action = *args[0] == 'a' ? ACT_HTTP_ADD_HDR : ACT_HTTP_SET_HDR;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009510 cur_arg = 1;
9511
9512 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9513 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9514 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9515 file, linenum, args[0]);
9516 goto out_err;
9517 }
9518
9519 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9520 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9521 LIST_INIT(&rule->arg.hdr_add.fmt);
9522
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01009523 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009524 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009525 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9526 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009527 free(proxy->conf.lfs_file);
9528 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9529 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009530 cur_arg += 2;
Sasha Pachev218f0642014-06-16 12:05:59 -06009531 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009532 rule->action = args[0][8] == 'h' ? ACT_HTTP_REPLACE_HDR : ACT_HTTP_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06009533 cur_arg = 1;
9534
9535 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann12cb00b2014-08-08 17:29:06 +02009536 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
9537 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 3 arguments.\n",
Sasha Pachev218f0642014-06-16 12:05:59 -06009538 file, linenum, args[0]);
9539 goto out_err;
9540 }
9541
9542 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9543 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9544 LIST_INIT(&rule->arg.hdr_add.fmt);
9545
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009546 error = NULL;
9547 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
9548 Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
9549 args[cur_arg + 1], error);
9550 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06009551 goto out_err;
9552 }
9553
9554 proxy->conf.args.ctx = ARGC_HRQ;
9555 parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
9556 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9557 file, linenum);
9558
9559 free(proxy->conf.lfs_file);
9560 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9561 proxy->conf.lfs_line = proxy->conf.args.line;
9562 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009563 } else if (strcmp(args[0], "del-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009564 rule->action = ACT_HTTP_DEL_HDR;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009565 cur_arg = 1;
9566
9567 if (!*args[cur_arg] ||
9568 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9569 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9570 file, linenum, args[0]);
9571 goto out_err;
9572 }
9573
9574 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9575 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9576
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009577 proxy->conf.args.ctx = ARGC_HRS;
9578 free(proxy->conf.lfs_file);
9579 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9580 proxy->conf.lfs_line = proxy->conf.args.line;
9581 cur_arg += 1;
9582 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9583 /* http-request add-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009584 rule->action = ACT_HTTP_ADD_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009585 /*
9586 * '+ 8' for 'add-acl('
9587 * '- 9' for 'add-acl(' + trailing ')'
9588 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009589 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009590
9591 cur_arg = 1;
9592
9593 if (!*args[cur_arg] ||
9594 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9595 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9596 file, linenum, args[0]);
9597 goto out_err;
9598 }
9599
9600 LIST_INIT(&rule->arg.map.key);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009601 proxy->conf.args.ctx = ARGC_HRS;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009602 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9603 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9604 file, linenum);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009605 free(proxy->conf.lfs_file);
9606 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9607 proxy->conf.lfs_line = proxy->conf.args.line;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009608
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009609 cur_arg += 1;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009610 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9611 /* http-response del-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009612 rule->action = ACT_HTTP_DEL_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009613 /*
9614 * '+ 8' for 'del-acl('
9615 * '- 9' for 'del-acl(' + trailing ')'
9616 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009617 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009618
9619 cur_arg = 1;
9620
9621 if (!*args[cur_arg] ||
9622 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9623 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9624 file, linenum, args[0]);
9625 goto out_err;
9626 }
9627
9628 LIST_INIT(&rule->arg.map.key);
9629 proxy->conf.args.ctx = ARGC_HRS;
9630 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9631 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9632 file, linenum);
9633 free(proxy->conf.lfs_file);
9634 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9635 proxy->conf.lfs_line = proxy->conf.args.line;
9636 cur_arg += 1;
9637 } else if (strncmp(args[0], "del-map", 7) == 0) {
9638 /* http-response del-map(<reference (map name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009639 rule->action = ACT_HTTP_DEL_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009640 /*
9641 * '+ 8' for 'del-map('
9642 * '- 9' for 'del-map(' + trailing ')'
9643 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009644 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009645
9646 cur_arg = 1;
9647
9648 if (!*args[cur_arg] ||
9649 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9650 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9651 file, linenum, args[0]);
9652 goto out_err;
9653 }
9654
9655 LIST_INIT(&rule->arg.map.key);
9656 proxy->conf.args.ctx = ARGC_HRS;
9657 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9658 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9659 file, linenum);
9660 free(proxy->conf.lfs_file);
9661 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9662 proxy->conf.lfs_line = proxy->conf.args.line;
9663 cur_arg += 1;
9664 } else if (strncmp(args[0], "set-map", 7) == 0) {
9665 /* http-response set-map(<reference (map name)>) <key pattern> <value pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009666 rule->action = ACT_HTTP_SET_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009667 /*
9668 * '+ 8' for 'set-map('
9669 * '- 9' for 'set-map(' + trailing ')'
9670 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009671 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009672
9673 cur_arg = 1;
9674
9675 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9676 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9677 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9678 file, linenum, args[0]);
9679 goto out_err;
9680 }
9681
9682 LIST_INIT(&rule->arg.map.key);
9683 LIST_INIT(&rule->arg.map.value);
9684
9685 proxy->conf.args.ctx = ARGC_HRS;
9686
9687 /* key pattern */
9688 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9689 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9690 file, linenum);
9691
9692 /* value pattern */
9693 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
9694 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9695 file, linenum);
9696
9697 free(proxy->conf.lfs_file);
9698 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9699 proxy->conf.lfs_line = proxy->conf.args.line;
9700
9701 cur_arg += 2;
Willy Tarreau51d861a2015-05-22 17:30:48 +02009702 } else if (strcmp(args[0], "redirect") == 0) {
9703 struct redirect_rule *redir;
9704 char *errmsg = NULL;
9705
9706 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1, 1)) == NULL) {
9707 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9708 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9709 goto out_err;
9710 }
9711
9712 /* this redirect rule might already contain a parsed condition which
9713 * we'll pass to the http-request rule.
9714 */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009715 rule->action = ACT_HTTP_REDIR;
Willy Tarreau51d861a2015-05-22 17:30:48 +02009716 rule->arg.redir = redir;
9717 rule->cond = redir->cond;
9718 redir->cond = NULL;
9719 cur_arg = 2;
9720 return rule;
William Lallemand73025dd2014-04-24 14:38:37 +02009721 } else if (((custom = action_http_res_custom(args[0])) != NULL)) {
9722 char *errmsg = NULL;
9723 cur_arg = 1;
9724 /* try in the module list */
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02009725 rule->from = ACT_F_HTTP_RES;
William Lallemand73025dd2014-04-24 14:38:37 +02009726 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) {
9727 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9728 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9729 free(errmsg);
9730 goto out_err;
9731 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009732 } else {
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02009733 Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', 'add-header', 'del-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'del-acl', 'add-acl', 'del-map', 'set-map', 'set-var' but got '%s'%s.\n",
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009734 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
9735 goto out_err;
9736 }
9737
9738 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9739 struct acl_cond *cond;
9740 char *errmsg = NULL;
9741
9742 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9743 Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n",
9744 file, linenum, args[0], errmsg);
9745 free(errmsg);
9746 goto out_err;
9747 }
9748 rule->cond = cond;
9749 }
9750 else if (*args[cur_arg]) {
9751 Alert("parsing [%s:%d]: 'http-response %s' expects"
9752 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9753 file, linenum, args[0], args[cur_arg]);
9754 goto out_err;
9755 }
9756
9757 return rule;
9758 out_err:
9759 free(rule);
9760 return NULL;
9761}
9762
Willy Tarreau4baae242012-12-27 12:00:31 +01009763/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009764 * with <err> filled with the error message. If <use_fmt> is not null, builds a
Willy Tarreaube4653b2015-05-28 15:26:58 +02009765 * dynamic log-format rule instead of a static string. Parameter <dir> indicates
9766 * the direction of the rule, and equals 0 for request, non-zero for responses.
Willy Tarreau4baae242012-12-27 12:00:31 +01009767 */
9768struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
Willy Tarreaube4653b2015-05-28 15:26:58 +02009769 const char **args, char **errmsg, int use_fmt, int dir)
Willy Tarreau4baae242012-12-27 12:00:31 +01009770{
9771 struct redirect_rule *rule;
9772 int cur_arg;
9773 int type = REDIRECT_TYPE_NONE;
9774 int code = 302;
9775 const char *destination = NULL;
9776 const char *cookie = NULL;
9777 int cookie_set = 0;
9778 unsigned int flags = REDIRECT_FLAG_NONE;
9779 struct acl_cond *cond = NULL;
9780
9781 cur_arg = 0;
9782 while (*(args[cur_arg])) {
9783 if (strcmp(args[cur_arg], "location") == 0) {
9784 if (!*args[cur_arg + 1])
9785 goto missing_arg;
9786
9787 type = REDIRECT_TYPE_LOCATION;
9788 cur_arg++;
9789 destination = args[cur_arg];
9790 }
9791 else if (strcmp(args[cur_arg], "prefix") == 0) {
9792 if (!*args[cur_arg + 1])
9793 goto missing_arg;
Willy Tarreau4baae242012-12-27 12:00:31 +01009794 type = REDIRECT_TYPE_PREFIX;
9795 cur_arg++;
9796 destination = args[cur_arg];
9797 }
9798 else if (strcmp(args[cur_arg], "scheme") == 0) {
9799 if (!*args[cur_arg + 1])
9800 goto missing_arg;
9801
9802 type = REDIRECT_TYPE_SCHEME;
9803 cur_arg++;
9804 destination = args[cur_arg];
9805 }
9806 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
9807 if (!*args[cur_arg + 1])
9808 goto missing_arg;
9809
9810 cur_arg++;
9811 cookie = args[cur_arg];
9812 cookie_set = 1;
9813 }
9814 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
9815 if (!*args[cur_arg + 1])
9816 goto missing_arg;
9817
9818 cur_arg++;
9819 cookie = args[cur_arg];
9820 cookie_set = 0;
9821 }
9822 else if (strcmp(args[cur_arg], "code") == 0) {
9823 if (!*args[cur_arg + 1])
9824 goto missing_arg;
9825
9826 cur_arg++;
9827 code = atol(args[cur_arg]);
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009828 if (code < 301 || code > 308 || (code > 303 && code < 307)) {
Willy Tarreau4baae242012-12-27 12:00:31 +01009829 memprintf(errmsg,
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009830 "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)",
Willy Tarreau4baae242012-12-27 12:00:31 +01009831 args[cur_arg - 1], args[cur_arg]);
9832 return NULL;
9833 }
9834 }
9835 else if (!strcmp(args[cur_arg],"drop-query")) {
9836 flags |= REDIRECT_FLAG_DROP_QS;
9837 }
9838 else if (!strcmp(args[cur_arg],"append-slash")) {
9839 flags |= REDIRECT_FLAG_APPEND_SLASH;
9840 }
9841 else if (strcmp(args[cur_arg], "if") == 0 ||
9842 strcmp(args[cur_arg], "unless") == 0) {
9843 cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg);
9844 if (!cond) {
9845 memprintf(errmsg, "error in condition: %s", *errmsg);
9846 return NULL;
9847 }
9848 break;
9849 }
9850 else {
9851 memprintf(errmsg,
9852 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
9853 args[cur_arg]);
9854 return NULL;
9855 }
9856 cur_arg++;
9857 }
9858
9859 if (type == REDIRECT_TYPE_NONE) {
9860 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
9861 return NULL;
9862 }
9863
Willy Tarreaube4653b2015-05-28 15:26:58 +02009864 if (dir && type != REDIRECT_TYPE_LOCATION) {
9865 memprintf(errmsg, "response only supports redirect type 'location'");
9866 return NULL;
9867 }
9868
Willy Tarreau4baae242012-12-27 12:00:31 +01009869 rule = (struct redirect_rule *)calloc(1, sizeof(*rule));
9870 rule->cond = cond;
Willy Tarreau60e08382013-12-03 00:48:45 +01009871 LIST_INIT(&rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009872
9873 if (!use_fmt) {
9874 /* old-style static redirect rule */
9875 rule->rdr_str = strdup(destination);
9876 rule->rdr_len = strlen(destination);
9877 }
9878 else {
9879 /* log-format based redirect rule */
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009880
9881 /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case,
9882 * if prefix == "/", we don't want to add anything, otherwise it
9883 * makes it hard for the user to configure a self-redirection.
9884 */
Godbachd9722032014-12-18 15:44:58 +08009885 curproxy->conf.args.ctx = ARGC_RDR;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009886 if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) {
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009887 parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP,
Willy Tarreaube4653b2015-05-28 15:26:58 +02009888 dir ? (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRS_HDR : SMP_VAL_BE_HRS_HDR
9889 : (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009890 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009891 free(curproxy->conf.lfs_file);
9892 curproxy->conf.lfs_file = strdup(curproxy->conf.args.file);
9893 curproxy->conf.lfs_line = curproxy->conf.args.line;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009894 }
9895 }
9896
Willy Tarreau4baae242012-12-27 12:00:31 +01009897 if (cookie) {
9898 /* depending on cookie_set, either we want to set the cookie, or to clear it.
9899 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
9900 */
9901 rule->cookie_len = strlen(cookie);
9902 if (cookie_set) {
9903 rule->cookie_str = malloc(rule->cookie_len + 10);
9904 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9905 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
9906 rule->cookie_len += 9;
9907 } else {
9908 rule->cookie_str = malloc(rule->cookie_len + 21);
9909 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9910 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
9911 rule->cookie_len += 20;
9912 }
9913 }
9914 rule->type = type;
9915 rule->code = code;
9916 rule->flags = flags;
9917 LIST_INIT(&rule->list);
9918 return rule;
9919
9920 missing_arg:
9921 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
9922 return NULL;
9923}
9924
Willy Tarreau8797c062007-05-07 00:55:35 +02009925/************************************************************************/
9926/* The code below is dedicated to ACL parsing and matching */
9927/************************************************************************/
9928
9929
Willy Tarreau14174bc2012-04-16 14:34:04 +02009930/* This function ensures that the prerequisites for an L7 fetch are ready,
9931 * which means that a request or response is ready. If some data is missing,
9932 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +02009933 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
9934 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009935 *
9936 * The function returns :
Willy Tarreau506d0502013-07-06 13:29:24 +02009937 * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
9938 * decide whether or not an HTTP message is present ;
9939 * 0 if the requested data cannot be fetched or if it is certain that
9940 * we'll never have any HTTP message there ;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009941 * 1 if an HTTP message is ready
9942 */
9943static int
Willy Tarreau15e91e12015-04-04 00:52:09 +02009944smp_prefetch_http(struct proxy *px, struct stream *s, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009945 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +02009946{
Willy Tarreau192252e2015-04-04 01:47:55 +02009947 struct http_txn *txn;
9948 struct http_msg *msg;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009949
Willy Tarreaueee5b512015-04-03 23:46:31 +02009950 /* Note: this function may only be used from places where
9951 * http_init_txn() has already been done, and implies that <s>,
9952 * <txn>, and <hdr_idx.v> are properly set. An extra check protects
9953 * against an eventual mistake in the fetch capability matrix.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009954 */
9955
Willy Tarreau192252e2015-04-04 01:47:55 +02009956 if (!s)
9957 return 0;
9958 txn = s->txn;
9959
9960 if (!txn)
Willy Tarreau14174bc2012-04-16 14:34:04 +02009961 return 0;
Willy Tarreau192252e2015-04-04 01:47:55 +02009962 msg = &txn->req;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009963
9964 /* Check for a dependency on a request */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009965 smp->data.type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009966
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009967 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreauaae75e32013-03-29 12:31:49 +01009968 /* If the buffer does not leave enough free space at the end,
9969 * we must first realign it.
9970 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009971 if (s->req.buf->p > s->req.buf->data &&
9972 s->req.buf->i + s->req.buf->p > s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)
9973 buffer_slow_realign(s->req.buf);
Willy Tarreauaae75e32013-03-29 12:31:49 +01009974
Willy Tarreau14174bc2012-04-16 14:34:04 +02009975 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau472b1ee2013-10-14 22:41:30 +02009976 if (msg->msg_state == HTTP_MSG_ERROR)
Willy Tarreau506d0502013-07-06 13:29:24 +02009977 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009978
9979 /* Try to decode HTTP request */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009980 if (likely(msg->next < s->req.buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +02009981 http_msg_analyzer(msg, &txn->hdr_idx);
9982
9983 /* Still no valid request ? */
9984 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02009985 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009986 buffer_full(s->req.buf, global.tune.maxrewrite)) {
Willy Tarreau506d0502013-07-06 13:29:24 +02009987 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009988 }
9989 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +02009990 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009991 return 0;
9992 }
9993
9994 /* OK we just got a valid HTTP request. We have some minor
9995 * preparation to perform so that further checks can rely
9996 * on HTTP tests.
9997 */
Willy Tarreauaae75e32013-03-29 12:31:49 +01009998
9999 /* If the request was parsed but was too large, we must absolutely
10000 * return an error so that it is not processed. At the moment this
10001 * cannot happen, but if the parsers are to change in the future,
10002 * we want this check to be maintained.
10003 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010010004 if (unlikely(s->req.buf->i + s->req.buf->p >
10005 s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)) {
Willy Tarreauaae75e32013-03-29 12:31:49 +010010006 msg->msg_state = HTTP_MSG_ERROR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010007 smp->data.u.sint = 1;
Willy Tarreauaae75e32013-03-29 12:31:49 +010010008 return 1;
10009 }
10010
Willy Tarreau9b28e032012-10-12 23:49:43 +020010011 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +020010012 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +020010013 s->flags |= SF_REDIRECTABLE;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010014
Willy Tarreau506d0502013-07-06 13:29:24 +020010015 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
10016 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010017 }
10018
Willy Tarreau506d0502013-07-06 13:29:24 +020010019 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) {
Willy Tarreau14174bc2012-04-16 14:34:04 +020010020 return 0; /* data might have moved and indexes changed */
Willy Tarreau506d0502013-07-06 13:29:24 +020010021 }
Willy Tarreau14174bc2012-04-16 14:34:04 +020010022
10023 /* otherwise everything's ready for the request */
10024 }
Willy Tarreau24e32d82012-04-23 23:55:44 +020010025 else {
10026 /* Check for a dependency on a response */
Willy Tarreau506d0502013-07-06 13:29:24 +020010027 if (txn->rsp.msg_state < HTTP_MSG_BODY) {
10028 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010029 return 0;
Willy Tarreau506d0502013-07-06 13:29:24 +020010030 }
Willy Tarreau14174bc2012-04-16 14:34:04 +020010031 }
10032
10033 /* everything's OK */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010034 smp->data.u.sint = 1;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010035 return 1;
10036}
Willy Tarreau8797c062007-05-07 00:55:35 +020010037
Willy Tarreau6c616e02014-06-25 16:56:41 +020010038/* Note: these functinos *do* modify the sample. Even in case of success, at
10039 * least the type and uint value are modified.
10040 */
Willy Tarreauc0239e02012-04-16 14:42:55 +020010041#define CHECK_HTTP_MESSAGE_FIRST() \
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010042 do { int r = smp_prefetch_http(smp->px, smp->strm, smp->opt, args, smp, 1); if (r <= 0) return r; } while (0)
Willy Tarreauc0239e02012-04-16 14:42:55 +020010043
Willy Tarreau24e32d82012-04-23 23:55:44 +020010044#define CHECK_HTTP_MESSAGE_FIRST_PERM() \
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010045 do { int r = smp_prefetch_http(smp->px, smp->strm, smp->opt, args, smp, 0); if (r <= 0) return r; } while (0)
Willy Tarreau24e32d82012-04-23 23:55:44 +020010046
Willy Tarreau8797c062007-05-07 00:55:35 +020010047
10048/* 1. Check on METHOD
10049 * We use the pre-parsed method if it is known, and store its number as an
10050 * integer. If it is unknown, we use the pointer and the length.
10051 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +020010052static int pat_parse_meth(const char *text, struct pattern *pattern, int mflags, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +020010053{
10054 int len, meth;
10055
Thierry FOURNIER580c32c2014-01-24 10:58:12 +010010056 len = strlen(text);
10057 meth = find_http_meth(text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +020010058
10059 pattern->val.i = meth;
10060 if (meth == HTTP_METH_OTHER) {
Willy Tarreau912c1192014-08-29 15:15:50 +020010061 pattern->ptr.str = (char *)text;
Willy Tarreau8797c062007-05-07 00:55:35 +020010062 pattern->len = len;
10063 }
Thierry FOURNIERd4373142013-12-17 01:10:10 +010010064 else {
10065 pattern->ptr.str = NULL;
10066 pattern->len = 0;
Thierry FOURNIERd4373142013-12-17 01:10:10 +010010067 }
Willy Tarreau8797c062007-05-07 00:55:35 +020010068 return 1;
10069}
10070
Willy Tarreau8e5e9552011-12-16 15:38:49 +010010071/* This function fetches the method of current HTTP request and stores
10072 * it in the global pattern struct as a chunk. There are two possibilities :
10073 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
10074 * in <len> and <ptr> is NULL ;
10075 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
10076 * <len> to its length.
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010010077 * This is intended to be used with pat_match_meth() only.
Willy Tarreau8e5e9552011-12-16 15:38:49 +010010078 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010079static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010080smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010081{
10082 int meth;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010083 struct http_txn *txn = smp->strm->txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010084
Willy Tarreau24e32d82012-04-23 23:55:44 +020010085 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010086
Willy Tarreau8797c062007-05-07 00:55:35 +020010087 meth = txn->meth;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010088 smp->data.type = SMP_T_METH;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010089 smp->data.u.meth.meth = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +020010090 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +020010091 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
10092 /* ensure the indexes are not affected */
10093 return 0;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010094 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010095 smp->data.u.meth.str.len = txn->req.sl.rq.m_l;
10096 smp->data.u.meth.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +020010097 }
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010098 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010099 return 1;
10100}
10101
Willy Tarreau8e5e9552011-12-16 15:38:49 +010010102/* See above how the method is stored in the global pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010103static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill)
Willy Tarreau8797c062007-05-07 00:55:35 +020010104{
Willy Tarreauc8d7c962007-06-17 08:20:33 +020010105 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010106 struct pattern_list *lst;
10107 struct pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +020010108
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010109 list_for_each_entry(lst, &expr->patterns, list) {
10110 pattern = &lst->pat;
Willy Tarreau8797c062007-05-07 00:55:35 +020010111
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010112 /* well-known method */
10113 if (pattern->val.i != HTTP_METH_OTHER) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010114 if (smp->data.u.meth.meth == pattern->val.i)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010115 return pattern;
10116 else
10117 continue;
10118 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +020010119
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010120 /* Other method, we must compare the strings */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010121 if (pattern->len != smp->data.u.meth.str.len)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010122 continue;
10123
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +020010124 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010125 if ((icase && strncasecmp(pattern->ptr.str, smp->data.u.meth.str.str, smp->data.u.meth.str.len) == 0) ||
10126 (!icase && strncmp(pattern->ptr.str, smp->data.u.meth.str.str, smp->data.u.meth.str.len) == 0))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010127 return pattern;
10128 }
10129 return NULL;
Willy Tarreau8797c062007-05-07 00:55:35 +020010130}
10131
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010132static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010133smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010134{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010135 struct http_txn *txn = smp->strm->txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010136 char *ptr;
10137 int len;
10138
Willy Tarreauc0239e02012-04-16 14:42:55 +020010139 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010140
Willy Tarreau8797c062007-05-07 00:55:35 +020010141 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010142 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +020010143
10144 while ((len-- > 0) && (*ptr++ != '/'));
10145 if (len <= 0)
10146 return 0;
10147
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010148 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010149 smp->data.u.str.str = ptr;
10150 smp->data.u.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +020010151
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010152 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010153 return 1;
10154}
10155
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010156static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010157smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010158{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010159 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010160 char *ptr;
10161 int len;
10162
Willy Tarreauc0239e02012-04-16 14:42:55 +020010163 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010164
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010165 txn = smp->strm->txn;
Willy Tarreauf26b2522012-12-14 08:33:14 +010010166 if (txn->rsp.msg_state < HTTP_MSG_BODY)
10167 return 0;
10168
Willy Tarreau8797c062007-05-07 00:55:35 +020010169 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010170 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +020010171
10172 while ((len-- > 0) && (*ptr++ != '/'));
10173 if (len <= 0)
10174 return 0;
10175
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010176 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010177 smp->data.u.str.str = ptr;
10178 smp->data.u.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +020010179
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010180 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010181 return 1;
10182}
10183
10184/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010185static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010186smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010187{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010188 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010189 char *ptr;
10190 int len;
10191
Willy Tarreauc0239e02012-04-16 14:42:55 +020010192 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010193
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010194 txn = smp->strm->txn;
Willy Tarreauf26b2522012-12-14 08:33:14 +010010195 if (txn->rsp.msg_state < HTTP_MSG_BODY)
10196 return 0;
10197
Willy Tarreau8797c062007-05-07 00:55:35 +020010198 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010199 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +020010200
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010201 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010202 smp->data.u.sint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +020010203 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010204 return 1;
10205}
10206
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010207/* returns the longest available part of the body. This requires that the body
10208 * has been waited for using http-buffer-request.
10209 */
10210static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010211smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010212{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010213 struct http_txn *txn = smp->strm->txn;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010214 struct http_msg *msg;
10215 unsigned long len;
10216 unsigned long block1;
10217 char *body;
10218 struct chunk *temp;
10219
10220 CHECK_HTTP_MESSAGE_FIRST();
10221
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010222 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010223 msg = &txn->req;
10224 else
10225 msg = &txn->rsp;
10226
10227 len = http_body_bytes(msg);
10228 body = b_ptr(msg->chn->buf, -http_data_rewind(msg));
10229
10230 block1 = len;
10231 if (block1 > msg->chn->buf->data + msg->chn->buf->size - body)
10232 block1 = msg->chn->buf->data + msg->chn->buf->size - body;
10233
10234 if (block1 == len) {
10235 /* buffer is not wrapped (or empty) */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010236 smp->data.type = SMP_T_BIN;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010237 smp->data.u.str.str = body;
10238 smp->data.u.str.len = len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010239 smp->flags = SMP_F_VOL_TEST | SMP_F_CONST;
10240 }
10241 else {
10242 /* buffer is wrapped, we need to defragment it */
10243 temp = get_trash_chunk();
10244 memcpy(temp->str, body, block1);
10245 memcpy(temp->str + block1, msg->chn->buf->data, len - block1);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010246 smp->data.type = SMP_T_BIN;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010247 smp->data.u.str.str = temp->str;
10248 smp->data.u.str.len = len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010249 smp->flags = SMP_F_VOL_TEST;
10250 }
10251 return 1;
10252}
10253
10254
10255/* returns the available length of the body. This requires that the body
10256 * has been waited for using http-buffer-request.
10257 */
10258static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010259smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010260{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010261 struct http_txn *txn = smp->strm->txn;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010262 struct http_msg *msg;
10263
10264 CHECK_HTTP_MESSAGE_FIRST();
10265
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010266 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010267 msg = &txn->req;
10268 else
10269 msg = &txn->rsp;
10270
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010271 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010272 smp->data.u.sint = http_body_bytes(msg);
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010273
10274 smp->flags = SMP_F_VOL_TEST;
10275 return 1;
10276}
10277
10278
10279/* returns the advertised length of the body, or the advertised size of the
10280 * chunks available in the buffer. This requires that the body has been waited
10281 * for using http-buffer-request.
10282 */
10283static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010284smp_fetch_body_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010285{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010286 struct http_txn *txn = smp->strm->txn;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010287 struct http_msg *msg;
10288
10289 CHECK_HTTP_MESSAGE_FIRST();
10290
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010291 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010292 msg = &txn->req;
10293 else
10294 msg = &txn->rsp;
10295
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010296 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010297 smp->data.u.sint = msg->body_len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010298
10299 smp->flags = SMP_F_VOL_TEST;
10300 return 1;
10301}
10302
10303
Willy Tarreau8797c062007-05-07 00:55:35 +020010304/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010305static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010306smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010307{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010308 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010309
Willy Tarreauc0239e02012-04-16 14:42:55 +020010310 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010311
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010312 txn = smp->strm->txn;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010313 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010314 smp->data.u.str.len = txn->req.sl.rq.u_l;
10315 smp->data.u.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010316 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010317 return 1;
10318}
10319
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010320static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010321smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010322{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010323 struct http_txn *txn;
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010324 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010325
Willy Tarreauc0239e02012-04-16 14:42:55 +020010326 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010327
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010328 txn = smp->strm->txn;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010010329 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL);
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010330 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +010010331 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010332
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010333 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010334 smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
Willy Tarreau37406352012-04-23 16:16:37 +020010335 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010336 return 1;
10337}
10338
10339static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010340smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010341{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010342 struct http_txn *txn;
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010343 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010344
Willy Tarreauc0239e02012-04-16 14:42:55 +020010345 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010346
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010347 txn = smp->strm->txn;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010010348 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL);
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010349 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
10350 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010351
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010352 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010353 smp->data.u.sint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
Willy Tarreau21e5b0e2012-04-23 19:25:44 +020010354 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010355 return 1;
10356}
10357
Willy Tarreau185b5c42012-04-26 15:11:51 +020010358/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10359 * Accepts an optional argument of type string containing the header field name,
10360 * and an optional argument of type signed or unsigned integer to request an
10361 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010362 * headers are considered from the first one. It does not stop on commas and
10363 * returns full lines instead (useful for User-Agent or Date for example).
10364 */
10365static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010366smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010367{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010368 struct hdr_idx *idx;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010369 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau15e91e12015-04-04 00:52:09 +020010370 const struct http_msg *msg;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010371 int occ = 0;
10372 const char *name_str = NULL;
10373 int name_len = 0;
10374
10375 if (!ctx) {
10376 /* first call */
10377 ctx = &static_hdr_ctx;
10378 ctx->idx = 0;
10379 smp->ctx.a[0] = ctx;
10380 }
10381
10382 if (args) {
10383 if (args[0].type != ARGT_STR)
10384 return 0;
10385 name_str = args[0].data.str.str;
10386 name_len = args[0].data.str.len;
10387
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010388 if (args[1].type == ARGT_SINT)
10389 occ = args[1].data.sint;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010390 }
10391
10392 CHECK_HTTP_MESSAGE_FIRST();
10393
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010394 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010395 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010396
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010397 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
10398 /* search for header from the beginning */
10399 ctx->idx = 0;
10400
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010401 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010402 /* no explicit occurrence and single fetch => last header by default */
10403 occ = -1;
10404
10405 if (!occ)
10406 /* prepare to report multiple occurrences for ACL fetches */
10407 smp->flags |= SMP_F_NOT_LAST;
10408
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010409 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010410 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010411 if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.u.str.str, &smp->data.u.str.len))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010412 return 1;
10413
10414 smp->flags &= ~SMP_F_NOT_LAST;
10415 return 0;
10416}
10417
10418/* 6. Check on HTTP header count. The number of occurrences is returned.
10419 * Accepts exactly 1 argument of type string. It does not stop on commas and
10420 * returns full lines instead (useful for User-Agent or Date for example).
10421 */
10422static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010423smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010424{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010425 struct hdr_idx *idx;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010426 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010427 const struct http_msg *msg;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010428 int cnt;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010429 const char *name = NULL;
10430 int len = 0;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010431
Willy Tarreau601a4d12015-04-01 19:16:09 +020010432 if (args && args->type == ARGT_STR) {
10433 name = args->data.str.str;
10434 len = args->data.str.len;
10435 }
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010436
10437 CHECK_HTTP_MESSAGE_FIRST();
10438
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010439 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010440 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010441
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010442 ctx.idx = 0;
10443 cnt = 0;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010444 while (http_find_full_header2(name, len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010445 cnt++;
10446
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010447 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010448 smp->data.u.sint = cnt;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010449 smp->flags = SMP_F_VOL_HDR;
10450 return 1;
10451}
10452
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010453static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010454smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010455{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010456 struct hdr_idx *idx;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010457 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010458 const struct http_msg *msg;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010459 struct chunk *temp;
10460 char del = ',';
10461
10462 if (args && args->type == ARGT_STR)
10463 del = *args[0].data.str.str;
10464
10465 CHECK_HTTP_MESSAGE_FIRST();
10466
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010467 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010468 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010469
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010470 temp = get_trash_chunk();
10471
10472 ctx.idx = 0;
10473 while (http_find_next_header(msg->chn->buf->p, idx, &ctx)) {
10474 if (temp->len)
10475 temp->str[temp->len++] = del;
10476 memcpy(temp->str + temp->len, ctx.line, ctx.del);
10477 temp->len += ctx.del;
10478 }
10479
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010480 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010481 smp->data.u.str.str = temp->str;
10482 smp->data.u.str.len = temp->len;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010483 smp->flags = SMP_F_VOL_HDR;
10484 return 1;
10485}
10486
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010487/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10488 * Accepts an optional argument of type string containing the header field name,
10489 * and an optional argument of type signed or unsigned integer to request an
10490 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau185b5c42012-04-26 15:11:51 +020010491 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010492 */
Willy Tarreau33a7e692007-06-10 19:45:56 +020010493static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010494smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010495{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010496 struct hdr_idx *idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010497 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau15e91e12015-04-04 00:52:09 +020010498 const struct http_msg *msg;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010499 int occ = 0;
10500 const char *name_str = NULL;
10501 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010502
Willy Tarreaua890d072013-04-02 12:01:06 +020010503 if (!ctx) {
10504 /* first call */
10505 ctx = &static_hdr_ctx;
10506 ctx->idx = 0;
Willy Tarreauffb6f082013-04-02 23:16:53 +020010507 smp->ctx.a[0] = ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010508 }
10509
Willy Tarreau185b5c42012-04-26 15:11:51 +020010510 if (args) {
10511 if (args[0].type != ARGT_STR)
10512 return 0;
10513 name_str = args[0].data.str.str;
10514 name_len = args[0].data.str.len;
10515
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010516 if (args[1].type == ARGT_SINT)
10517 occ = args[1].data.sint;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010518 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010519
Willy Tarreaue333ec92012-04-16 16:26:40 +020010520 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +020010521
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010522 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010523 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010524
Willy Tarreau185b5c42012-04-26 15:11:51 +020010525 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010526 /* search for header from the beginning */
10527 ctx->idx = 0;
10528
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010529 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau185b5c42012-04-26 15:11:51 +020010530 /* no explicit occurrence and single fetch => last header by default */
10531 occ = -1;
10532
10533 if (!occ)
10534 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +020010535 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +010010536
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010537 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010538 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010539 if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.u.str.str, &smp->data.u.str.len))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010540 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010541
Willy Tarreau37406352012-04-23 16:16:37 +020010542 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010543 return 0;
10544}
10545
Willy Tarreauc11416f2007-06-17 16:58:38 +020010546/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +020010547 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010548 */
10549static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010550smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010551{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010552 struct hdr_idx *idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010553 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010554 const struct http_msg *msg;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010555 int cnt;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010556 const char *name = NULL;
10557 int len = 0;
Willy Tarreau8797c062007-05-07 00:55:35 +020010558
Willy Tarreau601a4d12015-04-01 19:16:09 +020010559 if (args && args->type == ARGT_STR) {
10560 name = args->data.str.str;
10561 len = args->data.str.len;
10562 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010563
Willy Tarreaue333ec92012-04-16 16:26:40 +020010564 CHECK_HTTP_MESSAGE_FIRST();
10565
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010566 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010567 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010568
Willy Tarreau33a7e692007-06-10 19:45:56 +020010569 ctx.idx = 0;
10570 cnt = 0;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010571 while (http_find_header2(name, len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010572 cnt++;
10573
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010574 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010575 smp->data.u.sint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010576 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010577 return 1;
10578}
10579
Willy Tarreau185b5c42012-04-26 15:11:51 +020010580/* Fetch an HTTP header's integer value. The integer value is returned. It
10581 * takes a mandatory argument of type string and an optional one of type int
10582 * to designate a specific occurrence. It returns an unsigned integer, which
10583 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +020010584 */
10585static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010586smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010587{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010588 int ret = smp_fetch_hdr(args, smp, kw, private);
Willy Tarreaue333ec92012-04-16 16:26:40 +020010589
Willy Tarreauf853c462012-04-23 18:53:56 +020010590 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010591 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010592 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreauf853c462012-04-23 18:53:56 +020010593 }
Willy Tarreau33a7e692007-06-10 19:45:56 +020010594
Willy Tarreaud53e2422012-04-16 17:21:11 +020010595 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010596}
10597
Cyril Bonté69fa9922012-10-25 00:01:06 +020010598/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
10599 * and an optional one of type int to designate a specific occurrence.
10600 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +020010601 */
10602static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010603smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau106f9792009-09-19 07:54:16 +020010604{
Willy Tarreaud53e2422012-04-16 17:21:11 +020010605 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010606
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010607 while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010608 if (url2ipv4((char *)smp->data.u.str.str, &smp->data.u.ipv4)) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010609 smp->data.type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +020010610 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010611 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +010010612 struct chunk *temp = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010613 if (smp->data.u.str.len < temp->size - 1) {
10614 memcpy(temp->str, smp->data.u.str.str, smp->data.u.str.len);
10615 temp->str[smp->data.u.str.len] = '\0';
10616 if (inet_pton(AF_INET6, temp->str, &smp->data.u.ipv6)) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010617 smp->data.type = SMP_T_IPV6;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010618 break;
10619 }
10620 }
10621 }
10622
Willy Tarreaud53e2422012-04-16 17:21:11 +020010623 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +020010624 if (!(smp->flags & SMP_F_NOT_LAST))
10625 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +020010626 }
Willy Tarreaud53e2422012-04-16 17:21:11 +020010627 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +020010628}
10629
Willy Tarreau737b0c12007-06-10 21:28:46 +020010630/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
10631 * the first '/' after the possible hostname, and ends before the possible '?'.
10632 */
10633static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010634smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010635{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010636 struct http_txn *txn;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010637 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010638
Willy Tarreauc0239e02012-04-16 14:42:55 +020010639 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010640
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010641 txn = smp->strm->txn;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010642 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +010010643 ptr = http_get_path(txn);
10644 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010645 return 0;
10646
10647 /* OK, we got the '/' ! */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010648 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010649 smp->data.u.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010650
10651 while (ptr < end && *ptr != '?')
10652 ptr++;
10653
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010654 smp->data.u.str.len = ptr - smp->data.u.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010655 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010656 return 1;
10657}
10658
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010659/* This produces a concatenation of the first occurrence of the Host header
10660 * followed by the path component if it begins with a slash ('/'). This means
10661 * that '*' will not be added, resulting in exactly the first Host entry.
10662 * If no Host header is found, then the path is returned as-is. The returned
10663 * value is stored in the trash so it does not need to be marked constant.
Willy Tarreaub169eba2013-12-16 15:14:43 +010010664 * The returned sample is of type string.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010665 */
10666static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010667smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010668{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010669 struct http_txn *txn;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010670 char *ptr, *end, *beg;
10671 struct hdr_ctx ctx;
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010672 struct chunk *temp;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010673
10674 CHECK_HTTP_MESSAGE_FIRST();
10675
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010676 txn = smp->strm->txn;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010677 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010678 if (!http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx) || !ctx.vlen)
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010679 return smp_fetch_path(args, smp, kw, private);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010680
10681 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010682 temp = get_trash_chunk();
10683 memcpy(temp->str, ctx.line + ctx.val, ctx.vlen);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010684 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010685 smp->data.u.str.str = temp->str;
10686 smp->data.u.str.len = ctx.vlen;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010687
10688 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010689 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010690 beg = http_get_path(txn);
10691 if (!beg)
10692 beg = end;
10693
10694 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10695
10696 if (beg < ptr && *beg == '/') {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010697 memcpy(smp->data.u.str.str + smp->data.u.str.len, beg, ptr - beg);
10698 smp->data.u.str.len += ptr - beg;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010699 }
10700
10701 smp->flags = SMP_F_VOL_1ST;
10702 return 1;
10703}
10704
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010705/* This produces a 32-bit hash of the concatenation of the first occurrence of
10706 * the Host header followed by the path component if it begins with a slash ('/').
10707 * This means that '*' will not be added, resulting in exactly the first Host
10708 * entry. If no Host header is found, then the path is used. The resulting value
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010709 * is hashed using the path hash followed by a full avalanche hash and provides a
10710 * 32-bit integer value. This fetch is useful for tracking per-path activity on
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010711 * high-traffic sites without having to store whole paths.
10712 */
Thierry FOURNIER055b9d52014-07-15 16:11:07 +020010713int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010714smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010715{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010716 struct http_txn *txn;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010717 struct hdr_ctx ctx;
10718 unsigned int hash = 0;
10719 char *ptr, *beg, *end;
10720 int len;
10721
10722 CHECK_HTTP_MESSAGE_FIRST();
10723
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010724 txn = smp->strm->txn;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010725 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010726 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010727 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10728 ptr = ctx.line + ctx.val;
10729 len = ctx.vlen;
10730 while (len--)
10731 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10732 }
10733
10734 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010735 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010736 beg = http_get_path(txn);
10737 if (!beg)
10738 beg = end;
10739
10740 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10741
10742 if (beg < ptr && *beg == '/') {
10743 while (beg < ptr)
10744 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10745 }
10746 hash = full_hash(hash);
10747
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010748 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010749 smp->data.u.sint = hash;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010750 smp->flags = SMP_F_VOL_1ST;
10751 return 1;
10752}
10753
Willy Tarreau4a550602012-12-09 14:53:32 +010010754/* This concatenates the source address with the 32-bit hash of the Host and
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010755 * path as returned by smp_fetch_base32(). The idea is to have per-source and
10756 * per-path counters. The result is a binary block from 8 to 20 bytes depending
10757 * on the source address length. The path hash is stored before the address so
Willy Tarreau4a550602012-12-09 14:53:32 +010010758 * that in environments where IPv6 is insignificant, truncating the output to
10759 * 8 bytes would still work.
10760 */
10761static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010762smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau4a550602012-12-09 14:53:32 +010010763{
Willy Tarreau47ca5452012-12-23 20:22:19 +010010764 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010765 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010766
10767 if (!cli_conn)
10768 return 0;
Willy Tarreau4a550602012-12-09 14:53:32 +010010769
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010770 if (!smp_fetch_base32(args, smp, kw, private))
Willy Tarreau4a550602012-12-09 14:53:32 +010010771 return 0;
10772
Willy Tarreau47ca5452012-12-23 20:22:19 +010010773 temp = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010774 *(unsigned int *)temp->str = htonl(smp->data.u.sint);
Willy Tarreau5ad6e1d2014-07-15 21:34:06 +020010775 temp->len += sizeof(unsigned int);
Willy Tarreau4a550602012-12-09 14:53:32 +010010776
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010777 switch (cli_conn->addr.from.ss_family) {
Willy Tarreau4a550602012-12-09 14:53:32 +010010778 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010779 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Willy Tarreau4a550602012-12-09 14:53:32 +010010780 temp->len += 4;
10781 break;
10782 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010783 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Willy Tarreau4a550602012-12-09 14:53:32 +010010784 temp->len += 16;
10785 break;
10786 default:
10787 return 0;
10788 }
10789
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010790 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010791 smp->data.type = SMP_T_BIN;
Willy Tarreau4a550602012-12-09 14:53:32 +010010792 return 1;
10793}
10794
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010795/* Extracts the query string, which comes after the question mark '?'. If no
10796 * question mark is found, nothing is returned. Otherwise it returns a sample
10797 * of type string carrying the whole query string.
10798 */
10799static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010800smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010801{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010802 struct http_txn *txn;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010803 char *ptr, *end;
10804
10805 CHECK_HTTP_MESSAGE_FIRST();
10806
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010807 txn = smp->strm->txn;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010808 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
10809 end = ptr + txn->req.sl.rq.u_l;
10810
10811 /* look up the '?' */
10812 do {
10813 if (ptr == end)
10814 return 0;
10815 } while (*ptr++ != '?');
10816
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010817 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010818 smp->data.u.str.str = ptr;
10819 smp->data.u.str.len = end - ptr;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010820 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
10821 return 1;
10822}
10823
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010824static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010825smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010826{
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010827 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
10828 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
10829 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010830
Willy Tarreau24e32d82012-04-23 23:55:44 +020010831 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010832
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010833 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010834 smp->data.u.sint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010835 return 1;
10836}
10837
Willy Tarreau7f18e522010-10-22 20:04:13 +020010838/* return a valid test if the current request is the first one on the connection */
10839static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010840smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau7f18e522010-10-22 20:04:13 +020010841{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010842 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010843 smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +020010844 return 1;
10845}
10846
Willy Tarreau34db1082012-04-19 17:16:54 +020010847/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010848static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010849smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010850{
10851
Willy Tarreau24e32d82012-04-23 23:55:44 +020010852 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010853 return 0;
10854
Willy Tarreauc0239e02012-04-16 14:42:55 +020010855 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010856
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010857 if (!get_http_auth(smp->strm))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010858 return 0;
10859
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010860 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010861 smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user,
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010862 smp->strm->txn->auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010863 return 1;
10864}
Willy Tarreau8797c062007-05-07 00:55:35 +020010865
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010866/* Accepts exactly 1 argument of type userlist */
10867static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010868smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010869{
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010870 if (!args || args->type != ARGT_USR)
10871 return 0;
10872
10873 CHECK_HTTP_MESSAGE_FIRST();
10874
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010875 if (!get_http_auth(smp->strm))
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010876 return 0;
10877
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010878 /* if the user does not belong to the userlist or has a wrong password,
10879 * report that it unconditionally does not match. Otherwise we return
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010880 * a string containing the username.
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010881 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010882 if (!check_user(args->data.usr, smp->strm->txn->auth.user,
10883 smp->strm->txn->auth.pass))
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010884 return 0;
10885
10886 /* pat_match_auth() will need the user list */
10887 smp->ctx.a[0] = args->data.usr;
10888
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010889 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010890 smp->flags = SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010891 smp->data.u.str.str = smp->strm->txn->auth.user;
10892 smp->data.u.str.len = strlen(smp->strm->txn->auth.user);
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010893
10894 return 1;
10895}
10896
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010897/* Try to find the next occurrence of a cookie name in a cookie header value.
10898 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
10899 * the cookie value is returned into *value and *value_l, and the function
10900 * returns a pointer to the next pointer to search from if the value was found.
10901 * Otherwise if the cookie was not found, NULL is returned and neither value
10902 * nor value_l are touched. The input <hdr> string should first point to the
10903 * header's value, and the <hdr_end> pointer must point to the first character
10904 * not part of the value. <list> must be non-zero if value may represent a list
10905 * of values (cookie headers). This makes it faster to abort parsing when no
10906 * list is expected.
10907 */
10908static char *
10909extract_cookie_value(char *hdr, const char *hdr_end,
10910 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +020010911 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010912{
10913 char *equal, *att_end, *att_beg, *val_beg, *val_end;
10914 char *next;
10915
10916 /* we search at least a cookie name followed by an equal, and more
10917 * generally something like this :
10918 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
10919 */
10920 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
10921 /* Iterate through all cookies on this line */
10922
10923 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
10924 att_beg++;
10925
10926 /* find att_end : this is the first character after the last non
10927 * space before the equal. It may be equal to hdr_end.
10928 */
10929 equal = att_end = att_beg;
10930
10931 while (equal < hdr_end) {
10932 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
10933 break;
10934 if (http_is_spht[(unsigned char)*equal++])
10935 continue;
10936 att_end = equal;
10937 }
10938
10939 /* here, <equal> points to '=', a delimitor or the end. <att_end>
10940 * is between <att_beg> and <equal>, both may be identical.
10941 */
10942
10943 /* look for end of cookie if there is an equal sign */
10944 if (equal < hdr_end && *equal == '=') {
10945 /* look for the beginning of the value */
10946 val_beg = equal + 1;
10947 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
10948 val_beg++;
10949
10950 /* find the end of the value, respecting quotes */
10951 next = find_cookie_value_end(val_beg, hdr_end);
10952
10953 /* make val_end point to the first white space or delimitor after the value */
10954 val_end = next;
10955 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
10956 val_end--;
10957 } else {
10958 val_beg = val_end = next = equal;
10959 }
10960
10961 /* We have nothing to do with attributes beginning with '$'. However,
10962 * they will automatically be removed if a header before them is removed,
10963 * since they're supposed to be linked together.
10964 */
10965 if (*att_beg == '$')
10966 continue;
10967
10968 /* Ignore cookies with no equal sign */
10969 if (equal == next)
10970 continue;
10971
10972 /* Now we have the cookie name between att_beg and att_end, and
10973 * its value between val_beg and val_end.
10974 */
10975
10976 if (att_end - att_beg == cookie_name_l &&
10977 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
10978 /* let's return this value and indicate where to go on from */
10979 *value = val_beg;
10980 *value_l = val_end - val_beg;
10981 return next + 1;
10982 }
10983
10984 /* Set-Cookie headers only have the name in the first attr=value part */
10985 if (!list)
10986 break;
10987 }
10988
10989 return NULL;
10990}
10991
William Lallemanda43ba4e2014-01-28 18:14:25 +010010992/* Fetch a captured HTTP request header. The index is the position of
10993 * the "capture" option in the configuration file
10994 */
10995static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010996smp_fetch_capture_header_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010997{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010998 struct proxy *fe = strm_fe(smp->strm);
William Lallemanda43ba4e2014-01-28 18:14:25 +010010999 int idx;
11000
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011001 if (!args || args->type != ARGT_SINT)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011002 return 0;
11003
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011004 idx = args->data.sint;
William Lallemanda43ba4e2014-01-28 18:14:25 +010011005
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011006 if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011007 return 0;
11008
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011009 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011010 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011011 smp->data.u.str.str = smp->strm->req_cap[idx];
11012 smp->data.u.str.len = strlen(smp->strm->req_cap[idx]);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011013
11014 return 1;
11015}
11016
11017/* Fetch a captured HTTP response header. The index is the position of
11018 * the "capture" option in the configuration file
11019 */
11020static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011021smp_fetch_capture_header_res(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011022{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011023 struct proxy *fe = strm_fe(smp->strm);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011024 int idx;
11025
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011026 if (!args || args->type != ARGT_SINT)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011027 return 0;
11028
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011029 idx = args->data.sint;
William Lallemanda43ba4e2014-01-28 18:14:25 +010011030
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011031 if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011032 return 0;
11033
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011034 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011035 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011036 smp->data.u.str.str = smp->strm->res_cap[idx];
11037 smp->data.u.str.len = strlen(smp->strm->res_cap[idx]);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011038
11039 return 1;
11040}
11041
William Lallemand65ad6e12014-01-31 15:08:02 +010011042/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
11043static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011044smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemand65ad6e12014-01-31 15:08:02 +010011045{
11046 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011047 struct http_txn *txn = smp->strm->txn;
William Lallemand96a77852014-02-05 00:30:02 +010011048 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010011049
Willy Tarreau15e91e12015-04-04 00:52:09 +020011050 if (!txn || !txn->uri)
William Lallemand65ad6e12014-01-31 15:08:02 +010011051 return 0;
11052
William Lallemand96a77852014-02-05 00:30:02 +010011053 ptr = txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010011054
William Lallemand96a77852014-02-05 00:30:02 +010011055 while (*ptr != ' ' && *ptr != '\0') /* find first space */
11056 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010011057
William Lallemand96a77852014-02-05 00:30:02 +010011058 temp = get_trash_chunk();
11059 temp->str = txn->uri;
11060 temp->len = ptr - txn->uri;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011061 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011062 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011063 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010011064
11065 return 1;
11066
11067}
11068
11069/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
11070static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011071smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemand65ad6e12014-01-31 15:08:02 +010011072{
11073 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011074 struct http_txn *txn = smp->strm->txn;
William Lallemand65ad6e12014-01-31 15:08:02 +010011075 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010011076
Willy Tarreau15e91e12015-04-04 00:52:09 +020011077 if (!txn || !txn->uri)
William Lallemand65ad6e12014-01-31 15:08:02 +010011078 return 0;
William Lallemand96a77852014-02-05 00:30:02 +010011079
William Lallemand65ad6e12014-01-31 15:08:02 +010011080 ptr = txn->uri;
11081
11082 while (*ptr != ' ' && *ptr != '\0') /* find first space */
11083 ptr++;
William Lallemand96a77852014-02-05 00:30:02 +010011084
William Lallemand65ad6e12014-01-31 15:08:02 +010011085 if (!*ptr)
11086 return 0;
11087
11088 ptr++; /* skip the space */
11089
11090 temp = get_trash_chunk();
William Lallemand96a77852014-02-05 00:30:02 +010011091 ptr = temp->str = http_get_path_from_string(ptr);
William Lallemand65ad6e12014-01-31 15:08:02 +010011092 if (!ptr)
11093 return 0;
11094 while (*ptr != ' ' && *ptr != '\0') /* find space after URI */
11095 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010011096
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011097 smp->data.u.str = *temp;
11098 smp->data.u.str.len = ptr - temp->str;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011099 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011100 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010011101
11102 return 1;
11103}
11104
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011105/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
11106 * as a string (either "HTTP/1.0" or "HTTP/1.1").
11107 */
11108static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011109smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011110{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011111 struct http_txn *txn = smp->strm->txn;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011112
Willy Tarreau15e91e12015-04-04 00:52:09 +020011113 if (!txn || txn->req.msg_state < HTTP_MSG_HDR_FIRST)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011114 return 0;
11115
11116 if (txn->req.flags & HTTP_MSGF_VER_11)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011117 smp->data.u.str.str = "HTTP/1.1";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011118 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011119 smp->data.u.str.str = "HTTP/1.0";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011120
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011121 smp->data.u.str.len = 8;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011122 smp->data.type = SMP_T_STR;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011123 smp->flags = SMP_F_CONST;
11124 return 1;
11125
11126}
11127
11128/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
11129 * as a string (either "HTTP/1.0" or "HTTP/1.1").
11130 */
11131static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011132smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011133{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011134 struct http_txn *txn = smp->strm->txn;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011135
Willy Tarreau15e91e12015-04-04 00:52:09 +020011136 if (!txn || txn->rsp.msg_state < HTTP_MSG_HDR_FIRST)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011137 return 0;
11138
11139 if (txn->rsp.flags & HTTP_MSGF_VER_11)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011140 smp->data.u.str.str = "HTTP/1.1";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011141 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011142 smp->data.u.str.str = "HTTP/1.0";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011143
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011144 smp->data.u.str.len = 8;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011145 smp->data.type = SMP_T_STR;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011146 smp->flags = SMP_F_CONST;
11147 return 1;
11148
11149}
11150
William Lallemand65ad6e12014-01-31 15:08:02 +010011151
Willy Tarreaue333ec92012-04-16 16:26:40 +020011152/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +020011153 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
Willy Tarreaua890d072013-04-02 12:01:06 +020011154 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +020011155 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +020011156 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +020011157 * Accepts exactly 1 argument of type string. If the input options indicate
11158 * that no iterating is desired, then only last value is fetched if any.
William Lallemand07c8b242014-05-02 17:11:07 +020011159 * The returned sample is of type CSTR. Can be used to parse cookies in other
11160 * files.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011161 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011162int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011163{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011164 struct http_txn *txn;
11165 struct hdr_idx *idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020011166 struct hdr_ctx *ctx = smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +020011167 const struct http_msg *msg;
11168 const char *hdr_name;
11169 int hdr_name_len;
11170 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +020011171 int occ = 0;
11172 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020011173
Willy Tarreau24e32d82012-04-23 23:55:44 +020011174 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020011175 return 0;
11176
Willy Tarreaua890d072013-04-02 12:01:06 +020011177 if (!ctx) {
11178 /* first call */
11179 ctx = &static_hdr_ctx;
11180 ctx->idx = 0;
11181 smp->ctx.a[2] = ctx;
11182 }
11183
Willy Tarreaue333ec92012-04-16 16:26:40 +020011184 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011185
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011186 txn = smp->strm->txn;
11187 idx = &smp->strm->txn->hdr_idx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020011188
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011189 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020011190 msg = &txn->req;
11191 hdr_name = "Cookie";
11192 hdr_name_len = 6;
11193 } else {
11194 msg = &txn->rsp;
11195 hdr_name = "Set-Cookie";
11196 hdr_name_len = 10;
11197 }
11198
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011199 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau28376d62012-04-26 21:26:10 +020011200 /* no explicit occurrence and single fetch => last cookie by default */
11201 occ = -1;
11202
11203 /* OK so basically here, either we want only one value and it's the
11204 * last one, or we want to iterate over all of them and we fetch the
11205 * next one.
11206 */
11207
Willy Tarreau9b28e032012-10-12 23:49:43 +020011208 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +020011209 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011210 /* search for the header from the beginning, we must first initialize
11211 * the search parameters.
11212 */
Willy Tarreau37406352012-04-23 16:16:37 +020011213 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011214 ctx->idx = 0;
11215 }
11216
Willy Tarreau28376d62012-04-26 21:26:10 +020011217 smp->flags |= SMP_F_VOL_HDR;
11218
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011219 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +020011220 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
11221 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011222 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
11223 goto out;
11224
Willy Tarreau24e32d82012-04-23 23:55:44 +020011225 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011226 continue;
11227
Willy Tarreau37406352012-04-23 16:16:37 +020011228 smp->ctx.a[0] = ctx->line + ctx->val;
11229 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011230 }
11231
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011232 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011233 smp->flags |= SMP_F_CONST;
Willy Tarreau37406352012-04-23 16:16:37 +020011234 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +020011235 args->data.str.str, args->data.str.len,
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011236 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011237 &smp->data.u.str.str,
11238 &smp->data.u.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +020011239 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +020011240 found = 1;
11241 if (occ >= 0) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011242 /* one value was returned into smp->data.u.str.{str,len} */
Willy Tarreau28376d62012-04-26 21:26:10 +020011243 smp->flags |= SMP_F_NOT_LAST;
11244 return 1;
11245 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011246 }
Willy Tarreau28376d62012-04-26 21:26:10 +020011247 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011248 }
Willy Tarreau28376d62012-04-26 21:26:10 +020011249 /* all cookie headers and values were scanned. If we're looking for the
11250 * last occurrence, we may return it now.
11251 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011252 out:
Willy Tarreau37406352012-04-23 16:16:37 +020011253 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +020011254 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011255}
11256
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011257/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +020011258 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreaub169eba2013-12-16 15:14:43 +010011259 * multiple cookies may be parsed on the same line. The returned sample is of
11260 * type UINT. Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011261 */
11262static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011263smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011264{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011265 struct http_txn *txn;
11266 struct hdr_idx *idx;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011267 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +020011268 const struct http_msg *msg;
11269 const char *hdr_name;
11270 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011271 int cnt;
11272 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +020011273 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011274
Willy Tarreau24e32d82012-04-23 23:55:44 +020011275 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020011276 return 0;
11277
Willy Tarreaue333ec92012-04-16 16:26:40 +020011278 CHECK_HTTP_MESSAGE_FIRST();
11279
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011280 txn = smp->strm->txn;
11281 idx = &smp->strm->txn->hdr_idx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020011282
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011283 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020011284 msg = &txn->req;
11285 hdr_name = "Cookie";
11286 hdr_name_len = 6;
11287 } else {
11288 msg = &txn->rsp;
11289 hdr_name = "Set-Cookie";
11290 hdr_name_len = 10;
11291 }
11292
Willy Tarreau9b28e032012-10-12 23:49:43 +020011293 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +020011294 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011295 ctx.idx = 0;
11296 cnt = 0;
11297
11298 while (1) {
11299 /* Note: val_beg == NULL every time we need to fetch a new header */
11300 if (!val_beg) {
11301 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
11302 break;
11303
Willy Tarreau24e32d82012-04-23 23:55:44 +020011304 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011305 continue;
11306
11307 val_beg = ctx.line + ctx.val;
11308 val_end = val_beg + ctx.vlen;
11309 }
11310
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011311 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011312 smp->flags |= SMP_F_CONST;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011313 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +020011314 args->data.str.str, args->data.str.len,
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011315 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011316 &smp->data.u.str.str,
11317 &smp->data.u.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011318 cnt++;
11319 }
11320 }
11321
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011322 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011323 smp->data.u.sint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020011324 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011325 return 1;
11326}
11327
Willy Tarreau51539362012-05-08 12:46:28 +020011328/* Fetch an cookie's integer value. The integer value is returned. It
11329 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
11330 */
11331static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011332smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau51539362012-05-08 12:46:28 +020011333{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011334 int ret = smp_fetch_cookie(args, smp, kw, private);
Willy Tarreau51539362012-05-08 12:46:28 +020011335
11336 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011337 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011338 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreau51539362012-05-08 12:46:28 +020011339 }
11340
11341 return ret;
11342}
11343
Willy Tarreau8797c062007-05-07 00:55:35 +020011344/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +020011345/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +020011346/************************************************************************/
11347
David Cournapeau16023ee2010-12-23 20:55:41 +090011348/*
11349 * Given a path string and its length, find the position of beginning of the
11350 * query string. Returns NULL if no query string is found in the path.
11351 *
11352 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
11353 *
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011354 * find_query_string(path, n, '?') points to "yo=mama;ye=daddy" string.
David Cournapeau16023ee2010-12-23 20:55:41 +090011355 */
bedis4c75cca2012-10-05 08:38:24 +020011356static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011357{
11358 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +020011359
bedis4c75cca2012-10-05 08:38:24 +020011360 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +090011361 return p ? p + 1 : NULL;
11362}
11363
bedis4c75cca2012-10-05 08:38:24 +020011364static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011365{
bedis4c75cca2012-10-05 08:38:24 +020011366 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +090011367}
11368
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011369/* after increasing a pointer value, it can exceed the first buffer
11370 * size. This function transform the value of <ptr> according with
11371 * the expected position. <chunks> is an array of the one or two
11372 * avalaible chunks. The first value is the start of the first chunk,
11373 * the second value if the end+1 of the first chunks. The third value
11374 * is NULL or the start of the second chunk and the fourth value is
11375 * the end+1 of the second chunk. The function returns 1 if does a
11376 * wrap, else returns 0.
11377 */
11378static inline int fix_pointer_if_wrap(const char **chunks, const char **ptr)
11379{
11380 if (*ptr < chunks[1])
11381 return 0;
11382 if (!chunks[2])
11383 return 0;
11384 *ptr = chunks[2] + ( *ptr - chunks[1] );
11385 return 1;
11386}
11387
David Cournapeau16023ee2010-12-23 20:55:41 +090011388/*
11389 * Given a url parameter, find the starting position of the first occurence,
11390 * or NULL if the parameter is not found.
11391 *
11392 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
11393 * the function will return query_string+8.
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011394 *
11395 * Warning:this function returns a pointer that can be point to the first chunk
11396 * or the second chunk. The caller must be check the position before using the
11397 * result.
David Cournapeau16023ee2010-12-23 20:55:41 +090011398 */
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011399static const char *
11400find_url_param_pos(const char **chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011401 const char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +020011402 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011403{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011404 const char *pos, *last, *equal;
11405 const char **bufs = chunks;
11406 int l1, l2;
David Cournapeau16023ee2010-12-23 20:55:41 +090011407
David Cournapeau16023ee2010-12-23 20:55:41 +090011408
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011409 pos = bufs[0];
11410 last = bufs[1];
David Cournapeau16023ee2010-12-23 20:55:41 +090011411 while (pos <= last) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011412 /* Check the equal. */
11413 equal = pos + url_param_name_l;
11414 if (fix_pointer_if_wrap(chunks, &equal)) {
11415 if (equal >= chunks[3])
11416 return NULL;
11417 } else {
11418 if (equal >= chunks[1])
11419 return NULL;
11420 }
11421 if (*equal == '=') {
11422 if (pos + url_param_name_l > last) {
11423 /* process wrap case, we detect a wrap. In this case, the
11424 * comparison is performed in two parts.
11425 */
11426
11427 /* This is the end, we dont have any other chunk. */
11428 if (bufs != chunks || !bufs[2])
11429 return NULL;
11430
11431 /* Compute the length of each part of the comparison. */
11432 l1 = last - pos;
11433 l2 = url_param_name_l - l1;
11434
11435 /* The second buffer is too short to contain the compared string. */
11436 if (bufs[2] + l2 > bufs[3])
11437 return NULL;
11438
11439 if (memcmp(pos, url_param_name, l1) == 0 &&
11440 memcmp(bufs[2], url_param_name+l1, l2) == 0)
11441 return pos;
11442
11443 /* Perform wrapping and jump the string who fail the comparison. */
11444 bufs += 2;
11445 pos = bufs[0] + l2;
11446 last = bufs[1];
11447
11448 } else {
11449 /* process a simple comparison. */
11450 if (memcmp(pos, url_param_name, url_param_name_l) == 0) {
11451 return pos; }
11452 pos += url_param_name_l + 1;
11453 if (fix_pointer_if_wrap(chunks, &pos))
11454 last = bufs[2];
11455 }
11456 }
11457
11458 while (1) {
11459 /* Look for the next delimiter. */
11460 while (pos <= last && !is_param_delimiter(*pos, delim))
11461 pos++;
11462 if (pos < last)
11463 break;
11464 /* process buffer wrapping. */
11465 if (bufs != chunks || !bufs[2])
11466 return NULL;
11467 bufs += 2;
11468 pos = bufs[0];
11469 last = bufs[1];
David Cournapeau16023ee2010-12-23 20:55:41 +090011470 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011471 pos++;
11472 }
11473 return NULL;
11474}
11475
11476/*
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011477 * Given a url parameter name and a query string, returns its value and size
11478 * into *value and *value_l respectively, and returns non-zero. An empty
11479 * url_param_name matches the first available parameter. If the parameter is
11480 * not found, zero is returned and value/value_l are not touched.
David Cournapeau16023ee2010-12-23 20:55:41 +090011481 */
11482static int
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011483find_next_url_param(const char **chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011484 const char* url_param_name, size_t url_param_name_l,
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011485 const char **vstart, const char **vend, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011486{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011487 const char *arg_start, *qs_end;
11488 const char *value_start, *value_end;
David Cournapeau16023ee2010-12-23 20:55:41 +090011489
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011490 arg_start = chunks[0];
11491 qs_end = chunks[1];
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011492 if (url_param_name_l) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011493 /* Looks for an argument name. */
11494 arg_start = find_url_param_pos(chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011495 url_param_name, url_param_name_l,
11496 delim);
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011497 /* Check for wrapping. */
11498 if (arg_start > qs_end)
11499 qs_end = chunks[3];
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011500 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011501 if (!arg_start)
11502 return 0;
11503
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011504 if (!url_param_name_l) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011505 while (1) {
11506 /* looks for the first argument. */
11507 value_start = memchr(arg_start, '=', qs_end - arg_start);
11508 if (!value_start) {
11509
11510 /* Check for wrapping. */
11511 if (arg_start >= chunks[0] &&
11512 arg_start <= chunks[1] &&
11513 chunks[2]) {
11514 arg_start = chunks[2];
11515 qs_end = chunks[3];
11516 continue;
11517 }
11518 return 0;
11519 }
11520 break;
11521 }
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011522 value_start++;
11523 }
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011524 else {
11525 /* Jump the argument length. */
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011526 value_start = arg_start + url_param_name_l + 1;
11527
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011528 /* Check for pointer wrapping. */
11529 if (fix_pointer_if_wrap(chunks, &value_start)) {
11530 /* Update the end pointer. */
11531 qs_end = chunks[3];
11532
11533 /* Check for overflow. */
11534 if (value_start > qs_end)
11535 return 0;
11536 }
11537 }
11538
David Cournapeau16023ee2010-12-23 20:55:41 +090011539 value_end = value_start;
11540
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011541 while (1) {
11542 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
11543 value_end++;
11544 if (value_end < qs_end)
11545 break;
11546 /* process buffer wrapping. */
11547 if (value_end >= chunks[0] &&
11548 value_end <= chunks[1] &&
11549 chunks[2]) {
11550 value_end = chunks[2];
11551 qs_end = chunks[3];
11552 continue;
11553 }
11554 break;
11555 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011556
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011557 *vstart = value_start;
11558 *vend = value_end;
Willy Tarreau00134332011-01-04 14:57:34 +010011559 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +090011560}
11561
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011562/* This scans a URL-encoded query string. It takes an optionally wrapping
11563 * string whose first contigous chunk has its beginning in ctx->a[0] and end
11564 * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
11565 * pointers are updated for next iteration before leaving.
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011566 */
David Cournapeau16023ee2010-12-23 20:55:41 +090011567static int
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011568smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private)
David Cournapeau16023ee2010-12-23 20:55:41 +090011569{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011570 const char *vstart, *vend;
11571 struct chunk *temp;
11572 const char **chunks = (const char **)smp->ctx.a;
bedis4c75cca2012-10-05 08:38:24 +020011573
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011574 if (!find_next_url_param(chunks,
Thierry FOURNIER0948d412015-05-20 15:22:37 +020011575 name, name_len,
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011576 &vstart, &vend,
Thierry FOURNIER0948d412015-05-20 15:22:37 +020011577 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090011578 return 0;
11579
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011580 /* Create sample. If the value is contiguous, return the pointer as CONST,
11581 * if the value is wrapped, copy-it in a buffer.
11582 */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011583 smp->data.type = SMP_T_STR;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011584 if (chunks[2] &&
11585 vstart >= chunks[0] && vstart <= chunks[1] &&
11586 vend >= chunks[2] && vend <= chunks[3]) {
11587 /* Wrapped case. */
11588 temp = get_trash_chunk();
11589 memcpy(temp->str, vstart, chunks[1] - vstart);
11590 memcpy(temp->str + ( chunks[1] - vstart ), chunks[2], vend - chunks[2]);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011591 smp->data.u.str.str = temp->str;
11592 smp->data.u.str.len = ( chunks[1] - vstart ) + ( vend - chunks[2] );
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011593 } else {
11594 /* Contiguous case. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011595 smp->data.u.str.str = (char *)vstart;
11596 smp->data.u.str.len = vend - vstart;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011597 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
11598 }
11599
11600 /* Update context, check wrapping. */
11601 chunks[0] = vend;
11602 if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) {
11603 chunks[1] = chunks[3];
11604 chunks[2] = NULL;
11605 }
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011606
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011607 if (chunks[0] < chunks[1])
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011608 smp->flags |= SMP_F_NOT_LAST;
11609
David Cournapeau16023ee2010-12-23 20:55:41 +090011610 return 1;
11611}
11612
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011613/* This function iterates over each parameter of the query string. It uses
11614 * ctx->a[0] and ctx->a[1] to store the beginning and end of the current
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011615 * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL.
11616 * An optional parameter name is passed in args[0], otherwise any parameter is
11617 * considered. It supports an optional delimiter argument for the beginning of
11618 * the string in args[1], which defaults to "?".
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011619 */
11620static int
11621smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
11622{
11623 struct http_msg *msg;
11624 char delim = '?';
11625 const char *name;
11626 int name_len;
11627
Dragan Dosen26f77e52015-05-25 10:02:11 +020011628 if (!args ||
11629 (args[0].type && args[0].type != ARGT_STR) ||
11630 (args[1].type && args[1].type != ARGT_STR))
11631 return 0;
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011632
Dragan Dosen26f77e52015-05-25 10:02:11 +020011633 name = "";
11634 name_len = 0;
11635 if (args->type == ARGT_STR) {
11636 name = args->data.str.str;
11637 name_len = args->data.str.len;
11638 }
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011639
Dragan Dosen26f77e52015-05-25 10:02:11 +020011640 if (args[1].type)
11641 delim = *args[1].data.str.str;
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011642
Dragan Dosen26f77e52015-05-25 10:02:11 +020011643 if (!smp->ctx.a[0]) { // first call, find the query string
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011644 CHECK_HTTP_MESSAGE_FIRST();
11645
11646 msg = &smp->strm->txn->req;
11647
11648 smp->ctx.a[0] = find_param_list(msg->chn->buf->p + msg->sl.rq.u,
11649 msg->sl.rq.u_l, delim);
11650 if (!smp->ctx.a[0])
11651 return 0;
11652
11653 smp->ctx.a[1] = msg->chn->buf->p + msg->sl.rq.u + msg->sl.rq.u_l;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011654
11655 /* Assume that the context is filled with NULL pointer
11656 * before the first call.
11657 * smp->ctx.a[2] = NULL;
11658 * smp->ctx.a[3] = NULL;
11659 */
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011660 }
11661
11662 return smp_fetch_param(delim, name, name_len, args, smp, kw, private);
11663}
11664
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011665/* This function iterates over each parameter of the body. This requires
11666 * that the body has been waited for using http-buffer-request. It uses
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011667 * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
11668 * contigous part of the body, and optionally ctx->a[2..3] to reference the
11669 * optional second part if the body wraps at the end of the buffer. An optional
11670 * parameter name is passed in args[0], otherwise any parameter is considered.
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011671 */
11672static int
11673smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
11674{
11675 struct http_txn *txn = smp->strm->txn;
11676 struct http_msg *msg;
11677 unsigned long len;
11678 unsigned long block1;
11679 char *body;
11680 const char *name;
11681 int name_len;
11682
11683 if (!args || (args[0].type && args[0].type != ARGT_STR))
11684 return 0;
11685
11686 name = "";
11687 name_len = 0;
11688 if (args[0].type == ARGT_STR) {
11689 name = args[0].data.str.str;
11690 name_len = args[0].data.str.len;
11691 }
11692
11693 if (!smp->ctx.a[0]) { // first call, find the query string
11694 CHECK_HTTP_MESSAGE_FIRST();
11695
11696 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
11697 msg = &txn->req;
11698 else
11699 msg = &txn->rsp;
11700
11701 len = http_body_bytes(msg);
11702 body = b_ptr(msg->chn->buf, -http_data_rewind(msg));
11703
11704 block1 = len;
11705 if (block1 > msg->chn->buf->data + msg->chn->buf->size - body)
11706 block1 = msg->chn->buf->data + msg->chn->buf->size - body;
11707
11708 if (block1 == len) {
11709 /* buffer is not wrapped (or empty) */
11710 smp->ctx.a[0] = body;
11711 smp->ctx.a[1] = body + len;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011712
11713 /* Assume that the context is filled with NULL pointer
11714 * before the first call.
11715 * smp->ctx.a[2] = NULL;
11716 * smp->ctx.a[3] = NULL;
11717 */
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011718 }
11719 else {
11720 /* buffer is wrapped, we need to defragment it */
11721 smp->ctx.a[0] = body;
11722 smp->ctx.a[1] = body + block1;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011723 smp->ctx.a[2] = msg->chn->buf->data;
11724 smp->ctx.a[3] = msg->chn->buf->data + ( len - block1 );
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011725 }
11726 }
11727 return smp_fetch_param('&', name, name_len, args, smp, kw, private);
11728}
11729
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011730/* Return the signed integer value for the specified url parameter (see url_param
11731 * above).
11732 */
11733static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011734smp_fetch_url_param_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011735{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011736 int ret = smp_fetch_url_param(args, smp, kw, private);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011737
11738 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011739 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011740 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011741 }
11742
11743 return ret;
11744}
11745
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011746/* This produces a 32-bit hash of the concatenation of the first occurrence of
11747 * the Host header followed by the path component if it begins with a slash ('/').
11748 * This means that '*' will not be added, resulting in exactly the first Host
11749 * entry. If no Host header is found, then the path is used. The resulting value
11750 * is hashed using the url hash followed by a full avalanche hash and provides a
11751 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
11752 * high-traffic sites without having to store whole paths.
11753 * this differs from the base32 functions in that it includes the url parameters
11754 * as well as the path
11755 */
11756static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011757smp_fetch_url32(const struct arg *args, struct sample *smp, const char *kw, void *private)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011758{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011759 struct http_txn *txn;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011760 struct hdr_ctx ctx;
11761 unsigned int hash = 0;
11762 char *ptr, *beg, *end;
11763 int len;
11764
11765 CHECK_HTTP_MESSAGE_FIRST();
11766
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011767 txn = smp->strm->txn;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011768 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020011769 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011770 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
11771 ptr = ctx.line + ctx.val;
11772 len = ctx.vlen;
11773 while (len--)
11774 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
11775 }
11776
11777 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020011778 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011779 beg = http_get_path(txn);
11780 if (!beg)
11781 beg = end;
11782
11783 for (ptr = beg; ptr < end ; ptr++);
11784
11785 if (beg < ptr && *beg == '/') {
11786 while (beg < ptr)
11787 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
11788 }
11789 hash = full_hash(hash);
11790
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011791 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011792 smp->data.u.sint = hash;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011793 smp->flags = SMP_F_VOL_1ST;
11794 return 1;
11795}
11796
11797/* This concatenates the source address with the 32-bit hash of the Host and
11798 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
11799 * per-url counters. The result is a binary block from 8 to 20 bytes depending
11800 * on the source address length. The URL hash is stored before the address so
11801 * that in environments where IPv6 is insignificant, truncating the output to
11802 * 8 bytes would still work.
11803 */
11804static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011805smp_fetch_url32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011806{
11807 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011808 struct connection *cli_conn = objt_conn(smp->sess->origin);
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020011809 unsigned int hash;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011810
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011811 if (!smp_fetch_url32(args, smp, kw, private))
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011812 return 0;
11813
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020011814 /* The returned hash is a 32 bytes integer. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011815 hash = smp->data.u.sint;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020011816
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011817 temp = get_trash_chunk();
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020011818 memcpy(temp->str + temp->len, &hash, sizeof(hash));
11819 temp->len += sizeof(hash);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011820
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011821 switch (cli_conn->addr.from.ss_family) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011822 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011823 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011824 temp->len += 4;
11825 break;
11826 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011827 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011828 temp->len += 16;
11829 break;
11830 default:
11831 return 0;
11832 }
11833
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011834 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011835 smp->data.type = SMP_T_BIN;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011836 return 1;
11837}
11838
Willy Tarreau185b5c42012-04-26 15:11:51 +020011839/* This function is used to validate the arguments passed to any "hdr" fetch
11840 * keyword. These keywords support an optional positive or negative occurrence
11841 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
11842 * is assumed that the types are already the correct ones. Returns 0 on error,
11843 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
11844 * error message in case of error, that the caller is responsible for freeing.
11845 * The initial location must either be freeable or NULL.
11846 */
Thierry FOURNIER49f45af2014-12-08 19:50:43 +010011847int val_hdr(struct arg *arg, char **err_msg)
Willy Tarreau185b5c42012-04-26 15:11:51 +020011848{
11849 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +020011850 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +020011851 return 0;
11852 }
11853 return 1;
11854}
11855
Willy Tarreau276fae92013-07-25 14:36:01 +020011856/* takes an UINT value on input supposed to represent the time since EPOCH,
11857 * adds an optional offset found in args[0] and emits a string representing
11858 * the date in RFC-1123/5322 format.
11859 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011860static int sample_conv_http_date(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau276fae92013-07-25 14:36:01 +020011861{
11862 const char day[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
11863 const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
11864 struct chunk *temp;
11865 struct tm *tm;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011866 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011867 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Willy Tarreau276fae92013-07-25 14:36:01 +020011868
11869 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011870 if (args && (args[0].type == ARGT_SINT))
Willy Tarreau276fae92013-07-25 14:36:01 +020011871 curr_date += args[0].data.sint;
11872
11873 tm = gmtime(&curr_date);
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +020011874 if (!tm)
11875 return 0;
Willy Tarreau276fae92013-07-25 14:36:01 +020011876
11877 temp = get_trash_chunk();
11878 temp->len = snprintf(temp->str, temp->size - temp->len,
11879 "%s, %02d %s %04d %02d:%02d:%02d GMT",
11880 day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year,
11881 tm->tm_hour, tm->tm_min, tm->tm_sec);
11882
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011883 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011884 smp->data.type = SMP_T_STR;
Willy Tarreau276fae92013-07-25 14:36:01 +020011885 return 1;
11886}
11887
Thierry FOURNIERad903512014-04-11 17:51:01 +020011888/* Match language range with language tag. RFC2616 14.4:
11889 *
11890 * A language-range matches a language-tag if it exactly equals
11891 * the tag, or if it exactly equals a prefix of the tag such
11892 * that the first tag character following the prefix is "-".
11893 *
11894 * Return 1 if the strings match, else return 0.
11895 */
11896static inline int language_range_match(const char *range, int range_len,
11897 const char *tag, int tag_len)
11898{
11899 const char *end = range + range_len;
11900 const char *tend = tag + tag_len;
11901 while (range < end) {
11902 if (*range == '-' && tag == tend)
11903 return 1;
11904 if (*range != *tag || tag == tend)
11905 return 0;
11906 range++;
11907 tag++;
11908 }
11909 /* Return true only if the last char of the tag is matched. */
11910 return tag == tend;
11911}
11912
11913/* Arguments: The list of expected value, the number of parts returned and the separator */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011914static int sample_conv_q_prefered(const struct arg *args, struct sample *smp, void *private)
Thierry FOURNIERad903512014-04-11 17:51:01 +020011915{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011916 const char *al = smp->data.u.str.str;
11917 const char *end = al + smp->data.u.str.len;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011918 const char *token;
11919 int toklen;
11920 int qvalue;
11921 const char *str;
11922 const char *w;
11923 int best_q = 0;
11924
11925 /* Set the constant to the sample, because the output of the
11926 * function will be peek in the constant configuration string.
11927 */
11928 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011929 smp->data.u.str.size = 0;
11930 smp->data.u.str.str = "";
11931 smp->data.u.str.len = 0;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011932
11933 /* Parse the accept language */
11934 while (1) {
11935
11936 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011937 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011938 al++;
11939 if (al >= end)
11940 break;
11941
11942 /* Start of the fisrt word. */
11943 token = al;
11944
11945 /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011946 while (al < end && *al != ';' && *al != ',' && !isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011947 al++;
11948 if (al == token)
11949 goto expect_comma;
11950
11951 /* Length of the token. */
11952 toklen = al - token;
11953 qvalue = 1000;
11954
11955 /* Check if the token exists in the list. If the token not exists,
11956 * jump to the next token.
11957 */
11958 str = args[0].data.str.str;
11959 w = str;
11960 while (1) {
11961 if (*str == ';' || *str == '\0') {
11962 if (language_range_match(token, toklen, w, str-w))
11963 goto look_for_q;
11964 if (*str == '\0')
11965 goto expect_comma;
11966 w = str + 1;
11967 }
11968 str++;
11969 }
11970 goto expect_comma;
11971
11972look_for_q:
11973
11974 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011975 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011976 al++;
11977 if (al >= end)
11978 goto process_value;
11979
11980 /* If ',' is found, process the result */
11981 if (*al == ',')
11982 goto process_value;
11983
11984 /* If the character is different from ';', look
11985 * for the end of the header part in best effort.
11986 */
11987 if (*al != ';')
11988 goto expect_comma;
11989
11990 /* Assumes that the char is ';', now expect "q=". */
11991 al++;
11992
11993 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011994 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011995 al++;
11996 if (al >= end)
11997 goto process_value;
11998
11999 /* Expect 'q'. If no 'q', continue in best effort */
12000 if (*al != 'q')
12001 goto process_value;
12002 al++;
12003
12004 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012005 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012006 al++;
12007 if (al >= end)
12008 goto process_value;
12009
12010 /* Expect '='. If no '=', continue in best effort */
12011 if (*al != '=')
12012 goto process_value;
12013 al++;
12014
12015 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012016 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012017 al++;
12018 if (al >= end)
12019 goto process_value;
12020
12021 /* Parse the q value. */
12022 qvalue = parse_qvalue(al, &al);
12023
12024process_value:
12025
12026 /* If the new q value is the best q value, then store the associated
12027 * language in the response. If qvalue is the biggest value (1000),
12028 * break the process.
12029 */
12030 if (qvalue > best_q) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012031 smp->data.u.str.str = (char *)w;
12032 smp->data.u.str.len = str - w;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012033 if (qvalue >= 1000)
12034 break;
12035 best_q = qvalue;
12036 }
12037
12038expect_comma:
12039
12040 /* Expect comma or end. If the end is detected, quit the loop. */
12041 while (al < end && *al != ',')
12042 al++;
12043 if (al >= end)
12044 break;
12045
12046 /* Comma is found, jump it and restart the analyzer. */
12047 al++;
12048 }
12049
12050 /* Set default value if required. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012051 if (smp->data.u.str.len == 0 && args[1].type == ARGT_STR) {
12052 smp->data.u.str.str = args[1].data.str.str;
12053 smp->data.u.str.len = args[1].data.str.len;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012054 }
12055
12056 /* Return true only if a matching language was found. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012057 return smp->data.u.str.len != 0;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012058}
12059
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012060/* This fetch url-decode any input string. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020012061static int sample_conv_url_dec(const struct arg *args, struct sample *smp, void *private)
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012062{
12063 /* If the constant flag is set or if not size is avalaible at
12064 * the end of the buffer, copy the string in other buffer
12065 * before decoding.
12066 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012067 if (smp->flags & SMP_F_CONST || smp->data.u.str.size <= smp->data.u.str.len) {
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012068 struct chunk *str = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012069 memcpy(str->str, smp->data.u.str.str, smp->data.u.str.len);
12070 smp->data.u.str.str = str->str;
12071 smp->data.u.str.size = str->size;
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012072 smp->flags &= ~SMP_F_CONST;
12073 }
12074
12075 /* Add final \0 required by url_decode(), and convert the input string. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012076 smp->data.u.str.str[smp->data.u.str.len] = '\0';
12077 smp->data.u.str.len = url_decode(smp->data.u.str.str);
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012078 return 1;
12079}
12080
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012081static int smp_conv_req_capture(const struct arg *args, struct sample *smp, void *private)
12082{
12083 struct proxy *fe = strm_fe(smp->strm);
12084 int idx, i;
12085 struct cap_hdr *hdr;
12086 int len;
12087
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012088 if (!args || args->type != ARGT_SINT)
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012089 return 0;
12090
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012091 idx = args->data.sint;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012092
12093 /* Check the availibity of the capture id. */
12094 if (idx > fe->nb_req_cap - 1)
12095 return 0;
12096
12097 /* Look for the original configuration. */
12098 for (hdr = fe->req_cap, i = fe->nb_req_cap - 1;
12099 hdr != NULL && i != idx ;
12100 i--, hdr = hdr->next);
12101 if (!hdr)
12102 return 0;
12103
12104 /* check for the memory allocation */
12105 if (smp->strm->req_cap[hdr->index] == NULL)
12106 smp->strm->req_cap[hdr->index] = pool_alloc2(hdr->pool);
12107 if (smp->strm->req_cap[hdr->index] == NULL)
12108 return 0;
12109
12110 /* Check length. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012111 len = smp->data.u.str.len;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012112 if (len > hdr->len)
12113 len = hdr->len;
12114
12115 /* Capture input data. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012116 memcpy(smp->strm->req_cap[idx], smp->data.u.str.str, len);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012117 smp->strm->req_cap[idx][len] = '\0';
12118
12119 return 1;
12120}
12121
12122static int smp_conv_res_capture(const struct arg *args, struct sample *smp, void *private)
12123{
12124 struct proxy *fe = strm_fe(smp->strm);
12125 int idx, i;
12126 struct cap_hdr *hdr;
12127 int len;
12128
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012129 if (!args || args->type != ARGT_SINT)
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012130 return 0;
12131
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012132 idx = args->data.sint;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012133
12134 /* Check the availibity of the capture id. */
12135 if (idx > fe->nb_rsp_cap - 1)
12136 return 0;
12137
12138 /* Look for the original configuration. */
12139 for (hdr = fe->rsp_cap, i = fe->nb_rsp_cap - 1;
12140 hdr != NULL && i != idx ;
12141 i--, hdr = hdr->next);
12142 if (!hdr)
12143 return 0;
12144
12145 /* check for the memory allocation */
12146 if (smp->strm->res_cap[hdr->index] == NULL)
12147 smp->strm->res_cap[hdr->index] = pool_alloc2(hdr->pool);
12148 if (smp->strm->res_cap[hdr->index] == NULL)
12149 return 0;
12150
12151 /* Check length. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012152 len = smp->data.u.str.len;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012153 if (len > hdr->len)
12154 len = hdr->len;
12155
12156 /* Capture input data. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012157 memcpy(smp->strm->res_cap[idx], smp->data.u.str.str, len);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012158 smp->strm->res_cap[idx][len] = '\0';
12159
12160 return 1;
12161}
12162
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012163/* This function executes one of the set-{method,path,query,uri} actions. It
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012164 * takes the string from the variable 'replace' with length 'len', then modifies
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012165 * the relevant part of the request line accordingly. Then it updates various
12166 * pointers to the next elements which were moved, and the total buffer length.
12167 * It finds the action to be performed in p[2], previously filled by function
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012168 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
12169 * error, though this can be revisited when this code is finally exploited.
12170 *
12171 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
12172 * query string and 3 to replace uri.
12173 *
12174 * In query string case, the mark question '?' must be set at the start of the
12175 * string by the caller, event if the replacement query string is empty.
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012176 */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012177int http_replace_req_line(int action, const char *replace, int len,
Willy Tarreau987e3fb2015-04-04 01:09:08 +020012178 struct proxy *px, struct stream *s)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012179{
Willy Tarreau987e3fb2015-04-04 01:09:08 +020012180 struct http_txn *txn = s->txn;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012181 char *cur_ptr, *cur_end;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012182 int offset = 0;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012183 int delta;
12184
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012185 switch (action) {
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012186 case 0: // method
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012187 cur_ptr = s->req.buf->p;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012188 cur_end = cur_ptr + txn->req.sl.rq.m_l;
12189
12190 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012191 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012192 txn->req.sl.rq.m_l += delta;
12193 txn->req.sl.rq.u += delta;
12194 txn->req.sl.rq.v += delta;
12195 break;
12196
12197 case 1: // path
12198 cur_ptr = http_get_path(txn);
12199 if (!cur_ptr)
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012200 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012201
12202 cur_end = cur_ptr;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012203 while (cur_end < s->req.buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l && *cur_end != '?')
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012204 cur_end++;
12205
12206 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012207 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012208 txn->req.sl.rq.u_l += delta;
12209 txn->req.sl.rq.v += delta;
12210 break;
12211
12212 case 2: // query
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012213 offset = 1;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012214 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012215 cur_end = cur_ptr + txn->req.sl.rq.u_l;
12216 while (cur_ptr < cur_end && *cur_ptr != '?')
12217 cur_ptr++;
12218
12219 /* skip the question mark or indicate that we must insert it
12220 * (but only if the format string is not empty then).
12221 */
12222 if (cur_ptr < cur_end)
12223 cur_ptr++;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012224 else if (len > 1)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012225 offset = 0;
12226
12227 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012228 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012229 txn->req.sl.rq.u_l += delta;
12230 txn->req.sl.rq.v += delta;
12231 break;
12232
12233 case 3: // uri
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012234 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012235 cur_end = cur_ptr + txn->req.sl.rq.u_l;
12236
12237 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012238 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012239 txn->req.sl.rq.u_l += delta;
12240 txn->req.sl.rq.v += delta;
12241 break;
12242
12243 default:
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012244 return -1;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012245 }
12246
12247 /* commit changes and adjust end of message */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012248 delta = buffer_replace2(s->req.buf, cur_ptr, cur_end, replace + offset, len - offset);
Thierry FOURNIER7f6192c2015-04-26 18:01:40 +020012249 txn->req.sl.rq.l += delta;
12250 txn->hdr_idx.v[0].len += delta;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012251 http_msg_move_end(&txn->req, delta);
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012252 return 0;
12253}
12254
12255/* This function executes one of the set-{method,path,query,uri} actions. It
12256 * builds a string in the trash from the specified format string. It finds
12257 * the action to be performed in p[2], previously filled by function
12258 * parse_set_req_line(). The replacement action is excuted by the function
12259 * http_action_set_req_line_exec(). It always returns 1. If an error occurs
12260 * the action is canceled, but the rule processing continue.
12261 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012262enum act_return http_action_set_req_line(struct act_rule *rule, struct proxy *px,
12263 struct session *sess, struct stream *s)
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012264{
12265 chunk_reset(&trash);
12266
12267 /* If we have to create a query string, prepare a '?'. */
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012268 if (rule->arg.http.action == 2)
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012269 trash.str[trash.len++] = '?';
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012270 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.http.logfmt);
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012271
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012272 http_replace_req_line(rule->arg.http.action, trash.str, trash.len, px, s);
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012273 return ACT_RET_CONT;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012274}
12275
12276/* parse an http-request action among :
12277 * set-method
12278 * set-path
12279 * set-query
12280 * set-uri
12281 *
12282 * All of them accept a single argument of type string representing a log-format.
12283 * The resulting rule makes use of arg->act.p[0..1] to store the log-format list
12284 * head, and p[2] to store the action as an int (0=method, 1=path, 2=query, 3=uri).
12285 * It returns 0 on success, < 0 on error.
12286 */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +020012287int parse_set_req_line(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012288{
12289 int cur_arg = *orig_arg;
12290
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +020012291 rule->action = ACT_ACTION_CONT;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012292
12293 switch (args[0][4]) {
12294 case 'm' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012295 rule->arg.http.action = 0;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012296 rule->action_ptr = http_action_set_req_line;
12297 break;
12298 case 'p' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012299 rule->arg.http.action = 1;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012300 rule->action_ptr = http_action_set_req_line;
12301 break;
12302 case 'q' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012303 rule->arg.http.action = 2;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012304 rule->action_ptr = http_action_set_req_line;
12305 break;
12306 case 'u' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012307 rule->arg.http.action = 3;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012308 rule->action_ptr = http_action_set_req_line;
12309 break;
12310 default:
12311 memprintf(err, "internal error: unhandled action '%s'", args[0]);
12312 return -1;
12313 }
12314
12315 if (!*args[cur_arg] ||
12316 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
12317 memprintf(err, "expects exactly 1 argument <format>");
12318 return -1;
12319 }
12320
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012321 LIST_INIT(&rule->arg.http.logfmt);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012322 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012323 parse_logformat_string(args[cur_arg], proxy, &rule->arg.http.logfmt, LOG_OPT_HTTP,
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012324 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
12325 proxy->conf.args.file, proxy->conf.args.line);
12326
12327 (*orig_arg)++;
12328 return 0;
12329}
12330
Willy Tarreaua9083d02015-05-08 15:27:59 +020012331/* This function executes the "capture" action. It executes a fetch expression,
12332 * turns the result into a string and puts it in a capture slot. It always
12333 * returns 1. If an error occurs the action is cancelled, but the rule
12334 * processing continues.
12335 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012336enum act_return http_action_req_capture(struct act_rule *rule, struct proxy *px,
12337 struct session *sess, struct stream *s)
Willy Tarreaua9083d02015-05-08 15:27:59 +020012338{
Willy Tarreaua9083d02015-05-08 15:27:59 +020012339 struct sample *key;
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012340 struct cap_hdr *h = rule->arg.cap.hdr;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012341 char **cap = s->req_cap;
12342 int len;
12343
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012344 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.cap.expr, SMP_T_STR);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012345 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012346 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012347
12348 if (cap[h->index] == NULL)
12349 cap[h->index] = pool_alloc2(h->pool);
12350
12351 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012352 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012353
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012354 len = key->data.u.str.len;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012355 if (len > h->len)
12356 len = h->len;
12357
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012358 memcpy(cap[h->index], key->data.u.str.str, len);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012359 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012360 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012361}
12362
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012363/* This function executes the "capture" action and store the result in a
12364 * capture slot if exists. It executes a fetch expression, turns the result
12365 * into a string and puts it in a capture slot. It always returns 1. If an
12366 * error occurs the action is cancelled, but the rule processing continues.
12367 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012368enum act_return http_action_req_capture_by_id(struct act_rule *rule, struct proxy *px,
12369 struct session *sess, struct stream *s)
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012370{
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012371 struct sample *key;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012372 struct cap_hdr *h;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012373 char **cap = s->req_cap;
12374 struct proxy *fe = strm_fe(s);
12375 int len;
12376 int i;
12377
12378 /* Look for the original configuration. */
12379 for (h = fe->req_cap, i = fe->nb_req_cap - 1;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012380 h != NULL && i != rule->arg.capid.idx ;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012381 i--, h = h->next);
12382 if (!h)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012383 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012384
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012385 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012386 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012387 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012388
12389 if (cap[h->index] == NULL)
12390 cap[h->index] = pool_alloc2(h->pool);
12391
12392 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012393 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012394
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012395 len = key->data.u.str.len;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012396 if (len > h->len)
12397 len = h->len;
12398
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012399 memcpy(cap[h->index], key->data.u.str.str, len);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012400 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012401 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012402}
12403
Willy Tarreaua9083d02015-05-08 15:27:59 +020012404/* parse an "http-request capture" action. It takes a single argument which is
12405 * a sample fetch expression. It stores the expression into arg->act.p[0] and
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012406 * the allocated hdr_cap struct or the preallocated "id" into arg->act.p[1].
Willy Tarreaua9083d02015-05-08 15:27:59 +020012407 * It returns 0 on success, < 0 on error.
12408 */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +020012409int parse_http_req_capture(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
Willy Tarreaua9083d02015-05-08 15:27:59 +020012410{
12411 struct sample_expr *expr;
12412 struct cap_hdr *hdr;
12413 int cur_arg;
Willy Tarreau3986ac12015-05-08 16:13:42 +020012414 int len = 0;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012415
12416 for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++)
12417 if (strcmp(args[cur_arg], "if") == 0 ||
12418 strcmp(args[cur_arg], "unless") == 0)
12419 break;
12420
12421 if (cur_arg < *orig_arg + 3) {
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012422 memprintf(err, "expects <expression> [ 'len' <length> | id <idx> ]");
Willy Tarreaua9083d02015-05-08 15:27:59 +020012423 return -1;
12424 }
12425
Willy Tarreaua9083d02015-05-08 15:27:59 +020012426 cur_arg = *orig_arg;
12427 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
12428 if (!expr)
12429 return -1;
12430
12431 if (!(expr->fetch->val & SMP_VAL_FE_HRQ_HDR)) {
12432 memprintf(err,
12433 "fetch method '%s' extracts information from '%s', none of which is available here",
12434 args[cur_arg-1], sample_src_names(expr->fetch->use));
12435 free(expr);
12436 return -1;
12437 }
12438
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012439 if (!args[cur_arg] || !*args[cur_arg]) {
12440 memprintf(err, "expects 'len or 'id'");
12441 free(expr);
12442 return -1;
12443 }
12444
Willy Tarreaua9083d02015-05-08 15:27:59 +020012445 if (strcmp(args[cur_arg], "len") == 0) {
12446 cur_arg++;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012447
12448 if (!(px->cap & PR_CAP_FE)) {
12449 memprintf(err, "proxy '%s' has no frontend capability", px->id);
12450 return -1;
12451 }
12452
12453 proxy->conf.args.ctx = ARGC_CAP;
12454
Willy Tarreaua9083d02015-05-08 15:27:59 +020012455 if (!args[cur_arg]) {
12456 memprintf(err, "missing length value");
12457 free(expr);
12458 return -1;
12459 }
12460 /* we copy the table name for now, it will be resolved later */
12461 len = atoi(args[cur_arg]);
12462 if (len <= 0) {
12463 memprintf(err, "length must be > 0");
12464 free(expr);
12465 return -1;
12466 }
12467 cur_arg++;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012468
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012469 if (!len) {
12470 memprintf(err, "a positive 'len' argument is mandatory");
12471 free(expr);
12472 return -1;
12473 }
12474
12475 hdr = calloc(sizeof(struct cap_hdr), 1);
12476 hdr->next = px->req_cap;
12477 hdr->name = NULL; /* not a header capture */
12478 hdr->namelen = 0;
12479 hdr->len = len;
12480 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
12481 hdr->index = px->nb_req_cap++;
12482
12483 px->req_cap = hdr;
12484 px->to_log |= LW_REQHDR;
12485
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +020012486 rule->action = ACT_ACTION_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012487 rule->action_ptr = http_action_req_capture;
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012488 rule->arg.cap.expr = expr;
12489 rule->arg.cap.hdr = hdr;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012490 }
12491
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012492 else if (strcmp(args[cur_arg], "id") == 0) {
12493 int id;
12494 char *error;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012495
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012496 cur_arg++;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012497
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012498 if (!args[cur_arg]) {
12499 memprintf(err, "missing id value");
12500 free(expr);
12501 return -1;
12502 }
Willy Tarreaua9083d02015-05-08 15:27:59 +020012503
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012504 id = strtol(args[cur_arg], &error, 10);
12505 if (*error != '\0') {
12506 memprintf(err, "cannot parse id '%s'", args[cur_arg]);
12507 free(expr);
12508 return -1;
12509 }
12510 cur_arg++;
12511
12512 proxy->conf.args.ctx = ARGC_CAP;
12513
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +020012514 rule->action = ACT_ACTION_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012515 rule->action_ptr = http_action_req_capture_by_id;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012516 rule->arg.capid.expr = expr;
12517 rule->arg.capid.idx = id;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012518 }
12519
12520 else {
12521 memprintf(err, "expects 'len' or 'id', found '%s'", args[cur_arg]);
12522 free(expr);
12523 return -1;
12524 }
Willy Tarreaua9083d02015-05-08 15:27:59 +020012525
12526 *orig_arg = cur_arg;
12527 return 0;
12528}
12529
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012530/* This function executes the "capture" action and store the result in a
12531 * capture slot if exists. It executes a fetch expression, turns the result
12532 * into a string and puts it in a capture slot. It always returns 1. If an
12533 * error occurs the action is cancelled, but the rule processing continues.
12534 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012535enum act_return http_action_res_capture_by_id(struct act_rule *rule, struct proxy *px,
12536 struct session *sess, struct stream *s)
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012537{
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012538 struct sample *key;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012539 struct cap_hdr *h;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012540 char **cap = s->res_cap;
12541 struct proxy *fe = strm_fe(s);
12542 int len;
12543 int i;
12544
12545 /* Look for the original configuration. */
12546 for (h = fe->rsp_cap, i = fe->nb_rsp_cap - 1;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012547 h != NULL && i != rule->arg.capid.idx ;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012548 i--, h = h->next);
12549 if (!h)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012550 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012551
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012552 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012553 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012554 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012555
12556 if (cap[h->index] == NULL)
12557 cap[h->index] = pool_alloc2(h->pool);
12558
12559 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012560 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012561
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012562 len = key->data.u.str.len;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012563 if (len > h->len)
12564 len = h->len;
12565
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012566 memcpy(cap[h->index], key->data.u.str.str, len);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012567 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012568 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012569}
12570
12571/* parse an "http-response capture" action. It takes a single argument which is
12572 * a sample fetch expression. It stores the expression into arg->act.p[0] and
12573 * the allocated hdr_cap struct od the preallocated id into arg->act.p[1].
12574 * It returns 0 on success, < 0 on error.
12575 */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +020012576int parse_http_res_capture(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012577{
12578 struct sample_expr *expr;
12579 int cur_arg;
12580 int id;
12581 char *error;
12582
12583 for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++)
12584 if (strcmp(args[cur_arg], "if") == 0 ||
12585 strcmp(args[cur_arg], "unless") == 0)
12586 break;
12587
12588 if (cur_arg < *orig_arg + 3) {
12589 memprintf(err, "expects <expression> [ 'len' <length> | id <idx> ]");
12590 return -1;
12591 }
12592
12593 cur_arg = *orig_arg;
12594 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
12595 if (!expr)
12596 return -1;
12597
12598 if (!(expr->fetch->val & SMP_VAL_FE_HRS_HDR)) {
12599 memprintf(err,
12600 "fetch method '%s' extracts information from '%s', none of which is available here",
12601 args[cur_arg-1], sample_src_names(expr->fetch->use));
12602 free(expr);
12603 return -1;
12604 }
12605
12606 if (!args[cur_arg] || !*args[cur_arg]) {
12607 memprintf(err, "expects 'len or 'id'");
12608 free(expr);
12609 return -1;
12610 }
12611
12612 if (strcmp(args[cur_arg], "id") != 0) {
12613 memprintf(err, "expects 'id', found '%s'", args[cur_arg]);
12614 free(expr);
12615 return -1;
12616 }
12617
12618 cur_arg++;
12619
12620 if (!args[cur_arg]) {
12621 memprintf(err, "missing id value");
12622 free(expr);
12623 return -1;
12624 }
12625
12626 id = strtol(args[cur_arg], &error, 10);
12627 if (*error != '\0') {
12628 memprintf(err, "cannot parse id '%s'", args[cur_arg]);
12629 free(expr);
12630 return -1;
12631 }
12632 cur_arg++;
12633
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012634 proxy->conf.args.ctx = ARGC_CAP;
12635
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +020012636 rule->action = ACT_ACTION_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012637 rule->action_ptr = http_action_res_capture_by_id;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012638 rule->arg.capid.expr = expr;
12639 rule->arg.capid.idx = id;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012640
12641 *orig_arg = cur_arg;
12642 return 0;
12643}
12644
William Lallemand73025dd2014-04-24 14:38:37 +020012645/*
12646 * Return the struct http_req_action_kw associated to a keyword.
12647 */
12648struct http_req_action_kw *action_http_req_custom(const char *kw)
12649{
12650 if (!LIST_ISEMPTY(&http_req_keywords.list)) {
12651 struct http_req_action_kw_list *kw_list;
12652 int i;
12653
12654 list_for_each_entry(kw_list, &http_req_keywords.list, list) {
12655 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
Thierry FOURNIER0e118632015-06-04 11:44:06 +020012656 if (kw_list->kw[i].match_pfx &&
12657 strncmp(kw, kw_list->kw[i].kw, strlen(kw_list->kw[i].kw)) == 0)
12658 return &kw_list->kw[i];
William Lallemand73025dd2014-04-24 14:38:37 +020012659 if (!strcmp(kw, kw_list->kw[i].kw))
12660 return &kw_list->kw[i];
12661 }
12662 }
12663 }
12664 return NULL;
12665}
12666
12667/*
12668 * Return the struct http_res_action_kw associated to a keyword.
12669 */
12670struct http_res_action_kw *action_http_res_custom(const char *kw)
12671{
12672 if (!LIST_ISEMPTY(&http_res_keywords.list)) {
12673 struct http_res_action_kw_list *kw_list;
12674 int i;
12675
12676 list_for_each_entry(kw_list, &http_res_keywords.list, list) {
12677 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
Thierry FOURNIER0e118632015-06-04 11:44:06 +020012678 if (kw_list->kw[i].match_pfx &&
12679 strncmp(kw, kw_list->kw[i].kw, strlen(kw_list->kw[i].kw)) == 0)
12680 return &kw_list->kw[i];
William Lallemand73025dd2014-04-24 14:38:37 +020012681 if (!strcmp(kw, kw_list->kw[i].kw))
12682 return &kw_list->kw[i];
12683 }
12684 }
12685 }
12686 return NULL;
12687}
12688
Willy Tarreau4a568972010-05-12 08:08:50 +020012689/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012690/* All supported ACL keywords must be declared here. */
12691/************************************************************************/
12692
12693/* Note: must not be declared <const> as its list will be overwritten.
12694 * Please take care of keeping this list alphabetically sorted.
12695 */
Willy Tarreaudc13c112013-06-21 23:16:39 +020012696static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012697 { "base", "base", PAT_MATCH_STR },
12698 { "base_beg", "base", PAT_MATCH_BEG },
12699 { "base_dir", "base", PAT_MATCH_DIR },
12700 { "base_dom", "base", PAT_MATCH_DOM },
12701 { "base_end", "base", PAT_MATCH_END },
12702 { "base_len", "base", PAT_MATCH_LEN },
12703 { "base_reg", "base", PAT_MATCH_REG },
12704 { "base_sub", "base", PAT_MATCH_SUB },
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020012705
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012706 { "cook", "req.cook", PAT_MATCH_STR },
12707 { "cook_beg", "req.cook", PAT_MATCH_BEG },
12708 { "cook_dir", "req.cook", PAT_MATCH_DIR },
12709 { "cook_dom", "req.cook", PAT_MATCH_DOM },
12710 { "cook_end", "req.cook", PAT_MATCH_END },
12711 { "cook_len", "req.cook", PAT_MATCH_LEN },
12712 { "cook_reg", "req.cook", PAT_MATCH_REG },
12713 { "cook_sub", "req.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012714
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012715 { "hdr", "req.hdr", PAT_MATCH_STR },
12716 { "hdr_beg", "req.hdr", PAT_MATCH_BEG },
12717 { "hdr_dir", "req.hdr", PAT_MATCH_DIR },
12718 { "hdr_dom", "req.hdr", PAT_MATCH_DOM },
12719 { "hdr_end", "req.hdr", PAT_MATCH_END },
12720 { "hdr_len", "req.hdr", PAT_MATCH_LEN },
12721 { "hdr_reg", "req.hdr", PAT_MATCH_REG },
12722 { "hdr_sub", "req.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012723
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012724 /* these two declarations uses strings with list storage (in place
12725 * of tree storage). The basic match is PAT_MATCH_STR, but the indexation
12726 * and delete functions are relative to the list management. The parse
12727 * and match method are related to the corresponding fetch methods. This
12728 * is very particular ACL declaration mode.
12729 */
12730 { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth },
12731 { "method", NULL, PAT_MATCH_STR, pat_parse_meth, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_meth },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012732
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012733 { "path", "path", PAT_MATCH_STR },
12734 { "path_beg", "path", PAT_MATCH_BEG },
12735 { "path_dir", "path", PAT_MATCH_DIR },
12736 { "path_dom", "path", PAT_MATCH_DOM },
12737 { "path_end", "path", PAT_MATCH_END },
12738 { "path_len", "path", PAT_MATCH_LEN },
12739 { "path_reg", "path", PAT_MATCH_REG },
12740 { "path_sub", "path", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012741
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012742 { "req_ver", "req.ver", PAT_MATCH_STR },
12743 { "resp_ver", "res.ver", PAT_MATCH_STR },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012744
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012745 { "scook", "res.cook", PAT_MATCH_STR },
12746 { "scook_beg", "res.cook", PAT_MATCH_BEG },
12747 { "scook_dir", "res.cook", PAT_MATCH_DIR },
12748 { "scook_dom", "res.cook", PAT_MATCH_DOM },
12749 { "scook_end", "res.cook", PAT_MATCH_END },
12750 { "scook_len", "res.cook", PAT_MATCH_LEN },
12751 { "scook_reg", "res.cook", PAT_MATCH_REG },
12752 { "scook_sub", "res.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012753
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012754 { "shdr", "res.hdr", PAT_MATCH_STR },
12755 { "shdr_beg", "res.hdr", PAT_MATCH_BEG },
12756 { "shdr_dir", "res.hdr", PAT_MATCH_DIR },
12757 { "shdr_dom", "res.hdr", PAT_MATCH_DOM },
12758 { "shdr_end", "res.hdr", PAT_MATCH_END },
12759 { "shdr_len", "res.hdr", PAT_MATCH_LEN },
12760 { "shdr_reg", "res.hdr", PAT_MATCH_REG },
12761 { "shdr_sub", "res.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012762
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012763 { "url", "url", PAT_MATCH_STR },
12764 { "url_beg", "url", PAT_MATCH_BEG },
12765 { "url_dir", "url", PAT_MATCH_DIR },
12766 { "url_dom", "url", PAT_MATCH_DOM },
12767 { "url_end", "url", PAT_MATCH_END },
12768 { "url_len", "url", PAT_MATCH_LEN },
12769 { "url_reg", "url", PAT_MATCH_REG },
12770 { "url_sub", "url", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012771
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012772 { "urlp", "urlp", PAT_MATCH_STR },
12773 { "urlp_beg", "urlp", PAT_MATCH_BEG },
12774 { "urlp_dir", "urlp", PAT_MATCH_DIR },
12775 { "urlp_dom", "urlp", PAT_MATCH_DOM },
12776 { "urlp_end", "urlp", PAT_MATCH_END },
12777 { "urlp_len", "urlp", PAT_MATCH_LEN },
12778 { "urlp_reg", "urlp", PAT_MATCH_REG },
12779 { "urlp_sub", "urlp", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012780
Willy Tarreau8ed669b2013-01-11 15:49:37 +010012781 { /* END */ },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012782}};
12783
12784/************************************************************************/
12785/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +020012786/************************************************************************/
12787/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +020012788static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012789 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012790 { "base32", smp_fetch_base32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012791 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
12792
Willy Tarreau87b09662015-04-03 00:22:06 +020012793 /* capture are allocated and are permanent in the stream */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012794 { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020012795
12796 /* retrieve these captures from the HTTP logs */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012797 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
12798 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
12799 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020012800
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012801 { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
12802 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
William Lallemanda43ba4e2014-01-28 18:14:25 +010012803
Willy Tarreau409bcde2013-01-08 00:31:00 +010012804 /* cookie is valid in both directions (eg: for "stick ...") but cook*
12805 * are only here to match the ACL's name, are request-only and are used
12806 * for ACL compatibility only.
12807 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012808 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
12809 { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012810 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
12811 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012812
12813 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
12814 * only here to match the ACL's name, are request-only and are used for
12815 * ACL compatibility only.
12816 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012817 { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012818 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012819 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012820 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012821
Willy Tarreau0a0daec2013-04-02 22:44:58 +020012822 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012823 { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012824 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Thierry FOURNIERd4373142013-12-17 01:10:10 +010012825 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012826 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau49ad95c2015-01-19 15:06:26 +010012827 { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012828
12829 /* HTTP protocol on the request path */
12830 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012831 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012832
12833 /* HTTP version on the request path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012834 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
12835 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012836
Willy Tarreaua5910cc2015-05-02 00:46:08 +020012837 { "req.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012838 { "req.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
12839 { "req.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020012840 { "req.body_param", smp_fetch_body_param, ARG1(0,STR), NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreaua5910cc2015-05-02 00:46:08 +020012841
Willy Tarreau18ed2562013-01-14 15:56:36 +010012842 /* HTTP version on the response path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012843 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
12844 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012845
Willy Tarreau18ed2562013-01-14 15:56:36 +010012846 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012847 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012848 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
12849 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012850
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012851 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012852 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012853 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012854 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012855 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
Willy Tarreaueb27ec72015-02-20 13:55:29 +010012856 { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012857 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012858
12859 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012860 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012861 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
12862 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012863
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012864 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012865 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012866 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012867 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012868 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
Willy Tarreaueb27ec72015-02-20 13:55:29 +010012869 { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012870 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012871
Willy Tarreau409bcde2013-01-08 00:31:00 +010012872 /* scook is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012873 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012874 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
12875 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012876 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
Willy Tarreau409bcde2013-01-08 00:31:00 +010012877
12878 /* shdr is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012879 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012880 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012881 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012882 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012883
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012884 { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012885 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012886 { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012887 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012888 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012889 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau1ede1da2015-05-07 16:06:18 +020012890 { "url_param", smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
12891 { "urlp" , smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012892 { "urlp_val", smp_fetch_url_param_val, ARG2(0,STR,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012893 { /* END */ },
Willy Tarreau4a568972010-05-12 08:08:50 +020012894}};
12895
Willy Tarreau8797c062007-05-07 00:55:35 +020012896
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012897/************************************************************************/
12898/* All supported converter keywords must be declared here. */
12899/************************************************************************/
Willy Tarreau276fae92013-07-25 14:36:01 +020012900/* Note: must not be declared <const> as its list will be overwritten */
12901static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012902 { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_T_STR},
Thierry FOURNIERad903512014-04-11 17:51:01 +020012903 { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR},
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012904 { "capture-req", smp_conv_req_capture, ARG1(1,SINT), NULL, SMP_T_STR, SMP_T_STR},
12905 { "capture-res", smp_conv_res_capture, ARG1(1,SINT), NULL, SMP_T_STR, SMP_T_STR},
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012906 { "url_dec", sample_conv_url_dec, 0, NULL, SMP_T_STR, SMP_T_STR},
Willy Tarreau276fae92013-07-25 14:36:01 +020012907 { NULL, NULL, 0, 0, 0 },
12908}};
12909
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012910
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012911/************************************************************************/
12912/* All supported http-request action keywords must be declared here. */
12913/************************************************************************/
12914struct http_req_action_kw_list http_req_actions = {
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012915 .kw = {
Willy Tarreaua9083d02015-05-08 15:27:59 +020012916 { "capture", parse_http_req_capture },
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012917 { "set-method", parse_set_req_line },
12918 { "set-path", parse_set_req_line },
12919 { "set-query", parse_set_req_line },
12920 { "set-uri", parse_set_req_line },
Willy Tarreaucb703b02015-04-03 09:52:01 +020012921 { NULL, NULL }
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012922 }
12923};
12924
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012925struct http_res_action_kw_list http_res_actions = {
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012926 .kw = {
12927 { "capture", parse_http_res_capture },
12928 { NULL, NULL }
12929 }
12930};
12931
Willy Tarreau8797c062007-05-07 00:55:35 +020012932__attribute__((constructor))
12933static void __http_protocol_init(void)
12934{
12935 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +020012936 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau276fae92013-07-25 14:36:01 +020012937 sample_register_convs(&sample_conv_kws);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012938 http_req_keywords_register(&http_req_actions);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012939 http_res_keywords_register(&http_res_actions);
Willy Tarreau8797c062007-05-07 00:55:35 +020012940}
12941
12942
Willy Tarreau58f10d72006-12-04 02:26:12 +010012943/*
Willy Tarreaubaaee002006-06-26 02:48:02 +020012944 * Local variables:
12945 * c-indent-level: 8
12946 * c-basic-offset: 8
12947 * End:
12948 */