blob: 93cf033ebedeb3c5a6832e9b492e30e8f8ac0b9b [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
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/appsession.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010029#include <common/base64.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020030#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020031#include <common/compat.h>
32#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010033#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/memory.h>
35#include <common/mini-clist.h>
36#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020037#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/time.h>
39#include <common/uri_auth.h>
40#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
42#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreau8797c062007-05-07 00:55:35 +020045#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020046#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010047#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020049#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010050#include <proto/checks.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020051#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020052#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020054#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010056#include <proto/hdr_idx.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010057#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020058#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010060#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020062#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010063#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020064#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010065#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/task.h>
67
Willy Tarreau522d6c02009-12-06 18:49:18 +010068const char HTTP_100[] =
69 "HTTP/1.1 100 Continue\r\n\r\n";
70
71const struct chunk http_100_chunk = {
72 .str = (char *)&HTTP_100,
73 .len = sizeof(HTTP_100)-1
74};
75
Willy Tarreaua9679ac2010-01-03 17:32:57 +010076/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020077const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010078 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020080 "Location: "; /* not terminated since it will be concatenated with the URL */
81
Willy Tarreau0f772532006-12-23 20:51:41 +010082const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010083 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010084 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010085 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010086 "Location: "; /* not terminated since it will be concatenated with the URL */
87
88/* same as 302 except that the browser MUST retry with the GET method */
89const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010090 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010091 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010092 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010093 "Location: "; /* not terminated since it will be concatenated with the URL */
94
Yves Lafon3e8d1ae2013-03-11 11:06:05 -040095
96/* same as 302 except that the browser MUST retry with the same method */
97const char *HTTP_307 =
98 "HTTP/1.1 307 Temporary Redirect\r\n"
99 "Cache-Control: no-cache\r\n"
100 "Content-length: 0\r\n"
101 "Location: "; /* not terminated since it will be concatenated with the URL */
102
103/* same as 301 except that the browser MUST retry with the same method */
104const char *HTTP_308 =
105 "HTTP/1.1 308 Permanent Redirect\r\n"
106 "Content-length: 0\r\n"
107 "Location: "; /* not terminated since it will be concatenated with the URL */
108
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
110const char *HTTP_401_fmt =
111 "HTTP/1.0 401 Unauthorized\r\n"
112 "Cache-Control: no-cache\r\n"
113 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200114 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
116 "\r\n"
117 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
118
Willy Tarreau844a7e72010-01-31 21:46:18 +0100119const char *HTTP_407_fmt =
120 "HTTP/1.0 407 Unauthorized\r\n"
121 "Cache-Control: no-cache\r\n"
122 "Connection: close\r\n"
123 "Content-Type: text/html\r\n"
124 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
125 "\r\n"
126 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
127
Willy Tarreau0f772532006-12-23 20:51:41 +0100128
129const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200130 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100131 [HTTP_ERR_400] = 400,
132 [HTTP_ERR_403] = 403,
133 [HTTP_ERR_408] = 408,
134 [HTTP_ERR_500] = 500,
135 [HTTP_ERR_502] = 502,
136 [HTTP_ERR_503] = 503,
137 [HTTP_ERR_504] = 504,
138};
139
Willy Tarreau80587432006-12-24 17:47:20 +0100140static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200141 [HTTP_ERR_200] =
142 "HTTP/1.0 200 OK\r\n"
143 "Cache-Control: no-cache\r\n"
144 "Connection: close\r\n"
145 "Content-Type: text/html\r\n"
146 "\r\n"
147 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
148
Willy Tarreau0f772532006-12-23 20:51:41 +0100149 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100150 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100151 "Cache-Control: no-cache\r\n"
152 "Connection: close\r\n"
153 "Content-Type: text/html\r\n"
154 "\r\n"
155 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
156
157 [HTTP_ERR_403] =
158 "HTTP/1.0 403 Forbidden\r\n"
159 "Cache-Control: no-cache\r\n"
160 "Connection: close\r\n"
161 "Content-Type: text/html\r\n"
162 "\r\n"
163 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
164
165 [HTTP_ERR_408] =
166 "HTTP/1.0 408 Request Time-out\r\n"
167 "Cache-Control: no-cache\r\n"
168 "Connection: close\r\n"
169 "Content-Type: text/html\r\n"
170 "\r\n"
171 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
172
173 [HTTP_ERR_500] =
174 "HTTP/1.0 500 Server Error\r\n"
175 "Cache-Control: no-cache\r\n"
176 "Connection: close\r\n"
177 "Content-Type: text/html\r\n"
178 "\r\n"
179 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
180
181 [HTTP_ERR_502] =
182 "HTTP/1.0 502 Bad Gateway\r\n"
183 "Cache-Control: no-cache\r\n"
184 "Connection: close\r\n"
185 "Content-Type: text/html\r\n"
186 "\r\n"
187 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
188
189 [HTTP_ERR_503] =
190 "HTTP/1.0 503 Service Unavailable\r\n"
191 "Cache-Control: no-cache\r\n"
192 "Connection: close\r\n"
193 "Content-Type: text/html\r\n"
194 "\r\n"
195 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
196
197 [HTTP_ERR_504] =
198 "HTTP/1.0 504 Gateway Time-out\r\n"
199 "Cache-Control: no-cache\r\n"
200 "Connection: close\r\n"
201 "Content-Type: text/html\r\n"
202 "\r\n"
203 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
204
205};
206
Cyril Bonté19979e12012-04-04 12:57:21 +0200207/* status codes available for the stats admin page (strictly 4 chars length) */
208const char *stat_status_codes[STAT_STATUS_SIZE] = {
209 [STAT_STATUS_DENY] = "DENY",
210 [STAT_STATUS_DONE] = "DONE",
211 [STAT_STATUS_ERRP] = "ERRP",
212 [STAT_STATUS_EXCD] = "EXCD",
213 [STAT_STATUS_NONE] = "NONE",
214 [STAT_STATUS_PART] = "PART",
215 [STAT_STATUS_UNKN] = "UNKN",
216};
217
218
Willy Tarreau80587432006-12-24 17:47:20 +0100219/* We must put the messages here since GCC cannot initialize consts depending
220 * on strlen().
221 */
222struct chunk http_err_chunks[HTTP_ERR_SIZE];
223
Willy Tarreaua890d072013-04-02 12:01:06 +0200224/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
225static struct hdr_ctx static_hdr_ctx;
226
Willy Tarreau42250582007-04-01 01:30:43 +0200227#define FD_SETS_ARE_BITFIELDS
228#ifdef FD_SETS_ARE_BITFIELDS
229/*
230 * This map is used with all the FD_* macros to check whether a particular bit
231 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
232 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
233 * byte should be encoded. Be careful to always pass bytes from 0 to 255
234 * exclusively to the macros.
235 */
236fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
237fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100238fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Willy Tarreau42250582007-04-01 01:30:43 +0200239
240#else
241#error "Check if your OS uses bitfields for fd_sets"
242#endif
243
Willy Tarreau80587432006-12-24 17:47:20 +0100244void init_proto_http()
245{
Willy Tarreau42250582007-04-01 01:30:43 +0200246 int i;
247 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100248 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200249
Willy Tarreau80587432006-12-24 17:47:20 +0100250 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
251 if (!http_err_msgs[msg]) {
252 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
253 abort();
254 }
255
256 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
257 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
258 }
Willy Tarreau42250582007-04-01 01:30:43 +0200259
260 /* initialize the log header encoding map : '{|}"#' should be encoded with
261 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
262 * URL encoding only requires '"', '#' to be encoded as well as non-
263 * printable characters above.
264 */
265 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
266 memset(url_encode_map, 0, sizeof(url_encode_map));
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100267 memset(http_encode_map, 0, sizeof(url_encode_map));
Willy Tarreau42250582007-04-01 01:30:43 +0200268 for (i = 0; i < 32; i++) {
269 FD_SET(i, hdr_encode_map);
270 FD_SET(i, url_encode_map);
271 }
272 for (i = 127; i < 256; i++) {
273 FD_SET(i, hdr_encode_map);
274 FD_SET(i, url_encode_map);
275 }
276
277 tmp = "\"#{|}";
278 while (*tmp) {
279 FD_SET(*tmp, hdr_encode_map);
280 tmp++;
281 }
282
283 tmp = "\"#";
284 while (*tmp) {
285 FD_SET(*tmp, url_encode_map);
286 tmp++;
287 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200288
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100289 /* initialize the http header encoding map. The draft httpbis define the
290 * header content as:
291 *
292 * HTTP-message = start-line
293 * *( header-field CRLF )
294 * CRLF
295 * [ message-body ]
296 * header-field = field-name ":" OWS field-value OWS
297 * field-value = *( field-content / obs-fold )
298 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
299 * obs-fold = CRLF 1*( SP / HTAB )
300 * field-vchar = VCHAR / obs-text
301 * VCHAR = %x21-7E
302 * obs-text = %x80-FF
303 *
304 * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB.
305 * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The
306 * "obs-fold" is volontary forgotten because haproxy remove this.
307 */
308 memset(http_encode_map, 0, sizeof(http_encode_map));
309 for (i = 0x00; i <= 0x08; i++)
310 FD_SET(i, http_encode_map);
311 for (i = 0x0a; i <= 0x1f; i++)
312 FD_SET(i, http_encode_map);
313 FD_SET(0x7f, http_encode_map);
314
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200315 /* memory allocations */
316 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
William Lallemanda73203e2012-03-12 12:48:57 +0100317 pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100318}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200319
Willy Tarreau53b6c742006-12-17 13:37:46 +0100320/*
321 * We have 26 list of methods (1 per first letter), each of which can have
322 * up to 3 entries (2 valid, 1 null).
323 */
324struct http_method_desc {
Willy Tarreauc8987b32013-12-06 23:43:17 +0100325 enum http_meth_t meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100326 int len;
327 const char text[8];
328};
329
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100330const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100331 ['C' - 'A'] = {
332 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
333 },
334 ['D' - 'A'] = {
335 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
336 },
337 ['G' - 'A'] = {
338 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
339 },
340 ['H' - 'A'] = {
341 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
342 },
343 ['P' - 'A'] = {
344 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
345 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
346 },
347 ['T' - 'A'] = {
348 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
349 },
350 /* rest is empty like this :
351 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
352 */
353};
354
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100355const struct http_method_name http_known_methods[HTTP_METH_OTHER] = {
356 [HTTP_METH_NONE] = { "", 0 },
357 [HTTP_METH_OPTIONS] = { "OPTIONS", 7 },
358 [HTTP_METH_GET] = { "GET", 3 },
359 [HTTP_METH_HEAD] = { "HEAD", 4 },
360 [HTTP_METH_POST] = { "POST", 4 },
361 [HTTP_METH_PUT] = { "PUT", 3 },
362 [HTTP_METH_DELETE] = { "DELETE", 6 },
363 [HTTP_METH_TRACE] = { "TRACE", 5 },
364 [HTTP_METH_CONNECT] = { "CONNECT", 7 },
365};
366
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100367/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200368 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100369 * RFC2616 for those chars.
370 */
371
372const char http_is_spht[256] = {
373 [' '] = 1, ['\t'] = 1,
374};
375
376const char http_is_crlf[256] = {
377 ['\r'] = 1, ['\n'] = 1,
378};
379
380const char http_is_lws[256] = {
381 [' '] = 1, ['\t'] = 1,
382 ['\r'] = 1, ['\n'] = 1,
383};
384
385const char http_is_sep[256] = {
386 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
387 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
388 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
389 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
390 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
391};
392
393const char http_is_ctl[256] = {
394 [0 ... 31] = 1,
395 [127] = 1,
396};
397
398/*
399 * A token is any ASCII char that is neither a separator nor a CTL char.
400 * Do not overwrite values in assignment since gcc-2.95 will not handle
401 * them correctly. Instead, define every non-CTL char's status.
402 */
403const char http_is_token[256] = {
404 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
405 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
406 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
407 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
408 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
409 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
410 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
411 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
412 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
413 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
414 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
415 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
416 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
417 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
418 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
419 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
420 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
421 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
422 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
423 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
424 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
425 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
426 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
427 ['|'] = 1, ['}'] = 0, ['~'] = 1,
428};
429
430
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100431/*
432 * An http ver_token is any ASCII which can be found in an HTTP version,
433 * which includes 'H', 'T', 'P', '/', '.' and any digit.
434 */
435const char http_is_ver_token[256] = {
436 ['.'] = 1, ['/'] = 1,
437 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
438 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
439 ['H'] = 1, ['P'] = 1, ['T'] = 1,
440};
441
442
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100443/*
Willy Tarreaue988a792010-01-04 21:13:14 +0100444 * Silent debug that outputs only in strace, using fd #-1. Trash is modified.
445 */
446#if defined(DEBUG_FSM)
447static void http_silent_debug(int line, struct session *s)
448{
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100449 chunk_printf(&trash,
450 "[%04d] req: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p o=%p sm=%d fw=%ld tf=%08x\n",
451 line,
452 s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers,
453 s->req->buf->data, s->req->buf->size, s->req->l, s->req->w, s->req->r, s->req->buf->p, s->req->buf->o, s->req->to_forward, s->txn.flags);
454 write(-1, trash.str, trash.len);
Willy Tarreaue988a792010-01-04 21:13:14 +0100455
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100456 chunk_printf(&trash,
457 " %04d rep: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p o=%p sm=%d fw=%ld\n",
458 line,
459 s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers,
460 s->rep->buf->data, s->rep->buf->size, s->rep->l, s->rep->w, s->rep->r, s->rep->buf->p, s->rep->buf->o, s->rep->to_forward);
461 write(-1, trash.str, trash.len);
Willy Tarreaue988a792010-01-04 21:13:14 +0100462}
463#else
464#define http_silent_debug(l,s) do { } while (0)
465#endif
466
467/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100468 * Adds a header and its CRLF at the tail of the message's buffer, just before
469 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100470 * The header is also automatically added to the index <hdr_idx>, and the end
471 * of headers is automatically adjusted. The number of bytes added is returned
472 * on success, otherwise <0 is returned indicating an error.
473 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100474int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100475{
476 int bytes, len;
477
478 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200479 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100480 if (!bytes)
481 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100482 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100483 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
484}
485
486/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100487 * Adds a header and its CRLF at the tail of the message's buffer, just before
488 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100489 * the buffer is only opened and the space reserved, but nothing is copied.
490 * The header is also automatically added to the index <hdr_idx>, and the end
491 * of headers is automatically adjusted. The number of bytes added is returned
492 * on success, otherwise <0 is returned indicating an error.
493 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100494int http_header_add_tail2(struct http_msg *msg,
495 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100496{
497 int bytes;
498
Willy Tarreau9b28e032012-10-12 23:49:43 +0200499 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100500 if (!bytes)
501 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100502 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100503 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
504}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200505
506/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100507 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
508 * If so, returns the position of the first non-space character relative to
509 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
510 * to return a pointer to the place after the first space. Returns 0 if the
511 * header name does not match. Checks are case-insensitive.
512 */
513int http_header_match2(const char *hdr, const char *end,
514 const char *name, int len)
515{
516 const char *val;
517
518 if (hdr + len >= end)
519 return 0;
520 if (hdr[len] != ':')
521 return 0;
522 if (strncasecmp(hdr, name, len) != 0)
523 return 0;
524 val = hdr + len + 1;
525 while (val < end && HTTP_IS_SPHT(*val))
526 val++;
527 if ((val >= end) && (len + 2 <= end - hdr))
528 return len + 2; /* we may replace starting from second space */
529 return val - hdr;
530}
531
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200532/* Find the first or next occurrence of header <name> in message buffer <sol>
533 * using headers index <idx>, and return it in the <ctx> structure. This
534 * structure holds everything necessary to use the header and find next
535 * occurrence. If its <idx> member is 0, the header is searched from the
536 * beginning. Otherwise, the next occurrence is returned. The function returns
537 * 1 when it finds a value, and 0 when there is no more. It is very similar to
538 * http_find_header2() except that it is designed to work with full-line headers
539 * whose comma is not a delimiter but is part of the syntax. As a special case,
540 * if ctx->val is NULL when searching for a new values of a header, the current
541 * header is rescanned. This allows rescanning after a header deletion.
542 */
543int http_find_full_header2(const char *name, int len,
544 char *sol, struct hdr_idx *idx,
545 struct hdr_ctx *ctx)
546{
547 char *eol, *sov;
548 int cur_idx, old_idx;
549
550 cur_idx = ctx->idx;
551 if (cur_idx) {
552 /* We have previously returned a header, let's search another one */
553 sol = ctx->line;
554 eol = sol + idx->v[cur_idx].len;
555 goto next_hdr;
556 }
557
558 /* first request for this header */
559 sol += hdr_idx_first_pos(idx);
560 old_idx = 0;
561 cur_idx = hdr_idx_first_idx(idx);
562 while (cur_idx) {
563 eol = sol + idx->v[cur_idx].len;
564
565 if (len == 0) {
566 /* No argument was passed, we want any header.
567 * To achieve this, we simply build a fake request. */
568 while (sol + len < eol && sol[len] != ':')
569 len++;
570 name = sol;
571 }
572
573 if ((len < eol - sol) &&
574 (sol[len] == ':') &&
575 (strncasecmp(sol, name, len) == 0)) {
576 ctx->del = len;
577 sov = sol + len + 1;
578 while (sov < eol && http_is_lws[(unsigned char)*sov])
579 sov++;
580
581 ctx->line = sol;
582 ctx->prev = old_idx;
583 ctx->idx = cur_idx;
584 ctx->val = sov - sol;
585 ctx->tws = 0;
586 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
587 eol--;
588 ctx->tws++;
589 }
590 ctx->vlen = eol - sov;
591 return 1;
592 }
593 next_hdr:
594 sol = eol + idx->v[cur_idx].cr + 1;
595 old_idx = cur_idx;
596 cur_idx = idx->v[cur_idx].next;
597 }
598 return 0;
599}
600
Willy Tarreau68085d82010-01-18 14:54:04 +0100601/* Find the end of the header value contained between <s> and <e>. See RFC2616,
602 * par 2.2 for more information. Note that it requires a valid header to return
603 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200604 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100605char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200606{
607 int quoted, qdpair;
608
609 quoted = qdpair = 0;
610 for (; s < e; s++) {
611 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200612 else if (quoted) {
613 if (*s == '\\') qdpair = 1;
614 else if (*s == '"') quoted = 0;
615 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200616 else if (*s == '"') quoted = 1;
617 else if (*s == ',') return s;
618 }
619 return s;
620}
621
622/* Find the first or next occurrence of header <name> in message buffer <sol>
623 * using headers index <idx>, and return it in the <ctx> structure. This
624 * structure holds everything necessary to use the header and find next
625 * occurrence. If its <idx> member is 0, the header is searched from the
626 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100627 * 1 when it finds a value, and 0 when there is no more. It is designed to work
628 * with headers defined as comma-separated lists. As a special case, if ctx->val
629 * is NULL when searching for a new values of a header, the current header is
630 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200631 */
632int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100633 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200634 struct hdr_ctx *ctx)
635{
Willy Tarreau68085d82010-01-18 14:54:04 +0100636 char *eol, *sov;
637 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200638
Willy Tarreau68085d82010-01-18 14:54:04 +0100639 cur_idx = ctx->idx;
640 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200641 /* We have previously returned a value, let's search
642 * another one on the same line.
643 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200644 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200645 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100646 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200647 eol = sol + idx->v[cur_idx].len;
648
649 if (sov >= eol)
650 /* no more values in this header */
651 goto next_hdr;
652
Willy Tarreau68085d82010-01-18 14:54:04 +0100653 /* values remaining for this header, skip the comma but save it
654 * for later use (eg: for header deletion).
655 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200656 sov++;
657 while (sov < eol && http_is_lws[(unsigned char)*sov])
658 sov++;
659
660 goto return_hdr;
661 }
662
663 /* first request for this header */
664 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100665 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200666 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200667 while (cur_idx) {
668 eol = sol + idx->v[cur_idx].len;
669
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200670 if (len == 0) {
671 /* No argument was passed, we want any header.
672 * To achieve this, we simply build a fake request. */
673 while (sol + len < eol && sol[len] != ':')
674 len++;
675 name = sol;
676 }
677
Willy Tarreau33a7e692007-06-10 19:45:56 +0200678 if ((len < eol - sol) &&
679 (sol[len] == ':') &&
680 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100681 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200682 sov = sol + len + 1;
683 while (sov < eol && http_is_lws[(unsigned char)*sov])
684 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100685
Willy Tarreau33a7e692007-06-10 19:45:56 +0200686 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100687 ctx->prev = old_idx;
688 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200689 ctx->idx = cur_idx;
690 ctx->val = sov - sol;
691
692 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200693 ctx->tws = 0;
Willy Tarreau275600b2011-09-16 08:11:26 +0200694 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200695 eol--;
696 ctx->tws++;
697 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200698 ctx->vlen = eol - sov;
699 return 1;
700 }
701 next_hdr:
702 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100703 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200704 cur_idx = idx->v[cur_idx].next;
705 }
706 return 0;
707}
708
709int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100710 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200711 struct hdr_ctx *ctx)
712{
713 return http_find_header2(name, strlen(name), sol, idx, ctx);
714}
715
Willy Tarreau68085d82010-01-18 14:54:04 +0100716/* Remove one value of a header. This only works on a <ctx> returned by one of
717 * the http_find_header functions. The value is removed, as well as surrounding
718 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100719 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100720 * message <msg>. The new index is returned. If it is zero, it means there is
721 * no more header, so any processing may stop. The ctx is always left in a form
722 * that can be handled by http_find_header2() to find next occurrence.
723 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100724int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100725{
726 int cur_idx = ctx->idx;
727 char *sol = ctx->line;
728 struct hdr_idx_elem *hdr;
729 int delta, skip_comma;
730
731 if (!cur_idx)
732 return 0;
733
734 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200735 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100736 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200737 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +0100738 http_msg_move_end(msg, delta);
739 idx->used--;
740 hdr->len = 0; /* unused entry */
741 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100742 if (idx->tail == ctx->idx)
743 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100744 ctx->idx = ctx->prev; /* walk back to the end of previous header */
745 ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1;
746 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200747 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100748 return ctx->idx;
749 }
750
751 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200752 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
753 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100754 */
755
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200756 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200757 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200758 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100759 NULL, 0);
760 hdr->len += delta;
761 http_msg_move_end(msg, delta);
762 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200763 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100764 return ctx->idx;
765}
766
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100767/* This function handles a server error at the stream interface level. The
768 * stream interface is assumed to be already in a closed state. An optional
769 * message is copied into the input buffer, and an HTTP status code stored.
770 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100771 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772 */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100773static void http_server_error(struct session *t, struct stream_interface *si,
774 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200775{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200776 channel_auto_read(si->ob);
777 channel_abort(si->ob);
778 channel_auto_close(si->ob);
779 channel_erase(si->ob);
780 channel_auto_close(si->ib);
781 channel_auto_read(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100782 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100783 t->txn.status = status;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200784 bo_inject(si->ib, msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785 }
786 if (!(t->flags & SN_ERR_MASK))
787 t->flags |= err;
788 if (!(t->flags & SN_FINST_MASK))
789 t->flags |= finst;
790}
791
Willy Tarreau80587432006-12-24 17:47:20 +0100792/* This function returns the appropriate error location for the given session
793 * and message.
794 */
795
Willy Tarreau783f2582012-09-04 12:19:04 +0200796struct chunk *http_error_message(struct session *s, int msgnum)
Willy Tarreau80587432006-12-24 17:47:20 +0100797{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200798 if (s->be->errmsg[msgnum].str)
799 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100800 else if (s->fe->errmsg[msgnum].str)
801 return &s->fe->errmsg[msgnum];
802 else
803 return &http_err_chunks[msgnum];
804}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200805
Willy Tarreau53b6c742006-12-17 13:37:46 +0100806/*
807 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
808 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
809 */
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100810enum http_meth_t find_http_meth(const char *str, const int len)
Willy Tarreau53b6c742006-12-17 13:37:46 +0100811{
812 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100813 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100814
815 m = ((unsigned)*str - 'A');
816
817 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100818 for (h = http_methods[m]; h->len > 0; h++) {
819 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100820 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100821 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100822 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100823 };
824 return HTTP_METH_OTHER;
825 }
826 return HTTP_METH_NONE;
827
828}
829
Willy Tarreau21d2af32008-02-14 20:25:24 +0100830/* Parse the URI from the given transaction (which is assumed to be in request
831 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
832 * It is returned otherwise.
833 */
834static char *
835http_get_path(struct http_txn *txn)
836{
837 char *ptr, *end;
838
Willy Tarreau9b28e032012-10-12 23:49:43 +0200839 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100840 end = ptr + txn->req.sl.rq.u_l;
841
842 if (ptr >= end)
843 return NULL;
844
845 /* RFC2616, par. 5.1.2 :
846 * Request-URI = "*" | absuri | abspath | authority
847 */
848
849 if (*ptr == '*')
850 return NULL;
851
852 if (isalpha((unsigned char)*ptr)) {
853 /* this is a scheme as described by RFC3986, par. 3.1 */
854 ptr++;
855 while (ptr < end &&
856 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
857 ptr++;
858 /* skip '://' */
859 if (ptr == end || *ptr++ != ':')
860 return NULL;
861 if (ptr == end || *ptr++ != '/')
862 return NULL;
863 if (ptr == end || *ptr++ != '/')
864 return NULL;
865 }
866 /* skip [user[:passwd]@]host[:[port]] */
867
868 while (ptr < end && *ptr != '/')
869 ptr++;
870
871 if (ptr == end)
872 return NULL;
873
874 /* OK, we got the '/' ! */
875 return ptr;
876}
877
William Lallemand65ad6e12014-01-31 15:08:02 +0100878/* Parse the URI from the given string and look for the "/" beginning the PATH.
879 * If not found, return NULL. It is returned otherwise.
880 */
881static char *
882http_get_path_from_string(char *str)
883{
884 char *ptr = str;
885
886 /* RFC2616, par. 5.1.2 :
887 * Request-URI = "*" | absuri | abspath | authority
888 */
889
890 if (*ptr == '*')
891 return NULL;
892
893 if (isalpha((unsigned char)*ptr)) {
894 /* this is a scheme as described by RFC3986, par. 3.1 */
895 ptr++;
896 while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')
897 ptr++;
898 /* skip '://' */
899 if (*ptr == '\0' || *ptr++ != ':')
900 return NULL;
901 if (*ptr == '\0' || *ptr++ != '/')
902 return NULL;
903 if (*ptr == '\0' || *ptr++ != '/')
904 return NULL;
905 }
906 /* skip [user[:passwd]@]host[:[port]] */
907
908 while (*ptr != '\0' && *ptr != ' ' && *ptr != '/')
909 ptr++;
910
911 if (*ptr == '\0' || *ptr == ' ')
912 return NULL;
913
914 /* OK, we got the '/' ! */
915 return ptr;
916}
917
Willy Tarreau71241ab2012-12-27 11:30:54 +0100918/* Returns a 302 for a redirectable request that reaches a server working in
919 * in redirect mode. This may only be called just after the stream interface
920 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
921 * follow normal proxy processing. NOTE: this function is designed to support
922 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100923 */
Willy Tarreau71241ab2012-12-27 11:30:54 +0100924void http_perform_server_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100925{
926 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +0100927 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100928 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200929 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100930
931 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100932 trash.len = strlen(HTTP_302);
933 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100934
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100935 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100936
Willy Tarreauefb453c2008-10-26 20:49:47 +0100937 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100938 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100939 return;
940
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100941 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100942 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100943 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
944 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100945 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100946
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200947 /* 3: add the request URI. Since it was already forwarded, we need
948 * to temporarily rewind the buffer.
949 */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100950 txn = &s->txn;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200951 b_rew(s->req->buf, rewind = s->req->buf->o);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200952
Willy Tarreauefb453c2008-10-26 20:49:47 +0100953 path = http_get_path(txn);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200954 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 +0200955
Willy Tarreau9b28e032012-10-12 23:49:43 +0200956 b_adv(s->req->buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200957
Willy Tarreauefb453c2008-10-26 20:49:47 +0100958 if (!path)
959 return;
960
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100961 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100962 return;
963
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100964 memcpy(trash.str + trash.len, path, len);
965 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100966
967 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100968 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
969 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100970 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100971 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
972 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100973 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100974
975 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200976 si_shutr(si);
977 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100978 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100979 si->state = SI_ST_CLO;
980
981 /* send the message */
Willy Tarreau570f2212013-06-10 16:42:09 +0200982 http_server_error(s, si, SN_ERR_LOCAL, SN_FINST_C, 302, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100983
984 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +0100985 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500986 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100987}
988
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100989/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100990 * that the server side is closed. Note that err_type is actually a
991 * bitmask, where almost only aborts may be cumulated with other
992 * values. We consider that aborted operations are more important
993 * than timeouts or errors due to the fact that nobody else in the
994 * logs might explain incomplete retries. All others should avoid
995 * being cumulated. It should normally not be possible to have multiple
996 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +0100997 * Note that connection errors appearing on the second request of a keep-alive
998 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100999 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001000void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001001{
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001002 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001003
1004 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001005 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001006 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001007 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001008 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001009 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1010 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001011 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001012 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001013 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001014 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001015 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001016 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001017 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001018 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001019 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1020 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001021 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001022 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
Willy Tarreau36346242014-02-24 18:26:30 +01001023 503, (s->flags & SN_SRV_REUSED) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001024 http_error_message(s, HTTP_ERR_503));
Willy Tarreau2d400bb2012-05-14 12:11:47 +02001025 else if (err_type & SI_ET_CONN_RES)
1026 http_server_error(s, si, SN_ERR_RESOURCE, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001027 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1028 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001029 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001030 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +02001031 500, http_error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001032}
1033
Willy Tarreau42250582007-04-01 01:30:43 +02001034extern const char sess_term_cond[8];
1035extern const char sess_fin_state[8];
1036extern const char *monthname[12];
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001037struct pool_head *pool2_requri;
Willy Tarreau193b8c62012-11-22 00:17:38 +01001038struct pool_head *pool2_capture = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001039struct pool_head *pool2_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001040
Willy Tarreau117f59e2007-03-04 18:17:17 +01001041/*
1042 * Capture headers from message starting at <som> according to header list
1043 * <cap_hdr>, and fill the <idx> structure appropriately.
1044 */
1045void capture_headers(char *som, struct hdr_idx *idx,
1046 char **cap, struct cap_hdr *cap_hdr)
1047{
1048 char *eol, *sol, *col, *sov;
1049 int cur_idx;
1050 struct cap_hdr *h;
1051 int len;
1052
1053 sol = som + hdr_idx_first_pos(idx);
1054 cur_idx = hdr_idx_first_idx(idx);
1055
1056 while (cur_idx) {
1057 eol = sol + idx->v[cur_idx].len;
1058
1059 col = sol;
1060 while (col < eol && *col != ':')
1061 col++;
1062
1063 sov = col + 1;
1064 while (sov < eol && http_is_lws[(unsigned char)*sov])
1065 sov++;
1066
1067 for (h = cap_hdr; h; h = h->next) {
1068 if ((h->namelen == col - sol) &&
1069 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1070 if (cap[h->index] == NULL)
1071 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001072 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001073
1074 if (cap[h->index] == NULL) {
1075 Alert("HTTP capture : out of memory.\n");
1076 continue;
1077 }
1078
1079 len = eol - sov;
1080 if (len > h->len)
1081 len = h->len;
1082
1083 memcpy(cap[h->index], sov, len);
1084 cap[h->index][len]=0;
1085 }
1086 }
1087 sol = eol + idx->v[cur_idx].cr + 1;
1088 cur_idx = idx->v[cur_idx].next;
1089 }
1090}
1091
1092
Willy Tarreau42250582007-04-01 01:30:43 +02001093/* either we find an LF at <ptr> or we jump to <bad>.
1094 */
1095#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1096
1097/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1098 * otherwise to <http_msg_ood> with <state> set to <st>.
1099 */
1100#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1101 ptr++; \
1102 if (likely(ptr < end)) \
1103 goto good; \
1104 else { \
1105 state = (st); \
1106 goto http_msg_ood; \
1107 } \
1108 } while (0)
1109
1110
Willy Tarreaubaaee002006-06-26 02:48:02 +02001111/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001112 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001113 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1114 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1115 * will give undefined results.
1116 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1117 * and that msg->sol points to the beginning of the response.
1118 * If a complete line is found (which implies that at least one CR or LF is
1119 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1120 * returned indicating an incomplete line (which does not mean that parts have
1121 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1122 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1123 * upon next call.
1124 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001125 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001126 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1127 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001128 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001129 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001130const char *http_parse_stsline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001131 enum ht_state state, const char *ptr, const char *end,
1132 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001133{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001134 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001135
Willy Tarreau8973c702007-01-21 23:58:29 +01001136 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001137 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001138 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001139 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001140 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1141
1142 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001143 msg->sl.st.v_l = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001144 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1145 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001146 state = HTTP_MSG_ERROR;
1147 break;
1148
Willy Tarreau8973c702007-01-21 23:58:29 +01001149 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001150 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001151 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001152 msg->sl.st.c = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001153 goto http_msg_rpcode;
1154 }
1155 if (likely(HTTP_IS_SPHT(*ptr)))
1156 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1157 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001158 state = HTTP_MSG_ERROR;
1159 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001160
Willy Tarreau8973c702007-01-21 23:58:29 +01001161 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001162 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001163 if (likely(!HTTP_IS_LWS(*ptr)))
1164 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1165
1166 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001167 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001168 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1169 }
1170
1171 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001172 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001173 http_msg_rsp_reason:
1174 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001175 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001176 msg->sl.st.r_l = 0;
1177 goto http_msg_rpline_eol;
1178
Willy Tarreau8973c702007-01-21 23:58:29 +01001179 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001180 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001181 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001182 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001183 goto http_msg_rpreason;
1184 }
1185 if (likely(HTTP_IS_SPHT(*ptr)))
1186 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1187 /* so it's a CR/LF, so there is no reason phrase */
1188 goto http_msg_rsp_reason;
1189
Willy Tarreau8973c702007-01-21 23:58:29 +01001190 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001191 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001192 if (likely(!HTTP_IS_CRLF(*ptr)))
1193 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreauea1175a2012-03-05 15:52:30 +01001194 msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001195 http_msg_rpline_eol:
1196 /* We have seen the end of line. Note that we do not
1197 * necessarily have the \n yet, but at least we know that we
1198 * have EITHER \r OR \n, otherwise the response would not be
1199 * complete. We can then record the response length and return
1200 * to the caller which will be able to register it.
1201 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001202 msg->sl.st.l = ptr - msg_start - msg->sol;
Willy Tarreau8973c702007-01-21 23:58:29 +01001203 return ptr;
1204
Willy Tarreau8973c702007-01-21 23:58:29 +01001205 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001206#ifdef DEBUG_FULL
Willy Tarreau8973c702007-01-21 23:58:29 +01001207 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1208 exit(1);
1209#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001210 ;
Willy Tarreau8973c702007-01-21 23:58:29 +01001211 }
1212
1213 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001214 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001215 if (ret_state)
1216 *ret_state = state;
1217 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001218 *ret_ptr = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001219 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001220}
1221
Willy Tarreau8973c702007-01-21 23:58:29 +01001222/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001223 * This function parses a request line between <ptr> and <end>, starting with
1224 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1225 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1226 * will give undefined results.
1227 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1228 * and that msg->sol points to the beginning of the request.
1229 * If a complete line is found (which implies that at least one CR or LF is
1230 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1231 * returned indicating an incomplete line (which does not mean that parts have
1232 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1233 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1234 * upon next call.
1235 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001236 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001237 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1238 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001239 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001240 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001241const char *http_parse_reqline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001242 enum ht_state state, const char *ptr, const char *end,
1243 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001244{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001245 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001246
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001247 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001248 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001249 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001250 if (likely(HTTP_IS_TOKEN(*ptr)))
1251 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001252
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001253 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001254 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001255 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1256 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001257
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001258 if (likely(HTTP_IS_CRLF(*ptr))) {
1259 /* HTTP 0.9 request */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001260 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001261 http_msg_req09_uri:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001262 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001263 http_msg_req09_uri_e:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001264 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001265 http_msg_req09_ver:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001266 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001267 msg->sl.rq.v_l = 0;
1268 goto http_msg_rqline_eol;
1269 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001270 state = HTTP_MSG_ERROR;
1271 break;
1272
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001273 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001274 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001275 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001276 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001277 goto http_msg_rquri;
1278 }
1279 if (likely(HTTP_IS_SPHT(*ptr)))
1280 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1281 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1282 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001283
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001284 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001285 http_msg_rquri:
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001286 if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001287 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001288
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001289 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001290 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001291 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1292 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001293
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001294 if (likely((unsigned char)*ptr >= 128)) {
Willy Tarreau422246e2012-01-07 23:54:13 +01001295 /* non-ASCII chars are forbidden unless option
1296 * accept-invalid-http-request is enabled in the frontend.
1297 * In any case, we capture the faulty char.
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001298 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001299 if (msg->err_pos < -1)
1300 goto invalid_char;
1301 if (msg->err_pos == -1)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001302 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001303 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
1304 }
1305
1306 if (likely(HTTP_IS_CRLF(*ptr))) {
1307 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1308 goto http_msg_req09_uri_e;
1309 }
1310
1311 /* OK forbidden chars, 0..31 or 127 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001312 invalid_char:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001313 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001314 state = HTTP_MSG_ERROR;
1315 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001316
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001317 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001318 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001319 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001320 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001321 goto http_msg_rqver;
1322 }
1323 if (likely(HTTP_IS_SPHT(*ptr)))
1324 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1325 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1326 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001327
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001328 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001329 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001330 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001331 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001332
1333 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001334 msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001335 http_msg_rqline_eol:
1336 /* We have seen the end of line. Note that we do not
1337 * necessarily have the \n yet, but at least we know that we
1338 * have EITHER \r OR \n, otherwise the request would not be
1339 * complete. We can then record the request length and return
1340 * to the caller which will be able to register it.
1341 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001342 msg->sl.rq.l = ptr - msg_start - msg->sol;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001343 return ptr;
1344 }
1345
1346 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001347 state = HTTP_MSG_ERROR;
1348 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001349
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001350 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001351#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001352 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1353 exit(1);
1354#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001355 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001356 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001357
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001358 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001359 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001360 if (ret_state)
1361 *ret_state = state;
1362 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001363 *ret_ptr = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001364 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001365}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001366
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001367/*
1368 * Returns the data from Authorization header. Function may be called more
1369 * than once so data is stored in txn->auth_data. When no header is found
1370 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
Thierry FOURNIER98d96952014-01-23 12:13:02 +01001371 * searching again for something we are unable to find anyway. However, if
1372 * the result if valid, the cache is not reused because we would risk to
1373 * have the credentials overwritten by another session in parallel.
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001374 */
1375
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001376/* This bufffer is initialized in the file 'src/haproxy.c'. This length is
1377 * set according to global.tune.bufsize.
1378 */
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001379char *get_http_auth_buff;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001380
1381int
1382get_http_auth(struct session *s)
1383{
1384
1385 struct http_txn *txn = &s->txn;
1386 struct chunk auth_method;
1387 struct hdr_ctx ctx;
1388 char *h, *p;
1389 int len;
1390
1391#ifdef DEBUG_AUTH
1392 printf("Auth for session %p: %d\n", s, txn->auth.method);
1393#endif
1394
1395 if (txn->auth.method == HTTP_AUTH_WRONG)
1396 return 0;
1397
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001398 txn->auth.method = HTTP_AUTH_WRONG;
1399
1400 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001401
1402 if (txn->flags & TX_USE_PX_CONN) {
1403 h = "Proxy-Authorization";
1404 len = strlen(h);
1405 } else {
1406 h = "Authorization";
1407 len = strlen(h);
1408 }
1409
Willy Tarreau9b28e032012-10-12 23:49:43 +02001410 if (!http_find_header2(h, len, s->req->buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001411 return 0;
1412
1413 h = ctx.line + ctx.val;
1414
1415 p = memchr(h, ' ', ctx.vlen);
1416 if (!p || p == h)
1417 return 0;
1418
1419 chunk_initlen(&auth_method, h, 0, p-h);
1420 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1421
1422 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1423
1424 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001425 get_http_auth_buff, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001426
1427 if (len < 0)
1428 return 0;
1429
1430
1431 get_http_auth_buff[len] = '\0';
1432
1433 p = strchr(get_http_auth_buff, ':');
1434
1435 if (!p)
1436 return 0;
1437
1438 txn->auth.user = get_http_auth_buff;
1439 *p = '\0';
1440 txn->auth.pass = p+1;
1441
1442 txn->auth.method = HTTP_AUTH_BASIC;
1443 return 1;
1444 }
1445
1446 return 0;
1447}
1448
Willy Tarreau58f10d72006-12-04 02:26:12 +01001449
Willy Tarreau8973c702007-01-21 23:58:29 +01001450/*
1451 * This function parses an HTTP message, either a request or a response,
Willy Tarreau8b1323e2012-03-09 14:46:19 +01001452 * depending on the initial msg->msg_state. The caller is responsible for
1453 * ensuring that the message does not wrap. The function can be preempted
1454 * everywhere when data are missing and recalled at the exact same location
1455 * with no information loss. The message may even be realigned between two
1456 * calls. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001457 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau26927362012-05-18 23:22:52 +02001458 * fields. Note that msg->sol will be initialized after completing the first
1459 * state, so that none of the msg pointers has to be initialized prior to the
1460 * first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001461 */
Willy Tarreaua560c212012-03-09 13:50:57 +01001462void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001463{
Willy Tarreau3770f232013-12-07 00:01:53 +01001464 enum ht_state state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001465 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001466 struct buffer *buf;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001467
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001468 state = msg->msg_state;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001469 buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001470 ptr = buf->p + msg->next;
1471 end = buf->p + buf->i;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001472
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001473 if (unlikely(ptr >= end))
1474 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001475
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001476 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001477 /*
1478 * First, states that are specific to the response only.
1479 * We check them first so that request and headers are
1480 * closer to each other (accessed more often).
1481 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001482 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001483 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001484 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001485 /* we have a start of message, but we have to check
1486 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001487 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001488 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001489 if (unlikely(ptr != buf->p)) {
1490 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001491 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001492 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001493 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8973c702007-01-21 23:58:29 +01001494 }
Willy Tarreau26927362012-05-18 23:22:52 +02001495 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001496 msg->sl.st.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001497 hdr_idx_init(idx);
1498 state = HTTP_MSG_RPVER;
1499 goto http_msg_rpver;
1500 }
1501
1502 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1503 goto http_msg_invalid;
1504
1505 if (unlikely(*ptr == '\n'))
1506 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1507 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1508 /* stop here */
1509
Willy Tarreau8973c702007-01-21 23:58:29 +01001510 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001511 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001512 EXPECT_LF_HERE(ptr, http_msg_invalid);
1513 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1514 /* stop here */
1515
Willy Tarreau8973c702007-01-21 23:58:29 +01001516 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001517 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001518 case HTTP_MSG_RPVER_SP:
1519 case HTTP_MSG_RPCODE:
1520 case HTTP_MSG_RPCODE_SP:
1521 case HTTP_MSG_RPREASON:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001522 ptr = (char *)http_parse_stsline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001523 state, ptr, end,
1524 &msg->next, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001525 if (unlikely(!ptr))
1526 return;
1527
1528 /* we have a full response and we know that we have either a CR
1529 * or an LF at <ptr>.
1530 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001531 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1532
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001533 msg->sol = ptr - buf->p;
Willy Tarreau8973c702007-01-21 23:58:29 +01001534 if (likely(*ptr == '\r'))
1535 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1536 goto http_msg_rpline_end;
1537
Willy Tarreau8973c702007-01-21 23:58:29 +01001538 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001539 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001540 /* msg->sol must point to the first of CR or LF. */
1541 EXPECT_LF_HERE(ptr, http_msg_invalid);
1542 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1543 /* stop here */
1544
1545 /*
1546 * Second, states that are specific to the request only
1547 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001548 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001549 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001550 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001551 /* we have a start of message, but we have to check
1552 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001553 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001554 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001555 if (likely(ptr != buf->p)) {
1556 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001557 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001558 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001559 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001560 }
Willy Tarreau26927362012-05-18 23:22:52 +02001561 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001562 msg->sl.rq.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001563 state = HTTP_MSG_RQMETH;
1564 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001565 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001566
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001567 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1568 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001569
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001570 if (unlikely(*ptr == '\n'))
1571 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1572 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001573 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001574
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001575 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001576 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001577 EXPECT_LF_HERE(ptr, http_msg_invalid);
1578 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001579 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001580
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001581 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001582 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001583 case HTTP_MSG_RQMETH_SP:
1584 case HTTP_MSG_RQURI:
1585 case HTTP_MSG_RQURI_SP:
1586 case HTTP_MSG_RQVER:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001587 ptr = (char *)http_parse_reqline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001588 state, ptr, end,
1589 &msg->next, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001590 if (unlikely(!ptr))
1591 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001592
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001593 /* we have a full request and we know that we have either a CR
1594 * or an LF at <ptr>.
1595 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001596 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001597
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001598 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001599 if (likely(*ptr == '\r'))
1600 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001601 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001602
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001603 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001604 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001605 /* check for HTTP/0.9 request : no version information available.
1606 * msg->sol must point to the first of CR or LF.
1607 */
1608 if (unlikely(msg->sl.rq.v_l == 0))
1609 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001610
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001611 EXPECT_LF_HERE(ptr, http_msg_invalid);
1612 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001613 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001614
Willy Tarreau8973c702007-01-21 23:58:29 +01001615 /*
1616 * Common states below
1617 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001618 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001619 http_msg_hdr_first:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001620 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001621 if (likely(!HTTP_IS_CRLF(*ptr))) {
1622 goto http_msg_hdr_name;
1623 }
1624
1625 if (likely(*ptr == '\r'))
1626 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1627 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001628
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001629 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001630 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001631 /* assumes msg->sol points to the first char */
1632 if (likely(HTTP_IS_TOKEN(*ptr)))
1633 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001634
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001635 if (likely(*ptr == ':'))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001636 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001637
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001638 if (likely(msg->err_pos < -1) || *ptr == '\n')
1639 goto http_msg_invalid;
1640
1641 if (msg->err_pos == -1) /* capture error pointer */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001642 msg->err_pos = ptr - buf->p; /* >= 0 now */
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001643
1644 /* and we still accept this non-token character */
1645 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001646
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001647 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001648 http_msg_hdr_l1_sp:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001649 /* assumes msg->sol points to the first char */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001650 if (likely(HTTP_IS_SPHT(*ptr)))
1651 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001652
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001653 /* header value can be basically anything except CR/LF */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001654 msg->sov = ptr - buf->p;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001655
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001656 if (likely(!HTTP_IS_CRLF(*ptr))) {
1657 goto http_msg_hdr_val;
1658 }
1659
1660 if (likely(*ptr == '\r'))
1661 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1662 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001663
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001664 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001665 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001666 EXPECT_LF_HERE(ptr, http_msg_invalid);
1667 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001668
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001669 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001670 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001671 if (likely(HTTP_IS_SPHT(*ptr))) {
1672 /* replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001673 for (; buf->p + msg->sov < ptr; msg->sov++)
1674 buf->p[msg->sov] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001675 goto http_msg_hdr_l1_sp;
1676 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001677 /* we had a header consisting only in spaces ! */
Willy Tarreau12e48b32012-03-05 16:57:34 +01001678 msg->eol = msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001679 goto http_msg_complete_header;
1680
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001681 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001682 http_msg_hdr_val:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001683 /* assumes msg->sol points to the first char, and msg->sov
1684 * points to the first character of the value.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001685 */
1686 if (likely(!HTTP_IS_CRLF(*ptr)))
1687 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001688
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001689 msg->eol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001690 /* Note: we could also copy eol into ->eoh so that we have the
1691 * real header end in case it ends with lots of LWS, but is this
1692 * really needed ?
1693 */
1694 if (likely(*ptr == '\r'))
1695 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1696 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001697
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001698 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001699 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001700 EXPECT_LF_HERE(ptr, http_msg_invalid);
1701 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001702
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001703 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001704 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001705 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1706 /* LWS: replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001707 for (; buf->p + msg->eol < ptr; msg->eol++)
1708 buf->p[msg->eol] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001709 goto http_msg_hdr_val;
1710 }
1711 http_msg_complete_header:
1712 /*
1713 * It was a new header, so the last one is finished.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001714 * Assumes msg->sol points to the first char, msg->sov points
1715 * to the first character of the value and msg->eol to the
1716 * first CR or LF so we know how the line ends. We insert last
1717 * header into the index.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001718 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001719 if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r',
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001720 idx, idx->tail) < 0))
1721 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001722
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001723 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001724 if (likely(!HTTP_IS_CRLF(*ptr))) {
1725 goto http_msg_hdr_name;
1726 }
1727
1728 if (likely(*ptr == '\r'))
1729 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1730 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001731
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001732 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001733 http_msg_last_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001734 /* Assumes msg->sol points to the first of either CR or LF */
1735 EXPECT_LF_HERE(ptr, http_msg_invalid);
1736 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001737 msg->sov = msg->next = ptr - buf->p;
Willy Tarreau3a215be2012-03-09 21:39:51 +01001738 msg->eoh = msg->sol;
1739 msg->sol = 0;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001740 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001741 return;
Willy Tarreaub56928a2012-04-16 14:51:55 +02001742
1743 case HTTP_MSG_ERROR:
1744 /* this may only happen if we call http_msg_analyser() twice with an error */
1745 break;
1746
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001747 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001748#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001749 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1750 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001751#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001752 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001753 }
1754 http_msg_ood:
1755 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001756 msg->msg_state = state;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001757 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001758 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001759
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001760 http_msg_invalid:
1761 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001762 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001763 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001764 return;
1765}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001766
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001767/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1768 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1769 * nothing is done and 1 is returned.
1770 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001771static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001772{
1773 int delta;
1774 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001775 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001776
1777 if (msg->sl.rq.v_l != 0)
1778 return 1;
1779
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001780 /* RFC 1945 allows only GET for HTTP/0.9 requests */
1781 if (txn->meth != HTTP_METH_GET)
1782 return 0;
1783
Willy Tarreau9b28e032012-10-12 23:49:43 +02001784 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001785 delta = 0;
1786
1787 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001788 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
1789 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001790 }
1791 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001792 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001793 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001794 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001795 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001796 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001797 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001798 NULL, NULL);
1799 if (unlikely(!cur_end))
1800 return 0;
1801
1802 /* we have a full HTTP/1.0 request now and we know that
1803 * we have either a CR or an LF at <ptr>.
1804 */
1805 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1806 return 1;
1807}
1808
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001809/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001810 * and "keep-alive" values. If we already know that some headers may safely
1811 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001812 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1813 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01001814 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001815 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1816 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1817 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001818 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001819 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001820void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001821{
Willy Tarreau5b154472009-12-21 20:11:07 +01001822 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001823 const char *hdr_val = "Connection";
1824 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001825
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001826 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001827 return;
1828
Willy Tarreau88d349d2010-01-25 12:15:43 +01001829 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1830 hdr_val = "Proxy-Connection";
1831 hdr_len = 16;
1832 }
1833
Willy Tarreau5b154472009-12-21 20:11:07 +01001834 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001835 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001836 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001837 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1838 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001839 if (to_del & 2)
1840 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001841 else
1842 txn->flags |= TX_CON_KAL_SET;
1843 }
1844 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1845 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001846 if (to_del & 1)
1847 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001848 else
1849 txn->flags |= TX_CON_CLO_SET;
1850 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01001851 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
1852 txn->flags |= TX_HDR_CONN_UPG;
1853 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001854 }
1855
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001856 txn->flags |= TX_HDR_CONN_PRS;
1857 return;
1858}
Willy Tarreau5b154472009-12-21 20:11:07 +01001859
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001860/* Apply desired changes on the Connection: header. Values may be removed and/or
1861 * added depending on the <wanted> flags, which are exclusively composed of
1862 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1863 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1864 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001865void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001866{
1867 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001868 const char *hdr_val = "Connection";
1869 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001870
1871 ctx.idx = 0;
1872
Willy Tarreau88d349d2010-01-25 12:15:43 +01001873
1874 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1875 hdr_val = "Proxy-Connection";
1876 hdr_len = 16;
1877 }
1878
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001879 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001880 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001881 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1882 if (wanted & TX_CON_KAL_SET)
1883 txn->flags |= TX_CON_KAL_SET;
1884 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001885 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01001886 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001887 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1888 if (wanted & TX_CON_CLO_SET)
1889 txn->flags |= TX_CON_CLO_SET;
1890 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001891 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01001892 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001893 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001894
1895 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
1896 return;
1897
1898 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
1899 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001900 hdr_val = "Connection: close";
1901 hdr_len = 17;
1902 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1903 hdr_val = "Proxy-Connection: close";
1904 hdr_len = 23;
1905 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001906 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001907 }
1908
1909 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
1910 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001911 hdr_val = "Connection: keep-alive";
1912 hdr_len = 22;
1913 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1914 hdr_val = "Proxy-Connection: keep-alive";
1915 hdr_len = 28;
1916 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001917 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001918 }
1919 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01001920}
1921
Willy Tarreaua458b672012-03-05 11:17:50 +01001922/* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to the
Willy Tarreaud98cf932009-12-27 22:54:55 +01001923 * first byte of body, and increments msg->sov by the number of bytes parsed,
Willy Tarreau26927362012-05-18 23:22:52 +02001924 * so that we know we can forward between ->sol and ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01001925 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01001926 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01001927 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02001928static inline int http_parse_chunk_size(struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01001929{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001930 const struct buffer *buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001931 const char *ptr = b_ptr(buf, msg->next);
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001932 const char *ptr_old = ptr;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001933 const char *end = buf->data + buf->size;
1934 const char *stop = bi_end(buf);
Willy Tarreau115acb92009-12-26 13:56:06 +01001935 unsigned int chunk = 0;
1936
1937 /* The chunk size is in the following form, though we are only
1938 * interested in the size and CRLF :
1939 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
1940 */
1941 while (1) {
1942 int c;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001943 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001944 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001945 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01001946 if (c < 0) /* not a hex digit anymore */
1947 break;
Willy Tarreau0161d622013-04-02 01:26:55 +02001948 if (unlikely(++ptr >= end))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001949 ptr = buf->data;
Willy Tarreau431946e2012-02-24 19:20:12 +01001950 if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001951 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001952 chunk = (chunk << 4) + c;
1953 }
1954
Willy Tarreaud98cf932009-12-27 22:54:55 +01001955 /* empty size not allowed */
Willy Tarreau0161d622013-04-02 01:26:55 +02001956 if (unlikely(ptr == ptr_old))
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001957 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001958
1959 while (http_is_spht[(unsigned char)*ptr]) {
1960 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001961 ptr = buf->data;
Willy Tarreau0161d622013-04-02 01:26:55 +02001962 if (unlikely(ptr == stop))
Willy Tarreau115acb92009-12-26 13:56:06 +01001963 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01001964 }
1965
Willy Tarreaud98cf932009-12-27 22:54:55 +01001966 /* Up to there, we know that at least one byte is present at *ptr. Check
1967 * for the end of chunk size.
1968 */
1969 while (1) {
1970 if (likely(HTTP_IS_CRLF(*ptr))) {
1971 /* we now have a CR or an LF at ptr */
1972 if (likely(*ptr == '\r')) {
1973 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001974 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001975 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001976 return 0;
1977 }
Willy Tarreau115acb92009-12-26 13:56:06 +01001978
Willy Tarreaud98cf932009-12-27 22:54:55 +01001979 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001980 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001981 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001982 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001983 /* done */
1984 break;
1985 }
1986 else if (*ptr == ';') {
1987 /* chunk extension, ends at next CRLF */
1988 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001989 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001990 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001991 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001992
1993 while (!HTTP_IS_CRLF(*ptr)) {
1994 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001995 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001996 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001997 return 0;
1998 }
1999 /* we have a CRLF now, loop above */
2000 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01002001 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002002 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002003 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002004 }
2005
Willy Tarreaud98cf932009-12-27 22:54:55 +01002006 /* OK we found our CRLF and now <ptr> points to the next byte,
Willy Tarreaua458b672012-03-05 11:17:50 +01002007 * which may or may not be present. We save that into ->next and
Willy Tarreaud98cf932009-12-27 22:54:55 +01002008 * ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01002009 */
Willy Tarreau0161d622013-04-02 01:26:55 +02002010 if (unlikely(ptr < ptr_old))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002011 msg->sov += buf->size;
Willy Tarreaua458b672012-03-05 11:17:50 +01002012 msg->sov += ptr - ptr_old;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002013 msg->next = buffer_count(buf, buf->p, ptr);
Willy Tarreau124d9912011-03-01 20:30:48 +01002014 msg->chunk_len = chunk;
2015 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002016 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002017 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002018 error:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002019 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002020 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002021}
2022
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002023/* This function skips trailers in the buffer associated with HTTP
Willy Tarreaua458b672012-03-05 11:17:50 +01002024 * message <msg>. The first visited position is msg->next. If the end of
Willy Tarreaud98cf932009-12-27 22:54:55 +01002025 * the trailers is found, it is automatically scheduled to be forwarded,
2026 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2027 * If not enough data are available, the function does not change anything
Willy Tarreaua458b672012-03-05 11:17:50 +01002028 * except maybe msg->next and msg->sov if it could parse some lines, and returns
Willy Tarreau638cd022010-01-03 07:42:04 +01002029 * zero. If a parse error is encountered, the function returns < 0 and does not
Willy Tarreaua458b672012-03-05 11:17:50 +01002030 * change anything except maybe msg->next and msg->sov. Note that the message
Willy Tarreau638cd022010-01-03 07:42:04 +01002031 * must already be in HTTP_MSG_TRAILERS state before calling this function,
2032 * which implies that all non-trailers data have already been scheduled for
Willy Tarreau26927362012-05-18 23:22:52 +02002033 * forwarding, and that the difference between msg->sol and msg->sov exactly
Willy Tarreau638cd022010-01-03 07:42:04 +01002034 * matches the length of trailers already parsed and not forwarded. It is also
2035 * important to note that this function is designed to be able to parse wrapped
2036 * headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002037 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002038static int http_forward_trailers(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002039{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002040 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002041
Willy Tarreaua458b672012-03-05 11:17:50 +01002042 /* we have msg->next which points to next line. Look for CRLF. */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002043 while (1) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002044 const char *p1 = NULL, *p2 = NULL;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002045 const char *ptr = b_ptr(buf, msg->next);
2046 const char *stop = bi_end(buf);
Willy Tarreau638cd022010-01-03 07:42:04 +01002047 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002048
2049 /* scan current line and stop at LF or CRLF */
2050 while (1) {
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002051 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002052 return 0;
2053
2054 if (*ptr == '\n') {
2055 if (!p1)
2056 p1 = ptr;
2057 p2 = ptr;
2058 break;
2059 }
2060
2061 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002062 if (p1) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002063 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002064 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002065 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002066 p1 = ptr;
2067 }
2068
2069 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002070 if (ptr >= buf->data + buf->size)
2071 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002072 }
2073
2074 /* after LF; point to beginning of next line */
2075 p2++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002076 if (p2 >= buf->data + buf->size)
2077 p2 = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002078
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002079 bytes = p2 - b_ptr(buf, msg->next);
Willy Tarreau638cd022010-01-03 07:42:04 +01002080 if (bytes < 0)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002081 bytes += buf->size;
Willy Tarreau638cd022010-01-03 07:42:04 +01002082
2083 /* schedule this line for forwarding */
2084 msg->sov += bytes;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002085 if (msg->sov >= buf->size)
2086 msg->sov -= buf->size;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002087
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002088 if (p1 == b_ptr(buf, msg->next)) {
Willy Tarreau638cd022010-01-03 07:42:04 +01002089 /* LF/CRLF at beginning of line => end of trailers at p2.
2090 * Everything was scheduled for forwarding, there's nothing
2091 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002092 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002093 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002094 msg->msg_state = HTTP_MSG_DONE;
2095 return 1;
2096 }
2097 /* OK, next line then */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002098 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002099 }
2100}
2101
Willy Tarreau54d23df2012-10-25 19:04:45 +02002102/* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF or
Willy Tarreaud98cf932009-12-27 22:54:55 +01002103 * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov,
Willy Tarreau26927362012-05-18 23:22:52 +02002104 * ->sol, ->next in order to include this part into the next forwarding phase.
Willy Tarreaua458b672012-03-05 11:17:50 +01002105 * Note that the caller must ensure that ->p points to the first byte to parse.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002106 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2107 * not enough data are available, the function does not change anything and
2108 * returns zero. If a parse error is encountered, the function returns < 0 and
2109 * does not change anything. Note: this function is designed to parse wrapped
2110 * CRLF at the end of the buffer.
2111 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002112static inline int http_skip_chunk_crlf(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002113{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002114 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002115 const char *ptr;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002116 int bytes;
2117
2118 /* NB: we'll check data availabilty at the end. It's not a
2119 * problem because whatever we match first will be checked
2120 * against the correct length.
2121 */
2122 bytes = 1;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002123 ptr = buf->p;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002124 if (*ptr == '\r') {
2125 bytes++;
2126 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002127 if (ptr >= buf->data + buf->size)
2128 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002129 }
2130
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002131 if (bytes > buf->i)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002132 return 0;
2133
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002134 if (*ptr != '\n') {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002135 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002136 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002137 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002138
2139 ptr++;
Willy Tarreau0161d622013-04-02 01:26:55 +02002140 if (unlikely(ptr >= buf->data + buf->size))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002141 ptr = buf->data;
Willy Tarreau26927362012-05-18 23:22:52 +02002142 /* prepare the CRLF to be forwarded (between ->sol and ->sov) */
2143 msg->sol = 0;
Willy Tarreauea1175a2012-03-05 15:52:30 +01002144 msg->sov = msg->next = bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002145 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2146 return 1;
2147}
Willy Tarreau5b154472009-12-21 20:11:07 +01002148
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002149/* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the
2150 * value is larger than 1000, it is bound to 1000. The parser consumes up to
2151 * 1 digit, one dot and 3 digits and stops on the first invalid character.
2152 * Unparsable qvalues return 1000 as "q=1.000".
2153 */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002154int parse_qvalue(const char *qvalue, const char **end)
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002155{
2156 int q = 1000;
2157
2158 if (!isdigit(*qvalue))
2159 goto out;
2160 q = (*qvalue++ - '0') * 1000;
2161
2162 if (*qvalue++ != '.')
2163 goto out;
2164
2165 if (!isdigit(*qvalue))
2166 goto out;
2167 q += (*qvalue++ - '0') * 100;
2168
2169 if (!isdigit(*qvalue))
2170 goto out;
2171 q += (*qvalue++ - '0') * 10;
2172
2173 if (!isdigit(*qvalue))
2174 goto out;
2175 q += (*qvalue++ - '0') * 1;
2176 out:
2177 if (q > 1000)
2178 q = 1000;
Thierry FOURNIERad903512014-04-11 17:51:01 +02002179 if (*end)
2180 *end = qvalue;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002181 return q;
2182}
William Lallemand82fe75c2012-10-23 10:25:10 +02002183
2184/*
2185 * Selects a compression algorithm depending on the client request.
Willy Tarreau05d84602012-10-26 02:11:25 +02002186 */
William Lallemand82fe75c2012-10-23 10:25:10 +02002187int select_compression_request_header(struct session *s, struct buffer *req)
2188{
2189 struct http_txn *txn = &s->txn;
Willy Tarreau70737d12012-10-27 00:34:28 +02002190 struct http_msg *msg = &txn->req;
William Lallemand82fe75c2012-10-23 10:25:10 +02002191 struct hdr_ctx ctx;
2192 struct comp_algo *comp_algo = NULL;
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002193 struct comp_algo *comp_algo_back = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002194
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002195 /* Disable compression for older user agents announcing themselves as "Mozilla/4"
2196 * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later).
Willy Tarreau05d84602012-10-26 02:11:25 +02002197 * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details.
2198 */
2199 ctx.idx = 0;
2200 if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) &&
2201 ctx.vlen >= 9 &&
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002202 memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 &&
2203 (ctx.vlen < 31 ||
2204 memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 ||
2205 ctx.line[ctx.val + 30] < '6' ||
2206 (ctx.line[ctx.val + 30] == '6' &&
2207 (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) {
2208 s->comp_algo = NULL;
2209 return 0;
Willy Tarreau05d84602012-10-26 02:11:25 +02002210 }
2211
William Lallemand82fe75c2012-10-23 10:25:10 +02002212 /* search for the algo in the backend in priority or the frontend */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002213 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002214 int best_q = 0;
2215
William Lallemand82fe75c2012-10-23 10:25:10 +02002216 ctx.idx = 0;
2217 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002218 const char *qval;
2219 int q;
2220 int toklen;
2221
2222 /* try to isolate the token from the optional q-value */
2223 toklen = 0;
2224 while (toklen < ctx.vlen && http_is_token[(unsigned char)*(ctx.line + ctx.val + toklen)])
2225 toklen++;
2226
2227 qval = ctx.line + ctx.val + toklen;
2228 while (1) {
2229 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2230 qval++;
2231
2232 if (qval >= ctx.line + ctx.val + ctx.vlen || *qval != ';') {
2233 qval = NULL;
2234 break;
2235 }
2236 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002237
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002238 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2239 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002240
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002241 if (qval >= ctx.line + ctx.val + ctx.vlen) {
2242 qval = NULL;
2243 break;
William Lallemand82fe75c2012-10-23 10:25:10 +02002244 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002245 if (strncmp(qval, "q=", MIN(ctx.line + ctx.val + ctx.vlen - qval, 2)) == 0)
2246 break;
2247
2248 while (qval < ctx.line + ctx.val + ctx.vlen && *qval != ';')
2249 qval++;
2250 }
2251
2252 /* here we have qval pointing to the first "q=" attribute or NULL if not found */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002253 q = qval ? parse_qvalue(qval + 2, NULL) : 1000;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002254
2255 if (q <= best_q)
2256 continue;
2257
2258 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
2259 if (*(ctx.line + ctx.val) == '*' ||
2260 word_match(ctx.line + ctx.val, toklen, comp_algo->name, comp_algo->name_len)) {
2261 s->comp_algo = comp_algo;
2262 best_q = q;
2263 break;
2264 }
2265 }
2266 }
2267 }
2268
2269 /* remove all occurrences of the header when "compression offload" is set */
2270 if (s->comp_algo) {
2271 if ((s->be->comp && s->be->comp->offload) || (s->fe->comp && s->fe->comp->offload)) {
2272 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2273 ctx.idx = 0;
2274 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
2275 http_remove_header2(msg, &txn->hdr_idx, &ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +02002276 }
2277 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002278 return 1;
William Lallemand82fe75c2012-10-23 10:25:10 +02002279 }
2280
2281 /* identity is implicit does not require headers */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002282 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
2283 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002284 if (comp_algo->add_data == identity_add_data) {
2285 s->comp_algo = comp_algo;
2286 return 1;
2287 }
2288 }
2289 }
2290
2291 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002292 return 0;
2293}
2294
2295/*
2296 * Selects a comression algorithm depending of the server response.
2297 */
2298int select_compression_response_header(struct session *s, struct buffer *res)
2299{
2300 struct http_txn *txn = &s->txn;
2301 struct http_msg *msg = &txn->rsp;
2302 struct hdr_ctx ctx;
2303 struct comp_type *comp_type;
William Lallemand82fe75c2012-10-23 10:25:10 +02002304
2305 /* no common compression algorithm was found in request header */
2306 if (s->comp_algo == NULL)
2307 goto fail;
2308
2309 /* HTTP < 1.1 should not be compressed */
Willy Tarreau72575502013-12-24 14:41:35 +01002310 if (!(msg->flags & HTTP_MSGF_VER_11) || !(txn->req.flags & HTTP_MSGF_VER_11))
William Lallemand82fe75c2012-10-23 10:25:10 +02002311 goto fail;
2312
William Lallemandd3002612012-11-26 14:34:47 +01002313 /* 200 only */
2314 if (txn->status != 200)
2315 goto fail;
2316
William Lallemand82fe75c2012-10-23 10:25:10 +02002317 /* Content-Length is null */
2318 if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0)
2319 goto fail;
2320
Willy Tarreau667c2a32013-04-09 08:13:58 +02002321 /* TEMPORARY WORKAROUND: do not compress if response is chunked !!!!!! */
2322 if (msg->flags & HTTP_MSGF_TE_CHNK)
2323 goto fail;
2324
William Lallemand82fe75c2012-10-23 10:25:10 +02002325 /* content is already compressed */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002326 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002327 if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx))
2328 goto fail;
2329
Willy Tarreau56e9ffa2013-01-05 16:20:35 +01002330 /* no compression when Cache-Control: no-transform is present in the message */
2331 ctx.idx = 0;
2332 while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) {
2333 if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12))
2334 goto fail;
2335 }
2336
William Lallemand82fe75c2012-10-23 10:25:10 +02002337 comp_type = NULL;
2338
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002339 /* we don't want to compress multipart content-types, nor content-types that are
2340 * not listed in the "compression type" directive if any. If no content-type was
2341 * found but configuration requires one, we don't compress either. Backend has
2342 * the priority.
William Lallemand82fe75c2012-10-23 10:25:10 +02002343 */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002344 ctx.idx = 0;
2345 if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) {
2346 if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0)
2347 goto fail;
2348
2349 if ((s->be->comp && (comp_type = s->be->comp->types)) ||
2350 (s->fe->comp && (comp_type = s->fe->comp->types))) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002351 for (; comp_type; comp_type = comp_type->next) {
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002352 if (ctx.vlen >= comp_type->name_len &&
2353 strncasecmp(ctx.line+ctx.val, comp_type->name, comp_type->name_len) == 0)
William Lallemand82fe75c2012-10-23 10:25:10 +02002354 /* this Content-Type should be compressed */
2355 break;
2356 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002357 /* this Content-Type should not be compressed */
2358 if (comp_type == NULL)
2359 goto fail;
William Lallemand82fe75c2012-10-23 10:25:10 +02002360 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002361 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002362 else { /* no content-type header */
2363 if ((s->be->comp && s->be->comp->types) || (s->fe->comp && s->fe->comp->types))
2364 goto fail; /* a content-type was required */
William Lallemandd3002612012-11-26 14:34:47 +01002365 }
2366
William Lallemandd85f9172012-11-09 17:05:39 +01002367 /* limit compression rate */
2368 if (global.comp_rate_lim > 0)
2369 if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim)
2370 goto fail;
2371
William Lallemand072a2bf2012-11-20 17:01:01 +01002372 /* limit cpu usage */
2373 if (idle_pct < compress_min_idle)
2374 goto fail;
2375
William Lallemand4c49fae2012-11-07 15:00:23 +01002376 /* initialize compression */
William Lallemandf3747832012-11-09 12:33:10 +01002377 if (s->comp_algo->init(&s->comp_ctx, global.tune.comp_maxlevel) < 0)
William Lallemand4c49fae2012-11-07 15:00:23 +01002378 goto fail;
2379
William Lallemandec3e3892012-11-12 17:02:18 +01002380 s->flags |= SN_COMP_READY;
2381
William Lallemand82fe75c2012-10-23 10:25:10 +02002382 /* remove Content-Length header */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002383 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002384 if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx))
2385 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2386
2387 /* add Transfer-Encoding header */
2388 if (!(msg->flags & HTTP_MSGF_TE_CHNK))
2389 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26);
2390
2391 /*
2392 * Add Content-Encoding header when it's not identity encoding.
2393 * RFC 2616 : Identity encoding: This content-coding is used only in the
2394 * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding
2395 * header.
2396 */
2397 if (s->comp_algo->add_data != identity_add_data) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002398 trash.len = 18;
2399 memcpy(trash.str, "Content-Encoding: ", trash.len);
2400 memcpy(trash.str + trash.len, s->comp_algo->name, s->comp_algo->name_len);
2401 trash.len += s->comp_algo->name_len;
2402 trash.str[trash.len] = '\0';
2403 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
William Lallemand82fe75c2012-10-23 10:25:10 +02002404 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002405 return 1;
2406
2407fail:
Willy Tarreaub97b6192012-11-19 14:55:02 +01002408 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002409 return 0;
2410}
2411
2412
Willy Tarreaud787e662009-07-07 10:14:51 +02002413/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2414 * processing can continue on next analysers, or zero if it either needs more
2415 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2416 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2417 * when it has nothing left to do, and may remove any analyser when it wants to
2418 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002419 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02002420int http_wait_for_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002421{
Willy Tarreau59234e92008-11-30 23:51:27 +01002422 /*
2423 * We will parse the partial (or complete) lines.
2424 * We will check the request syntax, and also join multi-line
2425 * headers. An index of all the lines will be elaborated while
2426 * parsing.
2427 *
2428 * For the parsing, we use a 28 states FSM.
2429 *
2430 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02002431 * req->buf->p = beginning of request
2432 * req->buf->p + msg->eoh = end of processed headers / start of current one
2433 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02002434 * msg->eol = end of current header or line (LF or CRLF)
2435 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02002436 *
2437 * At end of parsing, we may perform a capture of the error (if any), and
2438 * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE).
2439 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2440 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002441 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002442
Willy Tarreau59234e92008-11-30 23:51:27 +01002443 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002444 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002445 struct http_txn *txn = &s->txn;
2446 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002447 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002448
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002449 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +01002450 now_ms, __FUNCTION__,
2451 s,
2452 req,
2453 req->rex, req->wex,
2454 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002455 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01002456 req->analysers);
2457
Willy Tarreau52a0c602009-08-16 22:45:38 +02002458 /* we're speaking HTTP here, so let's speak HTTP to the client */
2459 s->srv_error = http_return_srv_error;
2460
Willy Tarreau83e3af02009-12-28 17:39:57 +01002461 /* There's a protected area at the end of the buffer for rewriting
2462 * purposes. We don't want to start to parse the request if the
2463 * protected area is affected, because we may have to move processed
2464 * data later, which is much more complicated.
2465 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002466 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +02002467 if (txn->flags & TX_NOT_FIRST) {
2468 if (unlikely(!channel_reserved(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002469 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002470 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002471 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002472 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002473 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002474 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002475 return 0;
2476 }
Willy Tarreau379357a2013-06-08 12:55:46 +02002477 if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2478 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite))
2479 buffer_slow_realign(req->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002480 }
2481
Willy Tarreau065e8332010-01-08 00:30:20 +01002482 /* Note that we have the same problem with the response ; we
2483 * may want to send a redirect, error or anything which requires
2484 * some spare space. So we'll ensure that we have at least
2485 * maxrewrite bytes available in the response buffer before
2486 * processing that one. This will only affect pipelined
2487 * keep-alive requests.
2488 */
2489 if ((txn->flags & TX_NOT_FIRST) &&
Willy Tarreau379357a2013-06-08 12:55:46 +02002490 unlikely(!channel_reserved(s->rep) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02002491 bi_end(s->rep->buf) < b_ptr(s->rep->buf, txn->rsp.next) ||
2492 bi_end(s->rep->buf) > s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)) {
2493 if (s->rep->buf->o) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002494 if (s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002495 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002496 /* don't let a connection request be initiated */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002497 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002498 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002499 s->rep->flags |= CF_WAKE_WRITE;
Willy Tarreau0499e352010-12-17 07:13:42 +01002500 s->rep->analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002501 return 0;
2502 }
2503 }
2504
Willy Tarreau9b28e032012-10-12 23:49:43 +02002505 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01002506 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002507 }
2508
Willy Tarreau59234e92008-11-30 23:51:27 +01002509 /* 1: we might have to print this header in debug mode */
2510 if (unlikely((global.mode & MODE_DEBUG) &&
2511 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01002512 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002513 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002514
Willy Tarreau9b28e032012-10-12 23:49:43 +02002515 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02002516 /* this is a bit complex : in case of error on the request line,
2517 * we know that rq.l is still zero, so we display only the part
2518 * up to the end of the line (truncated by debug_hdr).
2519 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002520 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01002521 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002522
Willy Tarreau59234e92008-11-30 23:51:27 +01002523 sol += hdr_idx_first_pos(&txn->hdr_idx);
2524 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002525
Willy Tarreau59234e92008-11-30 23:51:27 +01002526 while (cur_idx) {
2527 eol = sol + txn->hdr_idx.v[cur_idx].len;
2528 debug_hdr("clihdr", s, sol, eol);
2529 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2530 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002531 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002532 }
2533
Willy Tarreau58f10d72006-12-04 02:26:12 +01002534
Willy Tarreau59234e92008-11-30 23:51:27 +01002535 /*
2536 * Now we quickly check if we have found a full valid request.
2537 * If not so, we check the FD and buffer states before leaving.
2538 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002539 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002540 * requests are checked first. When waiting for a second request
2541 * on a keep-alive session, if we encounter and error, close, t/o,
2542 * we note the error in the session flags but don't set any state.
2543 * Since the error will be noted there, it will not be counted by
2544 * process_session() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002545 * Last, we may increase some tracked counters' http request errors on
2546 * the cases that are deliberately the client's fault. For instance,
2547 * a timeout or connection reset is not counted as an error. However
2548 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002549 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002550
Willy Tarreau655dce92009-11-08 13:10:58 +01002551 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002552 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002553 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002554 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002555 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02002556 session_inc_http_req_ctr(s);
2557 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002558 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002559 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002560 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002561
Willy Tarreau59234e92008-11-30 23:51:27 +01002562 /* 1: Since we are in header mode, if there's no space
2563 * left for headers, we won't be able to free more
2564 * later, so the session will never terminate. We
2565 * must terminate it now.
2566 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002567 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002568 /* FIXME: check if URI is set and return Status
2569 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002570 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002571 session_inc_http_req_ctr(s);
2572 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002573 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002574 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02002575 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01002576 goto return_bad_req;
2577 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002578
Willy Tarreau59234e92008-11-30 23:51:27 +01002579 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002580 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002581 if (!(s->flags & SN_ERR_MASK))
2582 s->flags |= SN_ERR_CLICL;
2583
Willy Tarreaufcffa692010-01-10 14:21:19 +01002584 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002585 goto failed_keep_alive;
2586
Willy Tarreau59234e92008-11-30 23:51:27 +01002587 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002588 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002589 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002590 session_inc_http_err_ctr(s);
2591 }
2592
Willy Tarreaudc979f22012-12-04 10:39:01 +01002593 txn->status = 400;
2594 stream_int_retnclose(req->prod, NULL);
Willy Tarreau59234e92008-11-30 23:51:27 +01002595 msg->msg_state = HTTP_MSG_ERROR;
2596 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002597
Willy Tarreauda7ff642010-06-23 11:44:09 +02002598 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002599 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002600 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002601 if (s->listener->counters)
2602 s->listener->counters->failed_req++;
2603
Willy Tarreau59234e92008-11-30 23:51:27 +01002604 if (!(s->flags & SN_FINST_MASK))
2605 s->flags |= SN_FINST_R;
2606 return 0;
2607 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002608
Willy Tarreau59234e92008-11-30 23:51:27 +01002609 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002610 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002611 if (!(s->flags & SN_ERR_MASK))
2612 s->flags |= SN_ERR_CLITO;
2613
Willy Tarreaufcffa692010-01-10 14:21:19 +01002614 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002615 goto failed_keep_alive;
2616
Willy Tarreau59234e92008-11-30 23:51:27 +01002617 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002618 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002619 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002620 session_inc_http_err_ctr(s);
2621 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002622 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02002623 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau59234e92008-11-30 23:51:27 +01002624 msg->msg_state = HTTP_MSG_ERROR;
2625 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002626
Willy Tarreauda7ff642010-06-23 11:44:09 +02002627 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002628 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002629 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002630 if (s->listener->counters)
2631 s->listener->counters->failed_req++;
2632
Willy Tarreau59234e92008-11-30 23:51:27 +01002633 if (!(s->flags & SN_FINST_MASK))
2634 s->flags |= SN_FINST_R;
2635 return 0;
2636 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002637
Willy Tarreau59234e92008-11-30 23:51:27 +01002638 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002639 else if (req->flags & CF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002640 if (!(s->flags & SN_ERR_MASK))
2641 s->flags |= SN_ERR_CLICL;
2642
Willy Tarreaufcffa692010-01-10 14:21:19 +01002643 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002644 goto failed_keep_alive;
2645
Willy Tarreau4076a152009-04-02 15:18:36 +02002646 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002647 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002648 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02002649 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau59234e92008-11-30 23:51:27 +01002650 msg->msg_state = HTTP_MSG_ERROR;
2651 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002652
Willy Tarreauda7ff642010-06-23 11:44:09 +02002653 session_inc_http_err_ctr(s);
2654 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002655 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002656 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002657 if (s->listener->counters)
2658 s->listener->counters->failed_req++;
2659
Willy Tarreau59234e92008-11-30 23:51:27 +01002660 if (!(s->flags & SN_FINST_MASK))
2661 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002662 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002663 }
2664
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002665 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002666 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2667 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01002668#ifdef TCP_QUICKACK
Willy Tarreau3c728722014-01-23 13:50:42 +01002669 if (s->listener->options & LI_O_NOQUICKACK && req->buf->i && objt_conn(s->req->prod->end) && conn_ctrl_ready(__objt_conn(s->req->prod->end))) {
Willy Tarreau5e205522011-12-17 16:34:27 +01002670 /* We need more data, we have to re-enable quick-ack in case we
2671 * previously disabled it, otherwise we might cause the client
2672 * to delay next data.
2673 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002674 setsockopt(__objt_conn(s->req->prod->end)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01002675 }
2676#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002677
Willy Tarreaufcffa692010-01-10 14:21:19 +01002678 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2679 /* If the client starts to talk, let's fall back to
2680 * request timeout processing.
2681 */
2682 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002683 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002684 }
2685
Willy Tarreau59234e92008-11-30 23:51:27 +01002686 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002687 if (!tick_isset(req->analyse_exp)) {
2688 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2689 (txn->flags & TX_WAIT_NEXT_RQ) &&
2690 tick_isset(s->be->timeout.httpka))
2691 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2692 else
2693 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2694 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002695
Willy Tarreau59234e92008-11-30 23:51:27 +01002696 /* we're not ready yet */
2697 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002698
2699 failed_keep_alive:
2700 /* Here we process low-level errors for keep-alive requests. In
2701 * short, if the request is not the first one and it experiences
2702 * a timeout, read error or shutdown, we just silently close so
2703 * that the client can try again.
2704 */
2705 txn->status = 0;
2706 msg->msg_state = HTTP_MSG_RQBEFORE;
2707 req->analysers = 0;
2708 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +02002709 s->logs.level = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002710 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002711 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002712 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002713 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002714
Willy Tarreaud787e662009-07-07 10:14:51 +02002715 /* OK now we have a complete HTTP request with indexed headers. Let's
2716 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02002717 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01002718 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01002719 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002720 * byte after the last LF. msg->sov points to the first byte of data.
2721 * msg->eol cannot be trusted because it may have been left uninitialized
2722 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002723 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002724
Willy Tarreauda7ff642010-06-23 11:44:09 +02002725 session_inc_http_req_ctr(s);
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002726 proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */
2727
Willy Tarreaub16a5742010-01-10 14:46:16 +01002728 if (txn->flags & TX_WAIT_NEXT_RQ) {
2729 /* kill the pending keep-alive timeout */
2730 txn->flags &= ~TX_WAIT_NEXT_RQ;
2731 req->analyse_exp = TICK_ETERNITY;
2732 }
2733
2734
Willy Tarreaud787e662009-07-07 10:14:51 +02002735 /* Maybe we found in invalid header name while we were configured not
2736 * to block on that, so we have to capture it now.
2737 */
2738 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002739 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002740
Willy Tarreau59234e92008-11-30 23:51:27 +01002741 /*
2742 * 1: identify the method
2743 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002744 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002745
2746 /* we can make use of server redirect on GET and HEAD */
2747 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2748 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002749
Willy Tarreau59234e92008-11-30 23:51:27 +01002750 /*
2751 * 2: check if the URI matches the monitor_uri.
2752 * We have to do this for every request which gets in, because
2753 * the monitor-uri is defined by the frontend.
2754 */
2755 if (unlikely((s->fe->monitor_uri_len != 0) &&
2756 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002757 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002758 s->fe->monitor_uri,
2759 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002760 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002761 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002762 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002763 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002764
Willy Tarreau59234e92008-11-30 23:51:27 +01002765 s->flags |= SN_MONITOR;
Willy Tarreaueabea072011-09-10 23:29:44 +02002766 s->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002767
Willy Tarreau59234e92008-11-30 23:51:27 +01002768 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002769 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002770 int ret = acl_exec_cond(cond, s->fe, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02002771
Willy Tarreau59234e92008-11-30 23:51:27 +01002772 ret = acl_pass(ret);
2773 if (cond->pol == ACL_COND_UNLESS)
2774 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002775
Willy Tarreau59234e92008-11-30 23:51:27 +01002776 if (ret) {
2777 /* we fail this request, let's return 503 service unavail */
2778 txn->status = 503;
Willy Tarreau783f2582012-09-04 12:19:04 +02002779 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_503));
Willy Tarreau570f2212013-06-10 16:42:09 +02002780 if (!(s->flags & SN_ERR_MASK))
2781 s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002782 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002783 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002784 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002785
Willy Tarreau59234e92008-11-30 23:51:27 +01002786 /* nothing to fail, let's reply normaly */
2787 txn->status = 200;
Willy Tarreau783f2582012-09-04 12:19:04 +02002788 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_200));
Willy Tarreau570f2212013-06-10 16:42:09 +02002789 if (!(s->flags & SN_ERR_MASK))
2790 s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002791 goto return_prx_cond;
2792 }
2793
2794 /*
2795 * 3: Maybe we have to copy the original REQURI for the logs ?
2796 * Note: we cannot log anymore if the request has been
2797 * classified as invalid.
2798 */
2799 if (unlikely(s->logs.logwait & LW_REQ)) {
2800 /* we have a complete HTTP request that we must log */
2801 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2802 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002803
Willy Tarreau59234e92008-11-30 23:51:27 +01002804 if (urilen >= REQURI_LEN)
2805 urilen = REQURI_LEN - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02002806 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01002807 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002808
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002809 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01002810 s->do_log(s);
2811 } else {
2812 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002813 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002814 }
Willy Tarreau06619262006-12-17 08:37:22 +01002815
Willy Tarreau59234e92008-11-30 23:51:27 +01002816 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01002817 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002818 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002819
Willy Tarreau5b154472009-12-21 20:11:07 +01002820 /* ... and check if the request is HTTP/1.1 or above */
2821 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002822 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
2823 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
2824 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002825 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01002826
2827 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01002828 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 +01002829
Willy Tarreau88d349d2010-01-25 12:15:43 +01002830 /* if the frontend has "option http-use-proxy-header", we'll check if
2831 * we have what looks like a proxied connection instead of a connection,
2832 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2833 * Note that this is *not* RFC-compliant, however browsers and proxies
2834 * happen to do that despite being non-standard :-(
2835 * We consider that a request not beginning with either '/' or '*' is
2836 * a proxied connection, which covers both "scheme://location" and
2837 * CONNECT ip:port.
2838 */
2839 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002840 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01002841 txn->flags |= TX_USE_PX_CONN;
2842
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002843 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002844 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002845
Willy Tarreau59234e92008-11-30 23:51:27 +01002846 /* 5: we may need to capture headers */
Willy Tarreau42f7d892012-03-24 08:28:09 +01002847 if (unlikely((s->logs.logwait & LW_REQHDR) && txn->req.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02002848 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002849 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002850
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002851 /* 6: determine the transfer-length.
2852 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2853 * the presence of a message-body in a REQUEST and its transfer length
2854 * must be determined that way (in order of precedence) :
2855 * 1. The presence of a message-body in a request is signaled by the
2856 * inclusion of a Content-Length or Transfer-Encoding header field
2857 * in the request's header fields. When a request message contains
2858 * both a message-body of non-zero length and a method that does
2859 * not define any semantics for that request message-body, then an
2860 * origin server SHOULD either ignore the message-body or respond
2861 * with an appropriate error message (e.g., 413). A proxy or
2862 * gateway, when presented the same request, SHOULD either forward
2863 * the request inbound with the message- body or ignore the
2864 * message-body when determining a response.
2865 *
2866 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2867 * and the "chunked" transfer-coding (Section 6.2) is used, the
2868 * transfer-length is defined by the use of this transfer-coding.
2869 * If a Transfer-Encoding header field is present and the "chunked"
2870 * transfer-coding is not present, the transfer-length is defined
2871 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002872 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002873 * 3. If a Content-Length header field is present, its decimal value in
2874 * OCTETs represents both the entity-length and the transfer-length.
2875 * If a message is received with both a Transfer-Encoding header
2876 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002877 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002878 * 4. By the server closing the connection. (Closing the connection
2879 * cannot be used to indicate the end of a request body, since that
2880 * would leave no possibility for the server to send back a response.)
2881 *
2882 * Whenever a transfer-coding is applied to a message-body, the set of
2883 * transfer-codings MUST include "chunked", unless the message indicates
2884 * it is terminated by closing the connection. When the "chunked"
2885 * transfer-coding is used, it MUST be the last transfer-coding applied
2886 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002887 */
2888
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002889 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002890 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002891 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002892 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002893 http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002894 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002895 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
2896 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002897 /* bad transfer-encoding (chunked followed by something else) */
2898 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002899 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002900 break;
2901 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002902 }
2903
Willy Tarreau32b47f42009-10-18 20:55:02 +02002904 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002905 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002906 http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02002907 signed long long cl;
2908
Willy Tarreauad14f752011-09-02 20:33:27 +02002909 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002910 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002911 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002912 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002913
Willy Tarreauad14f752011-09-02 20:33:27 +02002914 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002915 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002916 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002917 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002918
Willy Tarreauad14f752011-09-02 20:33:27 +02002919 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002920 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002921 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002922 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002923
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002924 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002925 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002926 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002927 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002928
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002929 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002930 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002931 }
2932
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002933 /* bodyless requests have a known length */
2934 if (!use_close_only)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002935 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002936
Willy Tarreaud787e662009-07-07 10:14:51 +02002937 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002938 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002939 req->analyse_exp = TICK_ETERNITY;
2940 return 1;
2941
2942 return_bad_req:
2943 /* We centralize bad requests processing here */
2944 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2945 /* we detected a parsing error. We want to archive this request
2946 * in the dedicated proxy area for later troubleshooting.
2947 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002948 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002949 }
2950
2951 txn->req.msg_state = HTTP_MSG_ERROR;
2952 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02002953 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002954
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002955 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002956 if (s->listener->counters)
2957 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02002958
2959 return_prx_cond:
2960 if (!(s->flags & SN_ERR_MASK))
2961 s->flags |= SN_ERR_PRXCOND;
2962 if (!(s->flags & SN_FINST_MASK))
2963 s->flags |= SN_FINST_R;
2964
2965 req->analysers = 0;
2966 req->analyse_exp = TICK_ETERNITY;
2967 return 0;
2968}
2969
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02002970
Willy Tarreau347a35d2013-11-22 17:51:09 +01002971/* This function prepares an applet to handle the stats. It can deal with the
2972 * "100-continue" expectation, check that admin rules are met for POST requests,
2973 * and program a response message if something was unexpected. It cannot fail
2974 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002975 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002976 * s->target which is supposed to already point to the stats applet. The caller
2977 * is expected to have already assigned an appctx to the session.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002978 */
2979int http_handle_stats(struct session *s, struct channel *req)
2980{
2981 struct stats_admin_rule *stats_admin_rule;
2982 struct stream_interface *si = s->rep->prod;
2983 struct http_txn *txn = &s->txn;
2984 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002985 struct uri_auth *uri_auth = s->be->uri_auth;
2986 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002987 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002988
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002989 appctx = si_appctx(si);
2990 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
2991 appctx->st1 = appctx->st2 = 0;
2992 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
2993 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002994
2995 uri = msg->chn->buf->p + msg->sl.rq.u;
2996 lookup = uri + uri_auth->uri_len;
2997
2998 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
2999 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003000 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003001 break;
3002 }
3003 }
3004
3005 if (uri_auth->refresh) {
3006 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
3007 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003008 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003009 break;
3010 }
3011 }
3012 }
3013
3014 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
3015 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003016 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003017 break;
3018 }
3019 }
3020
3021 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3022 if (memcmp(h, ";st=", 4) == 0) {
3023 int i;
3024 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003025 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003026 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
3027 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003028 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003029 break;
3030 }
3031 }
3032 break;
3033 }
3034 }
3035
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003036 appctx->ctx.stats.scope_str = 0;
3037 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003038 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3039 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
3040 int itx = 0;
3041 const char *h2;
3042 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
3043 const char *err;
3044
3045 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
3046 h2 = h;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003047 appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003048 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
3049 itx++;
3050 h++;
3051 }
3052
3053 if (itx > STAT_SCOPE_TXT_MAXLEN)
3054 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003055 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003056
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003057 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003058 memcpy(scope_txt, h2, itx);
3059 scope_txt[itx] = '\0';
3060 err = invalid_char(scope_txt);
3061 if (err) {
3062 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003063 appctx->ctx.stats.scope_str = 0;
3064 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003065 }
3066 break;
3067 }
3068 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003069
3070 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003071 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003072 int ret = 1;
3073
3074 if (stats_admin_rule->cond) {
3075 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
3076 ret = acl_pass(ret);
3077 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3078 ret = !ret;
3079 }
3080
3081 if (ret) {
3082 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003083 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003084 break;
3085 }
3086 }
3087
3088 /* Was the status page requested with a POST ? */
Willy Tarreau347a35d2013-11-22 17:51:09 +01003089 if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003090 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003091 if (msg->msg_state < HTTP_MSG_100_SENT) {
3092 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3093 * send an HTTP/1.1 100 Continue intermediate response.
3094 */
3095 if (msg->flags & HTTP_MSGF_VER_11) {
3096 struct hdr_ctx ctx;
3097 ctx.idx = 0;
3098 /* Expect is allowed in 1.1, look for it */
3099 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
3100 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3101 bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len);
3102 }
3103 }
3104 msg->msg_state = HTTP_MSG_100_SENT;
3105 s->logs.tv_request = now; /* update the request timer to reflect full request */
3106 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003107 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003108 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003109 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003110 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
3111 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003112 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003113 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003114 else {
3115 /* So it was another method (GET/HEAD) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003116 appctx->st0 = STAT_HTTP_HEAD;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003117 }
3118
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003119 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003120 return 1;
3121}
3122
Lukas Tribus67db8df2013-06-23 17:37:13 +02003123/* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets
3124 * (as per RFC3260 #4 and BCP37 #4.2 and #5.2).
3125 */
3126static inline void inet_set_tos(int fd, struct sockaddr_storage from, int tos)
3127{
3128#ifdef IP_TOS
3129 if (from.ss_family == AF_INET)
3130 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3131#endif
3132#ifdef IPV6_TCLASS
3133 if (from.ss_family == AF_INET6) {
3134 if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&from)->sin6_addr))
3135 /* v4-mapped addresses need IP_TOS */
3136 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3137 else
3138 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos));
3139 }
3140#endif
3141}
3142
Willy Tarreau20b0de52012-12-24 15:45:22 +01003143/* Executes the http-request rules <rules> for session <s>, proxy <px> and
Willy Tarreau96257ec2012-12-27 10:46:37 +01003144 * transaction <txn>. Returns the first rule that prevents further processing
3145 * of the request (auth, deny, ...) or NULL if it executed all rules or stopped
3146 * on an allow. It may set the TX_CLDENY on txn->flags if it encounters a deny
3147 * rule.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003148 */
Willy Tarreau20b0de52012-12-24 15:45:22 +01003149static struct http_req_rule *
Willy Tarreau96257ec2012-12-27 10:46:37 +01003150http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003151{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003152 struct connection *cli_conn;
Willy Tarreauff011f22011-01-06 17:51:27 +01003153 struct http_req_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01003154 struct hdr_ctx ctx;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003155
Willy Tarreauff011f22011-01-06 17:51:27 +01003156 list_for_each_entry(rule, rules, list) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003157 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003158 continue;
3159
Willy Tarreau96257ec2012-12-27 10:46:37 +01003160 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01003161 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01003162 int ret;
3163
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003164 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003165 ret = acl_pass(ret);
3166
Willy Tarreauff011f22011-01-06 17:51:27 +01003167 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003168 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003169
3170 if (!ret) /* condition not matched */
3171 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003172 }
3173
Willy Tarreau20b0de52012-12-24 15:45:22 +01003174
Willy Tarreau96257ec2012-12-27 10:46:37 +01003175 switch (rule->action) {
3176 case HTTP_REQ_ACT_ALLOW:
3177 return NULL; /* "allow" rules are OK */
3178
3179 case HTTP_REQ_ACT_DENY:
3180 txn->flags |= TX_CLDENY;
3181 return rule;
3182
Willy Tarreauccbcc372012-12-27 12:37:57 +01003183 case HTTP_REQ_ACT_TARPIT:
3184 txn->flags |= TX_CLTARPIT;
3185 return rule;
3186
Willy Tarreau96257ec2012-12-27 10:46:37 +01003187 case HTTP_REQ_ACT_AUTH:
3188 return rule;
3189
Willy Tarreau81499eb2012-12-27 12:19:02 +01003190 case HTTP_REQ_ACT_REDIR:
3191 return rule;
3192
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003193 case HTTP_REQ_ACT_SET_NICE:
3194 s->task->nice = rule->arg.nice;
3195 break;
3196
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003197 case HTTP_REQ_ACT_SET_TOS:
Willy Tarreau3c728722014-01-23 13:50:42 +01003198 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003199 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003200 break;
3201
Willy Tarreau51347ed2013-06-11 19:34:13 +02003202 case HTTP_REQ_ACT_SET_MARK:
3203#ifdef SO_MARK
Willy Tarreau3c728722014-01-23 13:50:42 +01003204 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003205 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003206#endif
3207 break;
3208
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003209 case HTTP_REQ_ACT_SET_LOGL:
3210 s->logs.level = rule->arg.loglevel;
3211 break;
3212
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003213 case HTTP_REQ_ACT_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003214 case HTTP_REQ_ACT_SET_HDR:
3215 ctx.idx = 0;
3216 /* remove all occurrences of the header */
3217 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3218 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3219 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01003220 }
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003221 if (rule->action == HTTP_REQ_ACT_DEL_HDR)
3222 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003223 /* now fall through to header addition */
3224
3225 case HTTP_REQ_ACT_ADD_HDR:
3226 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3227 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3228 trash.len = rule->arg.hdr_add.name_len;
3229 trash.str[trash.len++] = ':';
3230 trash.str[trash.len++] = ' ';
3231 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
3232 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len);
3233 break;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003234 }
3235 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003236
3237 /* we reached the end of the rules, nothing to report */
Willy Tarreau418c1a02012-12-25 20:52:58 +01003238 return NULL;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003239}
3240
Willy Tarreau71241ab2012-12-27 11:30:54 +01003241
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003242/* Executes the http-response rules <rules> for session <s>, proxy <px> and
3243 * transaction <txn>. Returns the first rule that prevents further processing
3244 * of the response (deny, ...) or NULL if it executed all rules or stopped
3245 * on an allow. It may set the TX_SVDENY on txn->flags if it encounters a deny
3246 * rule.
3247 */
3248static struct http_res_rule *
3249http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
3250{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003251 struct connection *cli_conn;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003252 struct http_res_rule *rule;
3253 struct hdr_ctx ctx;
3254
3255 list_for_each_entry(rule, rules, list) {
3256 if (rule->action >= HTTP_RES_ACT_MAX)
3257 continue;
3258
3259 /* check optional condition */
3260 if (rule->cond) {
3261 int ret;
3262
3263 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3264 ret = acl_pass(ret);
3265
3266 if (rule->cond->pol == ACL_COND_UNLESS)
3267 ret = !ret;
3268
3269 if (!ret) /* condition not matched */
3270 continue;
3271 }
3272
3273
3274 switch (rule->action) {
3275 case HTTP_RES_ACT_ALLOW:
3276 return NULL; /* "allow" rules are OK */
3277
3278 case HTTP_RES_ACT_DENY:
3279 txn->flags |= TX_SVDENY;
3280 return rule;
3281
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003282 case HTTP_RES_ACT_SET_NICE:
3283 s->task->nice = rule->arg.nice;
3284 break;
3285
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003286 case HTTP_RES_ACT_SET_TOS:
Willy Tarreau3c728722014-01-23 13:50:42 +01003287 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003288 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003289 break;
3290
Willy Tarreau51347ed2013-06-11 19:34:13 +02003291 case HTTP_RES_ACT_SET_MARK:
3292#ifdef SO_MARK
Willy Tarreau3c728722014-01-23 13:50:42 +01003293 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003294 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003295#endif
3296 break;
3297
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003298 case HTTP_RES_ACT_SET_LOGL:
3299 s->logs.level = rule->arg.loglevel;
3300 break;
3301
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003302 case HTTP_RES_ACT_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003303 case HTTP_RES_ACT_SET_HDR:
3304 ctx.idx = 0;
3305 /* remove all occurrences of the header */
3306 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3307 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3308 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3309 }
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003310 if (rule->action == HTTP_RES_ACT_DEL_HDR)
3311 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003312 /* now fall through to header addition */
3313
3314 case HTTP_RES_ACT_ADD_HDR:
3315 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3316 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3317 trash.len = rule->arg.hdr_add.name_len;
3318 trash.str[trash.len++] = ':';
3319 trash.str[trash.len++] = ' ';
3320 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
3321 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
3322 break;
3323 }
3324 }
3325
3326 /* we reached the end of the rules, nothing to report */
3327 return NULL;
3328}
3329
3330
Willy Tarreau71241ab2012-12-27 11:30:54 +01003331/* Perform an HTTP redirect based on the information in <rule>. The function
3332 * returns non-zero on success, or zero in case of a, irrecoverable error such
3333 * as too large a request to build a valid response.
3334 */
3335static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn)
3336{
3337 struct http_msg *msg = &txn->req;
3338 const char *msg_fmt;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003339 const char *location;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003340
3341 /* build redirect message */
3342 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04003343 case 308:
3344 msg_fmt = HTTP_308;
3345 break;
3346 case 307:
3347 msg_fmt = HTTP_307;
3348 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003349 case 303:
3350 msg_fmt = HTTP_303;
3351 break;
3352 case 301:
3353 msg_fmt = HTTP_301;
3354 break;
3355 case 302:
3356 default:
3357 msg_fmt = HTTP_302;
3358 break;
3359 }
3360
3361 if (unlikely(!chunk_strcpy(&trash, msg_fmt)))
3362 return 0;
3363
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003364 location = trash.str + trash.len;
3365
Willy Tarreau71241ab2012-12-27 11:30:54 +01003366 switch(rule->type) {
3367 case REDIRECT_TYPE_SCHEME: {
3368 const char *path;
3369 const char *host;
3370 struct hdr_ctx ctx;
3371 int pathlen;
3372 int hostlen;
3373
3374 host = "";
3375 hostlen = 0;
3376 ctx.idx = 0;
3377 if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) {
3378 host = ctx.line + ctx.val;
3379 hostlen = ctx.vlen;
3380 }
3381
3382 path = http_get_path(txn);
3383 /* build message using path */
3384 if (path) {
3385 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3386 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3387 int qs = 0;
3388 while (qs < pathlen) {
3389 if (path[qs] == '?') {
3390 pathlen = qs;
3391 break;
3392 }
3393 qs++;
3394 }
3395 }
3396 } else {
3397 path = "/";
3398 pathlen = 1;
3399 }
3400
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003401 if (rule->rdr_str) { /* this is an old "redirect" rule */
3402 /* check if we can add scheme + "://" + host + path */
3403 if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4)
3404 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003405
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003406 /* add scheme */
3407 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3408 trash.len += rule->rdr_len;
3409 }
3410 else {
3411 /* add scheme with executing log format */
3412 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003413
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003414 /* check if we can add scheme + "://" + host + path */
3415 if (trash.len + 3 + hostlen + pathlen > trash.size - 4)
3416 return 0;
3417 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003418 /* add "://" */
3419 memcpy(trash.str + trash.len, "://", 3);
3420 trash.len += 3;
3421
3422 /* add host */
3423 memcpy(trash.str + trash.len, host, hostlen);
3424 trash.len += hostlen;
3425
3426 /* add path */
3427 memcpy(trash.str + trash.len, path, pathlen);
3428 trash.len += pathlen;
3429
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003430 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003431 if (trash.len && trash.str[trash.len - 1] != '/' &&
3432 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3433 if (trash.len > trash.size - 5)
3434 return 0;
3435 trash.str[trash.len] = '/';
3436 trash.len++;
3437 }
3438
3439 break;
3440 }
3441 case REDIRECT_TYPE_PREFIX: {
3442 const char *path;
3443 int pathlen;
3444
3445 path = http_get_path(txn);
3446 /* build message using path */
3447 if (path) {
3448 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3449 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3450 int qs = 0;
3451 while (qs < pathlen) {
3452 if (path[qs] == '?') {
3453 pathlen = qs;
3454 break;
3455 }
3456 qs++;
3457 }
3458 }
3459 } else {
3460 path = "/";
3461 pathlen = 1;
3462 }
3463
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003464 if (rule->rdr_str) { /* this is an old "redirect" rule */
3465 if (trash.len + rule->rdr_len + pathlen > trash.size - 4)
3466 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003467
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003468 /* add prefix. Note that if prefix == "/", we don't want to
3469 * add anything, otherwise it makes it hard for the user to
3470 * configure a self-redirection.
3471 */
3472 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
3473 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3474 trash.len += rule->rdr_len;
3475 }
3476 }
3477 else {
3478 /* add prefix with executing log format */
3479 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
3480
3481 /* Check length */
3482 if (trash.len + pathlen > trash.size - 4)
3483 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003484 }
3485
3486 /* add path */
3487 memcpy(trash.str + trash.len, path, pathlen);
3488 trash.len += pathlen;
3489
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003490 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003491 if (trash.len && trash.str[trash.len - 1] != '/' &&
3492 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3493 if (trash.len > trash.size - 5)
3494 return 0;
3495 trash.str[trash.len] = '/';
3496 trash.len++;
3497 }
3498
3499 break;
3500 }
3501 case REDIRECT_TYPE_LOCATION:
3502 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003503 if (rule->rdr_str) { /* this is an old "redirect" rule */
3504 if (trash.len + rule->rdr_len > trash.size - 4)
3505 return 0;
3506
3507 /* add location */
3508 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3509 trash.len += rule->rdr_len;
3510 }
3511 else {
3512 /* add location with executing log format */
3513 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003514
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003515 /* Check left length */
3516 if (trash.len > trash.size - 4)
3517 return 0;
3518 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003519 break;
3520 }
3521
3522 if (rule->cookie_len) {
3523 memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14);
3524 trash.len += 14;
3525 memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len);
3526 trash.len += rule->cookie_len;
3527 memcpy(trash.str + trash.len, "\r\n", 2);
3528 trash.len += 2;
3529 }
3530
3531 /* add end of headers and the keep-alive/close status.
3532 * We may choose to set keep-alive if the Location begins
3533 * with a slash, because the client will come back to the
3534 * same server.
3535 */
3536 txn->status = rule->code;
3537 /* let's log the request time */
3538 s->logs.tv_request = now;
3539
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003540 if (*location == '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01003541 (msg->flags & HTTP_MSGF_XFER_LEN) &&
3542 !(msg->flags & HTTP_MSGF_TE_CHNK) && !txn->req.body_len &&
3543 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3544 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3545 /* keep-alive possible */
3546 if (!(msg->flags & HTTP_MSGF_VER_11)) {
3547 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3548 memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30);
3549 trash.len += 30;
3550 } else {
3551 memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24);
3552 trash.len += 24;
3553 }
3554 }
3555 memcpy(trash.str + trash.len, "\r\n\r\n", 4);
3556 trash.len += 4;
3557 bo_inject(txn->rsp.chn, trash.str, trash.len);
3558 /* "eat" the request */
3559 bi_fast_delete(txn->req.chn->buf, msg->sov);
3560 msg->sov = 0;
3561 txn->req.chn->analysers = AN_REQ_HTTP_XFER_BODY;
3562 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3563 txn->req.msg_state = HTTP_MSG_CLOSED;
3564 txn->rsp.msg_state = HTTP_MSG_DONE;
3565 } else {
3566 /* keep-alive not possible */
3567 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3568 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3569 trash.len += 29;
3570 } else {
3571 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
3572 trash.len += 23;
3573 }
3574 stream_int_retnclose(txn->req.chn->prod, &trash);
3575 txn->req.chn->analysers = 0;
3576 }
3577
3578 if (!(s->flags & SN_ERR_MASK))
Willy Tarreau570f2212013-06-10 16:42:09 +02003579 s->flags |= SN_ERR_LOCAL;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003580 if (!(s->flags & SN_FINST_MASK))
3581 s->flags |= SN_FINST_R;
3582
3583 return 1;
3584}
3585
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003586/* This stream analyser runs all HTTP request processing which is common to
3587 * frontends and backends, which means blocking ACLs, filters, connection-close,
3588 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003589 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003590 * either needs more data or wants to immediately abort the request (eg: deny,
3591 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003592 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003593int http_process_req_common(struct session *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003594{
Willy Tarreaud787e662009-07-07 10:14:51 +02003595 struct http_txn *txn = &s->txn;
3596 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003597 struct acl_cond *cond;
Willy Tarreauff011f22011-01-06 17:51:27 +01003598 struct http_req_rule *http_req_last_rule = NULL;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003599 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003600 struct cond_wordlist *wl;
Willy Tarreaud787e662009-07-07 10:14:51 +02003601
Willy Tarreau655dce92009-11-08 13:10:58 +01003602 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003603 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003604 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003605 return 0;
3606 }
3607
Willy Tarreau3a816292009-07-07 10:55:49 +02003608 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003609 req->analyse_exp = TICK_ETERNITY;
3610
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003611 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02003612 now_ms, __FUNCTION__,
3613 s,
3614 req,
3615 req->rex, req->wex,
3616 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003617 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02003618 req->analysers);
3619
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003620 /* first check whether we have some ACLs set to block this request */
3621 list_for_each_entry(cond, &px->block_cond, list) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003622 int ret = acl_exec_cond(cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02003623
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003624 ret = acl_pass(ret);
3625 if (cond->pol == ACL_COND_UNLESS)
3626 ret = !ret;
Willy Tarreau53b6c742006-12-17 13:37:46 +01003627
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003628 if (ret) {
3629 txn->status = 403;
3630 /* let's log the request time */
3631 s->logs.tv_request = now;
Willy Tarreau783f2582012-09-04 12:19:04 +02003632 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003633 session_inc_http_err_ctr(s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003634 goto return_prx_cond;
Willy Tarreau59234e92008-11-30 23:51:27 +01003635 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003636 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003637
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01003638 /* just in case we have some per-backend tracking */
3639 session_inc_be_http_req_ctr(s);
3640
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003641 /* evaluate http-request rules */
Willy Tarreau96257ec2012-12-27 10:46:37 +01003642 http_req_last_rule = http_req_get_intercept_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01003643
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003644 /* evaluate stats http-request rules only if http-request is OK */
Willy Tarreauff011f22011-01-06 17:51:27 +01003645 if (!http_req_last_rule) {
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003646 if (stats_check_uri(s->rep->prod, txn, px)) {
3647 s->target = &http_stats_applet.obj_type;
Willy Tarreau1fbe1c92013-12-01 09:35:41 +01003648 if (unlikely(!stream_int_register_handler(s->rep->prod, objt_applet(s->target)))) {
3649 txn->status = 500;
3650 s->logs.tv_request = now;
3651 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003652
Willy Tarreau1fbe1c92013-12-01 09:35:41 +01003653 if (!(s->flags & SN_ERR_MASK))
3654 s->flags |= SN_ERR_RESOURCE;
3655 goto return_prx_cond;
3656 }
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003657 /* parse the whole stats request and extract the relevant information */
3658 http_handle_stats(s, req);
Willy Tarreau96257ec2012-12-27 10:46:37 +01003659 http_req_last_rule = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, txn);
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003660 }
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003661 }
3662
Willy Tarreau3b44e722013-11-16 10:28:23 +01003663 /* only apply req{,i}{rep/deny/tarpit} if the request was not yet
3664 * blocked by an http-request rule.
3665 */
3666 if (!(txn->flags & (TX_CLDENY|TX_CLTARPIT)) && (px->req_exp != NULL)) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003667 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003668 goto return_bad_req;
Willy Tarreau3b44e722013-11-16 10:28:23 +01003669 }
Willy Tarreau06619262006-12-17 08:37:22 +01003670
Willy Tarreau3b44e722013-11-16 10:28:23 +01003671 /* return a 403 if either rule has blocked */
3672 if (txn->flags & (TX_CLDENY|TX_CLTARPIT)) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003673 if (txn->flags & TX_CLDENY) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003674 txn->status = 403;
Willy Tarreau59234e92008-11-30 23:51:27 +01003675 s->logs.tv_request = now;
Willy Tarreau783f2582012-09-04 12:19:04 +02003676 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003677 session_inc_http_err_ctr(s);
Willy Tarreau687ba132013-11-16 10:13:35 +01003678 s->fe->fe_counters.denied_req++;
3679 if (s->fe != s->be)
3680 s->be->be_counters.denied_req++;
3681 if (s->listener->counters)
3682 s->listener->counters->denied_req++;
Willy Tarreau59234e92008-11-30 23:51:27 +01003683 goto return_prx_cond;
3684 }
Willy Tarreauc465fd72009-08-31 00:17:18 +02003685
3686 /* When a connection is tarpitted, we use the tarpit timeout,
3687 * which may be the same as the connect timeout if unspecified.
3688 * If unset, then set it to zero because we really want it to
3689 * eventually expire. We build the tarpit as an analyser.
3690 */
3691 if (txn->flags & TX_CLTARPIT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003692 channel_erase(s->req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003693 /* wipe the request out so that we can drop the connection early
3694 * if the client closes first.
3695 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003696 channel_dont_connect(req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003697 req->analysers = 0; /* remove switching rules etc... */
3698 req->analysers |= AN_REQ_HTTP_TARPIT;
3699 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3700 if (!req->analyse_exp)
3701 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003702 session_inc_http_err_ctr(s);
Willy Tarreau687ba132013-11-16 10:13:35 +01003703 s->fe->fe_counters.denied_req++;
3704 if (s->fe != s->be)
3705 s->be->be_counters.denied_req++;
3706 if (s->listener->counters)
3707 s->listener->counters->denied_req++;
Willy Tarreauc465fd72009-08-31 00:17:18 +02003708 return 1;
3709 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003710 }
Willy Tarreau06619262006-12-17 08:37:22 +01003711
Willy Tarreau70dffda2014-01-30 03:07:23 +01003712 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
Willy Tarreau5b154472009-12-21 20:11:07 +01003713 * only change if both the request and the config reference something else.
Willy Tarreau70dffda2014-01-30 03:07:23 +01003714 * Option httpclose by itself sets tunnel mode where headers are mangled.
3715 * However, if another mode is set, it will affect it (eg: server-close/
3716 * keep-alive + httpclose = close). Note that we avoid to redo the same work
3717 * if FE and BE have the same settings (common). The method consists in
3718 * checking if options changed between the two calls (implying that either
3719 * one is non-null, or one of them is non-null and we are there for the first
3720 * time.
Willy Tarreau42736642009-10-18 21:04:35 +02003721 */
Willy Tarreau5b154472009-12-21 20:11:07 +01003722
Willy Tarreau416ce612014-01-31 15:45:34 +01003723 if (!(txn->flags & TX_HDR_CONN_PRS) ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01003724 ((s->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE))) {
Willy Tarreau70dffda2014-01-30 03:07:23 +01003725 int tmp = TX_CON_WANT_KAL;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003726
Willy Tarreau70dffda2014-01-30 03:07:23 +01003727 if (!((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) {
3728 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
3729 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
3730 tmp = TX_CON_WANT_TUN;
3731
3732 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
3733 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
3734 tmp = TX_CON_WANT_TUN;
3735 }
Willy Tarreau02bce8b2014-01-30 00:15:28 +01003736
3737 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Willy Tarreau70dffda2014-01-30 03:07:23 +01003738 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) {
3739 /* option httpclose + server_close => forceclose */
3740 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
3741 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
3742 tmp = TX_CON_WANT_CLO;
3743 else
3744 tmp = TX_CON_WANT_SCL;
3745 }
Willy Tarreau02bce8b2014-01-30 00:15:28 +01003746
3747 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL ||
3748 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
Willy Tarreau5b154472009-12-21 20:11:07 +01003749 tmp = TX_CON_WANT_CLO;
3750
Willy Tarreau5b154472009-12-21 20:11:07 +01003751 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
3752 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003753
Willy Tarreau416ce612014-01-31 15:45:34 +01003754 if (!(txn->flags & TX_HDR_CONN_PRS) &&
3755 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003756 /* parse the Connection header and possibly clean it */
3757 int to_del = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003758 if ((msg->flags & HTTP_MSGF_VER_11) ||
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003759 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
3760 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003761 to_del |= 2; /* remove "keep-alive" */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003762 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003763 to_del |= 1; /* remove "close" */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003764 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003765 }
Willy Tarreau5b154472009-12-21 20:11:07 +01003766
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003767 /* check if client or config asks for explicit close in KAL/SCL */
3768 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
3769 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
3770 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003771 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003772 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
Willy Tarreauc3e8b252010-01-28 15:01:20 +01003773 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003774 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
3775 }
Willy Tarreau78599912009-10-17 20:12:21 +02003776
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003777 /* we can be blocked here because the request needs to be authenticated,
3778 * either to pass or to access stats.
3779 */
Willy Tarreau20b0de52012-12-24 15:45:22 +01003780 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_AUTH) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01003781 char *realm = http_req_last_rule->arg.auth.realm;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003782
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003783 if (!realm)
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003784 realm = (objt_applet(s->target) == &http_stats_applet) ? STATS_DEFAULT_REALM : px->id;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003785
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003786 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003787 txn->status = 401;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003788 stream_int_retnclose(req->prod, &trash);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003789 /* on 401 we still count one error, because normal browsing
3790 * won't significantly increase the counter but brute force
3791 * attempts will.
3792 */
3793 session_inc_http_err_ctr(s);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003794 goto return_prx_cond;
3795 }
3796
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003797 /* add request headers from the rule sets in the same order */
3798 list_for_each_entry(wl, &px->req_add, list) {
3799 if (wl->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003800 int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003801 ret = acl_pass(ret);
3802 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3803 ret = !ret;
3804 if (!ret)
3805 continue;
3806 }
3807
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003808 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003809 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003810 }
3811
3812 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_REDIR) {
3813 if (!http_apply_redirect_rule(http_req_last_rule->arg.redir, s, txn))
3814 goto return_bad_req;
3815 req->analyse_exp = TICK_ETERNITY;
3816 return 1;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003817 }
3818
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003819 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003820 /* process the stats request now */
Willy Tarreau347a35d2013-11-22 17:51:09 +01003821 if (s->fe == s->be) /* report it if the request was intercepted by the frontend */
3822 s->fe->fe_counters.intercepted_req++;
3823
3824 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
3825 s->flags |= SN_ERR_LOCAL; // to mark that it comes from the proxy
3826 if (!(s->flags & SN_FINST_MASK))
3827 s->flags |= SN_FINST_R;
3828
3829 req->analyse_exp = TICK_ETERNITY;
Willy Tarreau51437d22013-12-29 00:43:40 +01003830 req->analysers = 0;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003831 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003832 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003833
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003834 /* check whether we have some ACLs set to redirect this request */
3835 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003836 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003837 int ret;
3838
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003839 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01003840 ret = acl_pass(ret);
3841 if (rule->cond->pol == ACL_COND_UNLESS)
3842 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003843 if (!ret)
3844 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01003845 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003846 if (!http_apply_redirect_rule(rule, s, txn))
3847 goto return_bad_req;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003848
Willy Tarreau71241ab2012-12-27 11:30:54 +01003849 req->analyse_exp = TICK_ETERNITY;
3850 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003851 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003852
Willy Tarreau2be39392010-01-03 17:24:51 +01003853 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3854 * If this happens, then the data will not come immediately, so we must
3855 * send all what we have without waiting. Note that due to the small gain
3856 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003857 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01003858 * itself once used.
3859 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003860 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01003861
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003862 /* that's OK for us now, let's move on to next analysers */
3863 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003864
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003865 return_bad_req:
3866 /* We centralize bad requests processing here */
3867 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3868 /* we detected a parsing error. We want to archive this request
3869 * in the dedicated proxy area for later troubleshooting.
3870 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01003871 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003872 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003873
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003874 txn->req.msg_state = HTTP_MSG_ERROR;
3875 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02003876 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003877
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003878 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003879 if (s->listener->counters)
3880 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003881
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003882 return_prx_cond:
3883 if (!(s->flags & SN_ERR_MASK))
3884 s->flags |= SN_ERR_PRXCOND;
3885 if (!(s->flags & SN_FINST_MASK))
3886 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003887
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003888 req->analysers = 0;
3889 req->analyse_exp = TICK_ETERNITY;
3890 return 0;
3891}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003892
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003893/* This function performs all the processing enabled for the current request.
3894 * It returns 1 if the processing can continue on next analysers, or zero if it
3895 * needs more data, encounters an error, or wants to immediately abort the
3896 * request. It relies on buffers flags, and updates s->req->analysers.
3897 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003898int http_process_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003899{
3900 struct http_txn *txn = &s->txn;
3901 struct http_msg *msg = &txn->req;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003902 struct connection *cli_conn = objt_conn(req->prod->end);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003903
Willy Tarreau655dce92009-11-08 13:10:58 +01003904 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003905 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003906 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003907 return 0;
3908 }
3909
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003910 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003911 now_ms, __FUNCTION__,
3912 s,
3913 req,
3914 req->rex, req->wex,
3915 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003916 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003917 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003918
William Lallemand82fe75c2012-10-23 10:25:10 +02003919 if (s->fe->comp || s->be->comp)
3920 select_compression_request_header(s, req->buf);
3921
Willy Tarreau59234e92008-11-30 23:51:27 +01003922 /*
3923 * Right now, we know that we have processed the entire headers
3924 * and that unwanted requests have been filtered out. We can do
3925 * whatever we want with the remaining request. Also, now we
3926 * may have separate values for ->fe, ->be.
3927 */
Willy Tarreau06619262006-12-17 08:37:22 +01003928
Willy Tarreau59234e92008-11-30 23:51:27 +01003929 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003930 * If HTTP PROXY is set we simply get remote server address parsing
3931 * incoming request. Note that this requires that a connection is
3932 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01003933 */
3934 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003935 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01003936 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003937
Willy Tarreau9471b8c2013-12-15 13:31:35 +01003938 /* Note that for now we don't reuse existing proxy connections */
3939 if (unlikely((conn = si_alloc_conn(req->cons, 0)) == NULL)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003940 txn->req.msg_state = HTTP_MSG_ERROR;
3941 txn->status = 500;
3942 req->analysers = 0;
3943 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
3944
3945 if (!(s->flags & SN_ERR_MASK))
3946 s->flags |= SN_ERR_RESOURCE;
3947 if (!(s->flags & SN_FINST_MASK))
3948 s->flags |= SN_FINST_R;
3949
3950 return 0;
3951 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01003952
3953 path = http_get_path(txn);
3954 url2sa(req->buf->p + msg->sl.rq.u,
3955 path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l,
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01003956 &conn->addr.to, NULL);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01003957 /* if the path was found, we have to remove everything between
3958 * req->buf->p + msg->sl.rq.u and path (excluded). If it was not
3959 * found, we need to replace from req->buf->p + msg->sl.rq.u for
3960 * u_l characters by a single "/".
3961 */
3962 if (path) {
3963 char *cur_ptr = req->buf->p;
3964 char *cur_end = cur_ptr + txn->req.sl.rq.l;
3965 int delta;
3966
3967 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0);
3968 http_msg_move_end(&txn->req, delta);
3969 cur_end += delta;
3970 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
3971 goto return_bad_req;
3972 }
3973 else {
3974 char *cur_ptr = req->buf->p;
3975 char *cur_end = cur_ptr + txn->req.sl.rq.l;
3976 int delta;
3977
3978 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u,
3979 req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
3980 http_msg_move_end(&txn->req, delta);
3981 cur_end += delta;
3982 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
3983 goto return_bad_req;
3984 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003985 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003986
Willy Tarreau59234e92008-11-30 23:51:27 +01003987 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003988 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003989 * Note that doing so might move headers in the request, but
3990 * the fields will stay coherent and the URI will not move.
3991 * This should only be performed in the backend.
3992 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003993 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003994 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
3995 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003996
Willy Tarreau59234e92008-11-30 23:51:27 +01003997 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003998 * 8: the appsession cookie was looked up very early in 1.2,
3999 * so let's do the same now.
4000 */
4001
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004002 /* It needs to look into the URI unless persistence must be ignored */
4003 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02004004 get_srv_from_appsession(s, req->buf->p + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01004005 }
4006
William Lallemanda73203e2012-03-12 12:48:57 +01004007 /* add unique-id if "header-unique-id" is specified */
4008
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004009 if (!LIST_ISEMPTY(&s->fe->format_unique_id)) {
4010 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL)
4011 goto return_bad_req;
4012 s->unique_id[0] = '\0';
William Lallemanda73203e2012-03-12 12:48:57 +01004013 build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004014 }
William Lallemanda73203e2012-03-12 12:48:57 +01004015
4016 if (s->fe->header_unique_id && s->unique_id) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004017 chunk_printf(&trash, "%s: %s", s->fe->header_unique_id, s->unique_id);
4018 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01004019 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004020 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01004021 goto return_bad_req;
4022 }
4023
Cyril Bontéb21570a2009-11-29 20:04:48 +01004024 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01004025 * 9: add X-Forwarded-For if either the frontend or the backend
4026 * asks for it.
4027 */
4028 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004029 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreau87cf5142011-08-19 22:57:24 +02004030 if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Cyril Bontéa32d2752012-05-29 23:27:41 +02004031 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : s->fe->fwdfor_hdr_name,
4032 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : s->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004033 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004034 /* The header is set to be added only if none is present
4035 * and we found it, so don't do anything.
4036 */
4037 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004038 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004039 /* Add an X-Forwarded-For header unless the source IP is
4040 * in the 'except' network range.
4041 */
4042 if ((!s->fe->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004043 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->fe->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004044 != s->fe->except_net.s_addr) &&
4045 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004046 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004047 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01004048 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01004049 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004050 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02004051
4052 /* Note: we rely on the backend to get the header name to be used for
4053 * x-forwarded-for, because the header is really meant for the backends.
4054 * However, if the backend did not specify any option, we have to rely
4055 * on the frontend's header name.
4056 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004057 if (s->be->fwdfor_hdr_len) {
4058 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004059 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02004060 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01004061 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004062 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004063 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004064 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 +01004065
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004066 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01004067 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01004068 }
4069 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004070 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004071 /* FIXME: for the sake of completeness, we should also support
4072 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004073 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004074 int len;
4075 char pn[INET6_ADDRSTRLEN];
4076 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004077 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01004078 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004079
Willy Tarreau59234e92008-11-30 23:51:27 +01004080 /* Note: we rely on the backend to get the header name to be used for
4081 * x-forwarded-for, because the header is really meant for the backends.
4082 * However, if the backend did not specify any option, we have to rely
4083 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004084 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004085 if (s->be->fwdfor_hdr_len) {
4086 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004087 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01004088 } else {
4089 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004090 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004091 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004092 len += snprintf(trash.str + len, trash.size - len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02004093
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004094 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01004095 goto return_bad_req;
4096 }
4097 }
4098
4099 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02004100 * 10: add X-Original-To if either the frontend or the backend
4101 * asks for it.
4102 */
4103 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
4104
4105 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004106 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004107 /* Add an X-Original-To header unless the destination IP is
4108 * in the 'except' network range.
4109 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004110 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02004111
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004112 if (cli_conn->addr.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02004113 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004114 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02004115 != s->fe->except_to.s_addr) &&
4116 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004117 (((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 +02004118 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004119 int len;
4120 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004121 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02004122
4123 /* Note: we rely on the backend to get the header name to be used for
4124 * x-original-to, because the header is really meant for the backends.
4125 * However, if the backend did not specify any option, we have to rely
4126 * on the frontend's header name.
4127 */
4128 if (s->be->orgto_hdr_len) {
4129 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004130 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02004131 } else {
4132 len = s->fe->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004133 memcpy(trash.str, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004134 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004135 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 +02004136
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004137 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02004138 goto return_bad_req;
4139 }
4140 }
4141 }
4142
Willy Tarreau50fc7772012-11-11 22:19:57 +01004143 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
4144 * If an "Upgrade" token is found, the header is left untouched in order not to have
4145 * to deal with some servers bugs : some of them fail an Upgrade if anything but
4146 * "Upgrade" is present in the Connection header.
4147 */
4148 if (!(txn->flags & TX_HDR_CONN_UPG) &&
4149 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004150 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
4151 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004152 unsigned int want_flags = 0;
4153
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004154 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02004155 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004156 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
4157 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) &&
Willy Tarreau22a95342010-09-29 14:31:41 +02004158 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004159 want_flags |= TX_CON_CLO_SET;
4160 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02004161 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004162 ((s->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL &&
4163 (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) ||
Willy Tarreau22a95342010-09-29 14:31:41 +02004164 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004165 want_flags |= TX_CON_KAL_SET;
4166 }
4167
4168 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004169 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01004170 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004171
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004172
Willy Tarreau522d6c02009-12-06 18:49:18 +01004173 /* If we have no server assigned yet and we're balancing on url_param
4174 * with a POST request, we may be interested in checking the body for
4175 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01004176 */
4177 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
4178 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004179 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004180 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004181 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01004182 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004183
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004184 if (msg->flags & HTTP_MSGF_XFER_LEN) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01004185 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01004186#ifdef TCP_QUICKACK
4187 /* We expect some data from the client. Unless we know for sure
4188 * we already have a full request, we have to re-enable quick-ack
4189 * in case we previously disabled it, otherwise we might cause
4190 * the client to delay further data.
4191 */
4192 if ((s->listener->options & LI_O_NOQUICKACK) &&
Willy Tarreau3c728722014-01-23 13:50:42 +01004193 cli_conn && conn_ctrl_ready(cli_conn) &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004194 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004195 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004196 setsockopt(cli_conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01004197#endif
4198 }
Willy Tarreau03945942009-12-22 16:50:27 +01004199
Willy Tarreau59234e92008-11-30 23:51:27 +01004200 /*************************************************************
4201 * OK, that's finished for the headers. We have done what we *
4202 * could. Let's switch to the DATA state. *
4203 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01004204 req->analyse_exp = TICK_ETERNITY;
4205 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004206
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004207 /* if the server closes the connection, we want to immediately react
4208 * and close the socket to save packets and syscalls.
4209 */
Willy Tarreau40f151a2012-12-20 12:10:09 +01004210 if (!(req->analysers & AN_REQ_HTTP_XFER_BODY))
4211 req->cons->flags |= SI_FL_NOHALF;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004212
Willy Tarreau59234e92008-11-30 23:51:27 +01004213 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01004214 /* OK let's go on with the BODY now */
4215 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01004216
Willy Tarreau59234e92008-11-30 23:51:27 +01004217 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02004218 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01004219 /* we detected a parsing error. We want to archive this request
4220 * in the dedicated proxy area for later troubleshooting.
4221 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004222 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01004223 }
Willy Tarreau4076a152009-04-02 15:18:36 +02004224
Willy Tarreau59234e92008-11-30 23:51:27 +01004225 txn->req.msg_state = HTTP_MSG_ERROR;
4226 txn->status = 400;
4227 req->analysers = 0;
Willy Tarreau783f2582012-09-04 12:19:04 +02004228 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004229
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004230 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004231 if (s->listener->counters)
4232 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004233
Willy Tarreau59234e92008-11-30 23:51:27 +01004234 if (!(s->flags & SN_ERR_MASK))
4235 s->flags |= SN_ERR_PRXCOND;
4236 if (!(s->flags & SN_FINST_MASK))
4237 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02004238 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004239}
Willy Tarreauadfb8562008-08-11 15:24:42 +02004240
Willy Tarreau60b85b02008-11-30 23:28:40 +01004241/* This function is an analyser which processes the HTTP tarpit. It always
4242 * returns zero, at the beginning because it prevents any other processing
4243 * from occurring, and at the end because it terminates the request.
4244 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004245int http_process_tarpit(struct session *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01004246{
4247 struct http_txn *txn = &s->txn;
4248
4249 /* This connection is being tarpitted. The CLIENT side has
4250 * already set the connect expiration date to the right
4251 * timeout. We just have to check that the client is still
4252 * there and that the timeout has not expired.
4253 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004254 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004255 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01004256 !tick_is_expired(req->analyse_exp, now_ms))
4257 return 0;
4258
4259 /* We will set the queue timer to the time spent, just for
4260 * logging purposes. We fake a 500 server error, so that the
4261 * attacker will not suspect his connection has been tarpitted.
4262 * It will not cause trouble to the logs because we can exclude
4263 * the tarpitted connections by filtering on the 'PT' status flags.
4264 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01004265 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
4266
4267 txn->status = 500;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004268 if (!(req->flags & CF_READ_ERROR))
Willy Tarreau783f2582012-09-04 12:19:04 +02004269 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau60b85b02008-11-30 23:28:40 +01004270
4271 req->analysers = 0;
4272 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004273
Willy Tarreau60b85b02008-11-30 23:28:40 +01004274 if (!(s->flags & SN_ERR_MASK))
4275 s->flags |= SN_ERR_PRXCOND;
4276 if (!(s->flags & SN_FINST_MASK))
4277 s->flags |= SN_FINST_T;
4278 return 0;
4279}
4280
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004281/* This function is an analyser which waits for the HTTP request body. It waits
4282 * for either the buffer to be full, or the full advertised contents to have
4283 * reached the buffer. It must only be called after the standard HTTP request
4284 * processing has occurred, because it expects the request to be parsed and will
4285 * look for the Expect header. It may send a 100-Continue interim response. It
4286 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
4287 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
4288 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01004289 */
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004290int http_wait_for_request_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01004291{
Willy Tarreau522d6c02009-12-06 18:49:18 +01004292 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01004293 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004294
4295 /* We have to parse the HTTP request body to find any required data.
4296 * "balance url_param check_post" should have been the only way to get
4297 * into this. We were brought here after HTTP header analysis, so all
4298 * related structures are ready.
4299 */
4300
Willy Tarreau522d6c02009-12-06 18:49:18 +01004301 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4302 goto missing_data;
4303
4304 if (msg->msg_state < HTTP_MSG_100_SENT) {
4305 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4306 * send an HTTP/1.1 100 Continue intermediate response.
4307 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004308 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004309 struct hdr_ctx ctx;
4310 ctx.idx = 0;
4311 /* Expect is allowed in 1.1, look for it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004312 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01004313 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02004314 bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004315 }
4316 }
4317 msg->msg_state = HTTP_MSG_100_SENT;
4318 }
4319
4320 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004321 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau9b28e032012-10-12 23:49:43 +02004322 * req->buf->p still points to the beginning of the message and msg->sol
Willy Tarreau26927362012-05-18 23:22:52 +02004323 * is still null. We must save the body in msg->next because it
4324 * survives buffer re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004325 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004326 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004327
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004328 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004329 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4330 else
4331 msg->msg_state = HTTP_MSG_DATA;
4332 }
4333
4334 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004335 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004336 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004337 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004338 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004339 int ret = http_parse_chunk_size(msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01004340
Willy Tarreau115acb92009-12-26 13:56:06 +01004341 if (!ret)
4342 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004343 else if (ret < 0) {
4344 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004345 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004346 }
Willy Tarreaud34af782008-11-30 23:36:37 +01004347 }
4348
Willy Tarreaud98cf932009-12-27 22:54:55 +01004349 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004350 * We have the first data byte is in msg->sov. We're waiting for at
Willy Tarreau226071e2014-04-10 11:55:45 +02004351 * least a whole chunk or the whole content length bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01004352 */
Willy Tarreau226071e2014-04-10 11:55:45 +02004353 if (req->buf->i - msg->sov >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004354 goto http_end;
4355
4356 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02004357 /* we get here if we need to wait for more data. If the buffer is full,
4358 * we have the maximum we can expect.
4359 */
4360 if (buffer_full(req->buf, global.tune.maxrewrite))
4361 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01004362
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004363 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004364 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02004365 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02004366
4367 if (!(s->flags & SN_ERR_MASK))
4368 s->flags |= SN_ERR_CLITO;
4369 if (!(s->flags & SN_FINST_MASK))
4370 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004371 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01004372 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004373
4374 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02004375 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01004376 /* Not enough data. We'll re-use the http-request
4377 * timeout here. Ideally, we should set the timeout
4378 * relative to the accept() date. We just set the
4379 * request timeout once at the beginning of the
4380 * request.
4381 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004382 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01004383 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02004384 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01004385 return 0;
4386 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004387
4388 http_end:
4389 /* The situation will not evolve, so let's give up on the analysis. */
4390 s->logs.tv_request = now; /* update the request timer to reflect full request */
4391 req->analysers &= ~an_bit;
4392 req->analyse_exp = TICK_ETERNITY;
4393 return 1;
4394
4395 return_bad_req: /* let's centralize all bad requests */
4396 txn->req.msg_state = HTTP_MSG_ERROR;
4397 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004398 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau522d6c02009-12-06 18:49:18 +01004399
Willy Tarreau79ebac62010-06-07 13:47:49 +02004400 if (!(s->flags & SN_ERR_MASK))
4401 s->flags |= SN_ERR_PRXCOND;
4402 if (!(s->flags & SN_FINST_MASK))
4403 s->flags |= SN_FINST_R;
4404
Willy Tarreau522d6c02009-12-06 18:49:18 +01004405 return_err_msg:
4406 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004407 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004408 if (s->listener->counters)
4409 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004410 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01004411}
4412
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004413/* send a server's name with an outgoing request over an established connection.
4414 * Note: this function is designed to be called once the request has been scheduled
4415 * for being forwarded. This is the reason why it rewinds the buffer before
4416 * proceeding.
4417 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01004418int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004419
4420 struct hdr_ctx ctx;
4421
Mark Lamourinec2247f02012-01-04 13:02:01 -05004422 char *hdr_name = be->server_id_hdr_name;
4423 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02004424 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004425 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004426 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004427
William Lallemandd9e90662012-01-30 17:27:17 +01004428 ctx.idx = 0;
4429
Willy Tarreau9b28e032012-10-12 23:49:43 +02004430 old_o = chn->buf->o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004431 if (old_o) {
4432 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004433 b_rew(chn->buf, old_o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004434 }
4435
Willy Tarreau9b28e032012-10-12 23:49:43 +02004436 old_i = chn->buf->i;
4437 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 -05004438 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004439 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004440 }
4441
4442 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004443 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004444 memcpy(hdr_val, hdr_name, hdr_name_len);
4445 hdr_val += hdr_name_len;
4446 *hdr_val++ = ':';
4447 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004448 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
4449 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004450
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004451 if (old_o) {
4452 /* If this was a forwarded request, we must readjust the amount of
4453 * data to be forwarded in order to take into account the size
Willy Tarreau2fef9b12013-03-26 01:08:21 +01004454 * variations. Note that if the request was already scheduled for
4455 * forwarding, it had its req->sol pointing to the body, which
4456 * must then be updated too.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004457 */
Willy Tarreau2fef9b12013-03-26 01:08:21 +01004458 txn->req.sol += chn->buf->i - old_i;
Willy Tarreau9b28e032012-10-12 23:49:43 +02004459 b_adv(chn->buf, old_o + chn->buf->i - old_i);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004460 }
4461
Mark Lamourinec2247f02012-01-04 13:02:01 -05004462 return 0;
4463}
4464
Willy Tarreau610ecce2010-01-04 21:15:02 +01004465/* Terminate current transaction and prepare a new one. This is very tricky
4466 * right now but it works.
4467 */
4468void http_end_txn_clean_session(struct session *s)
4469{
Willy Tarreau068621e2013-12-23 15:11:25 +01004470 int prev_status = s->txn.status;
4471
Willy Tarreau610ecce2010-01-04 21:15:02 +01004472 /* FIXME: We need a more portable way of releasing a backend's and a
4473 * server's connections. We need a safer way to reinitialize buffer
4474 * flags. We also need a more accurate method for computing per-request
4475 * data.
4476 */
4477 http_silent_debug(__LINE__, s);
4478
Willy Tarreau4213a112013-12-15 10:25:42 +01004479 /* unless we're doing keep-alive, we want to quickly close the connection
4480 * to the server.
4481 */
4482 if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
4483 !si_conn_ready(s->req->cons)) {
4484 s->req->cons->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
4485 si_shutr(s->req->cons);
4486 si_shutw(s->req->cons);
4487 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004488
4489 http_silent_debug(__LINE__, s);
4490
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004491 if (s->flags & SN_BE_ASSIGNED) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004492 s->be->beconn--;
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004493 if (unlikely(s->srv_conn))
4494 sess_change_server(s, NULL);
4495 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004496
4497 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
4498 session_process_counters(s);
Willy Tarreauf3338342014-01-28 21:40:28 +01004499 session_stop_content_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004500
4501 if (s->txn.status) {
4502 int n;
4503
4504 n = s->txn.status / 100;
4505 if (n < 1 || n > 5)
4506 n = 0;
4507
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004508 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004509 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004510 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004511 s->fe->fe_counters.p.http.comp_rsp++;
4512 }
Willy Tarreau24657792010-02-26 10:30:28 +01004513 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004514 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004515 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004516 s->be->be_counters.p.http.cum_req++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004517 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004518 s->be->be_counters.p.http.comp_rsp++;
4519 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004520 }
4521
4522 /* don't count other requests' data */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004523 s->logs.bytes_in -= s->req->buf->i;
4524 s->logs.bytes_out -= s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004525
4526 /* let's do a final log if we need it */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01004527 if (!LIST_ISEMPTY(&s->fe->logformat) && s->logs.logwait &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01004528 !(s->flags & SN_MONITOR) &&
4529 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
4530 s->do_log(s);
4531 }
4532
4533 s->logs.accept_date = date; /* user-visible date for logging */
4534 s->logs.tv_accept = now; /* corrected date for internal use */
4535 tv_zero(&s->logs.tv_request);
4536 s->logs.t_queue = -1;
4537 s->logs.t_connect = -1;
4538 s->logs.t_data = -1;
4539 s->logs.t_close = 0;
4540 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
4541 s->logs.srv_queue_size = 0; /* we will get this number soon */
4542
Willy Tarreau9b28e032012-10-12 23:49:43 +02004543 s->logs.bytes_in = s->req->total = s->req->buf->i;
4544 s->logs.bytes_out = s->rep->total = s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004545
4546 if (s->pend_pos)
4547 pendconn_free(s->pend_pos);
4548
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004549 if (objt_server(s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004550 if (s->flags & SN_CURR_SESS) {
4551 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004552 objt_server(s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004553 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004554 if (may_dequeue_tasks(objt_server(s->target), s->be))
4555 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01004556 }
4557
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004558 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004559
Willy Tarreau4213a112013-12-15 10:25:42 +01004560 /* only release our endpoint if we don't intend to reuse the
4561 * connection.
4562 */
4563 if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
4564 !si_conn_ready(s->req->cons)) {
4565 si_release_endpoint(s->req->cons);
4566 }
4567
Willy Tarreau610ecce2010-01-04 21:15:02 +01004568 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004569 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02004570 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004571 s->req->cons->exp = TICK_ETERNITY;
Willy Tarreauc9200962013-12-31 23:03:09 +01004572 s->req->cons->flags &= SI_FL_DONT_WAKE; /* we're in the context of process_session */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004573 s->req->flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT);
4574 s->rep->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);
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004575 s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST);
Willy Tarreau36346242014-02-24 18:26:30 +01004576 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE|SN_SRV_REUSED);
Willy Tarreau543db622012-11-15 16:41:22 +01004577
Willy Tarreau610ecce2010-01-04 21:15:02 +01004578 s->txn.meth = 0;
4579 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01004580 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01004581
4582 if (prev_status == 401 || prev_status == 407) {
4583 /* In HTTP keep-alive mode, if we receive a 401, we still have
4584 * a chance of being able to send the visitor again to the same
4585 * server over the same connection. This is required by some
4586 * broken protocols such as NTLM, and anyway whenever there is
4587 * an opportunity for sending the challenge to the proper place,
4588 * it's better to do it (at least it helps with debugging).
4589 */
4590 s->txn.flags |= TX_PREFER_LAST;
4591 }
4592
Willy Tarreauee55dc02010-06-01 10:56:34 +02004593 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004594 s->req->cons->flags |= SI_FL_INDEP_STR;
4595
Willy Tarreau96e31212011-05-30 18:10:30 +02004596 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004597 s->req->flags |= CF_NEVER_WAIT;
4598 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02004599 }
4600
Willy Tarreau610ecce2010-01-04 21:15:02 +01004601 /* if the request buffer is not empty, it means we're
4602 * about to process another request, so send pending
4603 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004604 * Just don't do this if the buffer is close to be full,
4605 * because the request will wait for it to flush a little
4606 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004607 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004608 if (s->req->buf->i) {
4609 if (s->rep->buf->o &&
4610 !buffer_full(s->rep->buf, global.tune.maxrewrite) &&
4611 bi_end(s->rep->buf) <= s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004612 s->rep->flags |= CF_EXPECT_MORE;
Willy Tarreau065e8332010-01-08 00:30:20 +01004613 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004614
4615 /* we're removing the analysers, we MUST re-enable events detection */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004616 channel_auto_read(s->req);
4617 channel_auto_close(s->req);
4618 channel_auto_read(s->rep);
4619 channel_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004620
Willy Tarreau27375622013-12-17 00:00:28 +01004621 /* we're in keep-alive with an idle connection, monitor it */
4622 si_idle_conn(s->req->cons);
4623
Willy Tarreau342b11c2010-11-24 16:22:09 +01004624 s->req->analysers = s->listener->analysers;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004625 s->rep->analysers = 0;
4626
4627 http_silent_debug(__LINE__, s);
4628}
4629
4630
4631/* This function updates the request state machine according to the response
4632 * state machine and buffer flags. It returns 1 if it changes anything (flag
4633 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4634 * it is only used to find when a request/response couple is complete. Both
4635 * this function and its equivalent should loop until both return zero. It
4636 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4637 */
4638int http_sync_req_state(struct session *s)
4639{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004640 struct channel *chn = s->req;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004641 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004642 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004643 unsigned int old_state = txn->req.msg_state;
4644
4645 http_silent_debug(__LINE__, s);
4646 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
4647 return 0;
4648
4649 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004650 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004651 * We can shut the read side unless we want to abort_on_close,
4652 * or we have a POST request. The issue with POST requests is
4653 * that some browsers still send a CRLF after the request, and
4654 * this CRLF must be read so that it does not remain in the kernel
4655 * buffers, otherwise a close could cause an RST on some systems
4656 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01004657 * Note that if we're using keep-alive on the client side, we'd
4658 * rather poll now and keep the polling enabled for the whole
4659 * session's life than enabling/disabling it between each
4660 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01004661 */
Willy Tarreau3988d932013-12-27 23:03:08 +01004662 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
4663 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
4664 !(s->be->options & PR_O_ABRT_CLOSE) &&
4665 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004666 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004667
Willy Tarreau40f151a2012-12-20 12:10:09 +01004668 /* if the server closes the connection, we want to immediately react
4669 * and close the socket to save packets and syscalls.
4670 */
4671 chn->cons->flags |= SI_FL_NOHALF;
4672
Willy Tarreau610ecce2010-01-04 21:15:02 +01004673 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4674 goto wait_other_side;
4675
4676 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4677 /* The server has not finished to respond, so we
4678 * don't want to move in order not to upset it.
4679 */
4680 goto wait_other_side;
4681 }
4682
4683 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4684 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004685 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004686 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004687 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004688 goto wait_other_side;
4689 }
4690
4691 /* When we get here, it means that both the request and the
4692 * response have finished receiving. Depending on the connection
4693 * mode, we'll have to wait for the last bytes to leave in either
4694 * direction, and sometimes for a close to be effective.
4695 */
4696
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004697 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4698 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004699 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
4700 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004701 }
4702 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4703 /* Option forceclose is set, or either side wants to close,
4704 * let's enforce it now that we're not expecting any new
4705 * data to come. The caller knows the session is complete
4706 * once both states are CLOSED.
4707 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004708 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4709 channel_shutr_now(chn);
4710 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004711 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004712 }
4713 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01004714 /* The last possible modes are keep-alive and tunnel. Tunnel mode
4715 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004716 */
Willy Tarreau4213a112013-12-15 10:25:42 +01004717 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
4718 channel_auto_read(chn);
4719 txn->req.msg_state = HTTP_MSG_TUNNEL;
4720 chn->flags |= CF_NEVER_WAIT;
4721 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004722 }
4723
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004724 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004725 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004726 chn->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004727
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004728 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004729 txn->req.msg_state = HTTP_MSG_CLOSING;
4730 goto http_msg_closing;
4731 }
4732 else {
4733 txn->req.msg_state = HTTP_MSG_CLOSED;
4734 goto http_msg_closed;
4735 }
4736 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004737 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004738 }
4739
4740 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4741 http_msg_closing:
4742 /* nothing else to forward, just waiting for the output buffer
4743 * to be empty and for the shutw_now to take effect.
4744 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004745 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004746 txn->req.msg_state = HTTP_MSG_CLOSED;
4747 goto http_msg_closed;
4748 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004749 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004750 txn->req.msg_state = HTTP_MSG_ERROR;
4751 goto wait_other_side;
4752 }
4753 }
4754
4755 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4756 http_msg_closed:
Willy Tarreau3988d932013-12-27 23:03:08 +01004757 /* see above in MSG_DONE why we only do this in these states */
4758 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
4759 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
4760 !(s->be->options & PR_O_ABRT_CLOSE))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01004761 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004762 goto wait_other_side;
4763 }
4764
4765 wait_other_side:
4766 http_silent_debug(__LINE__, s);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004767 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004768}
4769
4770
4771/* This function updates the response state machine according to the request
4772 * state machine and buffer flags. It returns 1 if it changes anything (flag
4773 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4774 * it is only used to find when a request/response couple is complete. Both
4775 * this function and its equivalent should loop until both return zero. It
4776 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4777 */
4778int http_sync_res_state(struct session *s)
4779{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004780 struct channel *chn = s->rep;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004781 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004782 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004783 unsigned int old_state = txn->rsp.msg_state;
4784
4785 http_silent_debug(__LINE__, s);
4786 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
4787 return 0;
4788
4789 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4790 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004791 * still monitor the server connection for a possible close
4792 * while the request is being uploaded, so we don't disable
4793 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004794 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004795 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004796
4797 if (txn->req.msg_state == HTTP_MSG_ERROR)
4798 goto wait_other_side;
4799
4800 if (txn->req.msg_state < HTTP_MSG_DONE) {
4801 /* The client seems to still be sending data, probably
4802 * because we got an error response during an upload.
4803 * We have the choice of either breaking the connection
4804 * or letting it pass through. Let's do the later.
4805 */
4806 goto wait_other_side;
4807 }
4808
4809 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4810 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004811 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004812 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004813 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004814 goto wait_other_side;
4815 }
4816
4817 /* When we get here, it means that both the request and the
4818 * response have finished receiving. Depending on the connection
4819 * mode, we'll have to wait for the last bytes to leave in either
4820 * direction, and sometimes for a close to be effective.
4821 */
4822
4823 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4824 /* Server-close mode : shut read and wait for the request
4825 * side to close its output buffer. The caller will detect
4826 * when we're in DONE and the other is in CLOSED and will
4827 * catch that for the final cleanup.
4828 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004829 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
4830 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004831 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004832 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4833 /* Option forceclose is set, or either side wants to close,
4834 * let's enforce it now that we're not expecting any new
4835 * data to come. The caller knows the session is complete
4836 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004837 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004838 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4839 channel_shutr_now(chn);
4840 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004841 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004842 }
4843 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01004844 /* The last possible modes are keep-alive and tunnel. Tunnel will
4845 * need to forward remaining data. Keep-alive will need to monitor
4846 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004847 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004848 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02004849 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01004850 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
4851 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004852 }
4853
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004854 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004855 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004856 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004857 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4858 goto http_msg_closing;
4859 }
4860 else {
4861 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4862 goto http_msg_closed;
4863 }
4864 }
4865 goto wait_other_side;
4866 }
4867
4868 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4869 http_msg_closing:
4870 /* nothing else to forward, just waiting for the output buffer
4871 * to be empty and for the shutw_now to take effect.
4872 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004873 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004874 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4875 goto http_msg_closed;
4876 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004877 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004878 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004879 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004880 if (objt_server(s->target))
4881 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004882 goto wait_other_side;
4883 }
4884 }
4885
4886 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4887 http_msg_closed:
4888 /* drop any pending data */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004889 bi_erase(chn);
4890 channel_auto_close(chn);
4891 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004892 goto wait_other_side;
4893 }
4894
4895 wait_other_side:
4896 http_silent_debug(__LINE__, s);
Willy Tarreaufc47f912012-10-20 10:38:09 +02004897 /* We force the response to leave immediately if we're waiting for the
4898 * other side, since there is no pending shutdown to push it out.
4899 */
4900 if (!channel_is_empty(chn))
4901 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004902 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004903}
4904
4905
4906/* Resync the request and response state machines. Return 1 if either state
4907 * changes.
4908 */
4909int http_resync_states(struct session *s)
4910{
4911 struct http_txn *txn = &s->txn;
4912 int old_req_state = txn->req.msg_state;
4913 int old_res_state = txn->rsp.msg_state;
4914
4915 http_silent_debug(__LINE__, s);
4916 http_sync_req_state(s);
4917 while (1) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004918 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004919 if (!http_sync_res_state(s))
4920 break;
Willy Tarreau90deb182010-01-07 00:20:41 +01004921 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004922 if (!http_sync_req_state(s))
4923 break;
4924 }
4925 http_silent_debug(__LINE__, s);
4926 /* OK, both state machines agree on a compatible state.
4927 * There are a few cases we're interested in :
4928 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
4929 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4930 * directions, so let's simply disable both analysers.
4931 * - HTTP_MSG_CLOSED on the response only means we must abort the
4932 * request.
4933 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
4934 * with server-close mode means we've completed one request and we
4935 * must re-initialize the server connection.
4936 */
4937
4938 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4939 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
4940 (txn->req.msg_state == HTTP_MSG_CLOSED &&
4941 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
4942 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004943 channel_auto_close(s->req);
4944 channel_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004945 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004946 channel_auto_close(s->rep);
4947 channel_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004948 }
Willy Tarreau40f151a2012-12-20 12:10:09 +01004949 else if ((txn->req.msg_state >= HTTP_MSG_DONE &&
4950 (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->rep->flags & CF_SHUTW))) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004951 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01004952 txn->req.msg_state == HTTP_MSG_ERROR) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004953 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004954 channel_auto_close(s->rep);
4955 channel_auto_read(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01004956 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004957 channel_abort(s->req);
4958 channel_auto_close(s->req);
4959 channel_auto_read(s->req);
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02004960 bi_erase(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004961 }
Willy Tarreau4213a112013-12-15 10:25:42 +01004962 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
4963 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01004964 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01004965 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
4966 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
4967 /* server-close/keep-alive: terminate this transaction,
4968 * possibly killing the server connection and reinitialize
4969 * a fresh-new transaction.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004970 */
4971 http_end_txn_clean_session(s);
4972 }
4973
4974 http_silent_debug(__LINE__, s);
4975 return txn->req.msg_state != old_req_state ||
4976 txn->rsp.msg_state != old_res_state;
4977}
4978
Willy Tarreaud98cf932009-12-27 22:54:55 +01004979/* This function is an analyser which forwards request body (including chunk
4980 * sizes if any). It is called as soon as we must forward, even if we forward
4981 * zero byte. The only situation where it must not be called is when we're in
4982 * tunnel mode and we want to forward till the close. It's used both to forward
4983 * remaining data and to resync after end of body. It expects the msg_state to
4984 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4985 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01004986 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreau26927362012-05-18 23:22:52 +02004987 * bytes of pending data + the headers if not already done (between sol and sov).
4988 * It eventually adjusts sol to match sov after the data in between have been sent.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004989 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004990int http_request_forward_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01004991{
4992 struct http_txn *txn = &s->txn;
4993 struct http_msg *msg = &s->txn.req;
4994
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004995 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4996 return 0;
4997
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004998 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004999 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005000 /* Output closed while we were sending data. We must abort and
5001 * wake the other side up.
5002 */
5003 msg->msg_state = HTTP_MSG_ERROR;
5004 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005005 return 1;
5006 }
5007
Willy Tarreau80a92c02014-03-12 10:41:13 +01005008 /* Some post-connect processing might want us to refrain from starting to
5009 * forward data. Currently, the only reason for this is "balance url_param"
5010 * whichs need to parse/process the request after we've enabled forwarding.
5011 */
5012 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
5013 if (!(s->rep->flags & CF_READ_ATTACHED)) {
5014 channel_auto_connect(req);
5015 goto missing_data;
5016 }
5017 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
5018 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005019
5020 /* Note that we don't have to send 100-continue back because we don't
5021 * need the data to complete our job, and it's up to the server to
5022 * decide whether to return 100, 417 or anything else in return of
5023 * an "Expect: 100-continue" header.
5024 */
5025
5026 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01005027 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau9b28e032012-10-12 23:49:43 +02005028 * req->buf->p still points to the beginning of the message and msg->sol
Willy Tarreau26927362012-05-18 23:22:52 +02005029 * is still null. We must save the body in msg->next because it
5030 * survives buffer re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005031 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01005032 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01005033
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005034 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005035 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
Willy Tarreau54d23df2012-10-25 19:04:45 +02005036 else
Willy Tarreaud98cf932009-12-27 22:54:55 +01005037 msg->msg_state = HTTP_MSG_DATA;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005038 }
5039
Willy Tarreau80a92c02014-03-12 10:41:13 +01005040 /* in most states, we should abort in case of early close */
5041 channel_auto_close(req);
5042
Willy Tarreaud98cf932009-12-27 22:54:55 +01005043 while (1) {
Willy Tarreauea953162012-05-18 23:41:28 +02005044 unsigned int bytes;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005045
Willy Tarreau610ecce2010-01-04 21:15:02 +01005046 http_silent_debug(__LINE__, s);
Willy Tarreauea953162012-05-18 23:41:28 +02005047 /* we may have some data pending between sol and sov */
Willy Tarreau26927362012-05-18 23:22:52 +02005048 bytes = msg->sov - msg->sol;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005049 if (msg->chunk_len || bytes) {
Willy Tarreau26927362012-05-18 23:22:52 +02005050 msg->sol = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01005051 msg->next -= bytes; /* will be forwarded */
Willy Tarreauea953162012-05-18 23:41:28 +02005052 msg->chunk_len += bytes;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005053 msg->chunk_len -= channel_forward(req, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01005054 }
Willy Tarreau5523b322009-12-29 12:05:52 +01005055
Willy Tarreaucaabe412010-01-03 23:08:28 +01005056 if (msg->msg_state == HTTP_MSG_DATA) {
5057 /* must still forward */
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005058 if (req->to_forward) {
5059 req->flags |= CF_WAKE_WRITE;
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005060 goto missing_data;
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005061 }
Willy Tarreaucaabe412010-01-03 23:08:28 +01005062
5063 /* nothing left to forward */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005064 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005065 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005066 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01005067 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005068 }
5069 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005070 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01005071 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01005072 * TRAILERS state.
5073 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005074 int ret = http_parse_chunk_size(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005075
Willy Tarreau54d23df2012-10-25 19:04:45 +02005076 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005077 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005078 else if (ret < 0) {
5079 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005080 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005081 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005082 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005083 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005084 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005085 }
Willy Tarreau54d23df2012-10-25 19:04:45 +02005086 else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005087 /* we want the CRLF after the data */
Willy Tarreau54d23df2012-10-25 19:04:45 +02005088 int ret = http_skip_chunk_crlf(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005089
5090 if (ret == 0)
5091 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005092 else if (ret < 0) {
5093 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005094 if (msg->err_pos >= 0)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005095 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005096 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005097 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005098 /* we're in MSG_CHUNK_SIZE now */
5099 }
5100 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005101 int ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005102
5103 if (ret == 0)
5104 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005105 else if (ret < 0) {
5106 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005107 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005108 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005109 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005110 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005111 /* we're in HTTP_MSG_DONE now */
5112 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005113 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005114 int old_state = msg->msg_state;
5115
Willy Tarreau610ecce2010-01-04 21:15:02 +01005116 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02005117 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005118 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5119 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005120 channel_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005121 if (http_resync_states(s)) {
5122 /* some state changes occurred, maybe the analyser
5123 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01005124 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005125 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005126 if (req->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005127 /* request errors are most likely due to
5128 * the server aborting the transfer.
5129 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005130 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005131 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005132 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005133 http_capture_bad_message(&s->fe->invalid_req, s, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005134 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005135 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005136 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005137 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005138
5139 /* If "option abortonclose" is set on the backend, we
5140 * want to monitor the client's connection and forward
5141 * any shutdown notification to the server, which will
5142 * decide whether to close or to go on processing the
5143 * request.
5144 */
5145 if (s->be->options & PR_O_ABRT_CLOSE) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005146 channel_auto_read(req);
5147 channel_auto_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02005148 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005149 else if (s->txn.meth == HTTP_METH_POST) {
5150 /* POST requests may require to read extra CRLF
5151 * sent by broken browsers and which could cause
5152 * an RST to be sent upon close on some systems
5153 * (eg: Linux).
5154 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005155 channel_auto_read(req);
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005156 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005157
Willy Tarreau610ecce2010-01-04 21:15:02 +01005158 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005159 }
5160 }
5161
Willy Tarreaud98cf932009-12-27 22:54:55 +01005162 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005163 /* stop waiting for data if the input is closed before the end */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005164 if (req->flags & CF_SHUTR) {
Willy Tarreau79ebac62010-06-07 13:47:49 +02005165 if (!(s->flags & SN_ERR_MASK))
5166 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005167 if (!(s->flags & SN_FINST_MASK)) {
5168 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5169 s->flags |= SN_FINST_H;
5170 else
5171 s->flags |= SN_FINST_D;
5172 }
5173
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005174 s->fe->fe_counters.cli_aborts++;
5175 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005176 if (objt_server(s->target))
5177 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005178
5179 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02005180 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005181
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005182 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005183 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005184 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005185
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005186 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005187 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005188 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005189 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005190 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005191
Willy Tarreau5c620922011-05-11 19:56:11 +02005192 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005193 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005194 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01005195 * modes are already handled by the stream sock layer. We must not do
5196 * this in content-length mode because it could present the MSG_MORE
5197 * flag with the last block of forwarded data, which would cause an
5198 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02005199 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005200 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005201 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005202
Willy Tarreau610ecce2010-01-04 21:15:02 +01005203 http_silent_debug(__LINE__, s);
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005204 return 0;
5205
Willy Tarreaud98cf932009-12-27 22:54:55 +01005206 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005207 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005208 if (s->listener->counters)
5209 s->listener->counters->failed_req++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005210 return_bad_req_stats_ok:
5211 txn->req.msg_state = HTTP_MSG_ERROR;
5212 if (txn->status) {
5213 /* Note: we don't send any error if some data were already sent */
5214 stream_int_retnclose(req->prod, NULL);
5215 } else {
5216 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02005217 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005218 }
5219 req->analysers = 0;
5220 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005221
5222 if (!(s->flags & SN_ERR_MASK))
5223 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005224 if (!(s->flags & SN_FINST_MASK)) {
5225 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5226 s->flags |= SN_FINST_H;
5227 else
5228 s->flags |= SN_FINST_D;
5229 }
5230 return 0;
5231
5232 aborted_xfer:
5233 txn->req.msg_state = HTTP_MSG_ERROR;
5234 if (txn->status) {
5235 /* Note: we don't send any error if some data were already sent */
5236 stream_int_retnclose(req->prod, NULL);
5237 } else {
5238 txn->status = 502;
Willy Tarreau783f2582012-09-04 12:19:04 +02005239 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_502));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005240 }
5241 req->analysers = 0;
5242 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
5243
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005244 s->fe->fe_counters.srv_aborts++;
5245 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005246 if (objt_server(s->target))
5247 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005248
5249 if (!(s->flags & SN_ERR_MASK))
5250 s->flags |= SN_ERR_SRVCL;
5251 if (!(s->flags & SN_FINST_MASK)) {
5252 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5253 s->flags |= SN_FINST_H;
5254 else
5255 s->flags |= SN_FINST_D;
5256 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005257 return 0;
5258}
5259
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005260/* This stream analyser waits for a complete HTTP response. It returns 1 if the
5261 * processing can continue on next analysers, or zero if it either needs more
5262 * data or wants to immediately abort the response (eg: timeout, error, ...). It
5263 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
5264 * when it has nothing left to do, and may remove any analyser when it wants to
5265 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005266 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005267int http_wait_for_response(struct session *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005268{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005269 struct http_txn *txn = &s->txn;
5270 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005271 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005272 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005273 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005274 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02005275
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005276 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02005277 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005278 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005279 rep,
5280 rep->rex, rep->wex,
5281 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005282 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005283 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02005284
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005285 /*
5286 * Now parse the partial (or complete) lines.
5287 * We will check the response syntax, and also join multi-line
5288 * headers. An index of all the lines will be elaborated while
5289 * parsing.
5290 *
5291 * For the parsing, we use a 28 states FSM.
5292 *
5293 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02005294 * rep->buf->p = beginning of response
5295 * rep->buf->p + msg->eoh = end of processed headers / start of current one
5296 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02005297 * msg->eol = end of current header or line (LF or CRLF)
5298 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005299 */
5300
Willy Tarreau83e3af02009-12-28 17:39:57 +01005301 /* There's a protected area at the end of the buffer for rewriting
5302 * purposes. We don't want to start to parse the request if the
5303 * protected area is affected, because we may have to move processed
5304 * data later, which is much more complicated.
5305 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005306 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +02005307 if (unlikely(!channel_reserved(rep))) {
5308 /* some data has still not left the buffer, wake us once that's done */
5309 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
5310 goto abort_response;
5311 channel_dont_close(rep);
5312 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01005313 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02005314 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01005315 }
5316
Willy Tarreau379357a2013-06-08 12:55:46 +02005317 if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
5318 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite))
5319 buffer_slow_realign(rep->buf);
5320
Willy Tarreau9b28e032012-10-12 23:49:43 +02005321 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01005322 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01005323 }
5324
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005325 /* 1: we might have to print this header in debug mode */
5326 if (unlikely((global.mode & MODE_DEBUG) &&
5327 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01005328 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005329 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005330
Willy Tarreau9b28e032012-10-12 23:49:43 +02005331 sol = rep->buf->p;
5332 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005333 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005334
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005335 sol += hdr_idx_first_pos(&txn->hdr_idx);
5336 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005337
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005338 while (cur_idx) {
5339 eol = sol + txn->hdr_idx.v[cur_idx].len;
5340 debug_hdr("srvhdr", s, sol, eol);
5341 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5342 cur_idx = txn->hdr_idx.v[cur_idx].next;
5343 }
5344 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005345
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005346 /*
5347 * Now we quickly check if we have found a full valid response.
5348 * If not so, we check the FD and buffer states before leaving.
5349 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005350 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005351 * responses are checked first.
5352 *
5353 * Depending on whether the client is still there or not, we
5354 * may send an error response back or not. Note that normally
5355 * we should only check for HTTP status there, and check I/O
5356 * errors somewhere else.
5357 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005358
Willy Tarreau655dce92009-11-08 13:10:58 +01005359 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005360 /* Invalid response */
5361 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5362 /* we detected a parsing error. We want to archive this response
5363 * in the dedicated proxy area for later troubleshooting.
5364 */
5365 hdr_response_bad:
5366 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005367 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005368
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005369 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005370 if (objt_server(s->target)) {
5371 objt_server(s->target)->counters.failed_resp++;
5372 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005373 }
Willy Tarreau64648412010-03-05 10:41:54 +01005374 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005375 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005376 rep->analysers = 0;
5377 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005378 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005379 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005380 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005381
5382 if (!(s->flags & SN_ERR_MASK))
5383 s->flags |= SN_ERR_PRXCOND;
5384 if (!(s->flags & SN_FINST_MASK))
5385 s->flags |= SN_FINST_H;
5386
5387 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005388 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005389
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005390 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005391 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02005392 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02005393 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005394 goto hdr_response_bad;
5395 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005396
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005397 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005398 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005399 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005400 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005401 else if (txn->flags & TX_NOT_FIRST)
5402 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02005403
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005404 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005405 if (objt_server(s->target)) {
5406 objt_server(s->target)->counters.failed_resp++;
5407 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005408 }
Willy Tarreau461f6622008-08-15 23:43:19 +02005409
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005410 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005411 rep->analysers = 0;
5412 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005413 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005414 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005415 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02005416
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005417 if (!(s->flags & SN_ERR_MASK))
5418 s->flags |= SN_ERR_SRVCL;
5419 if (!(s->flags & SN_FINST_MASK))
5420 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02005421 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005422 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005423
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005424 /* read timeout : return a 504 to the client. */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005425 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005426 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005427 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005428 else if (txn->flags & TX_NOT_FIRST)
5429 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005430
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005431 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005432 if (objt_server(s->target)) {
5433 objt_server(s->target)->counters.failed_resp++;
5434 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005435 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005436
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005437 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005438 rep->analysers = 0;
5439 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005440 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005441 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005442 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02005443
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005444 if (!(s->flags & SN_ERR_MASK))
5445 s->flags |= SN_ERR_SRVTO;
5446 if (!(s->flags & SN_FINST_MASK))
5447 s->flags |= SN_FINST_H;
5448 return 0;
5449 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02005450
Willy Tarreauf003d372012-11-26 13:35:37 +01005451 /* client abort with an abortonclose */
5452 else if ((rep->flags & CF_SHUTR) && ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
5453 s->fe->fe_counters.cli_aborts++;
5454 s->be->be_counters.cli_aborts++;
5455 if (objt_server(s->target))
5456 objt_server(s->target)->counters.cli_aborts++;
5457
5458 rep->analysers = 0;
5459 channel_auto_close(rep);
5460
5461 txn->status = 400;
5462 bi_erase(rep);
5463 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_400));
5464
5465 if (!(s->flags & SN_ERR_MASK))
5466 s->flags |= SN_ERR_CLICL;
5467 if (!(s->flags & SN_FINST_MASK))
5468 s->flags |= SN_FINST_H;
5469
5470 /* process_session() will take care of the error */
5471 return 0;
5472 }
5473
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005474 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005475 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005476 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005477 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005478 else if (txn->flags & TX_NOT_FIRST)
5479 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005480
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005481 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005482 if (objt_server(s->target)) {
5483 objt_server(s->target)->counters.failed_resp++;
5484 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005485 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005486
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005487 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005488 rep->analysers = 0;
5489 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005490 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005491 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005492 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01005493
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005494 if (!(s->flags & SN_ERR_MASK))
5495 s->flags |= SN_ERR_SRVCL;
5496 if (!(s->flags & SN_FINST_MASK))
5497 s->flags |= SN_FINST_H;
5498 return 0;
5499 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005500
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005501 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005502 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005503 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005504 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005505 else if (txn->flags & TX_NOT_FIRST)
5506 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005507
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005508 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005509 rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005510 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005511
5512 if (!(s->flags & SN_ERR_MASK))
5513 s->flags |= SN_ERR_CLICL;
5514 if (!(s->flags & SN_FINST_MASK))
5515 s->flags |= SN_FINST_H;
5516
5517 /* process_session() will take care of the error */
5518 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005519 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005520
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005521 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01005522 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005523 return 0;
5524 }
5525
5526 /* More interesting part now : we know that we have a complete
5527 * response which at least looks like HTTP. We have an indicator
5528 * of each header's length, so we can parse them quickly.
5529 */
5530
5531 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005532 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005533
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005534 /*
5535 * 1: get the status code
5536 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005537 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005538 if (n < 1 || n > 5)
5539 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005540 /* when the client triggers a 4xx from the server, it's most often due
5541 * to a missing object or permission. These events should be tracked
5542 * because if they happen often, it may indicate a brute force or a
5543 * vulnerability scan.
5544 */
5545 if (n == 4)
5546 session_inc_http_err_ctr(s);
5547
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005548 if (objt_server(s->target))
5549 objt_server(s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005550
Willy Tarreau5b154472009-12-21 20:11:07 +01005551 /* check if the response is HTTP/1.1 or above */
5552 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005553 ((rep->buf->p[5] > '1') ||
5554 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005555 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01005556
5557 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01005558 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 +01005559
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005560 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005561 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005562
Willy Tarreau9b28e032012-10-12 23:49:43 +02005563 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005564
Willy Tarreau39650402010-03-15 19:44:39 +01005565 /* Adjust server's health based on status code. Note: status codes 501
5566 * and 505 are triggered on demand by client request, so we must not
5567 * count them as server failures.
5568 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005569 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005570 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005571 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005572 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005573 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005574 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005575
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005576 /*
5577 * 2: check for cacheability.
5578 */
5579
5580 switch (txn->status) {
5581 case 200:
5582 case 203:
5583 case 206:
5584 case 300:
5585 case 301:
5586 case 410:
5587 /* RFC2616 @13.4:
5588 * "A response received with a status code of
5589 * 200, 203, 206, 300, 301 or 410 MAY be stored
5590 * by a cache (...) unless a cache-control
5591 * directive prohibits caching."
5592 *
5593 * RFC2616 @9.5: POST method :
5594 * "Responses to this method are not cacheable,
5595 * unless the response includes appropriate
5596 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005597 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005598 if (likely(txn->meth != HTTP_METH_POST) &&
Willy Tarreau67402132012-05-31 20:40:20 +02005599 ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005600 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
5601 break;
5602 default:
5603 break;
5604 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005605
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005606 /*
5607 * 3: we may need to capture headers
5608 */
5609 s->logs.logwait &= ~LW_RESP;
Willy Tarreau42f7d892012-03-24 08:28:09 +01005610 if (unlikely((s->logs.logwait & LW_RSPHDR) && txn->rsp.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02005611 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005612 txn->rsp.cap, s->fe->rsp_cap);
5613
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005614 /* 4: determine the transfer-length.
5615 * According to RFC2616 #4.4, amended by the HTTPbis working group,
5616 * the presence of a message-body in a RESPONSE and its transfer length
5617 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005618 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005619 * All responses to the HEAD request method MUST NOT include a
5620 * message-body, even though the presence of entity-header fields
5621 * might lead one to believe they do. All 1xx (informational), 204
5622 * (No Content), and 304 (Not Modified) responses MUST NOT include a
5623 * message-body. All other responses do include a message-body,
5624 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005625 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005626 * 1. Any response which "MUST NOT" include a message-body (such as the
5627 * 1xx, 204 and 304 responses and any response to a HEAD request) is
5628 * always terminated by the first empty line after the header fields,
5629 * regardless of the entity-header fields present in the message.
5630 *
5631 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
5632 * the "chunked" transfer-coding (Section 6.2) is used, the
5633 * transfer-length is defined by the use of this transfer-coding.
5634 * If a Transfer-Encoding header field is present and the "chunked"
5635 * transfer-coding is not present, the transfer-length is defined by
5636 * the sender closing the connection.
5637 *
5638 * 3. If a Content-Length header field is present, its decimal value in
5639 * OCTETs represents both the entity-length and the transfer-length.
5640 * If a message is received with both a Transfer-Encoding header
5641 * field and a Content-Length header field, the latter MUST be ignored.
5642 *
5643 * 4. If the message uses the media type "multipart/byteranges", and
5644 * the transfer-length is not otherwise specified, then this self-
5645 * delimiting media type defines the transfer-length. This media
5646 * type MUST NOT be used unless the sender knows that the recipient
5647 * can parse it; the presence in a request of a Range header with
5648 * multiple byte-range specifiers from a 1.1 client implies that the
5649 * client can parse multipart/byteranges responses.
5650 *
5651 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005652 */
5653
5654 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01005655 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005656 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005657 * FIXME: should we parse anyway and return an error on chunked encoding ?
5658 */
5659 if (txn->meth == HTTP_METH_HEAD ||
5660 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005661 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005662 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreau91015352012-11-27 07:31:33 +01005663 s->comp_algo = NULL;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005664 goto skip_content_length;
5665 }
5666
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005667 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005668 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005669 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005670 http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005671 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005672 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
5673 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005674 /* bad transfer-encoding (chunked followed by something else) */
5675 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005676 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005677 break;
5678 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005679 }
5680
5681 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
5682 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005683 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005684 http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005685 signed long long cl;
5686
Willy Tarreauad14f752011-09-02 20:33:27 +02005687 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005688 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005689 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005690 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005691
Willy Tarreauad14f752011-09-02 20:33:27 +02005692 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005693 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005694 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02005695 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005696
Willy Tarreauad14f752011-09-02 20:33:27 +02005697 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005698 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005699 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005700 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005701
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005702 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005703 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005704 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02005705 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005706
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005707 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01005708 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005709 }
5710
William Lallemand82fe75c2012-10-23 10:25:10 +02005711 if (s->fe->comp || s->be->comp)
5712 select_compression_response_header(s, rep->buf);
5713
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005714 /* FIXME: we should also implement the multipart/byterange method.
5715 * For now on, we resort to close mode in this case (unknown length).
5716 */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005717skip_content_length:
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005718
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005719 /* end of job, return OK */
5720 rep->analysers &= ~an_bit;
5721 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005722 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005723 return 1;
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005724
5725 abort_keep_alive:
5726 /* A keep-alive request to the server failed on a network error.
5727 * The client is required to retry. We need to close without returning
5728 * any other information so that the client retries.
5729 */
5730 txn->status = 0;
5731 rep->analysers = 0;
5732 s->req->analysers = 0;
5733 channel_auto_close(rep);
5734 s->logs.logwait = 0;
5735 s->logs.level = 0;
5736 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
5737 bi_erase(rep);
5738 stream_int_retnclose(rep->cons, NULL);
5739 return 0;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005740}
5741
5742/* This function performs all the processing enabled for the current response.
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005743 * It normally returns 1 unless it wants to break. It relies on buffers flags,
5744 * and updates t->rep->analysers. It might make sense to explode it into several
5745 * other functions. It works like process_request (see indications above).
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005746 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005747int http_process_res_common(struct session *t, struct channel *rep, int an_bit, struct proxy *px)
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005748{
5749 struct http_txn *txn = &t->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005750 struct http_msg *msg = &txn->rsp;
5751 struct proxy *cur_proxy;
Willy Tarreauf4f04122010-01-28 18:10:50 +01005752 struct cond_wordlist *wl;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02005753 struct http_res_rule *http_res_last_rule = NULL;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005754
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005755 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005756 now_ms, __FUNCTION__,
5757 t,
5758 rep,
5759 rep->rex, rep->wex,
5760 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005761 rep->buf->i,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005762 rep->analysers);
5763
Willy Tarreau655dce92009-11-08 13:10:58 +01005764 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005765 return 0;
5766
5767 rep->analysers &= ~an_bit;
5768 rep->analyse_exp = TICK_ETERNITY;
5769
Willy Tarreau5b154472009-12-21 20:11:07 +01005770 /* Now we have to check if we need to modify the Connection header.
5771 * This is more difficult on the response than it is on the request,
5772 * because we can have two different HTTP versions and we don't know
5773 * how the client will interprete a response. For instance, let's say
5774 * that the client sends a keep-alive request in HTTP/1.0 and gets an
5775 * HTTP/1.1 response without any header. Maybe it will bound itself to
5776 * HTTP/1.0 because it only knows about it, and will consider the lack
5777 * of header as a close, or maybe it knows HTTP/1.1 and can consider
5778 * the lack of header as a keep-alive. Thus we will use two flags
5779 * indicating how a request MAY be understood by the client. In case
5780 * of multiple possibilities, we'll fix the header to be explicit. If
5781 * ambiguous cases such as both close and keepalive are seen, then we
5782 * will fall back to explicit close. Note that we won't take risks with
5783 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01005784 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01005785 */
5786
Willy Tarreaudc008c52010-02-01 16:20:08 +01005787 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
5788 txn->status == 101)) {
5789 /* Either we've established an explicit tunnel, or we're
5790 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005791 * to understand the next protocols. We have to switch to tunnel
5792 * mode, so that we transfer the request and responses then let
5793 * this protocol pass unmodified. When we later implement specific
5794 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01005795 * header which contains information about that protocol for
5796 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005797 */
5798 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
5799 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01005800 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
5801 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01005802 ((t->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
5803 (t->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005804 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01005805
Willy Tarreau70dffda2014-01-30 03:07:23 +01005806 /* this situation happens when combining pretend-keepalive with httpclose. */
5807 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
5808 ((t->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
5809 (t->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))
5810 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
5811
Willy Tarreau60466522010-01-18 19:08:45 +01005812 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005813 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01005814 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5815 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01005816
Willy Tarreau60466522010-01-18 19:08:45 +01005817 /* now adjust header transformations depending on current state */
5818 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
5819 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5820 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005821 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01005822 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005823 }
Willy Tarreau60466522010-01-18 19:08:45 +01005824 else { /* SCL / KAL */
5825 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005826 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01005827 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005828 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005829
Willy Tarreau60466522010-01-18 19:08:45 +01005830 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005831 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01005832
Willy Tarreau60466522010-01-18 19:08:45 +01005833 /* Some keep-alive responses are converted to Server-close if
5834 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01005835 */
Willy Tarreau60466522010-01-18 19:08:45 +01005836 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
5837 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005838 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01005839 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005840 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005841 }
5842
Willy Tarreau7959a552013-09-23 16:44:27 +02005843 /* we want to have the response time before we start processing it */
5844 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
5845
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005846 if (1) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005847 /*
5848 * 3: we will have to evaluate the filters.
5849 * As opposed to version 1.2, now they will be evaluated in the
5850 * filters order and not in the header order. This means that
5851 * each filter has to be validated among all headers.
5852 *
5853 * Filters are tried with ->be first, then with ->fe if it is
5854 * different from ->be.
5855 */
5856
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005857 cur_proxy = t->be;
5858 while (1) {
5859 struct proxy *rule_set = cur_proxy;
5860
Willy Tarreaue365c0b2013-06-11 16:06:12 +02005861 /* evaluate http-response rules */
5862 if (!http_res_last_rule)
5863 http_res_last_rule = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, t, txn);
5864
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005865 /* try headers filters */
5866 if (rule_set->rsp_exp != NULL) {
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005867 if (apply_filters_to_response(t, rep, rule_set) < 0) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005868 return_bad_resp:
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005869 if (objt_server(t->target)) {
5870 objt_server(t->target)->counters.failed_resp++;
5871 health_adjust(objt_server(t->target), HANA_STATUS_HTTP_RSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005872 }
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005873 t->be->be_counters.failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005874 return_srv_prx_502:
Willy Tarreau2df28e82008-08-17 15:20:19 +02005875 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005876 txn->status = 502;
Willy Tarreau7959a552013-09-23 16:44:27 +02005877 t->logs.t_data = -1; /* was not a valid response */
Willy Tarreauc88ea682009-12-29 14:56:36 +01005878 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005879 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005880 stream_int_retnclose(rep->cons, http_error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005881 if (!(t->flags & SN_ERR_MASK))
5882 t->flags |= SN_ERR_PRXCOND;
5883 if (!(t->flags & SN_FINST_MASK))
5884 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02005885 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005886 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005887 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005888
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005889 /* has the response been denied ? */
5890 if (txn->flags & TX_SVDENY) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005891 if (objt_server(t->target))
5892 objt_server(t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005893
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005894 t->be->be_counters.denied_resp++;
5895 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005896 if (t->listener->counters)
5897 t->listener->counters->denied_resp++;
5898
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005899 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01005900 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005901
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005902 /* add response headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005903 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreau816b9792009-09-15 21:25:21 +02005904 if (txn->status < 200)
5905 break;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005906 if (wl->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02005907 int ret = acl_exec_cond(wl->cond, px, t, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005908 ret = acl_pass(ret);
5909 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
5910 ret = !ret;
5911 if (!ret)
5912 continue;
5913 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005914 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005915 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02005916 }
5917
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005918 /* check whether we're already working on the frontend */
5919 if (cur_proxy == t->fe)
5920 break;
5921 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005922 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005923
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005924 /*
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005925 * We may be facing a 100-continue response, in which case this
5926 * is not the right response, and we're waiting for the next one.
5927 * Let's allow this response to go to the client and wait for the
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005928 * next one.
5929 */
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005930 if (unlikely(txn->status == 100)) {
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005931 hdr_idx_init(&txn->hdr_idx);
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005932 msg->next -= channel_forward(rep, msg->next);
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005933 msg->msg_state = HTTP_MSG_RPBEFORE;
5934 txn->status = 0;
Willy Tarreau7959a552013-09-23 16:44:27 +02005935 t->logs.t_data = -1; /* was not a response yet */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005936 rep->analysers |= AN_RES_WAIT_HTTP | an_bit;
5937 return 1;
5938 }
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005939 else if (unlikely(txn->status < 200))
5940 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005941
5942 /* we don't have any 1xx status code now */
5943
5944 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005945 * 4: check for server cookie.
5946 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005947 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name ||
5948 (t->be->options & PR_O_CHK_CACHE))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005949 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005950
Willy Tarreaubaaee002006-06-26 02:48:02 +02005951
Willy Tarreaua15645d2007-03-18 16:22:39 +01005952 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005953 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005954 */
Willy Tarreau67402132012-05-31 20:40:20 +02005955 if ((t->be->options & PR_O_CHK_CACHE) || (t->be->ck_opts & PR_CK_NOC))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005956 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005957
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005958 /*
5959 * 6: add server cookie in the response if needed
5960 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005961 if (objt_server(t->target) && (t->be->ck_opts & PR_CK_INS) &&
Willy Tarreau67402132012-05-31 20:40:20 +02005962 !((txn->flags & TX_SCK_FOUND) && (t->be->ck_opts & PR_CK_PSV)) &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02005963 (!(t->flags & SN_DIRECT) ||
5964 ((t->be->cookie_maxidle || txn->cookie_last_date) &&
5965 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
5966 (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
5967 (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
Willy Tarreau67402132012-05-31 20:40:20 +02005968 (!(t->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02005969 !(t->flags & SN_IGNORE_PRST)) {
Willy Tarreauef4f3912010-10-07 21:00:29 +02005970 /* the server is known, it's not the one the client requested, or the
5971 * cookie's last seen date needs to be refreshed. We have to
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005972 * insert a set-cookie here, except if we want to insert only on POST
5973 * requests and this one isn't. Note that servers which don't have cookies
5974 * (eg: some backup servers) will return a full cookie removal request.
5975 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005976 if (!objt_server(t->target)->cookie) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005977 chunk_printf(&trash,
Willy Tarreauef4f3912010-10-07 21:00:29 +02005978 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5979 t->be->cookie_name);
5980 }
5981 else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005982 chunk_printf(&trash, "Set-Cookie: %s=%s", t->be->cookie_name, objt_server(t->target)->cookie);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005983
5984 if (t->be->cookie_maxidle || t->be->cookie_maxlife) {
5985 /* emit last_date, which is mandatory */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005986 trash.str[trash.len++] = COOKIE_DELIM_DATE;
5987 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
5988 trash.len += 5;
5989
Willy Tarreauef4f3912010-10-07 21:00:29 +02005990 if (t->be->cookie_maxlife) {
5991 /* emit first_date, which is either the original one or
5992 * the current date.
5993 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005994 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005995 s30tob64(txn->cookie_first_date ?
5996 txn->cookie_first_date >> 2 :
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005997 (date.tv_sec+3) >> 2, trash.str + trash.len);
5998 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005999 }
6000 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006001 chunk_appendf(&trash, "; path=/");
Willy Tarreauef4f3912010-10-07 21:00:29 +02006002 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006003
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006004 if (t->be->cookie_domain)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006005 chunk_appendf(&trash, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006006
Willy Tarreau4992dd22012-05-31 21:02:17 +02006007 if (t->be->ck_opts & PR_CK_HTTPONLY)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006008 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreau4992dd22012-05-31 21:02:17 +02006009
6010 if (t->be->ck_opts & PR_CK_SECURE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006011 chunk_appendf(&trash, "; Secure");
Willy Tarreau4992dd22012-05-31 21:02:17 +02006012
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006013 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006014 goto return_bad_resp;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006015
Willy Tarreauf1348312010-10-07 15:54:11 +02006016 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006017 if (objt_server(t->target)->cookie && (t->flags & SN_DIRECT))
Willy Tarreauef4f3912010-10-07 21:00:29 +02006018 /* the server did not change, only the date was updated */
6019 txn->flags |= TX_SCK_UPDATED;
6020 else
6021 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006022
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006023 /* Here, we will tell an eventual cache on the client side that we don't
6024 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
6025 * Some caches understand the correct form: 'no-cache="set-cookie"', but
6026 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
6027 */
Willy Tarreau67402132012-05-31 20:40:20 +02006028 if ((t->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02006029
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006030 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
6031
Willy Tarreau6acf7c92012-03-09 13:30:45 +01006032 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01006033 "Cache-control: private", 22) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006034 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006035 }
6036 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006037
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006038 /*
6039 * 7: check if result will be cacheable with a cookie.
6040 * We'll block the response if security checks have caught
6041 * nasty things such as a cacheable cookie.
6042 */
Willy Tarreauf1348312010-10-07 15:54:11 +02006043 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
6044 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006045 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006046
6047 /* we're in presence of a cacheable response containing
6048 * a set-cookie header. We'll block it as requested by
6049 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006050 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006051 if (objt_server(t->target))
6052 objt_server(t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006053
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006054 t->be->be_counters.denied_resp++;
6055 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006056 if (t->listener->counters)
6057 t->listener->counters->denied_resp++;
6058
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006059 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006060 t->be->id, objt_server(t->target) ? objt_server(t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006061 send_log(t->be, LOG_ALERT,
6062 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006063 t->be->id, objt_server(t->target) ? objt_server(t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006064 goto return_srv_prx_502;
6065 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006066
6067 /*
Willy Tarreau60466522010-01-18 19:08:45 +01006068 * 8: adjust "Connection: close" or "Connection: keep-alive" if needed.
Willy Tarreau50fc7772012-11-11 22:19:57 +01006069 * If an "Upgrade" token is found, the header is left untouched in order
6070 * not to have to deal with some client bugs : some of them fail an upgrade
6071 * if anything but "Upgrade" is present in the Connection header.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006072 */
Willy Tarreau50fc7772012-11-11 22:19:57 +01006073 if (!(txn->flags & TX_HDR_CONN_UPG) &&
6074 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01006075 ((t->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6076 (t->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01006077 unsigned int want_flags = 0;
6078
6079 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6080 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
6081 /* we want a keep-alive response here. Keep-alive header
6082 * required if either side is not 1.1.
6083 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006084 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01006085 want_flags |= TX_CON_KAL_SET;
6086 }
6087 else {
6088 /* we want a close response here. Close header required if
6089 * the server is 1.1, regardless of the client.
6090 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006091 if (msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01006092 want_flags |= TX_CON_CLO_SET;
6093 }
6094
6095 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01006096 http_change_connection_header(txn, msg, want_flags);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006097 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006098
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006099 skip_header_mangling:
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006100 if ((msg->flags & HTTP_MSGF_XFER_LEN) ||
Willy Tarreaudc008c52010-02-01 16:20:08 +01006101 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006102 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01006103
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006104 /*************************************************************
6105 * OK, that's finished for the headers. We have done what we *
6106 * could. Let's switch to the DATA state. *
6107 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02006108
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006109 /* if the user wants to log as soon as possible, without counting
6110 * bytes from the server, then this is the right moment. We have
6111 * to temporarily assign bytes_out to log what we currently have.
6112 */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01006113 if (!LIST_ISEMPTY(&t->fe->logformat) && !(t->logs.logwait & LW_BYTES)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006114 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
6115 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01006116 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006117 t->logs.bytes_out = 0;
6118 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006119
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006120 /* Note: we must not try to cheat by jumping directly to DATA,
6121 * otherwise we would not let the client side wake up.
6122 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006123
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006124 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006125 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006126 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006127}
Willy Tarreaua15645d2007-03-18 16:22:39 +01006128
Willy Tarreaud98cf932009-12-27 22:54:55 +01006129/* This function is an analyser which forwards response body (including chunk
6130 * sizes if any). It is called as soon as we must forward, even if we forward
6131 * zero byte. The only situation where it must not be called is when we're in
6132 * tunnel mode and we want to forward till the close. It's used both to forward
6133 * remaining data and to resync after end of body. It expects the msg_state to
6134 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
6135 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01006136 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreau26927362012-05-18 23:22:52 +02006137 * bytes of pending data + the headers if not already done (between sol and sov).
6138 * It eventually adjusts sol to match sov after the data in between have been sent.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006139 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006140int http_response_forward_body(struct session *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006141{
6142 struct http_txn *txn = &s->txn;
6143 struct http_msg *msg = &s->txn.rsp;
Willy Tarreauea953162012-05-18 23:41:28 +02006144 unsigned int bytes;
William Lallemand82fe75c2012-10-23 10:25:10 +02006145 static struct buffer *tmpbuf = NULL;
6146 int compressing = 0;
William Lallemandbf3ae612012-11-19 12:35:37 +01006147 int consumed_data = 0;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006148 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006149
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006150 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
6151 return 0;
6152
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006153 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02006154 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01006155 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02006156 /* Output closed while we were sending data. We must abort and
6157 * wake the other side up.
6158 */
6159 msg->msg_state = HTTP_MSG_ERROR;
6160 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01006161 return 1;
6162 }
6163
Willy Tarreau4fe41902010-06-07 22:27:41 +02006164 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006165 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006166
William Lallemand82fe75c2012-10-23 10:25:10 +02006167 /* this is the first time we need the compression buffer */
6168 if (s->comp_algo != NULL && tmpbuf == NULL) {
6169 if ((tmpbuf = pool_alloc2(pool2_buffer)) == NULL)
6170 goto aborted_xfer; /* no memory */
6171 }
6172
Willy Tarreaud98cf932009-12-27 22:54:55 +01006173 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01006174 /* we have msg->sov which points to the first byte of message body.
William Lallemand82fe75c2012-10-23 10:25:10 +02006175 * rep->buf.p still points to the beginning of the message and msg->sol
6176 * is still null. We forward the headers, we don't need them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006177 */
William Lallemand82fe75c2012-10-23 10:25:10 +02006178 channel_forward(res, msg->sov);
6179 msg->next = 0;
6180 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01006181
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006182 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006183 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
Willy Tarreau54d23df2012-10-25 19:04:45 +02006184 else
Willy Tarreaud98cf932009-12-27 22:54:55 +01006185 msg->msg_state = HTTP_MSG_DATA;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006186 }
6187
William Lallemand82fe75c2012-10-23 10:25:10 +02006188 if (s->comp_algo != NULL) {
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006189 ret = http_compression_buffer_init(s, res->buf, tmpbuf); /* init a buffer with headers */
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006190 if (ret < 0) {
6191 res->flags |= CF_WAKE_WRITE;
William Lallemand82fe75c2012-10-23 10:25:10 +02006192 goto missing_data; /* not enough spaces in buffers */
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006193 }
William Lallemand82fe75c2012-10-23 10:25:10 +02006194 compressing = 1;
6195 }
6196
Willy Tarreaud98cf932009-12-27 22:54:55 +01006197 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01006198 http_silent_debug(__LINE__, s);
Willy Tarreauea953162012-05-18 23:41:28 +02006199 /* we may have some data pending between sol and sov */
William Lallemand82fe75c2012-10-23 10:25:10 +02006200 if (s->comp_algo == NULL) {
6201 bytes = msg->sov - msg->sol;
6202 if (msg->chunk_len || bytes) {
6203 msg->sol = msg->sov;
6204 msg->next -= bytes; /* will be forwarded */
6205 msg->chunk_len += bytes;
6206 msg->chunk_len -= channel_forward(res, msg->chunk_len);
6207 }
Willy Tarreau638cd022010-01-03 07:42:04 +01006208 }
6209
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006210 switch (msg->msg_state - HTTP_MSG_DATA) {
6211 case HTTP_MSG_DATA - HTTP_MSG_DATA: /* must still forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01006212 if (compressing) {
6213 consumed_data += ret = http_compression_buffer_add_data(s, res->buf, tmpbuf);
6214 if (ret < 0)
6215 goto aborted_xfer;
6216 }
William Lallemand82fe75c2012-10-23 10:25:10 +02006217
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006218 if (res->to_forward || msg->chunk_len) {
6219 res->flags |= CF_WAKE_WRITE;
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006220 goto missing_data;
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006221 }
Willy Tarreaucaabe412010-01-03 23:08:28 +01006222
6223 /* nothing left to forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01006224 if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau54d23df2012-10-25 19:04:45 +02006225 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
William Lallemandbf3ae612012-11-19 12:35:37 +01006226 } else {
Willy Tarreaucaabe412010-01-03 23:08:28 +01006227 msg->msg_state = HTTP_MSG_DONE;
William Lallemandbf3ae612012-11-19 12:35:37 +01006228 if (compressing && consumed_data) {
6229 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6230 compressing = 0;
6231 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006232 break;
William Lallemandbf3ae612012-11-19 12:35:37 +01006233 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006234 /* fall through for HTTP_MSG_CHUNK_CRLF */
6235
6236 case HTTP_MSG_CHUNK_CRLF - HTTP_MSG_DATA:
6237 /* we want the CRLF after the data */
6238
6239 ret = http_skip_chunk_crlf(msg);
6240 if (ret == 0)
6241 goto missing_data;
6242 else if (ret < 0) {
6243 if (msg->err_pos >= 0)
6244 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, s->fe);
6245 goto return_bad_res;
6246 }
6247 /* skipping data in buffer for compression */
6248 if (compressing) {
6249 b_adv(res->buf, msg->next);
6250 msg->next = 0;
6251 msg->sov = 0;
6252 msg->sol = 0;
6253 }
6254 /* we're in MSG_CHUNK_SIZE now, fall through */
6255
6256 case HTTP_MSG_CHUNK_SIZE - HTTP_MSG_DATA:
Willy Tarreau124d9912011-03-01 20:30:48 +01006257 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01006258 * set ->sov and ->next to point to the body and switch to DATA or
6259 * TRAILERS state.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006260 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01006261
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006262 ret = http_parse_chunk_size(msg);
Willy Tarreau54d23df2012-10-25 19:04:45 +02006263 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006264 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006265 else if (ret < 0) {
6266 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01006267 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006268 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006269 }
William Lallemandbf3ae612012-11-19 12:35:37 +01006270 if (compressing) {
6271 if (likely(msg->chunk_len > 0)) {
6272 /* skipping data if we are in compression mode */
6273 b_adv(res->buf, msg->next);
6274 msg->next = 0;
6275 msg->sov = 0;
6276 msg->sol = 0;
6277 } else {
6278 if (consumed_data) {
6279 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6280 compressing = 0;
6281 }
6282 }
William Lallemand82fe75c2012-10-23 10:25:10 +02006283 }
Willy Tarreau0161d622013-04-02 01:26:55 +02006284 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006285 break;
Willy Tarreau5523b322009-12-29 12:05:52 +01006286
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006287 case HTTP_MSG_TRAILERS - HTTP_MSG_DATA:
6288 ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006289 if (ret == 0)
6290 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006291 else if (ret < 0) {
6292 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01006293 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006294 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006295 }
William Lallemand00bf1de2012-11-22 17:55:14 +01006296 if (s->comp_algo != NULL) {
6297 /* forwarding trailers */
6298 channel_forward(res, msg->next);
6299 msg->next = 0;
6300 }
Willy Tarreau2d43e182013-04-03 00:22:25 +02006301 /* we're in HTTP_MSG_DONE now, but we might still have
6302 * some data pending, so let's loop over once.
6303 */
6304 break;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006305
6306 default:
Willy Tarreau610ecce2010-01-04 21:15:02 +01006307 /* other states, DONE...TUNNEL */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006308
6309 ret = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02006310 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006311 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6312 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006313 channel_dont_close(res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01006314 if (http_resync_states(s)) {
6315 http_silent_debug(__LINE__, s);
6316 /* some state changes occurred, maybe the analyser
6317 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01006318 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006319 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006320 if (res->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006321 /* response errors are most likely due to
6322 * the client aborting the transfer.
6323 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006324 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006325 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006326 if (msg->err_pos >= 0)
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006327 http_capture_bad_message(&s->be->invalid_rep, s, msg, ret, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01006328 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006329 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01006330 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01006331 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01006332 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006333 }
6334 }
6335
Willy Tarreaud98cf932009-12-27 22:54:55 +01006336 missing_data:
William Lallemandbf3ae612012-11-19 12:35:37 +01006337 if (compressing && consumed_data) {
William Lallemand82fe75c2012-10-23 10:25:10 +02006338 http_compression_buffer_end(s, &res->buf, &tmpbuf, 0);
6339 compressing = 0;
6340 }
Willy Tarreauf003d372012-11-26 13:35:37 +01006341
6342 if (res->flags & CF_SHUTW)
6343 goto aborted_xfer;
6344
6345 /* stop waiting for data if the input is closed before the end. If the
6346 * client side was already closed, it means that the client has aborted,
6347 * so we don't want to count this as a server abort. Otherwise it's a
6348 * server abort.
6349 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006350 if (res->flags & CF_SHUTR) {
Willy Tarreauf003d372012-11-26 13:35:37 +01006351 if ((res->flags & CF_SHUTW_NOW) || (s->req->flags & CF_SHUTR))
6352 goto aborted_xfer;
Willy Tarreau40dba092010-03-04 18:14:51 +01006353 if (!(s->flags & SN_ERR_MASK))
6354 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006355 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006356 if (objt_server(s->target))
6357 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006358 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01006359 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006360
Willy Tarreau40dba092010-03-04 18:14:51 +01006361 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01006362 if (!s->req->analysers)
6363 goto return_bad_res;
6364
Willy Tarreauea953162012-05-18 23:41:28 +02006365 /* forward any data pending between sol and sov */
William Lallemand82fe75c2012-10-23 10:25:10 +02006366 if (s->comp_algo == NULL) {
6367 bytes = msg->sov - msg->sol;
6368 if (msg->chunk_len || bytes) {
6369 msg->sol = msg->sov;
6370 msg->next -= bytes; /* will be forwarded */
6371 msg->chunk_len += bytes;
6372 msg->chunk_len -= channel_forward(res, msg->chunk_len);
6373 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01006374 }
6375
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006376 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006377 * chunks even if the server has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006378 * Similarly, with keep-alive on the client side, we don't want to forward a
6379 * close.
6380 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006381 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006382 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6383 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006384 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006385
Willy Tarreau5c620922011-05-11 19:56:11 +02006386 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006387 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02006388 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01006389 * modes are already handled by the stream sock layer. We must not do
6390 * this in content-length mode because it could present the MSG_MORE
6391 * flag with the last block of forwarded data, which would cause an
6392 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02006393 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006394 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006395 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02006396
Willy Tarreaud98cf932009-12-27 22:54:55 +01006397 /* the session handler will take care of timeouts and errors */
Willy Tarreau610ecce2010-01-04 21:15:02 +01006398 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006399 return 0;
6400
Willy Tarreau40dba092010-03-04 18:14:51 +01006401 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006402 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006403 if (objt_server(s->target))
6404 objt_server(s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006405
6406 return_bad_res_stats_ok:
Willy Tarreaud98cf932009-12-27 22:54:55 +01006407 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01006408 /* don't send any error message as we're in the body */
6409 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006410 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006411 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006412 if (objt_server(s->target))
6413 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006414
6415 if (!(s->flags & SN_ERR_MASK))
6416 s->flags |= SN_ERR_PRXCOND;
6417 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01006418 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006419 return 0;
6420
6421 aborted_xfer:
6422 txn->rsp.msg_state = HTTP_MSG_ERROR;
6423 /* don't send any error message as we're in the body */
6424 stream_int_retnclose(res->cons, NULL);
6425 res->analysers = 0;
6426 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
6427
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006428 s->fe->fe_counters.cli_aborts++;
6429 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006430 if (objt_server(s->target))
6431 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006432
6433 if (!(s->flags & SN_ERR_MASK))
6434 s->flags |= SN_ERR_CLICL;
6435 if (!(s->flags & SN_FINST_MASK))
6436 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006437 return 0;
6438}
6439
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006440/* Iterate the same filter through all request headers.
6441 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006442 * Since it can manage the switch to another backend, it updates the per-proxy
6443 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006444 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006445int apply_filter_to_req_headers(struct session *t, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006446{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006447 char term;
6448 char *cur_ptr, *cur_end, *cur_next;
6449 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006450 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006451 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006452 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01006453
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006454 last_hdr = 0;
6455
Willy Tarreau9b28e032012-10-12 23:49:43 +02006456 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006457 old_idx = 0;
6458
6459 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006460 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006461 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006462 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006463 (exp->action == ACT_ALLOW ||
6464 exp->action == ACT_DENY ||
6465 exp->action == ACT_TARPIT))
6466 return 0;
6467
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006468 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006469 if (!cur_idx)
6470 break;
6471
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006472 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006473 cur_ptr = cur_next;
6474 cur_end = cur_ptr + cur_hdr->len;
6475 cur_next = cur_end + cur_hdr->cr + 1;
6476
6477 /* Now we have one header between cur_ptr and cur_end,
6478 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006479 */
6480
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006481 /* The annoying part is that pattern matching needs
6482 * that we modify the contents to null-terminate all
6483 * strings before testing them.
6484 */
6485
6486 term = *cur_end;
6487 *cur_end = '\0';
6488
6489 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6490 switch (exp->action) {
6491 case ACT_SETBE:
6492 /* It is not possible to jump a second time.
6493 * FIXME: should we return an HTTP/500 here so that
6494 * the admin knows there's a problem ?
6495 */
6496 if (t->be != t->fe)
6497 break;
6498
6499 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02006500 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006501 last_hdr = 1;
6502 break;
6503
6504 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006505 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006506 last_hdr = 1;
6507 break;
6508
6509 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006510 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006511 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006512 break;
6513
6514 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006515 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006516 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006517 break;
6518
6519 case ACT_REPLACE:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006520 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
6521 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006522 /* FIXME: if the user adds a newline in the replacement, the
6523 * index will not be recalculated for now, and the new line
6524 * will not be counted as a new header.
6525 */
6526
6527 cur_end += delta;
6528 cur_next += delta;
6529 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006530 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006531 break;
6532
6533 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02006534 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006535 cur_next += delta;
6536
Willy Tarreaufa355d42009-11-29 18:12:29 +01006537 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006538 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6539 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006540 cur_hdr->len = 0;
6541 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006542 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006543 break;
6544
6545 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006546 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006547 if (cur_end)
6548 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006549
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006550 /* keep the link from this header to next one in case of later
6551 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006552 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006553 old_idx = cur_idx;
6554 }
6555 return 0;
6556}
6557
6558
6559/* Apply the filter to the request line.
6560 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6561 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006562 * Since it can manage the switch to another backend, it updates the per-proxy
6563 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006564 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006565int apply_filter_to_req_line(struct session *t, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006566{
6567 char term;
6568 char *cur_ptr, *cur_end;
6569 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006570 struct http_txn *txn = &t->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006571 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006572
Willy Tarreau3d300592007-03-18 18:34:41 +01006573 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006574 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006575 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006576 (exp->action == ACT_ALLOW ||
6577 exp->action == ACT_DENY ||
6578 exp->action == ACT_TARPIT))
6579 return 0;
6580 else if (exp->action == ACT_REMOVE)
6581 return 0;
6582
6583 done = 0;
6584
Willy Tarreau9b28e032012-10-12 23:49:43 +02006585 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006586 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006587
6588 /* Now we have the request line between cur_ptr and cur_end */
6589
6590 /* The annoying part is that pattern matching needs
6591 * that we modify the contents to null-terminate all
6592 * strings before testing them.
6593 */
6594
6595 term = *cur_end;
6596 *cur_end = '\0';
6597
6598 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6599 switch (exp->action) {
6600 case ACT_SETBE:
6601 /* It is not possible to jump a second time.
6602 * FIXME: should we return an HTTP/500 here so that
6603 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01006604 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006605 if (t->be != t->fe)
6606 break;
6607
6608 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02006609 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006610 done = 1;
6611 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006612
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006613 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006614 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006615 done = 1;
6616 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006617
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006618 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006619 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006620 done = 1;
6621 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006622
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006623 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006624 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006625 done = 1;
6626 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006627
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006628 case ACT_REPLACE:
6629 *cur_end = term; /* restore the string terminator */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006630 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
6631 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006632 /* FIXME: if the user adds a newline in the replacement, the
6633 * index will not be recalculated for now, and the new line
6634 * will not be counted as a new header.
6635 */
Willy Tarreaua496b602006-12-17 23:15:24 +01006636
Willy Tarreaufa355d42009-11-29 18:12:29 +01006637 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006638 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02006639 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006640 HTTP_MSG_RQMETH,
6641 cur_ptr, cur_end + 1,
6642 NULL, NULL);
6643 if (unlikely(!cur_end))
6644 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01006645
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006646 /* we have a full request and we know that we have either a CR
6647 * or an LF at <ptr>.
6648 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006649 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
6650 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006651 /* there is no point trying this regex on headers */
6652 return 1;
6653 }
6654 }
6655 *cur_end = term; /* restore the string terminator */
6656 return done;
6657}
Willy Tarreau97de6242006-12-27 17:18:38 +01006658
Willy Tarreau58f10d72006-12-04 02:26:12 +01006659
Willy Tarreau58f10d72006-12-04 02:26:12 +01006660
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006661/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01006662 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006663 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01006664 * unparsable request. Since it can manage the switch to another backend, it
6665 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006666 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006667int apply_filters_to_request(struct session *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006668{
Willy Tarreau6c123b12010-01-28 20:22:06 +01006669 struct http_txn *txn = &s->txn;
6670 struct hdr_exp *exp;
6671
6672 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006673 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006674
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006675 /*
6676 * The interleaving of transformations and verdicts
6677 * makes it difficult to decide to continue or stop
6678 * the evaluation.
6679 */
6680
Willy Tarreau6c123b12010-01-28 20:22:06 +01006681 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
6682 break;
6683
Willy Tarreau3d300592007-03-18 18:34:41 +01006684 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006685 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01006686 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006687 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01006688
6689 /* if this filter had a condition, evaluate it now and skip to
6690 * next filter if the condition does not match.
6691 */
6692 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02006693 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01006694 ret = acl_pass(ret);
6695 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6696 ret = !ret;
6697
6698 if (!ret)
6699 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006700 }
6701
6702 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01006703 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006704 if (unlikely(ret < 0))
6705 return -1;
6706
6707 if (likely(ret == 0)) {
6708 /* The filter did not match the request, it can be
6709 * iterated through all headers.
6710 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01006711 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006712 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006713 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006714 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006715}
6716
6717
Willy Tarreaua15645d2007-03-18 16:22:39 +01006718
Willy Tarreau58f10d72006-12-04 02:26:12 +01006719/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006720 * Try to retrieve the server associated to the appsession.
6721 * If the server is found, it's assigned to the session.
6722 */
Cyril Bontéb21570a2009-11-29 20:04:48 +01006723void manage_client_side_appsession(struct session *t, const char *buf, int len) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006724 struct http_txn *txn = &t->txn;
6725 appsess *asession = NULL;
6726 char *sessid_temp = NULL;
6727
Cyril Bontéb21570a2009-11-29 20:04:48 +01006728 if (len > t->be->appsession_len) {
6729 len = t->be->appsession_len;
6730 }
6731
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006732 if (t->be->options2 & PR_O2_AS_REQL) {
6733 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006734 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006735 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006736 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006737 }
6738
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006739 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006740 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6741 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6742 return;
6743 }
6744
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006745 memcpy(txn->sessid, buf, len);
6746 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006747 }
6748
6749 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
6750 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6751 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6752 return;
6753 }
6754
Cyril Bontéb21570a2009-11-29 20:04:48 +01006755 memcpy(sessid_temp, buf, len);
6756 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006757
6758 asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp);
6759 /* free previously allocated memory */
6760 pool_free2(apools.sessid, sessid_temp);
6761
6762 if (asession != NULL) {
6763 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
6764 if (!(t->be->options2 & PR_O2_AS_REQL))
6765 asession->request_count++;
6766
6767 if (asession->serverid != NULL) {
6768 struct server *srv = t->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02006769
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006770 while (srv) {
6771 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01006772 if ((srv->state & SRV_RUNNING) ||
6773 (t->be->options & PR_O_PERSIST) ||
6774 (t->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006775 /* we found the server and it's usable */
6776 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01006777 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006778 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006779 t->target = &srv->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +01006780
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006781 break;
6782 } else {
6783 txn->flags &= ~TX_CK_MASK;
6784 txn->flags |= TX_CK_DOWN;
6785 }
6786 }
6787 srv = srv->next;
6788 }
6789 }
6790 }
6791}
6792
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006793/* Find the end of a cookie value contained between <s> and <e>. It works the
6794 * same way as with headers above except that the semi-colon also ends a token.
6795 * See RFC2965 for more information. Note that it requires a valid header to
6796 * return a valid result.
6797 */
6798char *find_cookie_value_end(char *s, const char *e)
6799{
6800 int quoted, qdpair;
6801
6802 quoted = qdpair = 0;
6803 for (; s < e; s++) {
6804 if (qdpair) qdpair = 0;
6805 else if (quoted) {
6806 if (*s == '\\') qdpair = 1;
6807 else if (*s == '"') quoted = 0;
6808 }
6809 else if (*s == '"') quoted = 1;
6810 else if (*s == ',' || *s == ';') return s;
6811 }
6812 return s;
6813}
6814
6815/* Delete a value in a header between delimiters <from> and <next> in buffer
6816 * <buf>. The number of characters displaced is returned, and the pointer to
6817 * the first delimiter is updated if required. The function tries as much as
6818 * possible to respect the following principles :
6819 * - replace <from> delimiter by the <next> one unless <from> points to a
6820 * colon, in which case <next> is simply removed
6821 * - set exactly one space character after the new first delimiter, unless
6822 * there are not enough characters in the block being moved to do so.
6823 * - remove unneeded spaces before the previous delimiter and after the new
6824 * one.
6825 *
6826 * It is the caller's responsibility to ensure that :
6827 * - <from> points to a valid delimiter or the colon ;
6828 * - <next> points to a valid delimiter or the final CR/LF ;
6829 * - there are non-space chars before <from> ;
6830 * - there is a CR/LF at or after <next>.
6831 */
Willy Tarreauaf819352012-08-27 22:08:00 +02006832int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006833{
6834 char *prev = *from;
6835
6836 if (*prev == ':') {
6837 /* We're removing the first value, preserve the colon and add a
6838 * space if possible.
6839 */
6840 if (!http_is_crlf[(unsigned char)*next])
6841 next++;
6842 prev++;
6843 if (prev < next)
6844 *prev++ = ' ';
6845
6846 while (http_is_spht[(unsigned char)*next])
6847 next++;
6848 } else {
6849 /* Remove useless spaces before the old delimiter. */
6850 while (http_is_spht[(unsigned char)*(prev-1)])
6851 prev--;
6852 *from = prev;
6853
6854 /* copy the delimiter and if possible a space if we're
6855 * not at the end of the line.
6856 */
6857 if (!http_is_crlf[(unsigned char)*next]) {
6858 *prev++ = *next++;
6859 if (prev + 1 < next)
6860 *prev++ = ' ';
6861 while (http_is_spht[(unsigned char)*next])
6862 next++;
6863 }
6864 }
6865 return buffer_replace2(buf, prev, next, NULL, 0);
6866}
6867
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006868/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006869 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006870 * desirable to call it only when needed. This code is quite complex because
6871 * of the multiple very crappy and ambiguous syntaxes we have to support. it
6872 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01006873 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006874void manage_client_side_cookies(struct session *t, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006875{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006876 struct http_txn *txn = &t->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006877 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006878 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006879 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
6880 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006881
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006882 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01006883 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02006884 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006885
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006886 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006887 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006888 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006889
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006890 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006891 hdr_beg = hdr_next;
6892 hdr_end = hdr_beg + cur_hdr->len;
6893 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006894
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006895 /* We have one full header between hdr_beg and hdr_end, and the
6896 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01006897 * "Cookie:" headers.
6898 */
6899
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006900 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006901 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006902 old_idx = cur_idx;
6903 continue;
6904 }
6905
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006906 del_from = NULL; /* nothing to be deleted */
6907 preserve_hdr = 0; /* assume we may kill the whole header */
6908
Willy Tarreau58f10d72006-12-04 02:26:12 +01006909 /* Now look for cookies. Conforming to RFC2109, we have to support
6910 * attributes whose name begin with a '$', and associate them with
6911 * the right cookie, if we want to delete this cookie.
6912 * So there are 3 cases for each cookie read :
6913 * 1) it's a special attribute, beginning with a '$' : ignore it.
6914 * 2) it's a server id cookie that we *MAY* want to delete : save
6915 * some pointers on it (last semi-colon, beginning of cookie...)
6916 * 3) it's an application cookie : we *MAY* have to delete a previous
6917 * "special" cookie.
6918 * At the end of loop, if a "special" cookie remains, we may have to
6919 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006920 * *MUST* delete it.
6921 *
6922 * Note: RFC2965 is unclear about the processing of spaces around
6923 * the equal sign in the ATTR=VALUE form. A careful inspection of
6924 * the RFC explicitly allows spaces before it, and not within the
6925 * tokens (attrs or values). An inspection of RFC2109 allows that
6926 * too but section 10.1.3 lets one think that spaces may be allowed
6927 * after the equal sign too, resulting in some (rare) buggy
6928 * implementations trying to do that. So let's do what servers do.
6929 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
6930 * allowed quoted strings in values, with any possible character
6931 * after a backslash, including control chars and delimitors, which
6932 * causes parsing to become ambiguous. Browsers also allow spaces
6933 * within values even without quotes.
6934 *
6935 * We have to keep multiple pointers in order to support cookie
6936 * removal at the beginning, middle or end of header without
6937 * corrupting the header. All of these headers are valid :
6938 *
6939 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
6940 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
6941 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
6942 * | | | | | | | | |
6943 * | | | | | | | | hdr_end <--+
6944 * | | | | | | | +--> next
6945 * | | | | | | +----> val_end
6946 * | | | | | +-----------> val_beg
6947 * | | | | +--------------> equal
6948 * | | | +----------------> att_end
6949 * | | +---------------------> att_beg
6950 * | +--------------------------> prev
6951 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01006952 */
6953
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006954 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
6955 /* Iterate through all cookies on this line */
6956
6957 /* find att_beg */
6958 att_beg = prev + 1;
6959 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6960 att_beg++;
6961
6962 /* find att_end : this is the first character after the last non
6963 * space before the equal. It may be equal to hdr_end.
6964 */
6965 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006966
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006967 while (equal < hdr_end) {
6968 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01006969 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006970 if (http_is_spht[(unsigned char)*equal++])
6971 continue;
6972 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006973 }
6974
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006975 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6976 * is between <att_beg> and <equal>, both may be identical.
6977 */
6978
6979 /* look for end of cookie if there is an equal sign */
6980 if (equal < hdr_end && *equal == '=') {
6981 /* look for the beginning of the value */
6982 val_beg = equal + 1;
6983 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6984 val_beg++;
6985
6986 /* find the end of the value, respecting quotes */
6987 next = find_cookie_value_end(val_beg, hdr_end);
6988
6989 /* make val_end point to the first white space or delimitor after the value */
6990 val_end = next;
6991 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6992 val_end--;
6993 } else {
6994 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01006995 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006996
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006997 /* We have nothing to do with attributes beginning with '$'. However,
6998 * they will automatically be removed if a header before them is removed,
6999 * since they're supposed to be linked together.
7000 */
7001 if (*att_beg == '$')
7002 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007003
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007004 /* Ignore cookies with no equal sign */
7005 if (equal == next) {
7006 /* This is not our cookie, so we must preserve it. But if we already
7007 * scheduled another cookie for removal, we cannot remove the
7008 * complete header, but we can remove the previous block itself.
7009 */
7010 preserve_hdr = 1;
7011 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007012 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007013 val_end += delta;
7014 next += delta;
7015 hdr_end += delta;
7016 hdr_next += delta;
7017 cur_hdr->len += delta;
7018 http_msg_move_end(&txn->req, delta);
7019 prev = del_from;
7020 del_from = NULL;
7021 }
7022 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01007023 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007024
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007025 /* if there are spaces around the equal sign, we need to
7026 * strip them otherwise we'll get trouble for cookie captures,
7027 * or even for rewrites. Since this happens extremely rarely,
7028 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007029 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007030 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7031 int stripped_before = 0;
7032 int stripped_after = 0;
7033
7034 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007035 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007036 equal += stripped_before;
7037 val_beg += stripped_before;
7038 }
7039
7040 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007041 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007042 val_beg += stripped_after;
7043 stripped_before += stripped_after;
7044 }
7045
7046 val_end += stripped_before;
7047 next += stripped_before;
7048 hdr_end += stripped_before;
7049 hdr_next += stripped_before;
7050 cur_hdr->len += stripped_before;
7051 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007052 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007053 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007054
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007055 /* First, let's see if we want to capture this cookie. We check
7056 * that we don't already have a client side cookie, because we
7057 * can only capture one. Also as an optimisation, we ignore
7058 * cookies shorter than the declared name.
7059 */
7060 if (t->fe->capture_name != NULL && txn->cli_cookie == NULL &&
7061 (val_end - att_beg >= t->fe->capture_namelen) &&
7062 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
7063 int log_len = val_end - att_beg;
7064
7065 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
7066 Alert("HTTP logging : out of memory.\n");
7067 } else {
7068 if (log_len > t->fe->capture_len)
7069 log_len = t->fe->capture_len;
7070 memcpy(txn->cli_cookie, att_beg, log_len);
7071 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007072 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007073 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007074
Willy Tarreaubca99692010-10-06 19:25:55 +02007075 /* Persistence cookies in passive, rewrite or insert mode have the
7076 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007077 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007078 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007079 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007080 * For cookies in prefix mode, the form is :
7081 *
7082 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007083 */
7084 if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
7085 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
7086 struct server *srv = t->be->srv;
7087 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007088
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007089 /* if we're in cookie prefix mode, we'll search the delimitor so that we
7090 * have the server ID between val_beg and delim, and the original cookie between
7091 * delim+1 and val_end. Otherwise, delim==val_end :
7092 *
7093 * Cookie: NAME=SRV; # in all but prefix modes
7094 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
7095 * | || || | |+-> next
7096 * | || || | +--> val_end
7097 * | || || +---------> delim
7098 * | || |+------------> val_beg
7099 * | || +-------------> att_end = equal
7100 * | |+-----------------> att_beg
7101 * | +------------------> prev
7102 * +-------------------------> hdr_beg
7103 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007104
Willy Tarreau67402132012-05-31 20:40:20 +02007105 if (t->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007106 for (delim = val_beg; delim < val_end; delim++)
7107 if (*delim == COOKIE_DELIM)
7108 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02007109 } else {
7110 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007111 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02007112 /* Now check if the cookie contains a date field, which would
7113 * appear after a vertical bar ('|') just after the server name
7114 * and before the delimiter.
7115 */
7116 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
7117 if (vbar1) {
7118 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02007119 * right is the last seen date. It is a base64 encoded
7120 * 30-bit value representing the UNIX date since the
7121 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02007122 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02007123 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02007124 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02007125 if (val_end - vbar1 >= 5) {
7126 val = b64tos30(vbar1);
7127 if (val > 0)
7128 txn->cookie_last_date = val << 2;
7129 }
7130 /* look for a second vertical bar */
7131 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
7132 if (vbar1 && (val_end - vbar1 > 5)) {
7133 val = b64tos30(vbar1 + 1);
7134 if (val > 0)
7135 txn->cookie_first_date = val << 2;
7136 }
Willy Tarreaubca99692010-10-06 19:25:55 +02007137 }
7138 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007139
Willy Tarreauf64d1412010-10-07 20:06:11 +02007140 /* if the cookie has an expiration date and the proxy wants to check
7141 * it, then we do that now. We first check if the cookie is too old,
7142 * then only if it has expired. We detect strict overflow because the
7143 * time resolution here is not great (4 seconds). Cookies with dates
7144 * in the future are ignored if their offset is beyond one day. This
7145 * allows an admin to fix timezone issues without expiring everyone
7146 * and at the same time avoids keeping unwanted side effects for too
7147 * long.
7148 */
7149 if (txn->cookie_first_date && t->be->cookie_maxlife &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02007150 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) ||
7151 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007152 txn->flags &= ~TX_CK_MASK;
7153 txn->flags |= TX_CK_OLD;
7154 delim = val_beg; // let's pretend we have not found the cookie
7155 txn->cookie_first_date = 0;
7156 txn->cookie_last_date = 0;
7157 }
7158 else if (txn->cookie_last_date && t->be->cookie_maxidle &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02007159 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) ||
7160 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007161 txn->flags &= ~TX_CK_MASK;
7162 txn->flags |= TX_CK_EXPIRED;
7163 delim = val_beg; // let's pretend we have not found the cookie
7164 txn->cookie_first_date = 0;
7165 txn->cookie_last_date = 0;
7166 }
7167
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007168 /* Here, we'll look for the first running server which supports the cookie.
7169 * This allows to share a same cookie between several servers, for example
7170 * to dedicate backup servers to specific servers only.
7171 * However, to prevent clients from sticking to cookie-less backup server
7172 * when they have incidentely learned an empty cookie, we simply ignore
7173 * empty cookies and mark them as invalid.
7174 * The same behaviour is applied when persistence must be ignored.
7175 */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02007176 if ((delim == val_beg) || (t->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007177 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007178
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007179 while (srv) {
7180 if (srv->cookie && (srv->cklen == delim - val_beg) &&
7181 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
7182 if ((srv->state & SRV_RUNNING) ||
7183 (t->be->options & PR_O_PERSIST) ||
7184 (t->flags & SN_FORCE_PRST)) {
7185 /* we found the server and we can use it */
7186 txn->flags &= ~TX_CK_MASK;
7187 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
7188 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007189 t->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007190 break;
7191 } else {
7192 /* we found a server, but it's down,
7193 * mark it as such and go on in case
7194 * another one is available.
7195 */
7196 txn->flags &= ~TX_CK_MASK;
7197 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007198 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007199 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007200 srv = srv->next;
7201 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007202
Willy Tarreauf64d1412010-10-07 20:06:11 +02007203 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007204 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007205 txn->flags &= ~TX_CK_MASK;
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007206 if ((t->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
7207 txn->flags |= TX_CK_UNUSED;
7208 else
7209 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007210 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007211
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007212 /* depending on the cookie mode, we may have to either :
7213 * - delete the complete cookie if we're in insert+indirect mode, so that
7214 * the server never sees it ;
7215 * - remove the server id from the cookie value, and tag the cookie as an
7216 * application cookie so that it does not get accidentely removed later,
7217 * if we're in cookie prefix mode
7218 */
Willy Tarreau67402132012-05-31 20:40:20 +02007219 if ((t->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007220 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007221
Willy Tarreau9b28e032012-10-12 23:49:43 +02007222 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007223 val_end += delta;
7224 next += delta;
7225 hdr_end += delta;
7226 hdr_next += delta;
7227 cur_hdr->len += delta;
7228 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007229
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007230 del_from = NULL;
7231 preserve_hdr = 1; /* we want to keep this cookie */
7232 }
7233 else if (del_from == NULL &&
Willy Tarreau67402132012-05-31 20:40:20 +02007234 (t->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007235 del_from = prev;
7236 }
7237 } else {
7238 /* This is not our cookie, so we must preserve it. But if we already
7239 * scheduled another cookie for removal, we cannot remove the
7240 * complete header, but we can remove the previous block itself.
7241 */
7242 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007243
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007244 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007245 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01007246 if (att_beg >= del_from)
7247 att_beg += delta;
7248 if (att_end >= del_from)
7249 att_end += delta;
7250 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007251 val_end += delta;
7252 next += delta;
7253 hdr_end += delta;
7254 hdr_next += delta;
7255 cur_hdr->len += delta;
7256 http_msg_move_end(&txn->req, delta);
7257 prev = del_from;
7258 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007259 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007260 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007261
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007262 /* Look for the appsession cookie unless persistence must be ignored */
7263 if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
7264 int cmp_len, value_len;
7265 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007266
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007267 if (t->be->options2 & PR_O2_AS_PFX) {
7268 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
7269 value_begin = att_beg + t->be->appsession_name_len;
7270 value_len = val_end - att_beg - t->be->appsession_name_len;
7271 } else {
7272 cmp_len = att_end - att_beg;
7273 value_begin = val_beg;
7274 value_len = val_end - val_beg;
7275 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007276
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007277 /* let's see if the cookie is our appcookie */
7278 if (cmp_len == t->be->appsession_name_len &&
7279 memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) {
7280 manage_client_side_appsession(t, value_begin, value_len);
7281 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007282 }
7283
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007284 /* continue with next cookie on this header line */
7285 att_beg = next;
7286 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007287
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007288 /* There are no more cookies on this line.
7289 * We may still have one (or several) marked for deletion at the
7290 * end of the line. We must do this now in two ways :
7291 * - if some cookies must be preserved, we only delete from the
7292 * mark to the end of line ;
7293 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01007294 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007295 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007296 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007297 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007298 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007299 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007300 cur_hdr->len += delta;
7301 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007302 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007303
7304 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007305 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7306 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007307 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007308 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007309 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007310 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007311 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007312 }
7313
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007314 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007315 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007316 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007317}
7318
7319
Willy Tarreaua15645d2007-03-18 16:22:39 +01007320/* Iterate the same filter through all response headers contained in <rtr>.
7321 * Returns 1 if this filter can be stopped upon return, otherwise 0.
7322 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007323int apply_filter_to_resp_headers(struct session *t, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007324{
7325 char term;
7326 char *cur_ptr, *cur_end, *cur_next;
7327 int cur_idx, old_idx, last_hdr;
7328 struct http_txn *txn = &t->txn;
7329 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007330 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007331
7332 last_hdr = 0;
7333
Willy Tarreau9b28e032012-10-12 23:49:43 +02007334 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007335 old_idx = 0;
7336
7337 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007338 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007339 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007340 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007341 (exp->action == ACT_ALLOW ||
7342 exp->action == ACT_DENY))
7343 return 0;
7344
7345 cur_idx = txn->hdr_idx.v[old_idx].next;
7346 if (!cur_idx)
7347 break;
7348
7349 cur_hdr = &txn->hdr_idx.v[cur_idx];
7350 cur_ptr = cur_next;
7351 cur_end = cur_ptr + cur_hdr->len;
7352 cur_next = cur_end + cur_hdr->cr + 1;
7353
7354 /* Now we have one header between cur_ptr and cur_end,
7355 * and the next header starts at cur_next.
7356 */
7357
7358 /* The annoying part is that pattern matching needs
7359 * that we modify the contents to null-terminate all
7360 * strings before testing them.
7361 */
7362
7363 term = *cur_end;
7364 *cur_end = '\0';
7365
7366 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
7367 switch (exp->action) {
7368 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007369 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007370 last_hdr = 1;
7371 break;
7372
7373 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007374 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007375 last_hdr = 1;
7376 break;
7377
7378 case ACT_REPLACE:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007379 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
7380 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007381 /* FIXME: if the user adds a newline in the replacement, the
7382 * index will not be recalculated for now, and the new line
7383 * will not be counted as a new header.
7384 */
7385
7386 cur_end += delta;
7387 cur_next += delta;
7388 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007389 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007390 break;
7391
7392 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007393 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007394 cur_next += delta;
7395
Willy Tarreaufa355d42009-11-29 18:12:29 +01007396 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007397 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7398 txn->hdr_idx.used--;
7399 cur_hdr->len = 0;
7400 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007401 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007402 break;
7403
7404 }
7405 }
7406 if (cur_end)
7407 *cur_end = term; /* restore the string terminator */
7408
7409 /* keep the link from this header to next one in case of later
7410 * removal of next header.
7411 */
7412 old_idx = cur_idx;
7413 }
7414 return 0;
7415}
7416
7417
7418/* Apply the filter to the status line in the response buffer <rtr>.
7419 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7420 * or -1 if a replacement resulted in an invalid status line.
7421 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007422int apply_filter_to_sts_line(struct session *t, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007423{
7424 char term;
7425 char *cur_ptr, *cur_end;
7426 int done;
7427 struct http_txn *txn = &t->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007428 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007429
7430
Willy Tarreau3d300592007-03-18 18:34:41 +01007431 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007432 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007433 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007434 (exp->action == ACT_ALLOW ||
7435 exp->action == ACT_DENY))
7436 return 0;
7437 else if (exp->action == ACT_REMOVE)
7438 return 0;
7439
7440 done = 0;
7441
Willy Tarreau9b28e032012-10-12 23:49:43 +02007442 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007443 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007444
7445 /* Now we have the status line between cur_ptr and cur_end */
7446
7447 /* The annoying part is that pattern matching needs
7448 * that we modify the contents to null-terminate all
7449 * strings before testing them.
7450 */
7451
7452 term = *cur_end;
7453 *cur_end = '\0';
7454
7455 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
7456 switch (exp->action) {
7457 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007458 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007459 done = 1;
7460 break;
7461
7462 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007463 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007464 done = 1;
7465 break;
7466
7467 case ACT_REPLACE:
7468 *cur_end = term; /* restore the string terminator */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007469 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
7470 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007471 /* FIXME: if the user adds a newline in the replacement, the
7472 * index will not be recalculated for now, and the new line
7473 * will not be counted as a new header.
7474 */
7475
Willy Tarreaufa355d42009-11-29 18:12:29 +01007476 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007477 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007478 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02007479 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01007480 cur_ptr, cur_end + 1,
7481 NULL, NULL);
7482 if (unlikely(!cur_end))
7483 return -1;
7484
7485 /* we have a full respnse and we know that we have either a CR
7486 * or an LF at <ptr>.
7487 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007488 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007489 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01007490 /* there is no point trying this regex on headers */
7491 return 1;
7492 }
7493 }
7494 *cur_end = term; /* restore the string terminator */
7495 return done;
7496}
7497
7498
7499
7500/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007501 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007502 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
7503 * unparsable response.
7504 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007505int apply_filters_to_response(struct session *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007506{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007507 struct http_txn *txn = &s->txn;
7508 struct hdr_exp *exp;
7509
7510 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007511 int ret;
7512
7513 /*
7514 * The interleaving of transformations and verdicts
7515 * makes it difficult to decide to continue or stop
7516 * the evaluation.
7517 */
7518
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007519 if (txn->flags & TX_SVDENY)
7520 break;
7521
Willy Tarreau3d300592007-03-18 18:34:41 +01007522 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007523 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
7524 exp->action == ACT_PASS)) {
7525 exp = exp->next;
7526 continue;
7527 }
7528
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007529 /* if this filter had a condition, evaluate it now and skip to
7530 * next filter if the condition does not match.
7531 */
7532 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02007533 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007534 ret = acl_pass(ret);
7535 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7536 ret = !ret;
7537 if (!ret)
7538 continue;
7539 }
7540
Willy Tarreaua15645d2007-03-18 16:22:39 +01007541 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007542 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007543 if (unlikely(ret < 0))
7544 return -1;
7545
7546 if (likely(ret == 0)) {
7547 /* The filter did not match the response, it can be
7548 * iterated through all headers.
7549 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007550 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007551 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007552 }
7553 return 0;
7554}
7555
7556
Willy Tarreaua15645d2007-03-18 16:22:39 +01007557/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007558 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02007559 * desirable to call it only when needed. This function is also used when we
7560 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01007561 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007562void manage_server_side_cookies(struct session *t, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007563{
7564 struct http_txn *txn = &t->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01007565 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007566 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007567 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007568 char *hdr_beg, *hdr_end, *hdr_next;
7569 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007570
Willy Tarreaua15645d2007-03-18 16:22:39 +01007571 /* Iterate through the headers.
7572 * we start with the start line.
7573 */
7574 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007575 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007576
7577 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
7578 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007579 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007580
7581 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02007582 hdr_beg = hdr_next;
7583 hdr_end = hdr_beg + cur_hdr->len;
7584 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007585
Willy Tarreau24581ba2010-08-31 22:39:35 +02007586 /* We have one full header between hdr_beg and hdr_end, and the
7587 * next header starts at hdr_next. We're only interested in
7588 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007589 */
7590
Willy Tarreau24581ba2010-08-31 22:39:35 +02007591 is_cookie2 = 0;
7592 prev = hdr_beg + 10;
7593 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007594 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007595 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
7596 if (!val) {
7597 old_idx = cur_idx;
7598 continue;
7599 }
7600 is_cookie2 = 1;
7601 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007602 }
7603
Willy Tarreau24581ba2010-08-31 22:39:35 +02007604 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
7605 * <prev> points to the colon.
7606 */
Willy Tarreauf1348312010-10-07 15:54:11 +02007607 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007608
Willy Tarreau24581ba2010-08-31 22:39:35 +02007609 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
7610 * check-cache is enabled) and we are not interested in checking
7611 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007612 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007613 if (t->be->cookie_name == NULL &&
7614 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007615 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007616 return;
7617
Willy Tarreau24581ba2010-08-31 22:39:35 +02007618 /* OK so now we know we have to process this response cookie.
7619 * The format of the Set-Cookie header is slightly different
7620 * from the format of the Cookie header in that it does not
7621 * support the comma as a cookie delimiter (thus the header
7622 * cannot be folded) because the Expires attribute described in
7623 * the original Netscape's spec may contain an unquoted date
7624 * with a comma inside. We have to live with this because
7625 * many browsers don't support Max-Age and some browsers don't
7626 * support quoted strings. However the Set-Cookie2 header is
7627 * clean.
7628 *
7629 * We have to keep multiple pointers in order to support cookie
7630 * removal at the beginning, middle or end of header without
7631 * corrupting the header (in case of set-cookie2). A special
7632 * pointer, <scav> points to the beginning of the set-cookie-av
7633 * fields after the first semi-colon. The <next> pointer points
7634 * either to the end of line (set-cookie) or next unquoted comma
7635 * (set-cookie2). All of these headers are valid :
7636 *
7637 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
7638 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7639 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7640 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
7641 * | | | | | | | | | |
7642 * | | | | | | | | +-> next hdr_end <--+
7643 * | | | | | | | +------------> scav
7644 * | | | | | | +--------------> val_end
7645 * | | | | | +--------------------> val_beg
7646 * | | | | +----------------------> equal
7647 * | | | +------------------------> att_end
7648 * | | +----------------------------> att_beg
7649 * | +------------------------------> prev
7650 * +-----------------------------------------> hdr_beg
7651 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007652
Willy Tarreau24581ba2010-08-31 22:39:35 +02007653 for (; prev < hdr_end; prev = next) {
7654 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007655
Willy Tarreau24581ba2010-08-31 22:39:35 +02007656 /* find att_beg */
7657 att_beg = prev + 1;
7658 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
7659 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007660
Willy Tarreau24581ba2010-08-31 22:39:35 +02007661 /* find att_end : this is the first character after the last non
7662 * space before the equal. It may be equal to hdr_end.
7663 */
7664 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007665
Willy Tarreau24581ba2010-08-31 22:39:35 +02007666 while (equal < hdr_end) {
7667 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
7668 break;
7669 if (http_is_spht[(unsigned char)*equal++])
7670 continue;
7671 att_end = equal;
7672 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007673
Willy Tarreau24581ba2010-08-31 22:39:35 +02007674 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7675 * is between <att_beg> and <equal>, both may be identical.
7676 */
7677
7678 /* look for end of cookie if there is an equal sign */
7679 if (equal < hdr_end && *equal == '=') {
7680 /* look for the beginning of the value */
7681 val_beg = equal + 1;
7682 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
7683 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007684
Willy Tarreau24581ba2010-08-31 22:39:35 +02007685 /* find the end of the value, respecting quotes */
7686 next = find_cookie_value_end(val_beg, hdr_end);
7687
7688 /* make val_end point to the first white space or delimitor after the value */
7689 val_end = next;
7690 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
7691 val_end--;
7692 } else {
7693 /* <equal> points to next comma, semi-colon or EOL */
7694 val_beg = val_end = next = equal;
7695 }
7696
7697 if (next < hdr_end) {
7698 /* Set-Cookie2 supports multiple cookies, and <next> points to
7699 * a colon or semi-colon before the end. So skip all attr-value
7700 * pairs and look for the next comma. For Set-Cookie, since
7701 * commas are permitted in values, skip to the end.
7702 */
7703 if (is_cookie2)
7704 next = find_hdr_value_end(next, hdr_end);
7705 else
7706 next = hdr_end;
7707 }
7708
7709 /* Now everything is as on the diagram above */
7710
7711 /* Ignore cookies with no equal sign */
7712 if (equal == val_end)
7713 continue;
7714
7715 /* If there are spaces around the equal sign, we need to
7716 * strip them otherwise we'll get trouble for cookie captures,
7717 * or even for rewrites. Since this happens extremely rarely,
7718 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007719 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007720 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7721 int stripped_before = 0;
7722 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007723
Willy Tarreau24581ba2010-08-31 22:39:35 +02007724 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007725 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007726 equal += stripped_before;
7727 val_beg += stripped_before;
7728 }
7729
7730 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007731 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007732 val_beg += stripped_after;
7733 stripped_before += stripped_after;
7734 }
7735
7736 val_end += stripped_before;
7737 next += stripped_before;
7738 hdr_end += stripped_before;
7739 hdr_next += stripped_before;
7740 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02007741 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007742 }
7743
7744 /* First, let's see if we want to capture this cookie. We check
7745 * that we don't already have a server side cookie, because we
7746 * can only capture one. Also as an optimisation, we ignore
7747 * cookies shorter than the declared name.
7748 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007749 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01007750 txn->srv_cookie == NULL &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007751 (val_end - att_beg >= t->fe->capture_namelen) &&
7752 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
7753 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02007754 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007755 Alert("HTTP logging : out of memory.\n");
7756 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01007757 else {
7758 if (log_len > t->fe->capture_len)
7759 log_len = t->fe->capture_len;
7760 memcpy(txn->srv_cookie, att_beg, log_len);
7761 txn->srv_cookie[log_len] = 0;
7762 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007763 }
7764
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007765 srv = objt_server(t->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007766 /* now check if we need to process it for persistence */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007767 if (!(t->flags & SN_IGNORE_PRST) &&
7768 (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
7769 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02007770 /* assume passive cookie by default */
7771 txn->flags &= ~TX_SCK_MASK;
7772 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007773
7774 /* If the cookie is in insert mode on a known server, we'll delete
7775 * this occurrence because we'll insert another one later.
7776 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02007777 * a direct access.
7778 */
Willy Tarreau67402132012-05-31 20:40:20 +02007779 if (t->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02007780 /* The "preserve" flag was set, we don't want to touch the
7781 * server's cookie.
7782 */
7783 }
Willy Tarreau67402132012-05-31 20:40:20 +02007784 else if ((srv && (t->be->ck_opts & PR_CK_INS)) ||
7785 ((t->flags & SN_DIRECT) && (t->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007786 /* this cookie must be deleted */
7787 if (*prev == ':' && next == hdr_end) {
7788 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007789 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007790 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7791 txn->hdr_idx.used--;
7792 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007793 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007794 hdr_next += delta;
7795 http_msg_move_end(&txn->rsp, delta);
7796 /* note: while both invalid now, <next> and <hdr_end>
7797 * are still equal, so the for() will stop as expected.
7798 */
7799 } else {
7800 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007801 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007802 next = prev;
7803 hdr_end += delta;
7804 hdr_next += delta;
7805 cur_hdr->len += delta;
7806 http_msg_move_end(&txn->rsp, delta);
7807 }
Willy Tarreauf1348312010-10-07 15:54:11 +02007808 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01007809 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007810 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007811 }
Willy Tarreau67402132012-05-31 20:40:20 +02007812 else if (srv && srv->cookie && (t->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007813 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01007814 * with this server since we know it.
7815 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007816 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007817 next += delta;
7818 hdr_end += delta;
7819 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007820 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007821 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007822
Willy Tarreauf1348312010-10-07 15:54:11 +02007823 txn->flags &= ~TX_SCK_MASK;
7824 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007825 }
Willy Tarreaua0590312012-06-06 16:07:00 +02007826 else if (srv && srv->cookie && (t->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007827 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02007828 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01007829 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007830 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007831 next += delta;
7832 hdr_end += delta;
7833 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007834 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007835 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007836
Willy Tarreau827aee92011-03-10 16:55:02 +01007837 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02007838 txn->flags &= ~TX_SCK_MASK;
7839 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007840 }
7841 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007842 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
7843 else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007844 int cmp_len, value_len;
7845 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007846
Cyril Bontéb21570a2009-11-29 20:04:48 +01007847 if (t->be->options2 & PR_O2_AS_PFX) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007848 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
7849 value_begin = att_beg + t->be->appsession_name_len;
7850 value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01007851 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007852 cmp_len = att_end - att_beg;
7853 value_begin = val_beg;
7854 value_len = MIN(t->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007855 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007856
Cyril Bonté17530c32010-04-06 21:11:10 +02007857 if ((cmp_len == t->be->appsession_name_len) &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007858 (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7859 /* free a possibly previously allocated memory */
7860 pool_free2(apools.sessid, txn->sessid);
7861
Cyril Bontéb21570a2009-11-29 20:04:48 +01007862 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007863 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007864 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7865 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
7866 return;
7867 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007868 memcpy(txn->sessid, value_begin, value_len);
7869 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007870 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02007871 }
7872 /* that's done for this cookie, check the next one on the same
7873 * line when next != hdr_end (only if is_cookie2).
7874 */
7875 }
7876 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007877 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007878 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007879
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007880 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007881 appsess *asession = NULL;
7882 /* only do insert, if lookup fails */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007883 asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007884 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01007885 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007886 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
7887 Alert("Not enough Memory process_srv():asession:calloc().\n");
7888 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
7889 return;
7890 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007891 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
7892
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007893 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
7894 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7895 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007896 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007897 return;
7898 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007899 memcpy(asession->sessid, txn->sessid, t->be->appsession_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007900 asession->sessid[t->be->appsession_len] = 0;
7901
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007902 server_id_len = strlen(objt_server(t->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007903 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007904 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007905 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007906 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007907 return;
7908 }
7909 asession->serverid[0] = '\0';
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007910 memcpy(asession->serverid, objt_server(t->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007911
7912 asession->request_count = 0;
7913 appsession_hash_insert(&(t->be->htbl_proxy), asession);
7914 }
7915
7916 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
7917 asession->request_count++;
7918 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007919}
7920
7921
Willy Tarreaua15645d2007-03-18 16:22:39 +01007922/*
7923 * Check if response is cacheable or not. Updates t->flags.
7924 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007925void check_response_for_cacheability(struct session *t, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007926{
7927 struct http_txn *txn = &t->txn;
7928 char *p1, *p2;
7929
7930 char *cur_ptr, *cur_end, *cur_next;
7931 int cur_idx;
7932
Willy Tarreau5df51872007-11-25 16:20:08 +01007933 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007934 return;
7935
7936 /* Iterate through the headers.
7937 * we start with the start line.
7938 */
7939 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007940 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007941
7942 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7943 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007944 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007945
7946 cur_hdr = &txn->hdr_idx.v[cur_idx];
7947 cur_ptr = cur_next;
7948 cur_end = cur_ptr + cur_hdr->len;
7949 cur_next = cur_end + cur_hdr->cr + 1;
7950
7951 /* We have one full header between cur_ptr and cur_end, and the
7952 * next header starts at cur_next. We're only interested in
7953 * "Cookie:" headers.
7954 */
7955
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007956 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7957 if (val) {
7958 if ((cur_end - (cur_ptr + val) >= 8) &&
7959 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7960 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7961 return;
7962 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007963 }
7964
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007965 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7966 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007967 continue;
7968
7969 /* OK, right now we know we have a cache-control header at cur_ptr */
7970
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007971 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007972
7973 if (p1 >= cur_end) /* no more info */
7974 continue;
7975
7976 /* p1 is at the beginning of the value */
7977 p2 = p1;
7978
Willy Tarreau8f8e6452007-06-17 21:51:38 +02007979 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007980 p2++;
7981
7982 /* we have a complete value between p1 and p2 */
7983 if (p2 < cur_end && *p2 == '=') {
7984 /* we have something of the form no-cache="set-cookie" */
7985 if ((cur_end - p1 >= 21) &&
7986 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
7987 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01007988 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007989 continue;
7990 }
7991
7992 /* OK, so we know that either p2 points to the end of string or to a comma */
7993 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02007994 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaua15645d2007-03-18 16:22:39 +01007995 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
7996 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
7997 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007998 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007999 return;
8000 }
8001
8002 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008003 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008004 continue;
8005 }
8006 }
8007}
8008
8009
Willy Tarreau58f10d72006-12-04 02:26:12 +01008010/*
8011 * Try to retrieve a known appsession in the URI, then the associated server.
8012 * If the server is found, it's assigned to the session.
8013 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01008014void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008015{
Cyril Bontéb21570a2009-11-29 20:04:48 +01008016 char *end_params, *first_param, *cur_param, *next_param;
8017 char separator;
8018 int value_len;
8019
8020 int mode = t->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01008021
Willy Tarreaue2e27a52007-04-01 00:01:37 +02008022 if (t->be->appsession_name == NULL ||
Cyril Bonté17530c32010-04-06 21:11:10 +02008023 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST && t->txn.meth != HTTP_METH_HEAD)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01008024 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01008025 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008026
Cyril Bontéb21570a2009-11-29 20:04:48 +01008027 first_param = NULL;
8028 switch (mode) {
8029 case PR_O2_AS_M_PP:
8030 first_param = memchr(begin, ';', len);
8031 break;
8032 case PR_O2_AS_M_QS:
8033 first_param = memchr(begin, '?', len);
8034 break;
8035 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008036
Cyril Bontéb21570a2009-11-29 20:04:48 +01008037 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01008038 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01008039 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008040
Cyril Bontéb21570a2009-11-29 20:04:48 +01008041 switch (mode) {
8042 case PR_O2_AS_M_PP:
8043 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
8044 end_params = (char *) begin + len;
8045 }
8046 separator = ';';
8047 break;
8048 case PR_O2_AS_M_QS:
8049 end_params = (char *) begin + len;
8050 separator = '&';
8051 break;
8052 default:
8053 /* unknown mode, shouldn't happen */
8054 return;
8055 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008056
Cyril Bontéb21570a2009-11-29 20:04:48 +01008057 cur_param = next_param = end_params;
8058 while (cur_param > first_param) {
8059 cur_param--;
8060 if ((cur_param[0] == separator) || (cur_param == first_param)) {
8061 /* let's see if this is the appsession parameter */
8062 if ((cur_param + t->be->appsession_name_len + 1 < next_param) &&
8063 ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') &&
8064 (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
8065 /* Cool... it's the right one */
8066 cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2);
8067 value_len = MIN(t->be->appsession_len, next_param - cur_param);
8068 if (value_len > 0) {
8069 manage_client_side_appsession(t, cur_param, value_len);
8070 }
8071 break;
8072 }
8073 next_param = cur_param;
8074 }
8075 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008076#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02008077 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02008078 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008079#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01008080}
8081
Willy Tarreaub2513902006-12-17 14:52:38 +01008082/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02008083 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008084 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01008085 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02008086 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01008087 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01008088 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008089 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01008090 */
Willy Tarreau295a8372011-03-10 11:25:07 +01008091int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01008092{
8093 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01008094 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008095 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01008096
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008097 if (!uri_auth)
8098 return 0;
8099
Cyril Bonté70be45d2010-10-12 00:14:35 +02008100 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008101 return 0;
8102
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01008103 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01008104 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01008105 return 0;
8106
Willy Tarreau414e9bb2013-11-23 00:30:38 +01008107 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01008108 return 0;
8109
Willy Tarreaub2513902006-12-17 14:52:38 +01008110 return 1;
8111}
8112
Willy Tarreau4076a152009-04-02 15:18:36 +02008113/*
8114 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008115 * By default it tries to report the error position as msg->err_pos. However if
8116 * this one is not set, it will then report msg->next, which is the last known
8117 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008118 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02008119 */
8120void http_capture_bad_message(struct error_snapshot *es, struct session *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008121 struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01008122 enum ht_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02008123{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008124 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008125 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008126
Willy Tarreau9b28e032012-10-12 23:49:43 +02008127 es->len = MIN(chn->buf->i, sizeof(es->buf));
8128 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008129 len1 = MIN(len1, es->len);
8130 len2 = es->len - len1; /* remaining data if buffer wraps */
8131
Willy Tarreau9b28e032012-10-12 23:49:43 +02008132 memcpy(es->buf, chn->buf->p, len1);
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008133 if (len2)
Willy Tarreau9b28e032012-10-12 23:49:43 +02008134 memcpy(es->buf + len1, chn->buf->data, len2);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008135
Willy Tarreau4076a152009-04-02 15:18:36 +02008136 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008137 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008138 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008139 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008140
Willy Tarreau4076a152009-04-02 15:18:36 +02008141 es->when = date; // user-visible date
8142 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008143 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02008144 es->oe = other_end;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008145 if (objt_conn(s->req->prod->end))
8146 es->src = __objt_conn(s->req->prod->end)->addr.from;
8147 else
8148 memset(&es->src, 0, sizeof(es->src));
8149
Willy Tarreau078272e2010-12-12 12:46:33 +01008150 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01008151 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008152 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008153 es->s_flags = s->flags;
8154 es->t_flags = s->txn.flags;
8155 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008156 es->b_out = chn->buf->o;
8157 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008158 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008159 es->m_clen = msg->chunk_len;
8160 es->m_blen = msg->body_len;
Willy Tarreau4076a152009-04-02 15:18:36 +02008161}
Willy Tarreaub2513902006-12-17 14:52:38 +01008162
Willy Tarreau294c4732011-12-16 21:35:50 +01008163/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8164 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8165 * performed over the whole headers. Otherwise it must contain a valid header
8166 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8167 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8168 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8169 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008170 * -1. The value fetch stops at commas, so this function is suited for use with
8171 * list headers.
Willy Tarreau294c4732011-12-16 21:35:50 +01008172 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02008173 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02008174unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01008175 struct hdr_idx *idx, int occ,
8176 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02008177{
Willy Tarreau294c4732011-12-16 21:35:50 +01008178 struct hdr_ctx local_ctx;
8179 char *ptr_hist[MAX_HDR_HISTORY];
8180 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02008181 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01008182 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02008183
Willy Tarreau294c4732011-12-16 21:35:50 +01008184 if (!ctx) {
8185 local_ctx.idx = 0;
8186 ctx = &local_ctx;
8187 }
8188
Willy Tarreaubce70882009-09-07 11:51:47 +02008189 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008190 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008191 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02008192 occ--;
8193 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008194 *vptr = ctx->line + ctx->val;
8195 *vlen = ctx->vlen;
8196 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008197 }
8198 }
Willy Tarreau294c4732011-12-16 21:35:50 +01008199 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02008200 }
8201
8202 /* negative occurrence, we scan all the list then walk back */
8203 if (-occ > MAX_HDR_HISTORY)
8204 return 0;
8205
Willy Tarreau294c4732011-12-16 21:35:50 +01008206 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008207 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008208 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8209 len_hist[hist_ptr] = ctx->vlen;
8210 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02008211 hist_ptr = 0;
8212 found++;
8213 }
8214 if (-occ > found)
8215 return 0;
8216 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Willy Tarreau67dad272013-06-12 22:27:44 +02008217 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8218 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8219 * to remain in the 0..9 range.
Willy Tarreaubce70882009-09-07 11:51:47 +02008220 */
Willy Tarreau67dad272013-06-12 22:27:44 +02008221 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreaubce70882009-09-07 11:51:47 +02008222 if (hist_ptr >= MAX_HDR_HISTORY)
8223 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01008224 *vptr = ptr_hist[hist_ptr];
8225 *vlen = len_hist[hist_ptr];
8226 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008227}
8228
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008229/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8230 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8231 * performed over the whole headers. Otherwise it must contain a valid header
8232 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8233 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8234 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8235 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
8236 * -1. This function differs from http_get_hdr() in that it only returns full
8237 * line header values and does not stop at commas.
8238 * The return value is 0 if nothing was found, or non-zero otherwise.
8239 */
8240unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
8241 struct hdr_idx *idx, int occ,
8242 struct hdr_ctx *ctx, char **vptr, int *vlen)
8243{
8244 struct hdr_ctx local_ctx;
8245 char *ptr_hist[MAX_HDR_HISTORY];
8246 int len_hist[MAX_HDR_HISTORY];
8247 unsigned int hist_ptr;
8248 int found;
8249
8250 if (!ctx) {
8251 local_ctx.idx = 0;
8252 ctx = &local_ctx;
8253 }
8254
8255 if (occ >= 0) {
8256 /* search from the beginning */
8257 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8258 occ--;
8259 if (occ <= 0) {
8260 *vptr = ctx->line + ctx->val;
8261 *vlen = ctx->vlen;
8262 return 1;
8263 }
8264 }
8265 return 0;
8266 }
8267
8268 /* negative occurrence, we scan all the list then walk back */
8269 if (-occ > MAX_HDR_HISTORY)
8270 return 0;
8271
8272 found = hist_ptr = 0;
8273 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8274 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8275 len_hist[hist_ptr] = ctx->vlen;
8276 if (++hist_ptr >= MAX_HDR_HISTORY)
8277 hist_ptr = 0;
8278 found++;
8279 }
8280 if (-occ > found)
8281 return 0;
8282 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
8283 * find occurrence -occ, so we have to check [hist_ptr+occ].
8284 */
8285 hist_ptr += occ;
8286 if (hist_ptr >= MAX_HDR_HISTORY)
8287 hist_ptr -= MAX_HDR_HISTORY;
8288 *vptr = ptr_hist[hist_ptr];
8289 *vlen = len_hist[hist_ptr];
8290 return 1;
8291}
8292
Willy Tarreaubaaee002006-06-26 02:48:02 +02008293/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02008294 * Print a debug line with a header. Always stop at the first CR or LF char,
8295 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
8296 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01008297 */
8298void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
8299{
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008300 int max;
8301 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008302 dir,
8303 objt_conn(t->req->prod->end) ? (unsigned short)objt_conn(t->req->prod->end)->t.sock.fd : -1,
8304 objt_conn(t->req->cons->end) ? (unsigned short)objt_conn(t->req->cons->end)->t.sock.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02008305
8306 for (max = 0; start + max < end; max++)
8307 if (start[max] == '\r' || start[max] == '\n')
8308 break;
8309
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008310 UBOUND(max, trash.size - trash.len - 3);
8311 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
8312 trash.str[trash.len++] = '\n';
Willy Tarreau89efaed2013-12-13 15:14:55 +01008313 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008314}
8315
Willy Tarreau0937bc42009-12-22 15:03:09 +01008316/*
8317 * Initialize a new HTTP transaction for session <s>. It is assumed that all
8318 * the required fields are properly allocated and that we only need to (re)init
8319 * them. This should be used before processing any new request.
8320 */
8321void http_init_txn(struct session *s)
8322{
8323 struct http_txn *txn = &s->txn;
8324 struct proxy *fe = s->fe;
8325
8326 txn->flags = 0;
8327 txn->status = -1;
8328
Willy Tarreauf64d1412010-10-07 20:06:11 +02008329 txn->cookie_first_date = 0;
8330 txn->cookie_last_date = 0;
8331
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008332 txn->req.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008333 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008334 txn->req.next = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008335 txn->rsp.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008336 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008337 txn->rsp.next = 0;
Willy Tarreau124d9912011-03-01 20:30:48 +01008338 txn->req.chunk_len = 0LL;
8339 txn->req.body_len = 0LL;
8340 txn->rsp.chunk_len = 0LL;
8341 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008342 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
8343 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreau394db372012-10-12 22:40:39 +02008344 txn->req.chn = s->req;
8345 txn->rsp.chn = s->rep;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008346
8347 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008348
8349 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
8350 if (fe->options2 & PR_O2_REQBUG_OK)
8351 txn->req.err_pos = -1; /* let buggy requests pass */
8352
Willy Tarreau46023632010-01-07 22:51:47 +01008353 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008354 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
8355
Willy Tarreau46023632010-01-07 22:51:47 +01008356 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008357 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
8358
8359 if (txn->hdr_idx.v)
8360 hdr_idx_init(&txn->hdr_idx);
8361}
8362
8363/* to be used at the end of a transaction */
8364void http_end_txn(struct session *s)
8365{
8366 struct http_txn *txn = &s->txn;
8367
Willy Tarreau75195602014-03-11 15:48:55 +01008368 /* release any possible compression context */
8369 if (s->flags & SN_COMP_READY)
8370 s->comp_algo->end(&s->comp_ctx);
8371 s->comp_algo = NULL;
8372 s->flags &= ~SN_COMP_READY;
8373
Willy Tarreau0937bc42009-12-22 15:03:09 +01008374 /* these ones will have been dynamically allocated */
8375 pool_free2(pool2_requri, txn->uri);
8376 pool_free2(pool2_capture, txn->cli_cookie);
8377 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008378 pool_free2(apools.sessid, txn->sessid);
William Lallemanda73203e2012-03-12 12:48:57 +01008379 pool_free2(pool2_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008380
William Lallemanda73203e2012-03-12 12:48:57 +01008381 s->unique_id = NULL;
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008382 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008383 txn->uri = NULL;
8384 txn->srv_cookie = NULL;
8385 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01008386
8387 if (txn->req.cap) {
8388 struct cap_hdr *h;
8389 for (h = s->fe->req_cap; h; h = h->next)
8390 pool_free2(h->pool, txn->req.cap[h->index]);
8391 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
8392 }
8393
8394 if (txn->rsp.cap) {
8395 struct cap_hdr *h;
8396 for (h = s->fe->rsp_cap; h; h = h->next)
8397 pool_free2(h->pool, txn->rsp.cap[h->index]);
8398 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
8399 }
8400
Willy Tarreau0937bc42009-12-22 15:03:09 +01008401}
8402
8403/* to be used at the end of a transaction to prepare a new one */
8404void http_reset_txn(struct session *s)
8405{
8406 http_end_txn(s);
8407 http_init_txn(s);
8408
8409 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008410 s->logs.logwait = s->fe->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02008411 s->logs.level = 0;
Simon Hormanaf514952011-06-21 14:34:57 +09008412 session_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008413 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008414 /* re-init store persistence */
8415 s->store_count = 0;
Willy Tarreau1f0da242014-01-25 11:01:50 +01008416 s->uniq_id = global.req_count++;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008417
Willy Tarreau0937bc42009-12-22 15:03:09 +01008418 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008419
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02008420 s->req->flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008421
Willy Tarreau739cfba2010-01-25 23:11:14 +01008422 /* We must trim any excess data from the response buffer, because we
8423 * may have blocked an invalid response from a server that we don't
8424 * want to accidentely forward once we disable the analysers, nor do
8425 * we want those data to come along with next response. A typical
8426 * example of such data would be from a buggy server responding to
8427 * a HEAD with some data, or sending more than the advertised
8428 * content-length.
8429 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008430 if (unlikely(s->rep->buf->i))
8431 s->rep->buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008432
Willy Tarreau0937bc42009-12-22 15:03:09 +01008433 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02008434 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008435
Willy Tarreaud04e8582010-05-31 12:31:35 +02008436 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008437 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008438
8439 s->req->rex = TICK_ETERNITY;
8440 s->req->wex = TICK_ETERNITY;
8441 s->req->analyse_exp = TICK_ETERNITY;
8442 s->rep->rex = TICK_ETERNITY;
8443 s->rep->wex = TICK_ETERNITY;
8444 s->rep->analyse_exp = TICK_ETERNITY;
8445}
Willy Tarreau58f10d72006-12-04 02:26:12 +01008446
Willy Tarreauff011f22011-01-06 17:51:27 +01008447void free_http_req_rules(struct list *r) {
8448 struct http_req_rule *tr, *pr;
8449
8450 list_for_each_entry_safe(pr, tr, r, list) {
8451 LIST_DEL(&pr->list);
Willy Tarreau20b0de52012-12-24 15:45:22 +01008452 if (pr->action == HTTP_REQ_ACT_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008453 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01008454
8455 free(pr);
8456 }
8457}
8458
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008459/* parse an "http-request" rule */
Willy Tarreauff011f22011-01-06 17:51:27 +01008460struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
8461{
8462 struct http_req_rule *rule;
8463 int cur_arg;
8464
8465 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
8466 if (!rule) {
8467 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008468 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008469 }
8470
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008471 if (!strcmp(args[0], "allow")) {
Willy Tarreauff011f22011-01-06 17:51:27 +01008472 rule->action = HTTP_REQ_ACT_ALLOW;
8473 cur_arg = 1;
8474 } else if (!strcmp(args[0], "deny")) {
8475 rule->action = HTTP_REQ_ACT_DENY;
8476 cur_arg = 1;
Willy Tarreauccbcc372012-12-27 12:37:57 +01008477 } else if (!strcmp(args[0], "tarpit")) {
8478 rule->action = HTTP_REQ_ACT_TARPIT;
8479 cur_arg = 1;
Willy Tarreauff011f22011-01-06 17:51:27 +01008480 } else if (!strcmp(args[0], "auth")) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01008481 rule->action = HTTP_REQ_ACT_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01008482 cur_arg = 1;
8483
8484 while(*args[cur_arg]) {
8485 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008486 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01008487 cur_arg+=2;
8488 continue;
8489 } else
8490 break;
8491 }
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008492 } else if (!strcmp(args[0], "set-nice")) {
8493 rule->action = HTTP_REQ_ACT_SET_NICE;
8494 cur_arg = 1;
8495
8496 if (!*args[cur_arg] ||
8497 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8498 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n",
8499 file, linenum, args[0]);
8500 goto out_err;
8501 }
8502 rule->arg.nice = atoi(args[cur_arg]);
8503 if (rule->arg.nice < -1024)
8504 rule->arg.nice = -1024;
8505 else if (rule->arg.nice > 1024)
8506 rule->arg.nice = 1024;
8507 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008508 } else if (!strcmp(args[0], "set-tos")) {
8509#ifdef IP_TOS
8510 char *err;
8511 rule->action = HTTP_REQ_ACT_SET_TOS;
8512 cur_arg = 1;
8513
8514 if (!*args[cur_arg] ||
8515 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8516 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8517 file, linenum, args[0]);
8518 goto out_err;
8519 }
8520
8521 rule->arg.tos = strtol(args[cur_arg], &err, 0);
8522 if (err && *err != '\0') {
8523 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8524 file, linenum, err, args[0]);
8525 goto out_err;
8526 }
8527 cur_arg++;
8528#else
8529 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
8530 goto out_err;
8531#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02008532 } else if (!strcmp(args[0], "set-mark")) {
8533#ifdef SO_MARK
8534 char *err;
8535 rule->action = HTTP_REQ_ACT_SET_MARK;
8536 cur_arg = 1;
8537
8538 if (!*args[cur_arg] ||
8539 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8540 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8541 file, linenum, args[0]);
8542 goto out_err;
8543 }
8544
8545 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
8546 if (err && *err != '\0') {
8547 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8548 file, linenum, err, args[0]);
8549 goto out_err;
8550 }
8551 cur_arg++;
8552 global.last_checks |= LSTCHK_NETADM;
8553#else
8554 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
8555 goto out_err;
8556#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008557 } else if (!strcmp(args[0], "set-log-level")) {
8558 rule->action = HTTP_REQ_ACT_SET_LOGL;
8559 cur_arg = 1;
8560
8561 if (!*args[cur_arg] ||
8562 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8563 bad_log_level:
8564 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n",
8565 file, linenum, args[0]);
8566 goto out_err;
8567 }
8568 if (strcmp(args[cur_arg], "silent") == 0)
8569 rule->arg.loglevel = -1;
8570 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
8571 goto bad_log_level;
8572 cur_arg++;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008573 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
8574 rule->action = *args[0] == 'a' ? HTTP_REQ_ACT_ADD_HDR : HTTP_REQ_ACT_SET_HDR;
8575 cur_arg = 1;
8576
Willy Tarreau8d1c5162013-04-03 14:13:58 +02008577 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8578 (*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 +01008579 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
8580 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008581 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008582 }
8583
8584 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8585 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8586 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02008587
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01008588 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01008589 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01008590 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
8591 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008592 free(proxy->conf.lfs_file);
8593 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8594 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008595 cur_arg += 2;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008596 } else if (strcmp(args[0], "del-header") == 0) {
8597 rule->action = HTTP_REQ_ACT_DEL_HDR;
8598 cur_arg = 1;
8599
8600 if (!*args[cur_arg] ||
8601 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
8602 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8603 file, linenum, args[0]);
8604 goto out_err;
8605 }
8606
8607 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8608 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8609
8610 proxy->conf.args.ctx = ARGC_HRQ;
8611 free(proxy->conf.lfs_file);
8612 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8613 proxy->conf.lfs_line = proxy->conf.args.line;
8614 cur_arg += 1;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008615 } else if (strcmp(args[0], "redirect") == 0) {
8616 struct redirect_rule *redir;
Willy Tarreau6d4890c2013-11-18 18:04:25 +01008617 char *errmsg = NULL;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008618
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008619 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1)) == NULL) {
Willy Tarreau81499eb2012-12-27 12:19:02 +01008620 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
8621 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
8622 goto out_err;
8623 }
8624
8625 /* this redirect rule might already contain a parsed condition which
8626 * we'll pass to the http-request rule.
8627 */
8628 rule->action = HTTP_REQ_ACT_REDIR;
8629 rule->arg.redir = redir;
8630 rule->cond = redir->cond;
8631 redir->cond = NULL;
8632 cur_arg = 2;
8633 return rule;
Willy Tarreauff011f22011-01-06 17:51:27 +01008634 } else {
Willy Tarreau51347ed2013-06-11 19:34:13 +02008635 Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', but got '%s'%s.\n",
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008636 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01008637 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008638 }
8639
8640 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
8641 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02008642 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008643
Willy Tarreaub7451bb2012-04-27 12:38:15 +02008644 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
8645 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
8646 file, linenum, args[0], errmsg);
8647 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008648 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008649 }
8650 rule->cond = cond;
8651 }
8652 else if (*args[cur_arg]) {
8653 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
8654 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
8655 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008656 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008657 }
8658
8659 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008660 out_err:
8661 free(rule);
8662 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008663}
8664
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008665/* parse an "http-respose" rule */
8666struct http_res_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
8667{
8668 struct http_res_rule *rule;
8669 int cur_arg;
8670
8671 rule = calloc(1, sizeof(*rule));
8672 if (!rule) {
8673 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
8674 goto out_err;
8675 }
8676
8677 if (!strcmp(args[0], "allow")) {
8678 rule->action = HTTP_RES_ACT_ALLOW;
8679 cur_arg = 1;
8680 } else if (!strcmp(args[0], "deny")) {
8681 rule->action = HTTP_RES_ACT_DENY;
8682 cur_arg = 1;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008683 } else if (!strcmp(args[0], "set-nice")) {
8684 rule->action = HTTP_RES_ACT_SET_NICE;
8685 cur_arg = 1;
8686
8687 if (!*args[cur_arg] ||
8688 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8689 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n",
8690 file, linenum, args[0]);
8691 goto out_err;
8692 }
8693 rule->arg.nice = atoi(args[cur_arg]);
8694 if (rule->arg.nice < -1024)
8695 rule->arg.nice = -1024;
8696 else if (rule->arg.nice > 1024)
8697 rule->arg.nice = 1024;
8698 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008699 } else if (!strcmp(args[0], "set-tos")) {
8700#ifdef IP_TOS
8701 char *err;
8702 rule->action = HTTP_RES_ACT_SET_TOS;
8703 cur_arg = 1;
8704
8705 if (!*args[cur_arg] ||
8706 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8707 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
8708 file, linenum, args[0]);
8709 goto out_err;
8710 }
8711
8712 rule->arg.tos = strtol(args[cur_arg], &err, 0);
8713 if (err && *err != '\0') {
8714 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
8715 file, linenum, err, args[0]);
8716 goto out_err;
8717 }
8718 cur_arg++;
8719#else
8720 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
8721 goto out_err;
8722#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02008723 } else if (!strcmp(args[0], "set-mark")) {
8724#ifdef SO_MARK
8725 char *err;
8726 rule->action = HTTP_RES_ACT_SET_MARK;
8727 cur_arg = 1;
8728
8729 if (!*args[cur_arg] ||
8730 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8731 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
8732 file, linenum, args[0]);
8733 goto out_err;
8734 }
8735
8736 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
8737 if (err && *err != '\0') {
8738 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
8739 file, linenum, err, args[0]);
8740 goto out_err;
8741 }
8742 cur_arg++;
8743 global.last_checks |= LSTCHK_NETADM;
8744#else
8745 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
8746 goto out_err;
8747#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008748 } else if (!strcmp(args[0], "set-log-level")) {
8749 rule->action = HTTP_RES_ACT_SET_LOGL;
8750 cur_arg = 1;
8751
8752 if (!*args[cur_arg] ||
8753 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8754 bad_log_level:
8755 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n",
8756 file, linenum, args[0]);
8757 goto out_err;
8758 }
8759 if (strcmp(args[cur_arg], "silent") == 0)
8760 rule->arg.loglevel = -1;
8761 else if ((rule->arg.loglevel = get_log_level(args[cur_arg] + 1)) == 0)
8762 goto bad_log_level;
8763 cur_arg++;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008764 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
8765 rule->action = *args[0] == 'a' ? HTTP_RES_ACT_ADD_HDR : HTTP_RES_ACT_SET_HDR;
8766 cur_arg = 1;
8767
8768 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8769 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
8770 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
8771 file, linenum, args[0]);
8772 goto out_err;
8773 }
8774
8775 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8776 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8777 LIST_INIT(&rule->arg.hdr_add.fmt);
8778
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01008779 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01008780 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01008781 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
8782 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008783 free(proxy->conf.lfs_file);
8784 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8785 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008786 cur_arg += 2;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008787 } else if (strcmp(args[0], "del-header") == 0) {
8788 rule->action = HTTP_RES_ACT_DEL_HDR;
8789 cur_arg = 1;
8790
8791 if (!*args[cur_arg] ||
8792 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
8793 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
8794 file, linenum, args[0]);
8795 goto out_err;
8796 }
8797
8798 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8799 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8800
8801 proxy->conf.args.ctx = ARGC_HRS;
8802 free(proxy->conf.lfs_file);
8803 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8804 proxy->conf.lfs_line = proxy->conf.args.line;
8805 cur_arg += 1;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008806 } else {
Willy Tarreau51347ed2013-06-11 19:34:13 +02008807 Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', 'add-header', 'set-header', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', but got '%s'%s.\n",
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008808 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
8809 goto out_err;
8810 }
8811
8812 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
8813 struct acl_cond *cond;
8814 char *errmsg = NULL;
8815
8816 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
8817 Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n",
8818 file, linenum, args[0], errmsg);
8819 free(errmsg);
8820 goto out_err;
8821 }
8822 rule->cond = cond;
8823 }
8824 else if (*args[cur_arg]) {
8825 Alert("parsing [%s:%d]: 'http-response %s' expects"
8826 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
8827 file, linenum, args[0], args[cur_arg]);
8828 goto out_err;
8829 }
8830
8831 return rule;
8832 out_err:
8833 free(rule);
8834 return NULL;
8835}
8836
Willy Tarreau4baae242012-12-27 12:00:31 +01008837/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008838 * with <err> filled with the error message. If <use_fmt> is not null, builds a
8839 * dynamic log-format rule instead of a static string.
Willy Tarreau4baae242012-12-27 12:00:31 +01008840 */
8841struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008842 const char **args, char **errmsg, int use_fmt)
Willy Tarreau4baae242012-12-27 12:00:31 +01008843{
8844 struct redirect_rule *rule;
8845 int cur_arg;
8846 int type = REDIRECT_TYPE_NONE;
8847 int code = 302;
8848 const char *destination = NULL;
8849 const char *cookie = NULL;
8850 int cookie_set = 0;
8851 unsigned int flags = REDIRECT_FLAG_NONE;
8852 struct acl_cond *cond = NULL;
8853
8854 cur_arg = 0;
8855 while (*(args[cur_arg])) {
8856 if (strcmp(args[cur_arg], "location") == 0) {
8857 if (!*args[cur_arg + 1])
8858 goto missing_arg;
8859
8860 type = REDIRECT_TYPE_LOCATION;
8861 cur_arg++;
8862 destination = args[cur_arg];
8863 }
8864 else if (strcmp(args[cur_arg], "prefix") == 0) {
8865 if (!*args[cur_arg + 1])
8866 goto missing_arg;
8867
8868 type = REDIRECT_TYPE_PREFIX;
8869 cur_arg++;
8870 destination = args[cur_arg];
8871 }
8872 else if (strcmp(args[cur_arg], "scheme") == 0) {
8873 if (!*args[cur_arg + 1])
8874 goto missing_arg;
8875
8876 type = REDIRECT_TYPE_SCHEME;
8877 cur_arg++;
8878 destination = args[cur_arg];
8879 }
8880 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
8881 if (!*args[cur_arg + 1])
8882 goto missing_arg;
8883
8884 cur_arg++;
8885 cookie = args[cur_arg];
8886 cookie_set = 1;
8887 }
8888 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
8889 if (!*args[cur_arg + 1])
8890 goto missing_arg;
8891
8892 cur_arg++;
8893 cookie = args[cur_arg];
8894 cookie_set = 0;
8895 }
8896 else if (strcmp(args[cur_arg], "code") == 0) {
8897 if (!*args[cur_arg + 1])
8898 goto missing_arg;
8899
8900 cur_arg++;
8901 code = atol(args[cur_arg]);
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04008902 if (code < 301 || code > 308 || (code > 303 && code < 307)) {
Willy Tarreau4baae242012-12-27 12:00:31 +01008903 memprintf(errmsg,
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04008904 "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)",
Willy Tarreau4baae242012-12-27 12:00:31 +01008905 args[cur_arg - 1], args[cur_arg]);
8906 return NULL;
8907 }
8908 }
8909 else if (!strcmp(args[cur_arg],"drop-query")) {
8910 flags |= REDIRECT_FLAG_DROP_QS;
8911 }
8912 else if (!strcmp(args[cur_arg],"append-slash")) {
8913 flags |= REDIRECT_FLAG_APPEND_SLASH;
8914 }
8915 else if (strcmp(args[cur_arg], "if") == 0 ||
8916 strcmp(args[cur_arg], "unless") == 0) {
8917 cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg);
8918 if (!cond) {
8919 memprintf(errmsg, "error in condition: %s", *errmsg);
8920 return NULL;
8921 }
8922 break;
8923 }
8924 else {
8925 memprintf(errmsg,
8926 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
8927 args[cur_arg]);
8928 return NULL;
8929 }
8930 cur_arg++;
8931 }
8932
8933 if (type == REDIRECT_TYPE_NONE) {
8934 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
8935 return NULL;
8936 }
8937
8938 rule = (struct redirect_rule *)calloc(1, sizeof(*rule));
8939 rule->cond = cond;
Willy Tarreau60e08382013-12-03 00:48:45 +01008940 LIST_INIT(&rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008941
8942 if (!use_fmt) {
8943 /* old-style static redirect rule */
8944 rule->rdr_str = strdup(destination);
8945 rule->rdr_len = strlen(destination);
8946 }
8947 else {
8948 /* log-format based redirect rule */
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008949
8950 /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case,
8951 * if prefix == "/", we don't want to add anything, otherwise it
8952 * makes it hard for the user to configure a self-redirection.
8953 */
8954 proxy->conf.args.ctx = ARGC_RDR;
8955 if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) {
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01008956 parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01008957 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
8958 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008959 free(curproxy->conf.lfs_file);
8960 curproxy->conf.lfs_file = strdup(curproxy->conf.args.file);
8961 curproxy->conf.lfs_line = curproxy->conf.args.line;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008962 }
8963 }
8964
Willy Tarreau4baae242012-12-27 12:00:31 +01008965 if (cookie) {
8966 /* depending on cookie_set, either we want to set the cookie, or to clear it.
8967 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
8968 */
8969 rule->cookie_len = strlen(cookie);
8970 if (cookie_set) {
8971 rule->cookie_str = malloc(rule->cookie_len + 10);
8972 memcpy(rule->cookie_str, cookie, rule->cookie_len);
8973 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
8974 rule->cookie_len += 9;
8975 } else {
8976 rule->cookie_str = malloc(rule->cookie_len + 21);
8977 memcpy(rule->cookie_str, cookie, rule->cookie_len);
8978 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
8979 rule->cookie_len += 20;
8980 }
8981 }
8982 rule->type = type;
8983 rule->code = code;
8984 rule->flags = flags;
8985 LIST_INIT(&rule->list);
8986 return rule;
8987
8988 missing_arg:
8989 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
8990 return NULL;
8991}
8992
Willy Tarreau8797c062007-05-07 00:55:35 +02008993/************************************************************************/
8994/* The code below is dedicated to ACL parsing and matching */
8995/************************************************************************/
8996
8997
Willy Tarreau14174bc2012-04-16 14:34:04 +02008998/* This function ensures that the prerequisites for an L7 fetch are ready,
8999 * which means that a request or response is ready. If some data is missing,
9000 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +02009001 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
9002 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009003 *
9004 * The function returns :
Willy Tarreau506d0502013-07-06 13:29:24 +02009005 * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
9006 * decide whether or not an HTTP message is present ;
9007 * 0 if the requested data cannot be fetched or if it is certain that
9008 * we'll never have any HTTP message there ;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009009 * 1 if an HTTP message is ready
9010 */
9011static int
Willy Tarreau506d0502013-07-06 13:29:24 +02009012smp_prefetch_http(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009013 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +02009014{
9015 struct http_txn *txn = l7;
9016 struct http_msg *msg = &txn->req;
9017
9018 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
9019 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
9020 */
9021
9022 if (unlikely(!s || !txn))
9023 return 0;
9024
9025 /* Check for a dependency on a request */
Willy Tarreauf853c462012-04-23 18:53:56 +02009026 smp->type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009027
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009028 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009029 if (unlikely(!s->req))
9030 return 0;
9031
Willy Tarreauaae75e32013-03-29 12:31:49 +01009032 /* If the buffer does not leave enough free space at the end,
9033 * we must first realign it.
9034 */
9035 if (s->req->buf->p > s->req->buf->data &&
9036 s->req->buf->i + s->req->buf->p > s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)
9037 buffer_slow_realign(s->req->buf);
9038
Willy Tarreau14174bc2012-04-16 14:34:04 +02009039 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau472b1ee2013-10-14 22:41:30 +02009040 if (msg->msg_state == HTTP_MSG_ERROR)
Willy Tarreau506d0502013-07-06 13:29:24 +02009041 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009042
9043 /* Try to decode HTTP request */
Willy Tarreau9b28e032012-10-12 23:49:43 +02009044 if (likely(msg->next < s->req->buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +02009045 http_msg_analyzer(msg, &txn->hdr_idx);
9046
9047 /* Still no valid request ? */
9048 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02009049 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02009050 buffer_full(s->req->buf, global.tune.maxrewrite)) {
Willy Tarreau506d0502013-07-06 13:29:24 +02009051 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009052 }
9053 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +02009054 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009055 return 0;
9056 }
9057
9058 /* OK we just got a valid HTTP request. We have some minor
9059 * preparation to perform so that further checks can rely
9060 * on HTTP tests.
9061 */
Willy Tarreauaae75e32013-03-29 12:31:49 +01009062
9063 /* If the request was parsed but was too large, we must absolutely
9064 * return an error so that it is not processed. At the moment this
9065 * cannot happen, but if the parsers are to change in the future,
9066 * we want this check to be maintained.
9067 */
9068 if (unlikely(s->req->buf->i + s->req->buf->p >
9069 s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)) {
9070 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau506d0502013-07-06 13:29:24 +02009071 smp->data.uint = 1;
Willy Tarreauaae75e32013-03-29 12:31:49 +01009072 return 1;
9073 }
9074
Willy Tarreau9b28e032012-10-12 23:49:43 +02009075 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +02009076 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
9077 s->flags |= SN_REDIRECTABLE;
9078
Willy Tarreau506d0502013-07-06 13:29:24 +02009079 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
9080 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009081 }
9082
Willy Tarreau506d0502013-07-06 13:29:24 +02009083 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009084 return 0; /* data might have moved and indexes changed */
Willy Tarreau506d0502013-07-06 13:29:24 +02009085 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009086
9087 /* otherwise everything's ready for the request */
9088 }
Willy Tarreau24e32d82012-04-23 23:55:44 +02009089 else {
9090 /* Check for a dependency on a response */
Willy Tarreau506d0502013-07-06 13:29:24 +02009091 if (txn->rsp.msg_state < HTTP_MSG_BODY) {
9092 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009093 return 0;
Willy Tarreau506d0502013-07-06 13:29:24 +02009094 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009095 }
9096
9097 /* everything's OK */
Willy Tarreau506d0502013-07-06 13:29:24 +02009098 smp->data.uint = 1;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009099 return 1;
9100}
Willy Tarreau8797c062007-05-07 00:55:35 +02009101
Willy Tarreauc0239e02012-04-16 14:42:55 +02009102#define CHECK_HTTP_MESSAGE_FIRST() \
Willy Tarreau506d0502013-07-06 13:29:24 +02009103 do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 1); if (r <= 0) return r; } while (0)
Willy Tarreauc0239e02012-04-16 14:42:55 +02009104
Willy Tarreau24e32d82012-04-23 23:55:44 +02009105#define CHECK_HTTP_MESSAGE_FIRST_PERM() \
Willy Tarreau506d0502013-07-06 13:29:24 +02009106 do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 0); if (r <= 0) return r; } while (0)
Willy Tarreau24e32d82012-04-23 23:55:44 +02009107
Willy Tarreau8797c062007-05-07 00:55:35 +02009108
9109/* 1. Check on METHOD
9110 * We use the pre-parsed method if it is known, and store its number as an
9111 * integer. If it is unknown, we use the pointer and the length.
9112 */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +01009113static int pat_parse_meth(const char *text, struct pattern *pattern, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +02009114{
9115 int len, meth;
Thierry FOURNIER0b2fe4a2013-12-06 20:33:50 +01009116 struct chunk *trash;
Willy Tarreau8797c062007-05-07 00:55:35 +02009117
Thierry FOURNIER580c32c2014-01-24 10:58:12 +01009118 len = strlen(text);
9119 meth = find_http_meth(text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02009120
9121 pattern->val.i = meth;
9122 if (meth == HTTP_METH_OTHER) {
Thierry FOURNIERedc15c32013-12-13 15:36:59 +01009123 trash = get_trash_chunk();
9124 if (trash->size < len) {
9125 memprintf(err, "no space avalaible in the buffer. expect %d, provides %d",
9126 len, trash->size);
9127 return 0;
Thierry FOURNIER0b2fe4a2013-12-06 20:33:50 +01009128 }
Thierry FOURNIERedc15c32013-12-13 15:36:59 +01009129 pattern->ptr.str = trash->str;
Willy Tarreau8797c062007-05-07 00:55:35 +02009130 pattern->len = len;
9131 }
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009132 else {
9133 pattern->ptr.str = NULL;
9134 pattern->len = 0;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009135 }
Willy Tarreau8797c062007-05-07 00:55:35 +02009136 return 1;
9137}
9138
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009139/* This function fetches the method of current HTTP request and stores
9140 * it in the global pattern struct as a chunk. There are two possibilities :
9141 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
9142 * in <len> and <ptr> is NULL ;
9143 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
9144 * <len> to its length.
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01009145 * This is intended to be used with pat_match_meth() only.
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009146 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009147static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009148smp_fetch_meth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009149 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009150{
9151 int meth;
9152 struct http_txn *txn = l7;
9153
Willy Tarreau24e32d82012-04-23 23:55:44 +02009154 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009155
Willy Tarreau8797c062007-05-07 00:55:35 +02009156 meth = txn->meth;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009157 smp->type = SMP_T_METH;
9158 smp->data.meth.meth = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +02009159 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02009160 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
9161 /* ensure the indexes are not affected */
9162 return 0;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009163 smp->flags |= SMP_F_CONST;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009164 smp->data.meth.str.len = txn->req.sl.rq.m_l;
9165 smp->data.meth.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009166 }
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009167 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009168 return 1;
9169}
9170
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009171/* See above how the method is stored in the global pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009172static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill)
Willy Tarreau8797c062007-05-07 00:55:35 +02009173{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009174 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009175 struct pattern_list *lst;
9176 struct pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009177
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009178 list_for_each_entry(lst, &expr->patterns, list) {
9179 pattern = &lst->pat;
Willy Tarreau8797c062007-05-07 00:55:35 +02009180
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009181 /* well-known method */
9182 if (pattern->val.i != HTTP_METH_OTHER) {
9183 if (smp->data.meth.meth == pattern->val.i)
9184 return pattern;
9185 else
9186 continue;
9187 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009188
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009189 /* Other method, we must compare the strings */
9190 if (pattern->len != smp->data.meth.str.len)
9191 continue;
9192
9193 icase = pattern->flags & PAT_F_IGNORE_CASE;
9194 if ((icase && strncasecmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) != 0) ||
9195 (!icase && strncmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) != 0))
9196 return pattern;
9197 }
9198 return NULL;
Willy Tarreau8797c062007-05-07 00:55:35 +02009199}
9200
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009201static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009202smp_fetch_rqver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009203 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009204{
9205 struct http_txn *txn = l7;
9206 char *ptr;
9207 int len;
9208
Willy Tarreauc0239e02012-04-16 14:42:55 +02009209 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009210
Willy Tarreau8797c062007-05-07 00:55:35 +02009211 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009212 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02009213
9214 while ((len-- > 0) && (*ptr++ != '/'));
9215 if (len <= 0)
9216 return 0;
9217
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009218 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009219 smp->data.str.str = ptr;
9220 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009221
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009222 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009223 return 1;
9224}
9225
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009226static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009227smp_fetch_stver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009228 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009229{
9230 struct http_txn *txn = l7;
9231 char *ptr;
9232 int len;
9233
Willy Tarreauc0239e02012-04-16 14:42:55 +02009234 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009235
Willy Tarreauf26b2522012-12-14 08:33:14 +01009236 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9237 return 0;
9238
Willy Tarreau8797c062007-05-07 00:55:35 +02009239 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009240 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009241
9242 while ((len-- > 0) && (*ptr++ != '/'));
9243 if (len <= 0)
9244 return 0;
9245
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009246 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009247 smp->data.str.str = ptr;
9248 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009249
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009250 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009251 return 1;
9252}
9253
9254/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009255static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009256smp_fetch_stcode(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009257 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009258{
9259 struct http_txn *txn = l7;
9260 char *ptr;
9261 int len;
9262
Willy Tarreauc0239e02012-04-16 14:42:55 +02009263 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009264
Willy Tarreauf26b2522012-12-14 08:33:14 +01009265 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9266 return 0;
9267
Willy Tarreau8797c062007-05-07 00:55:35 +02009268 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009269 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02009270
Willy Tarreauf853c462012-04-23 18:53:56 +02009271 smp->type = SMP_T_UINT;
9272 smp->data.uint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +02009273 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009274 return 1;
9275}
9276
9277/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009278static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009279smp_fetch_url(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009280 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009281{
9282 struct http_txn *txn = l7;
9283
Willy Tarreauc0239e02012-04-16 14:42:55 +02009284 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009285
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009286 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009287 smp->data.str.len = txn->req.sl.rq.u_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009288 smp->data.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009289 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009290 return 1;
9291}
9292
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009293static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009294smp_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009295 const struct arg *args, struct sample *smp, const char *kw)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009296{
9297 struct http_txn *txn = l7;
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009298 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009299
Willy Tarreauc0239e02012-04-16 14:42:55 +02009300 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009301
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01009302 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 +02009303 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +01009304 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009305
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009306 smp->type = SMP_T_IPV4;
9307 smp->data.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
Willy Tarreau37406352012-04-23 16:16:37 +02009308 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009309 return 1;
9310}
9311
9312static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009313smp_fetch_url_port(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009314 const struct arg *args, struct sample *smp, const char *kw)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009315{
9316 struct http_txn *txn = l7;
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009317 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009318
Willy Tarreauc0239e02012-04-16 14:42:55 +02009319 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009320
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01009321 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 +02009322 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
9323 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009324
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009325 smp->type = SMP_T_UINT;
9326 smp->data.uint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02009327 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009328 return 1;
9329}
9330
Willy Tarreau185b5c42012-04-26 15:11:51 +02009331/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
9332 * Accepts an optional argument of type string containing the header field name,
9333 * and an optional argument of type signed or unsigned integer to request an
9334 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009335 * headers are considered from the first one. It does not stop on commas and
9336 * returns full lines instead (useful for User-Agent or Date for example).
9337 */
9338static int
9339smp_fetch_fhdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009340 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009341{
9342 struct http_txn *txn = l7;
9343 struct hdr_idx *idx = &txn->hdr_idx;
9344 struct hdr_ctx *ctx = smp->ctx.a[0];
9345 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
9346 int occ = 0;
9347 const char *name_str = NULL;
9348 int name_len = 0;
9349
9350 if (!ctx) {
9351 /* first call */
9352 ctx = &static_hdr_ctx;
9353 ctx->idx = 0;
9354 smp->ctx.a[0] = ctx;
9355 }
9356
9357 if (args) {
9358 if (args[0].type != ARGT_STR)
9359 return 0;
9360 name_str = args[0].data.str.str;
9361 name_len = args[0].data.str.len;
9362
9363 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
9364 occ = args[1].data.uint;
9365 }
9366
9367 CHECK_HTTP_MESSAGE_FIRST();
9368
9369 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
9370 /* search for header from the beginning */
9371 ctx->idx = 0;
9372
9373 if (!occ && !(opt & SMP_OPT_ITERATE))
9374 /* no explicit occurrence and single fetch => last header by default */
9375 occ = -1;
9376
9377 if (!occ)
9378 /* prepare to report multiple occurrences for ACL fetches */
9379 smp->flags |= SMP_F_NOT_LAST;
9380
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009381 smp->type = SMP_T_STR;
9382 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009383 if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len))
9384 return 1;
9385
9386 smp->flags &= ~SMP_F_NOT_LAST;
9387 return 0;
9388}
9389
9390/* 6. Check on HTTP header count. The number of occurrences is returned.
9391 * Accepts exactly 1 argument of type string. It does not stop on commas and
9392 * returns full lines instead (useful for User-Agent or Date for example).
9393 */
9394static int
9395smp_fetch_fhdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009396 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009397{
9398 struct http_txn *txn = l7;
9399 struct hdr_idx *idx = &txn->hdr_idx;
9400 struct hdr_ctx ctx;
9401 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
9402 int cnt;
9403
9404 if (!args || args->type != ARGT_STR)
9405 return 0;
9406
9407 CHECK_HTTP_MESSAGE_FIRST();
9408
9409 ctx.idx = 0;
9410 cnt = 0;
9411 while (http_find_full_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx))
9412 cnt++;
9413
9414 smp->type = SMP_T_UINT;
9415 smp->data.uint = cnt;
9416 smp->flags = SMP_F_VOL_HDR;
9417 return 1;
9418}
9419
9420/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
9421 * Accepts an optional argument of type string containing the header field name,
9422 * and an optional argument of type signed or unsigned integer to request an
9423 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau185b5c42012-04-26 15:11:51 +02009424 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +02009425 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02009426static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02009427smp_fetch_hdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009428 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +02009429{
9430 struct http_txn *txn = l7;
9431 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreaua890d072013-04-02 12:01:06 +02009432 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009433 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau185b5c42012-04-26 15:11:51 +02009434 int occ = 0;
9435 const char *name_str = NULL;
9436 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +02009437
Willy Tarreaua890d072013-04-02 12:01:06 +02009438 if (!ctx) {
9439 /* first call */
9440 ctx = &static_hdr_ctx;
9441 ctx->idx = 0;
Willy Tarreauffb6f082013-04-02 23:16:53 +02009442 smp->ctx.a[0] = ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +02009443 }
9444
Willy Tarreau185b5c42012-04-26 15:11:51 +02009445 if (args) {
9446 if (args[0].type != ARGT_STR)
9447 return 0;
9448 name_str = args[0].data.str.str;
9449 name_len = args[0].data.str.len;
9450
9451 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
9452 occ = args[1].data.uint;
9453 }
Willy Tarreau34db1082012-04-19 17:16:54 +02009454
Willy Tarreaue333ec92012-04-16 16:26:40 +02009455 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +02009456
Willy Tarreau185b5c42012-04-26 15:11:51 +02009457 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +02009458 /* search for header from the beginning */
9459 ctx->idx = 0;
9460
Willy Tarreau185b5c42012-04-26 15:11:51 +02009461 if (!occ && !(opt & SMP_OPT_ITERATE))
9462 /* no explicit occurrence and single fetch => last header by default */
9463 occ = -1;
9464
9465 if (!occ)
9466 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +02009467 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +01009468
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009469 smp->type = SMP_T_STR;
9470 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Willy Tarreau185b5c42012-04-26 15:11:51 +02009471 if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len))
Willy Tarreau33a7e692007-06-10 19:45:56 +02009472 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +02009473
Willy Tarreau37406352012-04-23 16:16:37 +02009474 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +02009475 return 0;
9476}
9477
Willy Tarreauc11416f2007-06-17 16:58:38 +02009478/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +02009479 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +02009480 */
9481static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02009482smp_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009483 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +02009484{
9485 struct http_txn *txn = l7;
9486 struct hdr_idx *idx = &txn->hdr_idx;
9487 struct hdr_ctx ctx;
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009488 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau33a7e692007-06-10 19:45:56 +02009489 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02009490
Willy Tarreau24e32d82012-04-23 23:55:44 +02009491 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +02009492 return 0;
9493
Willy Tarreaue333ec92012-04-16 16:26:40 +02009494 CHECK_HTTP_MESSAGE_FIRST();
9495
Willy Tarreau33a7e692007-06-10 19:45:56 +02009496 ctx.idx = 0;
9497 cnt = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009498 while (http_find_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau33a7e692007-06-10 19:45:56 +02009499 cnt++;
9500
Willy Tarreauf853c462012-04-23 18:53:56 +02009501 smp->type = SMP_T_UINT;
9502 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +02009503 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +02009504 return 1;
9505}
9506
Willy Tarreau185b5c42012-04-26 15:11:51 +02009507/* Fetch an HTTP header's integer value. The integer value is returned. It
9508 * takes a mandatory argument of type string and an optional one of type int
9509 * to designate a specific occurrence. It returns an unsigned integer, which
9510 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +02009511 */
9512static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02009513smp_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009514 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +02009515{
Willy Tarreauef38c392013-07-22 16:29:32 +02009516 int ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw);
Willy Tarreaue333ec92012-04-16 16:26:40 +02009517
Willy Tarreauf853c462012-04-23 18:53:56 +02009518 if (ret > 0) {
9519 smp->type = SMP_T_UINT;
9520 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
9521 }
Willy Tarreau33a7e692007-06-10 19:45:56 +02009522
Willy Tarreaud53e2422012-04-16 17:21:11 +02009523 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +02009524}
9525
Cyril Bonté69fa9922012-10-25 00:01:06 +02009526/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
9527 * and an optional one of type int to designate a specific occurrence.
9528 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +02009529 */
9530static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02009531smp_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009532 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau106f9792009-09-19 07:54:16 +02009533{
Willy Tarreaud53e2422012-04-16 17:21:11 +02009534 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +02009535
Willy Tarreauef38c392013-07-22 16:29:32 +02009536 while ((ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw)) > 0) {
Cyril Bonté69fa9922012-10-25 00:01:06 +02009537 if (url2ipv4((char *)smp->data.str.str, &smp->data.ipv4)) {
9538 smp->type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +02009539 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +02009540 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +01009541 struct chunk *temp = get_trash_chunk();
Cyril Bonté69fa9922012-10-25 00:01:06 +02009542 if (smp->data.str.len < temp->size - 1) {
9543 memcpy(temp->str, smp->data.str.str, smp->data.str.len);
9544 temp->str[smp->data.str.len] = '\0';
9545 if (inet_pton(AF_INET6, temp->str, &smp->data.ipv6)) {
9546 smp->type = SMP_T_IPV6;
9547 break;
9548 }
9549 }
9550 }
9551
Willy Tarreaud53e2422012-04-16 17:21:11 +02009552 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +02009553 if (!(smp->flags & SMP_F_NOT_LAST))
9554 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +02009555 }
Willy Tarreaud53e2422012-04-16 17:21:11 +02009556 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +02009557}
9558
Willy Tarreau737b0c12007-06-10 21:28:46 +02009559/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
9560 * the first '/' after the possible hostname, and ends before the possible '?'.
9561 */
9562static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009563smp_fetch_path(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009564 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau737b0c12007-06-10 21:28:46 +02009565{
9566 struct http_txn *txn = l7;
9567 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02009568
Willy Tarreauc0239e02012-04-16 14:42:55 +02009569 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009570
Willy Tarreau9b28e032012-10-12 23:49:43 +02009571 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +01009572 ptr = http_get_path(txn);
9573 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02009574 return 0;
9575
9576 /* OK, we got the '/' ! */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009577 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009578 smp->data.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +02009579
9580 while (ptr < end && *ptr != '?')
9581 ptr++;
9582
Willy Tarreauf853c462012-04-23 18:53:56 +02009583 smp->data.str.len = ptr - smp->data.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009584 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau737b0c12007-06-10 21:28:46 +02009585 return 1;
9586}
9587
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009588/* This produces a concatenation of the first occurrence of the Host header
9589 * followed by the path component if it begins with a slash ('/'). This means
9590 * that '*' will not be added, resulting in exactly the first Host entry.
9591 * If no Host header is found, then the path is returned as-is. The returned
9592 * value is stored in the trash so it does not need to be marked constant.
Willy Tarreaub169eba2013-12-16 15:14:43 +01009593 * The returned sample is of type string.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009594 */
9595static int
9596smp_fetch_base(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009597 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009598{
9599 struct http_txn *txn = l7;
9600 char *ptr, *end, *beg;
9601 struct hdr_ctx ctx;
9602
9603 CHECK_HTTP_MESSAGE_FIRST();
9604
9605 ctx.idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009606 if (!http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx) ||
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009607 !ctx.vlen)
Willy Tarreauef38c392013-07-22 16:29:32 +02009608 return smp_fetch_path(px, l4, l7, opt, args, smp, kw);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009609
9610 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01009611 memcpy(trash.str, ctx.line + ctx.val, ctx.vlen);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009612 smp->type = SMP_T_STR;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01009613 smp->data.str.str = trash.str;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009614 smp->data.str.len = ctx.vlen;
9615
9616 /* now retrieve the path */
Willy Tarreau9b28e032012-10-12 23:49:43 +02009617 end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009618 beg = http_get_path(txn);
9619 if (!beg)
9620 beg = end;
9621
9622 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
9623
9624 if (beg < ptr && *beg == '/') {
9625 memcpy(smp->data.str.str + smp->data.str.len, beg, ptr - beg);
9626 smp->data.str.len += ptr - beg;
9627 }
9628
9629 smp->flags = SMP_F_VOL_1ST;
9630 return 1;
9631}
9632
Willy Tarreauab1f7b72012-12-09 13:38:54 +01009633/* This produces a 32-bit hash of the concatenation of the first occurrence of
9634 * the Host header followed by the path component if it begins with a slash ('/').
9635 * This means that '*' will not be added, resulting in exactly the first Host
9636 * entry. If no Host header is found, then the path is used. The resulting value
Neil - HAProxy List39c63c52013-11-04 13:48:42 +00009637 * is hashed using the path hash followed by a full avalanche hash and provides a
9638 * 32-bit integer value. This fetch is useful for tracking per-path activity on
Willy Tarreauab1f7b72012-12-09 13:38:54 +01009639 * high-traffic sites without having to store whole paths.
9640 */
9641static int
9642smp_fetch_base32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009643 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreauab1f7b72012-12-09 13:38:54 +01009644{
9645 struct http_txn *txn = l7;
9646 struct hdr_ctx ctx;
9647 unsigned int hash = 0;
9648 char *ptr, *beg, *end;
9649 int len;
9650
9651 CHECK_HTTP_MESSAGE_FIRST();
9652
9653 ctx.idx = 0;
9654 if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) {
9655 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
9656 ptr = ctx.line + ctx.val;
9657 len = ctx.vlen;
9658 while (len--)
9659 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
9660 }
9661
9662 /* now retrieve the path */
9663 end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
9664 beg = http_get_path(txn);
9665 if (!beg)
9666 beg = end;
9667
9668 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
9669
9670 if (beg < ptr && *beg == '/') {
9671 while (beg < ptr)
9672 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
9673 }
9674 hash = full_hash(hash);
9675
9676 smp->type = SMP_T_UINT;
9677 smp->data.uint = hash;
9678 smp->flags = SMP_F_VOL_1ST;
9679 return 1;
9680}
9681
Willy Tarreau4a550602012-12-09 14:53:32 +01009682/* This concatenates the source address with the 32-bit hash of the Host and
Neil - HAProxy List39c63c52013-11-04 13:48:42 +00009683 * path as returned by smp_fetch_base32(). The idea is to have per-source and
9684 * per-path counters. The result is a binary block from 8 to 20 bytes depending
9685 * on the source address length. The path hash is stored before the address so
Willy Tarreau4a550602012-12-09 14:53:32 +01009686 * that in environments where IPv6 is insignificant, truncating the output to
9687 * 8 bytes would still work.
9688 */
9689static int
9690smp_fetch_base32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009691 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau4a550602012-12-09 14:53:32 +01009692{
Willy Tarreau47ca5452012-12-23 20:22:19 +01009693 struct chunk *temp;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02009694 struct connection *cli_conn = objt_conn(l4->si[0].end);
9695
9696 if (!cli_conn)
9697 return 0;
Willy Tarreau4a550602012-12-09 14:53:32 +01009698
Willy Tarreauef38c392013-07-22 16:29:32 +02009699 if (!smp_fetch_base32(px, l4, l7, opt, args, smp, kw))
Willy Tarreau4a550602012-12-09 14:53:32 +01009700 return 0;
9701
Willy Tarreau47ca5452012-12-23 20:22:19 +01009702 temp = get_trash_chunk();
Willy Tarreau4a550602012-12-09 14:53:32 +01009703 memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint));
9704 temp->len += sizeof(smp->data.uint);
9705
Willy Tarreaub363a1f2013-10-01 10:45:07 +02009706 switch (cli_conn->addr.from.ss_family) {
Willy Tarreau4a550602012-12-09 14:53:32 +01009707 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02009708 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Willy Tarreau4a550602012-12-09 14:53:32 +01009709 temp->len += 4;
9710 break;
9711 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02009712 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Willy Tarreau4a550602012-12-09 14:53:32 +01009713 temp->len += 16;
9714 break;
9715 default:
9716 return 0;
9717 }
9718
9719 smp->data.str = *temp;
9720 smp->type = SMP_T_BIN;
9721 return 1;
9722}
9723
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009724static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009725smp_fetch_proto_http(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009726 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009727{
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009728 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
9729 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
9730 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009731
Willy Tarreau24e32d82012-04-23 23:55:44 +02009732 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009733
Willy Tarreauf853c462012-04-23 18:53:56 +02009734 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +02009735 smp->data.uint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009736 return 1;
9737}
9738
Willy Tarreau7f18e522010-10-22 20:04:13 +02009739/* return a valid test if the current request is the first one on the connection */
9740static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009741smp_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009742 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau7f18e522010-10-22 20:04:13 +02009743{
9744 if (!s)
9745 return 0;
9746
Willy Tarreauf853c462012-04-23 18:53:56 +02009747 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +02009748 smp->data.uint = !(s->txn.flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +02009749 return 1;
9750}
9751
Willy Tarreau34db1082012-04-19 17:16:54 +02009752/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01009753static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009754smp_fetch_http_auth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009755 const struct arg *args, struct sample *smp, const char *kw)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01009756{
9757
Willy Tarreau24e32d82012-04-23 23:55:44 +02009758 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +02009759 return 0;
9760
Willy Tarreauc0239e02012-04-16 14:42:55 +02009761 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01009762
Willy Tarreauc0239e02012-04-16 14:42:55 +02009763 if (!get_http_auth(l4))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01009764 return 0;
9765
Willy Tarreauf853c462012-04-23 18:53:56 +02009766 smp->type = SMP_T_BOOL;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01009767 smp->data.uint = check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01009768 return 1;
9769}
Willy Tarreau8797c062007-05-07 00:55:35 +02009770
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02009771/* Accepts exactly 1 argument of type userlist */
9772static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009773smp_fetch_http_auth_grp(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009774 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02009775{
9776
9777 if (!args || args->type != ARGT_USR)
9778 return 0;
9779
9780 CHECK_HTTP_MESSAGE_FIRST();
9781
9782 if (!get_http_auth(l4))
9783 return 0;
9784
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02009785 /* if the user does not belong to the userlist or has a wrong password,
9786 * report that it unconditionally does not match. Otherwise we return
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01009787 * a string containing the username.
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02009788 */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01009789 if (!check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass))
9790 return 0;
9791
9792 /* pat_match_auth() will need the user list */
9793 smp->ctx.a[0] = args->data.usr;
9794
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009795 smp->type = SMP_T_STR;
9796 smp->flags = SMP_F_CONST;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01009797 smp->data.str.str = l4->txn.auth.user;
9798 smp->data.str.len = strlen(l4->txn.auth.user);
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02009799
9800 return 1;
9801}
9802
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009803/* Try to find the next occurrence of a cookie name in a cookie header value.
9804 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
9805 * the cookie value is returned into *value and *value_l, and the function
9806 * returns a pointer to the next pointer to search from if the value was found.
9807 * Otherwise if the cookie was not found, NULL is returned and neither value
9808 * nor value_l are touched. The input <hdr> string should first point to the
9809 * header's value, and the <hdr_end> pointer must point to the first character
9810 * not part of the value. <list> must be non-zero if value may represent a list
9811 * of values (cookie headers). This makes it faster to abort parsing when no
9812 * list is expected.
9813 */
9814static char *
9815extract_cookie_value(char *hdr, const char *hdr_end,
9816 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +02009817 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009818{
9819 char *equal, *att_end, *att_beg, *val_beg, *val_end;
9820 char *next;
9821
9822 /* we search at least a cookie name followed by an equal, and more
9823 * generally something like this :
9824 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
9825 */
9826 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
9827 /* Iterate through all cookies on this line */
9828
9829 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
9830 att_beg++;
9831
9832 /* find att_end : this is the first character after the last non
9833 * space before the equal. It may be equal to hdr_end.
9834 */
9835 equal = att_end = att_beg;
9836
9837 while (equal < hdr_end) {
9838 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
9839 break;
9840 if (http_is_spht[(unsigned char)*equal++])
9841 continue;
9842 att_end = equal;
9843 }
9844
9845 /* here, <equal> points to '=', a delimitor or the end. <att_end>
9846 * is between <att_beg> and <equal>, both may be identical.
9847 */
9848
9849 /* look for end of cookie if there is an equal sign */
9850 if (equal < hdr_end && *equal == '=') {
9851 /* look for the beginning of the value */
9852 val_beg = equal + 1;
9853 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
9854 val_beg++;
9855
9856 /* find the end of the value, respecting quotes */
9857 next = find_cookie_value_end(val_beg, hdr_end);
9858
9859 /* make val_end point to the first white space or delimitor after the value */
9860 val_end = next;
9861 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
9862 val_end--;
9863 } else {
9864 val_beg = val_end = next = equal;
9865 }
9866
9867 /* We have nothing to do with attributes beginning with '$'. However,
9868 * they will automatically be removed if a header before them is removed,
9869 * since they're supposed to be linked together.
9870 */
9871 if (*att_beg == '$')
9872 continue;
9873
9874 /* Ignore cookies with no equal sign */
9875 if (equal == next)
9876 continue;
9877
9878 /* Now we have the cookie name between att_beg and att_end, and
9879 * its value between val_beg and val_end.
9880 */
9881
9882 if (att_end - att_beg == cookie_name_l &&
9883 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
9884 /* let's return this value and indicate where to go on from */
9885 *value = val_beg;
9886 *value_l = val_end - val_beg;
9887 return next + 1;
9888 }
9889
9890 /* Set-Cookie headers only have the name in the first attr=value part */
9891 if (!list)
9892 break;
9893 }
9894
9895 return NULL;
9896}
9897
William Lallemanda43ba4e2014-01-28 18:14:25 +01009898/* Fetch a captured HTTP request header. The index is the position of
9899 * the "capture" option in the configuration file
9900 */
9901static int
9902smp_fetch_capture_header_req(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9903 const struct arg *args, struct sample *smp, const char *kw)
9904{
9905 struct proxy *fe = l4->fe;
9906 struct http_txn *txn = l7;
9907 int idx;
9908
9909 if (!args || args->type != ARGT_UINT)
9910 return 0;
9911
9912 idx = args->data.uint;
9913
9914 if (idx > (fe->nb_req_cap - 1) || txn->req.cap == NULL || txn->req.cap[idx] == NULL)
9915 return 0;
9916
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009917 smp->type = SMP_T_STR;
9918 smp->flags |= SMP_F_CONST;
William Lallemanda43ba4e2014-01-28 18:14:25 +01009919 smp->data.str.str = txn->req.cap[idx];
9920 smp->data.str.len = strlen(txn->req.cap[idx]);
9921
9922 return 1;
9923}
9924
9925/* Fetch a captured HTTP response header. The index is the position of
9926 * the "capture" option in the configuration file
9927 */
9928static int
9929smp_fetch_capture_header_res(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9930 const struct arg *args, struct sample *smp, const char *kw)
9931{
9932 struct proxy *fe = l4->fe;
9933 struct http_txn *txn = l7;
9934 int idx;
9935
9936 if (!args || args->type != ARGT_UINT)
9937 return 0;
9938
9939 idx = args->data.uint;
9940
9941 if (idx > (fe->nb_rsp_cap - 1) || txn->rsp.cap == NULL || txn->rsp.cap[idx] == NULL)
9942 return 0;
9943
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009944 smp->type = SMP_T_STR;
9945 smp->flags |= SMP_F_CONST;
William Lallemanda43ba4e2014-01-28 18:14:25 +01009946 smp->data.str.str = txn->rsp.cap[idx];
9947 smp->data.str.len = strlen(txn->rsp.cap[idx]);
9948
9949 return 1;
9950}
9951
William Lallemand65ad6e12014-01-31 15:08:02 +01009952/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
9953static int
9954smp_fetch_capture_req_method(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9955 const struct arg *args, struct sample *smp, const char *kw)
9956{
9957 struct chunk *temp;
9958 struct http_txn *txn = l7;
William Lallemand96a77852014-02-05 00:30:02 +01009959 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +01009960
9961 if (!txn->uri)
9962 return 0;
9963
William Lallemand96a77852014-02-05 00:30:02 +01009964 ptr = txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +01009965
William Lallemand96a77852014-02-05 00:30:02 +01009966 while (*ptr != ' ' && *ptr != '\0') /* find first space */
9967 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +01009968
William Lallemand96a77852014-02-05 00:30:02 +01009969 temp = get_trash_chunk();
9970 temp->str = txn->uri;
9971 temp->len = ptr - txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +01009972 smp->data.str = *temp;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009973 smp->type = SMP_T_STR;
9974 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +01009975
9976 return 1;
9977
9978}
9979
9980/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
9981static int
9982smp_fetch_capture_req_uri(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9983 const struct arg *args, struct sample *smp, const char *kw)
9984{
9985 struct chunk *temp;
9986 struct http_txn *txn = l7;
9987 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +01009988
9989 if (!txn->uri)
9990 return 0;
William Lallemand96a77852014-02-05 00:30:02 +01009991
William Lallemand65ad6e12014-01-31 15:08:02 +01009992 ptr = txn->uri;
9993
9994 while (*ptr != ' ' && *ptr != '\0') /* find first space */
9995 ptr++;
William Lallemand96a77852014-02-05 00:30:02 +01009996
William Lallemand65ad6e12014-01-31 15:08:02 +01009997 if (!*ptr)
9998 return 0;
9999
10000 ptr++; /* skip the space */
10001
10002 temp = get_trash_chunk();
William Lallemand96a77852014-02-05 00:30:02 +010010003 ptr = temp->str = http_get_path_from_string(ptr);
William Lallemand65ad6e12014-01-31 15:08:02 +010010004 if (!ptr)
10005 return 0;
10006 while (*ptr != ' ' && *ptr != '\0') /* find space after URI */
10007 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010008
10009 smp->data.str = *temp;
William Lallemand96a77852014-02-05 00:30:02 +010010010 smp->data.str.len = ptr - temp->str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010011 smp->type = SMP_T_STR;
10012 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010013
10014 return 1;
10015}
10016
10017
Willy Tarreaue333ec92012-04-16 16:26:40 +020010018/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +020010019 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
Willy Tarreaua890d072013-04-02 12:01:06 +020010020 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +020010021 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +020010022 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +020010023 * Accepts exactly 1 argument of type string. If the input options indicate
10024 * that no iterating is desired, then only last value is fetched if any.
Willy Tarreaub169eba2013-12-16 15:14:43 +010010025 * The returned sample is of type CSTR.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010026 */
10027static int
Willy Tarreau51539362012-05-08 12:46:28 +020010028smp_fetch_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010029 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010030{
10031 struct http_txn *txn = l7;
10032 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010033 struct hdr_ctx *ctx = smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +020010034 const struct http_msg *msg;
10035 const char *hdr_name;
10036 int hdr_name_len;
10037 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +020010038 int occ = 0;
10039 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010040
Willy Tarreau24e32d82012-04-23 23:55:44 +020010041 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010042 return 0;
10043
Willy Tarreaua890d072013-04-02 12:01:06 +020010044 if (!ctx) {
10045 /* first call */
10046 ctx = &static_hdr_ctx;
10047 ctx->idx = 0;
10048 smp->ctx.a[2] = ctx;
10049 }
10050
Willy Tarreaue333ec92012-04-16 16:26:40 +020010051 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010052
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010053 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010054 msg = &txn->req;
10055 hdr_name = "Cookie";
10056 hdr_name_len = 6;
10057 } else {
10058 msg = &txn->rsp;
10059 hdr_name = "Set-Cookie";
10060 hdr_name_len = 10;
10061 }
10062
Willy Tarreau28376d62012-04-26 21:26:10 +020010063 if (!occ && !(opt & SMP_OPT_ITERATE))
10064 /* no explicit occurrence and single fetch => last cookie by default */
10065 occ = -1;
10066
10067 /* OK so basically here, either we want only one value and it's the
10068 * last one, or we want to iterate over all of them and we fetch the
10069 * next one.
10070 */
10071
Willy Tarreau9b28e032012-10-12 23:49:43 +020010072 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +020010073 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010074 /* search for the header from the beginning, we must first initialize
10075 * the search parameters.
10076 */
Willy Tarreau37406352012-04-23 16:16:37 +020010077 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010078 ctx->idx = 0;
10079 }
10080
Willy Tarreau28376d62012-04-26 21:26:10 +020010081 smp->flags |= SMP_F_VOL_HDR;
10082
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010083 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +020010084 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
10085 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010086 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
10087 goto out;
10088
Willy Tarreau24e32d82012-04-23 23:55:44 +020010089 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010090 continue;
10091
Willy Tarreau37406352012-04-23 16:16:37 +020010092 smp->ctx.a[0] = ctx->line + ctx->val;
10093 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010094 }
10095
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010096 smp->type = SMP_T_STR;
10097 smp->flags |= SMP_F_CONST;
Willy Tarreau37406352012-04-23 16:16:37 +020010098 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +020010099 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010100 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +020010101 &smp->data.str.str,
10102 &smp->data.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +020010103 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +020010104 found = 1;
10105 if (occ >= 0) {
10106 /* one value was returned into smp->data.str.{str,len} */
10107 smp->flags |= SMP_F_NOT_LAST;
10108 return 1;
10109 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010110 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010111 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010112 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010113 /* all cookie headers and values were scanned. If we're looking for the
10114 * last occurrence, we may return it now.
10115 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010116 out:
Willy Tarreau37406352012-04-23 16:16:37 +020010117 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +020010118 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010119}
10120
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010121/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +020010122 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreaub169eba2013-12-16 15:14:43 +010010123 * multiple cookies may be parsed on the same line. The returned sample is of
10124 * type UINT. Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010125 */
10126static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010127smp_fetch_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010128 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010129{
10130 struct http_txn *txn = l7;
10131 struct hdr_idx *idx = &txn->hdr_idx;
10132 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010133 const struct http_msg *msg;
10134 const char *hdr_name;
10135 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010136 int cnt;
10137 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010138 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010139
Willy Tarreau24e32d82012-04-23 23:55:44 +020010140 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010141 return 0;
10142
Willy Tarreaue333ec92012-04-16 16:26:40 +020010143 CHECK_HTTP_MESSAGE_FIRST();
10144
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010145 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010146 msg = &txn->req;
10147 hdr_name = "Cookie";
10148 hdr_name_len = 6;
10149 } else {
10150 msg = &txn->rsp;
10151 hdr_name = "Set-Cookie";
10152 hdr_name_len = 10;
10153 }
10154
Willy Tarreau9b28e032012-10-12 23:49:43 +020010155 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +020010156 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010157 ctx.idx = 0;
10158 cnt = 0;
10159
10160 while (1) {
10161 /* Note: val_beg == NULL every time we need to fetch a new header */
10162 if (!val_beg) {
10163 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
10164 break;
10165
Willy Tarreau24e32d82012-04-23 23:55:44 +020010166 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010167 continue;
10168
10169 val_beg = ctx.line + ctx.val;
10170 val_end = val_beg + ctx.vlen;
10171 }
10172
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010173 smp->type = SMP_T_STR;
10174 smp->flags |= SMP_F_CONST;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010175 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +020010176 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010177 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +020010178 &smp->data.str.str,
10179 &smp->data.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010180 cnt++;
10181 }
10182 }
10183
Willy Tarreaub169eba2013-12-16 15:14:43 +010010184 smp->type = SMP_T_UINT;
Willy Tarreauf853c462012-04-23 18:53:56 +020010185 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010186 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010187 return 1;
10188}
10189
Willy Tarreau51539362012-05-08 12:46:28 +020010190/* Fetch an cookie's integer value. The integer value is returned. It
10191 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
10192 */
10193static int
10194smp_fetch_cookie_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010195 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau51539362012-05-08 12:46:28 +020010196{
Willy Tarreauef38c392013-07-22 16:29:32 +020010197 int ret = smp_fetch_cookie(px, l4, l7, opt, args, smp, kw);
Willy Tarreau51539362012-05-08 12:46:28 +020010198
10199 if (ret > 0) {
10200 smp->type = SMP_T_UINT;
10201 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
10202 }
10203
10204 return ret;
10205}
10206
Willy Tarreau8797c062007-05-07 00:55:35 +020010207/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +020010208/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +020010209/************************************************************************/
10210
David Cournapeau16023ee2010-12-23 20:55:41 +090010211/*
10212 * Given a path string and its length, find the position of beginning of the
10213 * query string. Returns NULL if no query string is found in the path.
10214 *
10215 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
10216 *
10217 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
10218 */
bedis4c75cca2012-10-05 08:38:24 +020010219static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010220{
10221 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +020010222
bedis4c75cca2012-10-05 08:38:24 +020010223 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +090010224 return p ? p + 1 : NULL;
10225}
10226
bedis4c75cca2012-10-05 08:38:24 +020010227static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010228{
bedis4c75cca2012-10-05 08:38:24 +020010229 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +090010230}
10231
10232/*
10233 * Given a url parameter, find the starting position of the first occurence,
10234 * or NULL if the parameter is not found.
10235 *
10236 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
10237 * the function will return query_string+8.
10238 */
10239static char*
10240find_url_param_pos(char* query_string, size_t query_string_l,
bedis4c75cca2012-10-05 08:38:24 +020010241 char* url_param_name, size_t url_param_name_l,
10242 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010243{
10244 char *pos, *last;
10245
10246 pos = query_string;
10247 last = query_string + query_string_l - url_param_name_l - 1;
10248
10249 while (pos <= last) {
10250 if (pos[url_param_name_l] == '=') {
10251 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
10252 return pos;
10253 pos += url_param_name_l + 1;
10254 }
bedis4c75cca2012-10-05 08:38:24 +020010255 while (pos <= last && !is_param_delimiter(*pos, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090010256 pos++;
10257 pos++;
10258 }
10259 return NULL;
10260}
10261
10262/*
10263 * Given a url parameter name, returns its value and size into *value and
10264 * *value_l respectively, and returns non-zero. If the parameter is not found,
10265 * zero is returned and value/value_l are not touched.
10266 */
10267static int
10268find_url_param_value(char* path, size_t path_l,
10269 char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +020010270 char** value, int* value_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010271{
10272 char *query_string, *qs_end;
10273 char *arg_start;
10274 char *value_start, *value_end;
10275
bedis4c75cca2012-10-05 08:38:24 +020010276 query_string = find_param_list(path, path_l, delim);
David Cournapeau16023ee2010-12-23 20:55:41 +090010277 if (!query_string)
10278 return 0;
10279
10280 qs_end = path + path_l;
10281 arg_start = find_url_param_pos(query_string, qs_end - query_string,
bedis4c75cca2012-10-05 08:38:24 +020010282 url_param_name, url_param_name_l,
10283 delim);
David Cournapeau16023ee2010-12-23 20:55:41 +090010284 if (!arg_start)
10285 return 0;
10286
10287 value_start = arg_start + url_param_name_l + 1;
10288 value_end = value_start;
10289
bedis4c75cca2012-10-05 08:38:24 +020010290 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090010291 value_end++;
10292
10293 *value = value_start;
10294 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +010010295 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +090010296}
10297
10298static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010299smp_fetch_url_param(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010300 const struct arg *args, struct sample *smp, const char *kw)
David Cournapeau16023ee2010-12-23 20:55:41 +090010301{
bedis4c75cca2012-10-05 08:38:24 +020010302 char delim = '?';
David Cournapeau16023ee2010-12-23 20:55:41 +090010303 struct http_txn *txn = l7;
10304 struct http_msg *msg = &txn->req;
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010305
bedis4c75cca2012-10-05 08:38:24 +020010306 if (!args || args[0].type != ARGT_STR ||
10307 (args[1].type && args[1].type != ARGT_STR))
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010308 return 0;
10309
10310 CHECK_HTTP_MESSAGE_FIRST();
David Cournapeau16023ee2010-12-23 20:55:41 +090010311
bedis4c75cca2012-10-05 08:38:24 +020010312 if (args[1].type)
10313 delim = *args[1].data.str.str;
10314
Willy Tarreau9b28e032012-10-12 23:49:43 +020010315 if (!find_url_param_value(msg->chn->buf->p + msg->sl.rq.u, msg->sl.rq.u_l,
bedis4c75cca2012-10-05 08:38:24 +020010316 args->data.str.str, args->data.str.len,
10317 &smp->data.str.str, &smp->data.str.len,
10318 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090010319 return 0;
10320
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010321 smp->type = SMP_T_STR;
10322 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
David Cournapeau16023ee2010-12-23 20:55:41 +090010323 return 1;
10324}
10325
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010326/* Return the signed integer value for the specified url parameter (see url_param
10327 * above).
10328 */
10329static int
10330smp_fetch_url_param_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010331 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010332{
Willy Tarreauef38c392013-07-22 16:29:32 +020010333 int ret = smp_fetch_url_param(px, l4, l7, opt, args, smp, kw);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010334
10335 if (ret > 0) {
10336 smp->type = SMP_T_UINT;
10337 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
10338 }
10339
10340 return ret;
10341}
10342
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010343/* This produces a 32-bit hash of the concatenation of the first occurrence of
10344 * the Host header followed by the path component if it begins with a slash ('/').
10345 * This means that '*' will not be added, resulting in exactly the first Host
10346 * entry. If no Host header is found, then the path is used. The resulting value
10347 * is hashed using the url hash followed by a full avalanche hash and provides a
10348 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
10349 * high-traffic sites without having to store whole paths.
10350 * this differs from the base32 functions in that it includes the url parameters
10351 * as well as the path
10352 */
10353static int
10354smp_fetch_url32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreaue155ec22013-11-18 18:33:22 +010010355 const struct arg *args, struct sample *smp, const char *kw)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010356{
10357 struct http_txn *txn = l7;
10358 struct hdr_ctx ctx;
10359 unsigned int hash = 0;
10360 char *ptr, *beg, *end;
10361 int len;
10362
10363 CHECK_HTTP_MESSAGE_FIRST();
10364
10365 ctx.idx = 0;
10366 if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) {
10367 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10368 ptr = ctx.line + ctx.val;
10369 len = ctx.vlen;
10370 while (len--)
10371 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10372 }
10373
10374 /* now retrieve the path */
10375 end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
10376 beg = http_get_path(txn);
10377 if (!beg)
10378 beg = end;
10379
10380 for (ptr = beg; ptr < end ; ptr++);
10381
10382 if (beg < ptr && *beg == '/') {
10383 while (beg < ptr)
10384 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10385 }
10386 hash = full_hash(hash);
10387
10388 smp->type = SMP_T_UINT;
10389 smp->data.uint = hash;
10390 smp->flags = SMP_F_VOL_1ST;
10391 return 1;
10392}
10393
10394/* This concatenates the source address with the 32-bit hash of the Host and
10395 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
10396 * per-url counters. The result is a binary block from 8 to 20 bytes depending
10397 * on the source address length. The URL hash is stored before the address so
10398 * that in environments where IPv6 is insignificant, truncating the output to
10399 * 8 bytes would still work.
10400 */
10401static int
10402smp_fetch_url32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreaue155ec22013-11-18 18:33:22 +010010403 const struct arg *args, struct sample *smp, const char *kw)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010404{
10405 struct chunk *temp;
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010406 struct connection *cli_conn = objt_conn(l4->si[0].end);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010407
Willy Tarreaue155ec22013-11-18 18:33:22 +010010408 if (!smp_fetch_url32(px, l4, l7, opt, args, smp, kw))
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010409 return 0;
10410
10411 temp = get_trash_chunk();
10412 memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint));
10413 temp->len += sizeof(smp->data.uint);
10414
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010415 switch (cli_conn->addr.from.ss_family) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010416 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010417 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010418 temp->len += 4;
10419 break;
10420 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010421 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010422 temp->len += 16;
10423 break;
10424 default:
10425 return 0;
10426 }
10427
10428 smp->data.str = *temp;
10429 smp->type = SMP_T_BIN;
10430 return 1;
10431}
10432
Willy Tarreau185b5c42012-04-26 15:11:51 +020010433/* This function is used to validate the arguments passed to any "hdr" fetch
10434 * keyword. These keywords support an optional positive or negative occurrence
10435 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
10436 * is assumed that the types are already the correct ones. Returns 0 on error,
10437 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
10438 * error message in case of error, that the caller is responsible for freeing.
10439 * The initial location must either be freeable or NULL.
10440 */
10441static int val_hdr(struct arg *arg, char **err_msg)
10442{
10443 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +020010444 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +020010445 return 0;
10446 }
10447 return 1;
10448}
10449
Willy Tarreau276fae92013-07-25 14:36:01 +020010450/* takes an UINT value on input supposed to represent the time since EPOCH,
10451 * adds an optional offset found in args[0] and emits a string representing
10452 * the date in RFC-1123/5322 format.
10453 */
10454static int sample_conv_http_date(const struct arg *args, struct sample *smp)
10455{
10456 const char day[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
10457 const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
10458 struct chunk *temp;
10459 struct tm *tm;
10460 time_t curr_date = smp->data.uint;
10461
10462 /* add offset */
10463 if (args && (args[0].type == ARGT_SINT || args[0].type == ARGT_UINT))
10464 curr_date += args[0].data.sint;
10465
10466 tm = gmtime(&curr_date);
10467
10468 temp = get_trash_chunk();
10469 temp->len = snprintf(temp->str, temp->size - temp->len,
10470 "%s, %02d %s %04d %02d:%02d:%02d GMT",
10471 day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year,
10472 tm->tm_hour, tm->tm_min, tm->tm_sec);
10473
10474 smp->data.str = *temp;
10475 smp->type = SMP_T_STR;
10476 return 1;
10477}
10478
Thierry FOURNIERad903512014-04-11 17:51:01 +020010479/* Match language range with language tag. RFC2616 14.4:
10480 *
10481 * A language-range matches a language-tag if it exactly equals
10482 * the tag, or if it exactly equals a prefix of the tag such
10483 * that the first tag character following the prefix is "-".
10484 *
10485 * Return 1 if the strings match, else return 0.
10486 */
10487static inline int language_range_match(const char *range, int range_len,
10488 const char *tag, int tag_len)
10489{
10490 const char *end = range + range_len;
10491 const char *tend = tag + tag_len;
10492 while (range < end) {
10493 if (*range == '-' && tag == tend)
10494 return 1;
10495 if (*range != *tag || tag == tend)
10496 return 0;
10497 range++;
10498 tag++;
10499 }
10500 /* Return true only if the last char of the tag is matched. */
10501 return tag == tend;
10502}
10503
10504/* Arguments: The list of expected value, the number of parts returned and the separator */
10505static int sample_conv_q_prefered(const struct arg *args, struct sample *smp)
10506{
10507 const char *al = smp->data.str.str;
10508 const char *end = al + smp->data.str.len;
10509 const char *token;
10510 int toklen;
10511 int qvalue;
10512 const char *str;
10513 const char *w;
10514 int best_q = 0;
10515
10516 /* Set the constant to the sample, because the output of the
10517 * function will be peek in the constant configuration string.
10518 */
10519 smp->flags |= SMP_F_CONST;
10520 smp->data.str.size = 0;
10521 smp->data.str.str = "";
10522 smp->data.str.len = 0;
10523
10524 /* Parse the accept language */
10525 while (1) {
10526
10527 /* Jump spaces, quit if the end is detected. */
10528 while (al < end && isspace(*al))
10529 al++;
10530 if (al >= end)
10531 break;
10532
10533 /* Start of the fisrt word. */
10534 token = al;
10535
10536 /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
10537 while (al < end && *al != ';' && *al != ',' && !isspace(*al))
10538 al++;
10539 if (al == token)
10540 goto expect_comma;
10541
10542 /* Length of the token. */
10543 toklen = al - token;
10544 qvalue = 1000;
10545
10546 /* Check if the token exists in the list. If the token not exists,
10547 * jump to the next token.
10548 */
10549 str = args[0].data.str.str;
10550 w = str;
10551 while (1) {
10552 if (*str == ';' || *str == '\0') {
10553 if (language_range_match(token, toklen, w, str-w))
10554 goto look_for_q;
10555 if (*str == '\0')
10556 goto expect_comma;
10557 w = str + 1;
10558 }
10559 str++;
10560 }
10561 goto expect_comma;
10562
10563look_for_q:
10564
10565 /* Jump spaces, quit if the end is detected. */
10566 while (al < end && isspace(*al))
10567 al++;
10568 if (al >= end)
10569 goto process_value;
10570
10571 /* If ',' is found, process the result */
10572 if (*al == ',')
10573 goto process_value;
10574
10575 /* If the character is different from ';', look
10576 * for the end of the header part in best effort.
10577 */
10578 if (*al != ';')
10579 goto expect_comma;
10580
10581 /* Assumes that the char is ';', now expect "q=". */
10582 al++;
10583
10584 /* Jump spaces, process value if the end is detected. */
10585 while (al < end && isspace(*al))
10586 al++;
10587 if (al >= end)
10588 goto process_value;
10589
10590 /* Expect 'q'. If no 'q', continue in best effort */
10591 if (*al != 'q')
10592 goto process_value;
10593 al++;
10594
10595 /* Jump spaces, process value if the end is detected. */
10596 while (al < end && isspace(*al))
10597 al++;
10598 if (al >= end)
10599 goto process_value;
10600
10601 /* Expect '='. If no '=', continue in best effort */
10602 if (*al != '=')
10603 goto process_value;
10604 al++;
10605
10606 /* Jump spaces, process value if the end is detected. */
10607 while (al < end && isspace(*al))
10608 al++;
10609 if (al >= end)
10610 goto process_value;
10611
10612 /* Parse the q value. */
10613 qvalue = parse_qvalue(al, &al);
10614
10615process_value:
10616
10617 /* If the new q value is the best q value, then store the associated
10618 * language in the response. If qvalue is the biggest value (1000),
10619 * break the process.
10620 */
10621 if (qvalue > best_q) {
10622 smp->data.str.str = (char *)w;
10623 smp->data.str.len = str - w;
10624 if (qvalue >= 1000)
10625 break;
10626 best_q = qvalue;
10627 }
10628
10629expect_comma:
10630
10631 /* Expect comma or end. If the end is detected, quit the loop. */
10632 while (al < end && *al != ',')
10633 al++;
10634 if (al >= end)
10635 break;
10636
10637 /* Comma is found, jump it and restart the analyzer. */
10638 al++;
10639 }
10640
10641 /* Set default value if required. */
10642 if (smp->data.str.len == 0 && args[1].type == ARGT_STR) {
10643 smp->data.str.str = args[1].data.str.str;
10644 smp->data.str.len = args[1].data.str.len;
10645 }
10646
10647 /* Return true only if a matching language was found. */
10648 return smp->data.str.len != 0;
10649}
10650
Willy Tarreau4a568972010-05-12 08:08:50 +020010651/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010652/* All supported ACL keywords must be declared here. */
10653/************************************************************************/
10654
10655/* Note: must not be declared <const> as its list will be overwritten.
10656 * Please take care of keeping this list alphabetically sorted.
10657 */
Willy Tarreaudc13c112013-06-21 23:16:39 +020010658static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010659 { "base", "base", PAT_MATCH_STR },
10660 { "base_beg", "base", PAT_MATCH_BEG },
10661 { "base_dir", "base", PAT_MATCH_DIR },
10662 { "base_dom", "base", PAT_MATCH_DOM },
10663 { "base_end", "base", PAT_MATCH_END },
10664 { "base_len", "base", PAT_MATCH_LEN },
10665 { "base_reg", "base", PAT_MATCH_REG },
10666 { "base_sub", "base", PAT_MATCH_SUB },
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010667
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010668 { "cook", "req.cook", PAT_MATCH_STR },
10669 { "cook_beg", "req.cook", PAT_MATCH_BEG },
10670 { "cook_dir", "req.cook", PAT_MATCH_DIR },
10671 { "cook_dom", "req.cook", PAT_MATCH_DOM },
10672 { "cook_end", "req.cook", PAT_MATCH_END },
10673 { "cook_len", "req.cook", PAT_MATCH_LEN },
10674 { "cook_reg", "req.cook", PAT_MATCH_REG },
10675 { "cook_sub", "req.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010676
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010677 { "hdr", "req.hdr", PAT_MATCH_STR },
10678 { "hdr_beg", "req.hdr", PAT_MATCH_BEG },
10679 { "hdr_dir", "req.hdr", PAT_MATCH_DIR },
10680 { "hdr_dom", "req.hdr", PAT_MATCH_DOM },
10681 { "hdr_end", "req.hdr", PAT_MATCH_END },
10682 { "hdr_len", "req.hdr", PAT_MATCH_LEN },
10683 { "hdr_reg", "req.hdr", PAT_MATCH_REG },
10684 { "hdr_sub", "req.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010685
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010686 /* these two declarations uses strings with list storage (in place
10687 * of tree storage). The basic match is PAT_MATCH_STR, but the indexation
10688 * and delete functions are relative to the list management. The parse
10689 * and match method are related to the corresponding fetch methods. This
10690 * is very particular ACL declaration mode.
10691 */
10692 { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth },
10693 { "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 +020010694
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010695 { "path", "path", PAT_MATCH_STR },
10696 { "path_beg", "path", PAT_MATCH_BEG },
10697 { "path_dir", "path", PAT_MATCH_DIR },
10698 { "path_dom", "path", PAT_MATCH_DOM },
10699 { "path_end", "path", PAT_MATCH_END },
10700 { "path_len", "path", PAT_MATCH_LEN },
10701 { "path_reg", "path", PAT_MATCH_REG },
10702 { "path_sub", "path", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010703
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010704 { "req_ver", "req.ver", PAT_MATCH_STR },
10705 { "resp_ver", "res.ver", PAT_MATCH_STR },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010706
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010707 { "scook", "res.cook", PAT_MATCH_STR },
10708 { "scook_beg", "res.cook", PAT_MATCH_BEG },
10709 { "scook_dir", "res.cook", PAT_MATCH_DIR },
10710 { "scook_dom", "res.cook", PAT_MATCH_DOM },
10711 { "scook_end", "res.cook", PAT_MATCH_END },
10712 { "scook_len", "res.cook", PAT_MATCH_LEN },
10713 { "scook_reg", "res.cook", PAT_MATCH_REG },
10714 { "scook_sub", "res.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010715
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010716 { "shdr", "res.hdr", PAT_MATCH_STR },
10717 { "shdr_beg", "res.hdr", PAT_MATCH_BEG },
10718 { "shdr_dir", "res.hdr", PAT_MATCH_DIR },
10719 { "shdr_dom", "res.hdr", PAT_MATCH_DOM },
10720 { "shdr_end", "res.hdr", PAT_MATCH_END },
10721 { "shdr_len", "res.hdr", PAT_MATCH_LEN },
10722 { "shdr_reg", "res.hdr", PAT_MATCH_REG },
10723 { "shdr_sub", "res.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010724
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010725 { "url", "url", PAT_MATCH_STR },
10726 { "url_beg", "url", PAT_MATCH_BEG },
10727 { "url_dir", "url", PAT_MATCH_DIR },
10728 { "url_dom", "url", PAT_MATCH_DOM },
10729 { "url_end", "url", PAT_MATCH_END },
10730 { "url_len", "url", PAT_MATCH_LEN },
10731 { "url_reg", "url", PAT_MATCH_REG },
10732 { "url_sub", "url", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010733
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010010734 { "urlp", "urlp", PAT_MATCH_STR },
10735 { "urlp_beg", "urlp", PAT_MATCH_BEG },
10736 { "urlp_dir", "urlp", PAT_MATCH_DIR },
10737 { "urlp_dom", "urlp", PAT_MATCH_DOM },
10738 { "urlp_end", "urlp", PAT_MATCH_END },
10739 { "urlp_len", "urlp", PAT_MATCH_LEN },
10740 { "urlp_reg", "urlp", PAT_MATCH_REG },
10741 { "urlp_sub", "urlp", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010742
Willy Tarreau8ed669b2013-01-11 15:49:37 +010010743 { /* END */ },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010744}};
10745
10746/************************************************************************/
10747/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +020010748/************************************************************************/
10749/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +020010750static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010751 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010752 { "base32", smp_fetch_base32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
10753 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
10754
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010755 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
10756 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
William Lallemand65ad6e12014-01-31 15:08:02 +010010757
William Lallemanda43ba4e2014-01-28 18:14:25 +010010758 /* capture are allocated and are permanent in the session */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010759 { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
10760 { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
William Lallemanda43ba4e2014-01-28 18:14:25 +010010761
Willy Tarreau409bcde2013-01-08 00:31:00 +010010762 /* cookie is valid in both directions (eg: for "stick ...") but cook*
10763 * are only here to match the ACL's name, are request-only and are used
10764 * for ACL compatibility only.
10765 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010766 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
10767 { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010768 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10769 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10770
10771 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
10772 * only here to match the ACL's name, are request-only and are used for
10773 * ACL compatibility only.
10774 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010775 { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010776 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10777 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
10778 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV },
10779
Willy Tarreau0a0daec2013-04-02 22:44:58 +020010780 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010781 { "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 +010010782 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Thierry FOURNIERd4373142013-12-17 01:10:10 +010010783 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010784 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010785
10786 /* HTTP protocol on the request path */
10787 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010788 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010789
10790 /* HTTP version on the request path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010791 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
10792 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010793
10794 /* HTTP version on the response path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010795 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
10796 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010797
Willy Tarreau18ed2562013-01-14 15:56:36 +010010798 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010799 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010800 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10801 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10802
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010803 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010804 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010805 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010806 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10807 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
10808 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV },
10809
10810 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010811 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010812 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
10813 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
10814
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010815 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010816 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010817 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010010818 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
10819 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
10820 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV },
10821
Willy Tarreau409bcde2013-01-08 00:31:00 +010010822 /* scook is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010823 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010824 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
10825 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010826 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
Willy Tarreau409bcde2013-01-08 00:31:00 +010010827
10828 /* shdr is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010829 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010830 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
10831 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
10832 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV },
10833
10834 { "status", smp_fetch_stcode, 0, NULL, SMP_T_UINT, SMP_USE_HRSHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010835 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010836 { "url32", smp_fetch_url32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
10837 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010838 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
10839 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010840 { "url_param", smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
10841 { "urlp" , smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010010842 { "urlp_val", smp_fetch_url_param_val, ARG2(1,STR,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
10843 { /* END */ },
Willy Tarreau4a568972010-05-12 08:08:50 +020010844}};
10845
Willy Tarreau8797c062007-05-07 00:55:35 +020010846
Willy Tarreau276fae92013-07-25 14:36:01 +020010847/* Note: must not be declared <const> as its list will be overwritten */
10848static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Thierry FOURNIERad903512014-04-11 17:51:01 +020010849 { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_UINT, SMP_T_STR},
10850 { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR},
Willy Tarreau276fae92013-07-25 14:36:01 +020010851 { NULL, NULL, 0, 0, 0 },
10852}};
10853
Willy Tarreau8797c062007-05-07 00:55:35 +020010854__attribute__((constructor))
10855static void __http_protocol_init(void)
10856{
10857 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +020010858 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau276fae92013-07-25 14:36:01 +020010859 sample_register_convs(&sample_conv_kws);
Willy Tarreau8797c062007-05-07 00:55:35 +020010860}
10861
10862
Willy Tarreau58f10d72006-12-04 02:26:12 +010010863/*
Willy Tarreaubaaee002006-06-26 02:48:02 +020010864 * Local variables:
10865 * c-indent-level: 8
10866 * c-basic-offset: 8
10867 * End:
10868 */