blob: b3db20dd8484b878c4e071581d371d1d7fe3c5f6 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreau7c669d72008-06-20 15:04:11 +02004 * Copyright 2000-2008 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 Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/appsession.h>
27#include <common/compat.h>
28#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010029#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/memory.h>
31#include <common/mini-clist.h>
32#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020033#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/time.h>
35#include <common/uri_auth.h>
36#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
38#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
Willy Tarreau8797c062007-05-07 00:55:35 +020041#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/backend.h>
43#include <proto/buffers.h>
Willy Tarreau91861262007-10-17 17:06:05 +020044#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/fd.h>
46#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010047#include <proto/hdr_idx.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020048#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <proto/proto_http.h>
50#include <proto/queue.h>
Willy Tarreau91861262007-10-17 17:06:05 +020051#include <proto/senddata.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052#include <proto/session.h>
Willy Tarreau2d212792008-08-27 21:41:35 +020053#include <proto/stream_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/task.h>
55
Willy Tarreau6d1a9882007-01-07 02:03:04 +010056#ifdef CONFIG_HAP_TCPSPLICE
57#include <libtcpsplice.h>
58#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020059
Willy Tarreau58f10d72006-12-04 02:26:12 +010060#define DEBUG_PARSE_NO_SPEEDUP
61#undef DEBUG_PARSE_NO_SPEEDUP
62
Willy Tarreau976f1ee2006-12-17 10:06:03 +010063/* This is used to perform a quick jump as an alternative to a break/continue
64 * instruction. The first argument is the label for normal operation, and the
65 * second one is the break/continue instruction in the no_speedup mode.
66 */
67
68#ifdef DEBUG_PARSE_NO_SPEEDUP
69#define QUICK_JUMP(x,y) y
70#else
71#define QUICK_JUMP(x,y) goto x
72#endif
73
Willy Tarreau1c47f852006-07-09 08:22:27 +020074/* This is used by remote monitoring */
Willy Tarreau0f772532006-12-23 20:51:41 +010075const char HTTP_200[] =
Willy Tarreau1c47f852006-07-09 08:22:27 +020076 "HTTP/1.0 200 OK\r\n"
77 "Cache-Control: no-cache\r\n"
78 "Connection: close\r\n"
79 "Content-Type: text/html\r\n"
80 "\r\n"
81 "<html><body><h1>200 OK</h1>\nHAProxy: service ready.\n</body></html>\n";
82
Willy Tarreau0f772532006-12-23 20:51:41 +010083const struct chunk http_200_chunk = {
84 .str = (char *)&HTTP_200,
85 .len = sizeof(HTTP_200)-1
86};
87
Willy Tarreaub463dfb2008-06-07 23:08:56 +020088const char *HTTP_301 =
89 "HTTP/1.0 301 Moved Permantenly\r\n"
90 "Cache-Control: no-cache\r\n"
91 "Connection: close\r\n"
92 "Location: "; /* not terminated since it will be concatenated with the URL */
93
Willy Tarreau0f772532006-12-23 20:51:41 +010094const char *HTTP_302 =
95 "HTTP/1.0 302 Found\r\n"
96 "Cache-Control: no-cache\r\n"
97 "Connection: close\r\n"
98 "Location: "; /* not terminated since it will be concatenated with the URL */
99
100/* same as 302 except that the browser MUST retry with the GET method */
101const char *HTTP_303 =
102 "HTTP/1.0 303 See Other\r\n"
103 "Cache-Control: no-cache\r\n"
104 "Connection: close\r\n"
105 "Location: "; /* not terminated since it will be concatenated with the URL */
106
Willy Tarreaubaaee002006-06-26 02:48:02 +0200107/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
108const char *HTTP_401_fmt =
109 "HTTP/1.0 401 Unauthorized\r\n"
110 "Cache-Control: no-cache\r\n"
111 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200112 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
114 "\r\n"
115 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
116
Willy Tarreau0f772532006-12-23 20:51:41 +0100117
118const int http_err_codes[HTTP_ERR_SIZE] = {
119 [HTTP_ERR_400] = 400,
120 [HTTP_ERR_403] = 403,
121 [HTTP_ERR_408] = 408,
122 [HTTP_ERR_500] = 500,
123 [HTTP_ERR_502] = 502,
124 [HTTP_ERR_503] = 503,
125 [HTTP_ERR_504] = 504,
126};
127
Willy Tarreau80587432006-12-24 17:47:20 +0100128static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreau0f772532006-12-23 20:51:41 +0100129 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100130 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100131 "Cache-Control: no-cache\r\n"
132 "Connection: close\r\n"
133 "Content-Type: text/html\r\n"
134 "\r\n"
135 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
136
137 [HTTP_ERR_403] =
138 "HTTP/1.0 403 Forbidden\r\n"
139 "Cache-Control: no-cache\r\n"
140 "Connection: close\r\n"
141 "Content-Type: text/html\r\n"
142 "\r\n"
143 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
144
145 [HTTP_ERR_408] =
146 "HTTP/1.0 408 Request Time-out\r\n"
147 "Cache-Control: no-cache\r\n"
148 "Connection: close\r\n"
149 "Content-Type: text/html\r\n"
150 "\r\n"
151 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
152
153 [HTTP_ERR_500] =
154 "HTTP/1.0 500 Server Error\r\n"
155 "Cache-Control: no-cache\r\n"
156 "Connection: close\r\n"
157 "Content-Type: text/html\r\n"
158 "\r\n"
159 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
160
161 [HTTP_ERR_502] =
162 "HTTP/1.0 502 Bad Gateway\r\n"
163 "Cache-Control: no-cache\r\n"
164 "Connection: close\r\n"
165 "Content-Type: text/html\r\n"
166 "\r\n"
167 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
168
169 [HTTP_ERR_503] =
170 "HTTP/1.0 503 Service Unavailable\r\n"
171 "Cache-Control: no-cache\r\n"
172 "Connection: close\r\n"
173 "Content-Type: text/html\r\n"
174 "\r\n"
175 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
176
177 [HTTP_ERR_504] =
178 "HTTP/1.0 504 Gateway Time-out\r\n"
179 "Cache-Control: no-cache\r\n"
180 "Connection: close\r\n"
181 "Content-Type: text/html\r\n"
182 "\r\n"
183 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
184
185};
186
Willy Tarreau80587432006-12-24 17:47:20 +0100187/* We must put the messages here since GCC cannot initialize consts depending
188 * on strlen().
189 */
190struct chunk http_err_chunks[HTTP_ERR_SIZE];
191
Willy Tarreau42250582007-04-01 01:30:43 +0200192#define FD_SETS_ARE_BITFIELDS
193#ifdef FD_SETS_ARE_BITFIELDS
194/*
195 * This map is used with all the FD_* macros to check whether a particular bit
196 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
197 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
198 * byte should be encoded. Be careful to always pass bytes from 0 to 255
199 * exclusively to the macros.
200 */
201fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
202fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
203
204#else
205#error "Check if your OS uses bitfields for fd_sets"
206#endif
207
Willy Tarreau80587432006-12-24 17:47:20 +0100208void init_proto_http()
209{
Willy Tarreau42250582007-04-01 01:30:43 +0200210 int i;
211 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100212 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200213
Willy Tarreau80587432006-12-24 17:47:20 +0100214 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
215 if (!http_err_msgs[msg]) {
216 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
217 abort();
218 }
219
220 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
221 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
222 }
Willy Tarreau42250582007-04-01 01:30:43 +0200223
224 /* initialize the log header encoding map : '{|}"#' should be encoded with
225 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
226 * URL encoding only requires '"', '#' to be encoded as well as non-
227 * printable characters above.
228 */
229 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
230 memset(url_encode_map, 0, sizeof(url_encode_map));
231 for (i = 0; i < 32; i++) {
232 FD_SET(i, hdr_encode_map);
233 FD_SET(i, url_encode_map);
234 }
235 for (i = 127; i < 256; i++) {
236 FD_SET(i, hdr_encode_map);
237 FD_SET(i, url_encode_map);
238 }
239
240 tmp = "\"#{|}";
241 while (*tmp) {
242 FD_SET(*tmp, hdr_encode_map);
243 tmp++;
244 }
245
246 tmp = "\"#";
247 while (*tmp) {
248 FD_SET(*tmp, url_encode_map);
249 tmp++;
250 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200251
252 /* memory allocations */
253 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200254 pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100255}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200256
Willy Tarreau53b6c742006-12-17 13:37:46 +0100257/*
258 * We have 26 list of methods (1 per first letter), each of which can have
259 * up to 3 entries (2 valid, 1 null).
260 */
261struct http_method_desc {
262 http_meth_t meth;
263 int len;
264 const char text[8];
265};
266
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100267const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100268 ['C' - 'A'] = {
269 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
270 },
271 ['D' - 'A'] = {
272 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
273 },
274 ['G' - 'A'] = {
275 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
276 },
277 ['H' - 'A'] = {
278 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
279 },
280 ['P' - 'A'] = {
281 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
282 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
283 },
284 ['T' - 'A'] = {
285 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
286 },
287 /* rest is empty like this :
288 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
289 */
290};
291
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100292/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200293 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100294 * RFC2616 for those chars.
295 */
296
297const char http_is_spht[256] = {
298 [' '] = 1, ['\t'] = 1,
299};
300
301const char http_is_crlf[256] = {
302 ['\r'] = 1, ['\n'] = 1,
303};
304
305const char http_is_lws[256] = {
306 [' '] = 1, ['\t'] = 1,
307 ['\r'] = 1, ['\n'] = 1,
308};
309
310const char http_is_sep[256] = {
311 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
312 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
313 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
314 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
315 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
316};
317
318const char http_is_ctl[256] = {
319 [0 ... 31] = 1,
320 [127] = 1,
321};
322
323/*
324 * A token is any ASCII char that is neither a separator nor a CTL char.
325 * Do not overwrite values in assignment since gcc-2.95 will not handle
326 * them correctly. Instead, define every non-CTL char's status.
327 */
328const char http_is_token[256] = {
329 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
330 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
331 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
332 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
333 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
334 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
335 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
336 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
337 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
338 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
339 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
340 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
341 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
342 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
343 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
344 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
345 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
346 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
347 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
348 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
349 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
350 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
351 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
352 ['|'] = 1, ['}'] = 0, ['~'] = 1,
353};
354
355
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100356/*
357 * An http ver_token is any ASCII which can be found in an HTTP version,
358 * which includes 'H', 'T', 'P', '/', '.' and any digit.
359 */
360const char http_is_ver_token[256] = {
361 ['.'] = 1, ['/'] = 1,
362 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
363 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
364 ['H'] = 1, ['P'] = 1, ['T'] = 1,
365};
366
367
Willy Tarreaubaaee002006-06-26 02:48:02 +0200368#ifdef DEBUG_FULL
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200369static char *cli_stnames[4] = { "DAT", "SHR", "SHW", "CLS" };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200370#endif
371
Willy Tarreau42250582007-04-01 01:30:43 +0200372static void http_sess_log(struct session *s);
373
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100374/*
375 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
376 * CRLF. Text length is measured first, so it cannot be NULL.
377 * The header is also automatically added to the index <hdr_idx>, and the end
378 * of headers is automatically adjusted. The number of bytes added is returned
379 * on success, otherwise <0 is returned indicating an error.
380 */
381int http_header_add_tail(struct buffer *b, struct http_msg *msg,
382 struct hdr_idx *hdr_idx, const char *text)
383{
384 int bytes, len;
385
386 len = strlen(text);
387 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
388 if (!bytes)
389 return -1;
390 msg->eoh += bytes;
391 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
392}
393
394/*
395 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
396 * CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
397 * the buffer is only opened and the space reserved, but nothing is copied.
398 * The header is also automatically added to the index <hdr_idx>, and the end
399 * of headers is automatically adjusted. The number of bytes added is returned
400 * on success, otherwise <0 is returned indicating an error.
401 */
402int http_header_add_tail2(struct buffer *b, struct http_msg *msg,
403 struct hdr_idx *hdr_idx, const char *text, int len)
404{
405 int bytes;
406
407 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
408 if (!bytes)
409 return -1;
410 msg->eoh += bytes;
411 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
412}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413
414/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100415 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
416 * If so, returns the position of the first non-space character relative to
417 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
418 * to return a pointer to the place after the first space. Returns 0 if the
419 * header name does not match. Checks are case-insensitive.
420 */
421int http_header_match2(const char *hdr, const char *end,
422 const char *name, int len)
423{
424 const char *val;
425
426 if (hdr + len >= end)
427 return 0;
428 if (hdr[len] != ':')
429 return 0;
430 if (strncasecmp(hdr, name, len) != 0)
431 return 0;
432 val = hdr + len + 1;
433 while (val < end && HTTP_IS_SPHT(*val))
434 val++;
435 if ((val >= end) && (len + 2 <= end - hdr))
436 return len + 2; /* we may replace starting from second space */
437 return val - hdr;
438}
439
Willy Tarreau33a7e692007-06-10 19:45:56 +0200440/* Find the end of the header value contained between <s> and <e>.
441 * See RFC2616, par 2.2 for more information. Note that it requires
442 * a valid header to return a valid result.
443 */
444const char *find_hdr_value_end(const char *s, const char *e)
445{
446 int quoted, qdpair;
447
448 quoted = qdpair = 0;
449 for (; s < e; s++) {
450 if (qdpair) qdpair = 0;
451 else if (quoted && *s == '\\') qdpair = 1;
452 else if (quoted && *s == '"') quoted = 0;
453 else if (*s == '"') quoted = 1;
454 else if (*s == ',') return s;
455 }
456 return s;
457}
458
459/* Find the first or next occurrence of header <name> in message buffer <sol>
460 * using headers index <idx>, and return it in the <ctx> structure. This
461 * structure holds everything necessary to use the header and find next
462 * occurrence. If its <idx> member is 0, the header is searched from the
463 * beginning. Otherwise, the next occurrence is returned. The function returns
464 * 1 when it finds a value, and 0 when there is no more.
465 */
466int http_find_header2(const char *name, int len,
467 const char *sol, struct hdr_idx *idx,
468 struct hdr_ctx *ctx)
469{
470 __label__ return_hdr, next_hdr;
471 const char *eol, *sov;
472 int cur_idx;
473
474 if (ctx->idx) {
475 /* We have previously returned a value, let's search
476 * another one on the same line.
477 */
478 cur_idx = ctx->idx;
479 sol = ctx->line;
480 sov = sol + ctx->val + ctx->vlen;
481 eol = sol + idx->v[cur_idx].len;
482
483 if (sov >= eol)
484 /* no more values in this header */
485 goto next_hdr;
486
487 /* values remaining for this header, skip the comma */
488 sov++;
489 while (sov < eol && http_is_lws[(unsigned char)*sov])
490 sov++;
491
492 goto return_hdr;
493 }
494
495 /* first request for this header */
496 sol += hdr_idx_first_pos(idx);
497 cur_idx = hdr_idx_first_idx(idx);
498
499 while (cur_idx) {
500 eol = sol + idx->v[cur_idx].len;
501
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200502 if (len == 0) {
503 /* No argument was passed, we want any header.
504 * To achieve this, we simply build a fake request. */
505 while (sol + len < eol && sol[len] != ':')
506 len++;
507 name = sol;
508 }
509
Willy Tarreau33a7e692007-06-10 19:45:56 +0200510 if ((len < eol - sol) &&
511 (sol[len] == ':') &&
512 (strncasecmp(sol, name, len) == 0)) {
513
514 sov = sol + len + 1;
515 while (sov < eol && http_is_lws[(unsigned char)*sov])
516 sov++;
517 return_hdr:
518 ctx->line = sol;
519 ctx->idx = cur_idx;
520 ctx->val = sov - sol;
521
522 eol = find_hdr_value_end(sov, eol);
523 ctx->vlen = eol - sov;
524 return 1;
525 }
526 next_hdr:
527 sol = eol + idx->v[cur_idx].cr + 1;
528 cur_idx = idx->v[cur_idx].next;
529 }
530 return 0;
531}
532
533int http_find_header(const char *name,
534 const char *sol, struct hdr_idx *idx,
535 struct hdr_ctx *ctx)
536{
537 return http_find_header2(name, strlen(name), sol, idx, ctx);
538}
539
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200540/* This function shuts down the buffers on the server side, and sets indicators
541 * accordingly. The server's fd is supposed to already be closed. Note that if
542 * <status> is 0, or if the message pointer is NULL, then no message is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543 */
544void srv_close_with_err(struct session *t, int err, int finst,
Willy Tarreau0f772532006-12-23 20:51:41 +0100545 int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200546{
Willy Tarreau3da77c52008-08-29 09:58:42 +0200547 buffer_write_ena(t->rep);
Willy Tarreauba392ce2008-08-16 21:13:23 +0200548 buffer_shutw(t->req);
549 buffer_shutr(t->rep);
Willy Tarreau0f772532006-12-23 20:51:41 +0100550 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100551 t->txn.status = status;
Willy Tarreau73de9892006-11-30 11:40:23 +0100552 if (t->fe->mode == PR_MODE_HTTP)
Willy Tarreau0f772532006-12-23 20:51:41 +0100553 client_return(t, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200554 }
555 if (!(t->flags & SN_ERR_MASK))
556 t->flags |= err;
557 if (!(t->flags & SN_FINST_MASK))
558 t->flags |= finst;
559}
560
Willy Tarreau80587432006-12-24 17:47:20 +0100561/* This function returns the appropriate error location for the given session
562 * and message.
563 */
564
565struct chunk *error_message(struct session *s, int msgnum)
566{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200567 if (s->be->errmsg[msgnum].str)
568 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100569 else if (s->fe->errmsg[msgnum].str)
570 return &s->fe->errmsg[msgnum];
571 else
572 return &http_err_chunks[msgnum];
573}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200574
Willy Tarreau53b6c742006-12-17 13:37:46 +0100575/*
576 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
577 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
578 */
579static http_meth_t find_http_meth(const char *str, const int len)
580{
581 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100582 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100583
584 m = ((unsigned)*str - 'A');
585
586 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100587 for (h = http_methods[m]; h->len > 0; h++) {
588 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100589 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100590 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100591 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100592 };
593 return HTTP_METH_OTHER;
594 }
595 return HTTP_METH_NONE;
596
597}
598
Willy Tarreau21d2af32008-02-14 20:25:24 +0100599/* Parse the URI from the given transaction (which is assumed to be in request
600 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
601 * It is returned otherwise.
602 */
603static char *
604http_get_path(struct http_txn *txn)
605{
606 char *ptr, *end;
607
608 ptr = txn->req.sol + txn->req.sl.rq.u;
609 end = ptr + txn->req.sl.rq.u_l;
610
611 if (ptr >= end)
612 return NULL;
613
614 /* RFC2616, par. 5.1.2 :
615 * Request-URI = "*" | absuri | abspath | authority
616 */
617
618 if (*ptr == '*')
619 return NULL;
620
621 if (isalpha((unsigned char)*ptr)) {
622 /* this is a scheme as described by RFC3986, par. 3.1 */
623 ptr++;
624 while (ptr < end &&
625 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
626 ptr++;
627 /* skip '://' */
628 if (ptr == end || *ptr++ != ':')
629 return NULL;
630 if (ptr == end || *ptr++ != '/')
631 return NULL;
632 if (ptr == end || *ptr++ != '/')
633 return NULL;
634 }
635 /* skip [user[:passwd]@]host[:[port]] */
636
637 while (ptr < end && *ptr != '/')
638 ptr++;
639
640 if (ptr == end)
641 return NULL;
642
643 /* OK, we got the '/' ! */
644 return ptr;
645}
646
Willy Tarreaudafde432008-08-17 01:00:46 +0200647/* Processes the client, server, request and response jobs of a session task,
648 * then puts it back to the wait queue in a clean state, or cleans up its
649 * resources if it must be deleted. Returns in <next> the date the task wants
650 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
651 * nothing too many times, the request and response buffers flags are monitored
652 * and each function is called only if at least another function has changed at
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200653 * least one flag it is interested in.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200654 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200655void process_session(struct task *t, int *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200656{
657 struct session *s = t->context;
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200658 int resync;
659 unsigned int rqf_cli, rpf_cli;
660 unsigned int rqf_srv, rpf_srv;
661 unsigned int rqf_req, rpf_rep;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200662
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200663 /* Check timeouts only during data phase for now */
664 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
665 if (s->rep->cons->state == SI_ST_EST)
666 stream_sock_data_check_timeouts(s->rep->cons->fd);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200667
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200668 if (s->req->cons->state == SI_ST_EST)
669 stream_sock_data_check_timeouts(s->req->cons->fd);
670 }
671
672 /* When a server-side connection is released, we have to
673 * count it and check for pending connections on this server.
674 */
675 if (unlikely(s->req->cons->state == SI_ST_CLO &&
676 s->req->cons->prev_state == SI_ST_EST)) {
677 /* Count server-side errors (but not timeouts). */
678 if (s->req->flags & BF_WRITE_ERROR) {
679 s->be->failed_resp++;
680 if (s->srv)
681 s->srv->failed_resp++;
682 }
683
684 if (s->srv) {
685 s->srv->cur_sess--;
686 sess_change_server(s, NULL);
687 if (may_dequeue_tasks(s->srv, s->be))
688 process_srv_queue(s->srv);
689 }
690
691 if (unlikely((s->req->cons->state == SI_ST_CLO) &&
692 (global.mode & MODE_DEBUG) &&
693 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
694 int len;
695 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
696 s->uniq_id, s->be->id, (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
697 write(1, trash, len);
698 }
699 }
700
701 if (unlikely(s->rep->cons->state == SI_ST_CLO &&
702 s->rep->cons->prev_state == SI_ST_EST)) {
703 if (unlikely((s->rep->cons->state == SI_ST_CLO) &&
704 (global.mode & MODE_DEBUG) &&
705 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
706 int len;
707 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
708 s->uniq_id, s->be->id, (unsigned short)s->rep->prod->fd, (unsigned short)s->req->cons->fd);
709 write(1, trash, len);
710 }
711 }
712
713
714 /* Check if we need to close the write side. This can only happen
715 * when either SHUTR or EMPTY appears, because WRITE_ENA cannot appear
716 * from low level, and neither HIJACK nor SHUTW can disappear from low
717 * level. Later, this should move to stream_sock_{read,write}.
718 */
719 if ((s->req->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) == (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)) {
720 buffer_shutw(s->req);
721 if (s->rep->flags & BF_SHUTR) {
722 fd_delete(s->req->cons->fd);
723 s->req->cons->state = SI_ST_CLO;
724 }
725 else {
726 EV_FD_CLR(s->req->cons->fd, DIR_WR);
727 shutdown(s->req->cons->fd, SHUT_WR);
728 }
729 }
730
731 /* Check if we need to close the write side */
732 if ((s->rep->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) == (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)) {
733 buffer_shutw(s->rep);
734 if (s->req->flags & BF_SHUTR) {
735 fd_delete(s->rep->cons->fd);
736 s->rep->cons->state = SI_ST_CLO;
737 }
738 else {
739 EV_FD_CLR(s->rep->cons->fd, DIR_WR);
740 shutdown(s->rep->cons->fd, SHUT_WR);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200741 }
742 }
743
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200744
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200745
746 /* Dirty trick: force one first pass everywhere */
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200747 rqf_cli = rqf_srv = rqf_req = ~s->req->flags;
748 rpf_cli = rpf_srv = rpf_rep = ~s->rep->flags;
Willy Tarreau507385d2008-08-17 13:04:25 +0200749
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200750 /* well, the ST_CONN state is already handled properly */
751 if (s->req->prod->state == SI_ST_EST) {
752 rqf_cli = s->req->flags;
753 rpf_cli = s->rep->flags;
754 }
755
756 if (s->req->cons->state == SI_ST_EST) {
757 rqf_srv = s->req->flags;
758 rpf_srv = s->rep->flags;
759 }
760
Willy Tarreaubaaee002006-06-26 02:48:02 +0200761 do {
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200762 DPRINTF(stderr,"[%u] %s: task=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d\n",
763 now_ms, __FUNCTION__,
764 t,
765 s->req, s->rep,
766 s->req->rex, s->rep->wex,
767 s->req->flags, s->rep->flags,
768 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state);
769
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200770 resync = 0;
Willy Tarreaudafde432008-08-17 01:00:46 +0200771
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200772 /* Analyse request */
773 if ((rqf_req ^ s->req->flags) & BF_MASK_ANALYSER) {
774 if (s->req->prod->state >= SI_ST_EST) {
775 resync = 1;
776 /* it's up to the analysers to reset write_ena */
777 buffer_write_ena(s->req);
778 if (s->req->analysers)
779 process_request(s);
780 rqf_req = s->req->flags;
781 }
782
783 }
784
785 /* Analyse response */
786 if (unlikely(s->rep->flags & BF_HIJACK)) {
787 /* In inject mode, we wake up everytime something has
788 * happened on the write side of the buffer.
789 */
790 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
791 !(s->rep->flags & BF_FULL)) {
792 if (produce_content(s) != 0)
793 resync = 1; /* completed, better re-check flags */
794 }
795 }
796 else if (s->rep->prod->state >= SI_ST_EST) {
797 if ((rpf_rep ^ s->rep->flags) & BF_MASK_ANALYSER) {
798 resync = 1;
799 /* it's up to the analysers to reset write_ena */
800 buffer_write_ena(s->rep);
801 if (s->rep->analysers)
802 process_response(s);
803 rpf_rep = s->rep->flags;
804 }
805 }
806
807 /* Maybe resync client FD state */
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200808 if (s->rep->cons->state != SI_ST_CLO) {
809 if (((rqf_cli ^ s->req->flags) & BF_MASK_INTERFACE_I) ||
810 ((rpf_cli ^ s->rep->flags) & BF_MASK_INTERFACE_O)) {
811 resync = 1;
812 stream_sock_data_update(s->rep->cons->fd);
813 rqf_cli = s->req->flags;
814 rpf_cli = s->rep->flags;
815
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200816 if (unlikely((s->rep->cons->state == SI_ST_CLO) &&
817 (global.mode & MODE_DEBUG) &&
818 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
819 int len;
820 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200821 s->uniq_id, s->be->id, (unsigned short)s->rep->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200822 write(1, trash, len);
823 }
Willy Tarreaudafde432008-08-17 01:00:46 +0200824 }
Willy Tarreaudafde432008-08-17 01:00:46 +0200825 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200826
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200827 /* Maybe resync server FD state */
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200828 if (s->req->cons->state != SI_ST_CLO) {
829 if (((rpf_srv ^ s->rep->flags) & BF_MASK_INTERFACE_I) ||
830 ((rqf_srv ^ s->req->flags) & BF_MASK_INTERFACE_O)) {
831 resync = 1;
832
Willy Tarreau3da77c52008-08-29 09:58:42 +0200833 if (s->req->cons->state < SI_ST_EST && s->req->flags & BF_WRITE_ENA)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200834 process_srv_conn(s);
835
836 if (s->req->cons->state == SI_ST_EST) {
Willy Tarreau3da77c52008-08-29 09:58:42 +0200837 if ((s->req->flags & (BF_SHUTW|BF_EMPTY|BF_WRITE_ENA)) == (BF_EMPTY|BF_WRITE_ENA) &&
Willy Tarreau376580a2008-08-27 18:52:22 +0200838 s->be->options & PR_O_FORCE_CLO &&
Willy Tarreau3da77c52008-08-29 09:58:42 +0200839 s->rep->flags & BF_READ_ACTIVITY) {
Willy Tarreau376580a2008-08-27 18:52:22 +0200840 /* We want to force the connection to the server to close,
841 * and the server has begun to respond. That's the right
842 * time.
843 */
844 buffer_shutw_now(s->req);
845 }
846
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200847 stream_sock_data_update(s->req->cons->fd);
Willy Tarreau376580a2008-08-27 18:52:22 +0200848
849 /* When a server-side connection is released, we have to
850 * count it and check for pending connections on this server.
851 */
852 if (s->req->cons->state == SI_ST_CLO) {
853 if (s->srv) {
854 s->srv->cur_sess--;
855 sess_change_server(s, NULL);
856 if (may_dequeue_tasks(s->srv, s->be))
857 process_srv_queue(s->srv);
858 }
859 }
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200860 }
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200861 rqf_srv = s->req->flags;
862 rpf_srv = s->rep->flags;
Willy Tarreauf5483bf2008-08-14 18:35:40 +0200863
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200864 if (unlikely((s->req->cons->state == SI_ST_CLO) &&
865 (global.mode & MODE_DEBUG) &&
866 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
867 int len;
868 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200869 s->uniq_id, s->be->id, (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200870 write(1, trash, len);
871 }
872 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200873 }
874
Willy Tarreaudafde432008-08-17 01:00:46 +0200875 } while (resync);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200876
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200877 if (likely((s->rep->cons->state != SI_ST_CLO) ||
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200878 (s->req->cons->state != SI_ST_CLO && s->req->cons->state != SI_ST_INI))) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100879
880 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
881 session_process_counters(s);
882
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200883 if (s->rep->cons->state == SI_ST_EST)
884 stream_sock_data_finish(s->rep->cons->fd);
885
886 if (s->req->cons->state == SI_ST_EST)
887 stream_sock_data_finish(s->req->cons->fd);
888
Willy Tarreau0f9f5052006-07-29 17:39:25 +0200889 s->req->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE;
890 s->rep->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200891 s->si[0].prev_state = s->si[0].state;
892 s->si[1].prev_state = s->si[1].state;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200893
Willy Tarreau7f875f62008-08-11 17:35:01 +0200894 /* Trick: if a request is being waiting for the server to respond,
895 * and if we know the server can timeout, we don't want the timeout
896 * to expire on the client side first, but we're still interested
897 * in passing data from the client to the server (eg: POST). Thus,
898 * we can cancel the client's request timeout if the server's
899 * request timeout is set and the server has not yet sent a response.
900 */
901
Willy Tarreau3da77c52008-08-29 09:58:42 +0200902 if ((s->rep->flags & (BF_WRITE_ENA|BF_SHUTR)) == 0 &&
Willy Tarreau26ed74d2008-08-17 12:11:14 +0200903 (tick_isset(s->req->wex) || tick_isset(s->rep->rex)))
Willy Tarreau7f875f62008-08-11 17:35:01 +0200904 s->req->rex = TICK_ETERNITY;
905
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200906 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
907 tick_first(s->rep->rex, s->rep->wex));
Willy Tarreauffab5b42008-08-17 18:03:28 +0200908 if (s->req->analysers)
909 t->expire = tick_first(t->expire, s->req->analyse_exp);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200910
Willy Tarreaucb651252008-08-29 13:57:30 +0200911#ifdef DEBUG_FULL
912 fprintf(stderr, "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u rep->rex=%u rep->wex=%u\n",
913 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp, s->rep->rex, s->rep->wex);
914#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200915 /* restore t to its place in the task list */
916 task_queue(t);
917
Willy Tarreaua7c52762008-08-16 18:40:18 +0200918#ifdef DEBUG_DEV
919 /* this may only happen when no timeout is set or in case of an FSM bug */
920 if (!t->expire)
921 ABORT_NOW();
922#endif
Willy Tarreaud825eef2007-05-12 22:35:00 +0200923 *next = t->expire;
924 return; /* nothing more to do */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925 }
926
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100927 s->fe->feconn--;
928 if (s->flags & SN_BE_ASSIGNED)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200929 s->be->beconn--;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930 actconn--;
931
Willy Tarreauf41d4b12007-04-28 23:26:14 +0200932 if (unlikely((global.mode & MODE_DEBUG) &&
933 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934 int len;
Willy Tarreauf495ddf2008-08-17 14:38:41 +0200935 len = sprintf(trash, "%08x:%s.closed[%04x:%04x] (term_trace=0x%08x)\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200936 s->uniq_id, s->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200937 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd,
Willy Tarreauf495ddf2008-08-17 14:38:41 +0200938 s->term_trace);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200939 write(1, trash, len);
940 }
941
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200942 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100943 session_process_counters(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944
945 /* let's do a final log if we need it */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200946 if (s->logs.logwait &&
947 !(s->flags & SN_MONITOR) &&
Willy Tarreau42250582007-04-01 01:30:43 +0200948 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
949 if (s->fe->to_log & LW_REQ)
950 http_sess_log(s);
951 else
952 tcp_sess_log(s);
953 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200954
955 /* the task MUST not be in the run queue anymore */
956 task_delete(t);
957 session_free(s);
958 task_free(t);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200959 *next = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200960}
961
962
Willy Tarreau42250582007-04-01 01:30:43 +0200963extern const char sess_term_cond[8];
964extern const char sess_fin_state[8];
965extern const char *monthname[12];
966const char sess_cookie[4] = "NIDV"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie */
967const char sess_set_cookie[8] = "N1I3PD5R"; /* No set-cookie, unknown, Set-Cookie Inserted, unknown,
968 Set-cookie seen and left unchanged (passive), Set-cookie Deleted,
969 unknown, Set-cookie Rewritten */
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200970struct pool_head *pool2_requri;
Willy Tarreau086b3b42007-05-13 21:45:51 +0200971struct pool_head *pool2_capture;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100972
Willy Tarreau42250582007-04-01 01:30:43 +0200973/*
974 * send a log for the session when we have enough info about it.
975 * Will not log if the frontend has no log defined.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100976 */
Willy Tarreau42250582007-04-01 01:30:43 +0200977static void http_sess_log(struct session *s)
978{
979 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
980 struct proxy *fe = s->fe;
981 struct proxy *be = s->be;
982 struct proxy *prx_log;
983 struct http_txn *txn = &s->txn;
984 int tolog;
985 char *uri, *h;
986 char *svid;
Willy Tarreaufe944602007-10-25 10:34:16 +0200987 struct tm tm;
Willy Tarreau42250582007-04-01 01:30:43 +0200988 static char tmpline[MAX_SYSLOG_LEN];
Willy Tarreau70089872008-06-13 21:12:51 +0200989 int t_request;
Willy Tarreau42250582007-04-01 01:30:43 +0200990 int hdr;
991
992 if (fe->logfac1 < 0 && fe->logfac2 < 0)
993 return;
994 prx_log = fe;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100995
Willy Tarreau42250582007-04-01 01:30:43 +0200996 if (s->cli_addr.ss_family == AF_INET)
997 inet_ntop(AF_INET,
998 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
999 pn, sizeof(pn));
1000 else
1001 inet_ntop(AF_INET6,
1002 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
1003 pn, sizeof(pn));
1004
Willy Tarreaub7f694f2008-06-22 17:18:02 +02001005 get_localtime(s->logs.accept_date.tv_sec, &tm);
Willy Tarreau42250582007-04-01 01:30:43 +02001006
1007 /* FIXME: let's limit ourselves to frontend logging for now. */
1008 tolog = fe->to_log;
1009
1010 h = tmpline;
1011 if (fe->to_log & LW_REQHDR &&
1012 txn->req.cap &&
1013 (h < tmpline + sizeof(tmpline) - 10)) {
1014 *(h++) = ' ';
1015 *(h++) = '{';
1016 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1017 if (hdr)
1018 *(h++) = '|';
1019 if (txn->req.cap[hdr] != NULL)
1020 h = encode_string(h, tmpline + sizeof(tmpline) - 7,
1021 '#', hdr_encode_map, txn->req.cap[hdr]);
1022 }
1023 *(h++) = '}';
1024 }
1025
1026 if (fe->to_log & LW_RSPHDR &&
1027 txn->rsp.cap &&
1028 (h < tmpline + sizeof(tmpline) - 7)) {
1029 *(h++) = ' ';
1030 *(h++) = '{';
1031 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1032 if (hdr)
1033 *(h++) = '|';
1034 if (txn->rsp.cap[hdr] != NULL)
1035 h = encode_string(h, tmpline + sizeof(tmpline) - 4,
1036 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1037 }
1038 *(h++) = '}';
1039 }
1040
1041 if (h < tmpline + sizeof(tmpline) - 4) {
1042 *(h++) = ' ';
1043 *(h++) = '"';
1044 uri = txn->uri ? txn->uri : "<BADREQ>";
1045 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
1046 '#', url_encode_map, uri);
1047 *(h++) = '"';
1048 }
1049 *h = '\0';
1050
1051 svid = (tolog & LW_SVID) ?
1052 (s->data_source != DATA_SRC_STATS) ?
1053 (s->srv != NULL) ? s->srv->id : "<NOSRV>" : "<STATS>" : "-";
1054
Willy Tarreau70089872008-06-13 21:12:51 +02001055 t_request = -1;
1056 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
1057 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
1058
Willy Tarreau42250582007-04-01 01:30:43 +02001059 send_log(prx_log, LOG_INFO,
1060 "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]"
1061 " %s %s/%s %d/%d/%d/%d/%s%d %d %s%lld"
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001062 " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %d/%d%s\n",
Willy Tarreau42250582007-04-01 01:30:43 +02001063 pn,
1064 (s->cli_addr.ss_family == AF_INET) ?
1065 ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port) :
1066 ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreaufe944602007-10-25 10:34:16 +02001067 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreaub7f694f2008-06-22 17:18:02 +02001068 tm.tm_hour, tm.tm_min, tm.tm_sec, s->logs.accept_date.tv_usec/1000,
Willy Tarreau42250582007-04-01 01:30:43 +02001069 fe->id, be->id, svid,
Willy Tarreau70089872008-06-13 21:12:51 +02001070 t_request,
1071 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
Willy Tarreau42250582007-04-01 01:30:43 +02001072 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
1073 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
1074 (tolog & LW_BYTES) ? "" : "+", s->logs.t_close,
1075 txn->status,
Willy Tarreau8b3977f2008-01-18 11:16:32 +01001076 (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out,
Willy Tarreau42250582007-04-01 01:30:43 +02001077 txn->cli_cookie ? txn->cli_cookie : "-",
1078 txn->srv_cookie ? txn->srv_cookie : "-",
1079 sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT],
1080 sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT],
1081 (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
1082 (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-',
1083 actconn, fe->feconn, be->beconn, s->srv ? s->srv->cur_sess : 0,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001084 (s->flags & SN_REDISP)?"+":"",
1085 (s->conn_retries>0)?(be->conn_retries - s->conn_retries):be->conn_retries,
Willy Tarreau42250582007-04-01 01:30:43 +02001086 s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline);
1087
1088 s->logs.logwait = 0;
1089}
1090
Willy Tarreau117f59e2007-03-04 18:17:17 +01001091
1092/*
1093 * Capture headers from message starting at <som> according to header list
1094 * <cap_hdr>, and fill the <idx> structure appropriately.
1095 */
1096void capture_headers(char *som, struct hdr_idx *idx,
1097 char **cap, struct cap_hdr *cap_hdr)
1098{
1099 char *eol, *sol, *col, *sov;
1100 int cur_idx;
1101 struct cap_hdr *h;
1102 int len;
1103
1104 sol = som + hdr_idx_first_pos(idx);
1105 cur_idx = hdr_idx_first_idx(idx);
1106
1107 while (cur_idx) {
1108 eol = sol + idx->v[cur_idx].len;
1109
1110 col = sol;
1111 while (col < eol && *col != ':')
1112 col++;
1113
1114 sov = col + 1;
1115 while (sov < eol && http_is_lws[(unsigned char)*sov])
1116 sov++;
1117
1118 for (h = cap_hdr; h; h = h->next) {
1119 if ((h->namelen == col - sol) &&
1120 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1121 if (cap[h->index] == NULL)
1122 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001123 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001124
1125 if (cap[h->index] == NULL) {
1126 Alert("HTTP capture : out of memory.\n");
1127 continue;
1128 }
1129
1130 len = eol - sov;
1131 if (len > h->len)
1132 len = h->len;
1133
1134 memcpy(cap[h->index], sov, len);
1135 cap[h->index][len]=0;
1136 }
1137 }
1138 sol = eol + idx->v[cur_idx].cr + 1;
1139 cur_idx = idx->v[cur_idx].next;
1140 }
1141}
1142
1143
Willy Tarreau42250582007-04-01 01:30:43 +02001144/* either we find an LF at <ptr> or we jump to <bad>.
1145 */
1146#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1147
1148/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1149 * otherwise to <http_msg_ood> with <state> set to <st>.
1150 */
1151#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1152 ptr++; \
1153 if (likely(ptr < end)) \
1154 goto good; \
1155 else { \
1156 state = (st); \
1157 goto http_msg_ood; \
1158 } \
1159 } while (0)
1160
1161
Willy Tarreaubaaee002006-06-26 02:48:02 +02001162/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001163 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001164 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1165 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1166 * will give undefined results.
1167 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1168 * and that msg->sol points to the beginning of the response.
1169 * If a complete line is found (which implies that at least one CR or LF is
1170 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1171 * returned indicating an incomplete line (which does not mean that parts have
1172 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1173 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1174 * upon next call.
1175 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001176 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001177 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1178 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001179 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001180 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001181const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf,
1182 unsigned int state, const char *ptr, const char *end,
1183 char **ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001184{
1185 __label__
1186 http_msg_rpver,
1187 http_msg_rpver_sp,
1188 http_msg_rpcode,
1189 http_msg_rpcode_sp,
1190 http_msg_rpreason,
1191 http_msg_rpline_eol,
1192 http_msg_ood, /* out of data */
1193 http_msg_invalid;
1194
1195 switch (state) {
1196 http_msg_rpver:
1197 case HTTP_MSG_RPVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001198 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001199 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1200
1201 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001202 msg->sl.st.v_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001203 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1204 }
1205 goto http_msg_invalid;
1206
1207 http_msg_rpver_sp:
1208 case HTTP_MSG_RPVER_SP:
1209 if (likely(!HTTP_IS_LWS(*ptr))) {
1210 msg->sl.st.c = ptr - msg_buf;
1211 goto http_msg_rpcode;
1212 }
1213 if (likely(HTTP_IS_SPHT(*ptr)))
1214 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1215 /* so it's a CR/LF, this is invalid */
1216 goto http_msg_invalid;
1217
1218 http_msg_rpcode:
1219 case HTTP_MSG_RPCODE:
1220 if (likely(!HTTP_IS_LWS(*ptr)))
1221 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1222
1223 if (likely(HTTP_IS_SPHT(*ptr))) {
1224 msg->sl.st.c_l = (ptr - msg_buf) - msg->sl.st.c;
1225 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1226 }
1227
1228 /* so it's a CR/LF, so there is no reason phrase */
1229 msg->sl.st.c_l = (ptr - msg_buf) - msg->sl.st.c;
1230 http_msg_rsp_reason:
1231 /* FIXME: should we support HTTP responses without any reason phrase ? */
1232 msg->sl.st.r = ptr - msg_buf;
1233 msg->sl.st.r_l = 0;
1234 goto http_msg_rpline_eol;
1235
1236 http_msg_rpcode_sp:
1237 case HTTP_MSG_RPCODE_SP:
1238 if (likely(!HTTP_IS_LWS(*ptr))) {
1239 msg->sl.st.r = ptr - msg_buf;
1240 goto http_msg_rpreason;
1241 }
1242 if (likely(HTTP_IS_SPHT(*ptr)))
1243 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1244 /* so it's a CR/LF, so there is no reason phrase */
1245 goto http_msg_rsp_reason;
1246
1247 http_msg_rpreason:
1248 case HTTP_MSG_RPREASON:
1249 if (likely(!HTTP_IS_CRLF(*ptr)))
1250 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
1251 msg->sl.st.r_l = (ptr - msg_buf) - msg->sl.st.r;
1252 http_msg_rpline_eol:
1253 /* We have seen the end of line. Note that we do not
1254 * necessarily have the \n yet, but at least we know that we
1255 * have EITHER \r OR \n, otherwise the response would not be
1256 * complete. We can then record the response length and return
1257 * to the caller which will be able to register it.
1258 */
1259 msg->sl.st.l = ptr - msg->sol;
1260 return ptr;
1261
1262#ifdef DEBUG_FULL
1263 default:
1264 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1265 exit(1);
1266#endif
1267 }
1268
1269 http_msg_ood:
1270 /* out of data */
1271 if (ret_state)
1272 *ret_state = state;
1273 if (ret_ptr)
1274 *ret_ptr = (char *)ptr;
1275 return NULL;
1276
1277 http_msg_invalid:
1278 /* invalid message */
1279 if (ret_state)
1280 *ret_state = HTTP_MSG_ERROR;
1281 return NULL;
1282}
1283
1284
1285/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001286 * This function parses a request line between <ptr> and <end>, starting with
1287 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1288 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1289 * will give undefined results.
1290 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1291 * and that msg->sol points to the beginning of the request.
1292 * If a complete line is found (which implies that at least one CR or LF is
1293 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1294 * returned indicating an incomplete line (which does not mean that parts have
1295 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1296 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1297 * upon next call.
1298 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001299 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001300 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1301 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001302 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001303 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001304const char *http_parse_reqline(struct http_msg *msg, const char *msg_buf,
1305 unsigned int state, const char *ptr, const char *end,
1306 char **ret_ptr, unsigned int *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001307{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001308 __label__
1309 http_msg_rqmeth,
1310 http_msg_rqmeth_sp,
1311 http_msg_rquri,
1312 http_msg_rquri_sp,
1313 http_msg_rqver,
1314 http_msg_rqline_eol,
1315 http_msg_ood, /* out of data */
1316 http_msg_invalid;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001317
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001318 switch (state) {
1319 http_msg_rqmeth:
1320 case HTTP_MSG_RQMETH:
1321 if (likely(HTTP_IS_TOKEN(*ptr)))
1322 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001323
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001324 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001325 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001326 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1327 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001328
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001329 if (likely(HTTP_IS_CRLF(*ptr))) {
1330 /* HTTP 0.9 request */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001331 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001332 http_msg_req09_uri:
1333 msg->sl.rq.u = ptr - msg_buf;
1334 http_msg_req09_uri_e:
1335 msg->sl.rq.u_l = (ptr - msg_buf) - msg->sl.rq.u;
1336 http_msg_req09_ver:
1337 msg->sl.rq.v = ptr - msg_buf;
1338 msg->sl.rq.v_l = 0;
1339 goto http_msg_rqline_eol;
1340 }
1341 goto http_msg_invalid;
1342
1343 http_msg_rqmeth_sp:
1344 case HTTP_MSG_RQMETH_SP:
1345 if (likely(!HTTP_IS_LWS(*ptr))) {
1346 msg->sl.rq.u = ptr - msg_buf;
1347 goto http_msg_rquri;
1348 }
1349 if (likely(HTTP_IS_SPHT(*ptr)))
1350 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1351 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1352 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001353
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001354 http_msg_rquri:
1355 case HTTP_MSG_RQURI:
1356 if (likely(!HTTP_IS_LWS(*ptr)))
1357 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001358
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001359 if (likely(HTTP_IS_SPHT(*ptr))) {
1360 msg->sl.rq.u_l = (ptr - msg_buf) - msg->sl.rq.u;
1361 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1362 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001363
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001364 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1365 goto http_msg_req09_uri_e;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001366
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001367 http_msg_rquri_sp:
1368 case HTTP_MSG_RQURI_SP:
1369 if (likely(!HTTP_IS_LWS(*ptr))) {
1370 msg->sl.rq.v = ptr - msg_buf;
1371 goto http_msg_rqver;
1372 }
1373 if (likely(HTTP_IS_SPHT(*ptr)))
1374 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1375 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1376 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001377
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001378 http_msg_rqver:
1379 case HTTP_MSG_RQVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001380 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001381 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001382
1383 if (likely(HTTP_IS_CRLF(*ptr))) {
1384 msg->sl.rq.v_l = (ptr - msg_buf) - msg->sl.rq.v;
1385 http_msg_rqline_eol:
1386 /* We have seen the end of line. Note that we do not
1387 * necessarily have the \n yet, but at least we know that we
1388 * have EITHER \r OR \n, otherwise the request would not be
1389 * complete. We can then record the request length and return
1390 * to the caller which will be able to register it.
1391 */
1392 msg->sl.rq.l = ptr - msg->sol;
1393 return ptr;
1394 }
1395
1396 /* neither an HTTP_VER token nor a CRLF */
1397 goto http_msg_invalid;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001398
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001399#ifdef DEBUG_FULL
1400 default:
1401 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1402 exit(1);
1403#endif
1404 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001405
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001406 http_msg_ood:
1407 /* out of data */
1408 if (ret_state)
1409 *ret_state = state;
1410 if (ret_ptr)
1411 *ret_ptr = (char *)ptr;
1412 return NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001413
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001414 http_msg_invalid:
1415 /* invalid message */
1416 if (ret_state)
1417 *ret_state = HTTP_MSG_ERROR;
1418 return NULL;
1419}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001420
1421
Willy Tarreau8973c702007-01-21 23:58:29 +01001422/*
1423 * This function parses an HTTP message, either a request or a response,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001424 * depending on the initial msg->msg_state. It can be preempted everywhere
Willy Tarreau8973c702007-01-21 23:58:29 +01001425 * when data are missing and recalled at the exact same location with no
1426 * information loss. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001427 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
1428 * fields.
Willy Tarreau8973c702007-01-21 23:58:29 +01001429 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001430void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx)
1431{
1432 __label__
1433 http_msg_rqbefore,
1434 http_msg_rqbefore_cr,
1435 http_msg_rqmeth,
1436 http_msg_rqline_end,
1437 http_msg_hdr_first,
1438 http_msg_hdr_name,
1439 http_msg_hdr_l1_sp,
1440 http_msg_hdr_l1_lf,
1441 http_msg_hdr_l1_lws,
1442 http_msg_hdr_val,
1443 http_msg_hdr_l2_lf,
1444 http_msg_hdr_l2_lws,
1445 http_msg_complete_header,
1446 http_msg_last_lf,
1447 http_msg_ood, /* out of data */
1448 http_msg_invalid;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001449
Willy Tarreaue69eada2008-01-27 00:34:10 +01001450 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001451 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001452
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001453 state = msg->msg_state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001454 ptr = buf->lr;
1455 end = buf->r;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001456
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001457 if (unlikely(ptr >= end))
1458 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001459
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001460 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001461 /*
1462 * First, states that are specific to the response only.
1463 * We check them first so that request and headers are
1464 * closer to each other (accessed more often).
1465 */
1466 http_msg_rpbefore:
1467 case HTTP_MSG_RPBEFORE:
1468 if (likely(HTTP_IS_TOKEN(*ptr))) {
1469 if (likely(ptr == buf->data)) {
1470 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001471 msg->som = 0;
Willy Tarreau8973c702007-01-21 23:58:29 +01001472 } else {
1473#if PARSE_PRESERVE_EMPTY_LINES
1474 /* only skip empty leading lines, don't remove them */
1475 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001476 msg->som = ptr - buf->data;
Willy Tarreau8973c702007-01-21 23:58:29 +01001477#else
1478 /* Remove empty leading lines, as recommended by
1479 * RFC2616. This takes a lot of time because we
1480 * must move all the buffer backwards, but this
1481 * is rarely needed. The method above will be
1482 * cleaner when we'll be able to start sending
1483 * the request from any place in the buffer.
1484 */
1485 buf->lr = ptr;
1486 buffer_replace2(buf, buf->data, buf->lr, NULL, 0);
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001487 msg->som = 0;
Willy Tarreau8973c702007-01-21 23:58:29 +01001488 msg->sol = buf->data;
1489 ptr = buf->data;
1490 end = buf->r;
1491#endif
1492 }
1493 hdr_idx_init(idx);
1494 state = HTTP_MSG_RPVER;
1495 goto http_msg_rpver;
1496 }
1497
1498 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1499 goto http_msg_invalid;
1500
1501 if (unlikely(*ptr == '\n'))
1502 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1503 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1504 /* stop here */
1505
1506 http_msg_rpbefore_cr:
1507 case HTTP_MSG_RPBEFORE_CR:
1508 EXPECT_LF_HERE(ptr, http_msg_invalid);
1509 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1510 /* stop here */
1511
1512 http_msg_rpver:
1513 case HTTP_MSG_RPVER:
1514 case HTTP_MSG_RPVER_SP:
1515 case HTTP_MSG_RPCODE:
1516 case HTTP_MSG_RPCODE_SP:
1517 case HTTP_MSG_RPREASON:
Willy Tarreaua15645d2007-03-18 16:22:39 +01001518 ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001519 &buf->lr, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001520 if (unlikely(!ptr))
1521 return;
1522
1523 /* we have a full response and we know that we have either a CR
1524 * or an LF at <ptr>.
1525 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001526 //fprintf(stderr,"som=%d rq.l=%d *ptr=0x%02x\n", msg->som, msg->sl.st.l, *ptr);
Willy Tarreau8973c702007-01-21 23:58:29 +01001527 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1528
1529 msg->sol = ptr;
1530 if (likely(*ptr == '\r'))
1531 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1532 goto http_msg_rpline_end;
1533
1534 http_msg_rpline_end:
1535 case HTTP_MSG_RPLINE_END:
1536 /* msg->sol must point to the first of CR or LF. */
1537 EXPECT_LF_HERE(ptr, http_msg_invalid);
1538 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1539 /* stop here */
1540
1541 /*
1542 * Second, states that are specific to the request only
1543 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001544 http_msg_rqbefore:
1545 case HTTP_MSG_RQBEFORE:
1546 if (likely(HTTP_IS_TOKEN(*ptr))) {
1547 if (likely(ptr == buf->data)) {
1548 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001549 msg->som = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001550 } else {
1551#if PARSE_PRESERVE_EMPTY_LINES
1552 /* only skip empty leading lines, don't remove them */
1553 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001554 msg->som = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001555#else
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001556 /* Remove empty leading lines, as recommended by
1557 * RFC2616. This takes a lot of time because we
1558 * must move all the buffer backwards, but this
1559 * is rarely needed. The method above will be
1560 * cleaner when we'll be able to start sending
1561 * the request from any place in the buffer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001562 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001563 buf->lr = ptr;
1564 buffer_replace2(buf, buf->data, buf->lr, NULL, 0);
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001565 msg->som = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001566 msg->sol = buf->data;
1567 ptr = buf->data;
1568 end = buf->r;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001569#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001570 }
Willy Tarreauf0d058e2007-01-25 12:03:42 +01001571 /* we will need this when keep-alive will be supported
1572 hdr_idx_init(idx);
1573 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001574 state = HTTP_MSG_RQMETH;
1575 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001576 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001577
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001578 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1579 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001580
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001581 if (unlikely(*ptr == '\n'))
1582 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1583 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001584 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001585
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001586 http_msg_rqbefore_cr:
1587 case HTTP_MSG_RQBEFORE_CR:
1588 EXPECT_LF_HERE(ptr, http_msg_invalid);
1589 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001590 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001591
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001592 http_msg_rqmeth:
1593 case HTTP_MSG_RQMETH:
1594 case HTTP_MSG_RQMETH_SP:
1595 case HTTP_MSG_RQURI:
1596 case HTTP_MSG_RQURI_SP:
1597 case HTTP_MSG_RQVER:
1598 ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001599 &buf->lr, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001600 if (unlikely(!ptr))
1601 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001602
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001603 /* we have a full request and we know that we have either a CR
1604 * or an LF at <ptr>.
1605 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001606 //fprintf(stderr,"som=%d rq.l=%d *ptr=0x%02x\n", msg->som, msg->sl.rq.l, *ptr);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001607 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001608
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001609 msg->sol = ptr;
1610 if (likely(*ptr == '\r'))
1611 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001612 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001613
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001614 http_msg_rqline_end:
1615 case HTTP_MSG_RQLINE_END:
1616 /* check for HTTP/0.9 request : no version information available.
1617 * msg->sol must point to the first of CR or LF.
1618 */
1619 if (unlikely(msg->sl.rq.v_l == 0))
1620 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001621
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001622 EXPECT_LF_HERE(ptr, http_msg_invalid);
1623 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001624 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001625
Willy Tarreau8973c702007-01-21 23:58:29 +01001626 /*
1627 * Common states below
1628 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001629 http_msg_hdr_first:
1630 case HTTP_MSG_HDR_FIRST:
1631 msg->sol = ptr;
1632 if (likely(!HTTP_IS_CRLF(*ptr))) {
1633 goto http_msg_hdr_name;
1634 }
1635
1636 if (likely(*ptr == '\r'))
1637 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1638 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001639
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001640 http_msg_hdr_name:
1641 case HTTP_MSG_HDR_NAME:
1642 /* assumes msg->sol points to the first char */
1643 if (likely(HTTP_IS_TOKEN(*ptr)))
1644 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001645
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001646 if (likely(*ptr == ':')) {
1647 msg->col = ptr - buf->data;
1648 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
1649 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001650
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001651 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001652
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001653 http_msg_hdr_l1_sp:
1654 case HTTP_MSG_HDR_L1_SP:
1655 /* assumes msg->sol points to the first char and msg->col to the colon */
1656 if (likely(HTTP_IS_SPHT(*ptr)))
1657 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001658
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001659 /* header value can be basically anything except CR/LF */
1660 msg->sov = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001661
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001662 if (likely(!HTTP_IS_CRLF(*ptr))) {
1663 goto http_msg_hdr_val;
1664 }
1665
1666 if (likely(*ptr == '\r'))
1667 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1668 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001669
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001670 http_msg_hdr_l1_lf:
1671 case HTTP_MSG_HDR_L1_LF:
1672 EXPECT_LF_HERE(ptr, http_msg_invalid);
1673 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001674
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001675 http_msg_hdr_l1_lws:
1676 case HTTP_MSG_HDR_L1_LWS:
1677 if (likely(HTTP_IS_SPHT(*ptr))) {
1678 /* replace HT,CR,LF with spaces */
1679 for (; buf->data+msg->sov < ptr; msg->sov++)
1680 buf->data[msg->sov] = ' ';
1681 goto http_msg_hdr_l1_sp;
1682 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001683 /* we had a header consisting only in spaces ! */
1684 msg->eol = buf->data + msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001685 goto http_msg_complete_header;
1686
1687 http_msg_hdr_val:
1688 case HTTP_MSG_HDR_VAL:
1689 /* assumes msg->sol points to the first char, msg->col to the
1690 * colon, and msg->sov points to the first character of the
1691 * value.
1692 */
1693 if (likely(!HTTP_IS_CRLF(*ptr)))
1694 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001695
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001696 msg->eol = ptr;
1697 /* Note: we could also copy eol into ->eoh so that we have the
1698 * real header end in case it ends with lots of LWS, but is this
1699 * really needed ?
1700 */
1701 if (likely(*ptr == '\r'))
1702 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1703 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001704
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001705 http_msg_hdr_l2_lf:
1706 case HTTP_MSG_HDR_L2_LF:
1707 EXPECT_LF_HERE(ptr, http_msg_invalid);
1708 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001709
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001710 http_msg_hdr_l2_lws:
1711 case HTTP_MSG_HDR_L2_LWS:
1712 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1713 /* LWS: replace HT,CR,LF with spaces */
1714 for (; msg->eol < ptr; msg->eol++)
1715 *msg->eol = ' ';
1716 goto http_msg_hdr_val;
1717 }
1718 http_msg_complete_header:
1719 /*
1720 * It was a new header, so the last one is finished.
1721 * Assumes msg->sol points to the first char, msg->col to the
1722 * colon, msg->sov points to the first character of the value
1723 * and msg->eol to the first CR or LF so we know how the line
1724 * ends. We insert last header into the index.
1725 */
1726 /*
1727 fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol);
1728 write(2, msg->sol, msg->eol-msg->sol);
1729 fprintf(stderr,"\n");
1730 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001731
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001732 if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r',
1733 idx, idx->tail) < 0))
1734 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001735
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001736 msg->sol = ptr;
1737 if (likely(!HTTP_IS_CRLF(*ptr))) {
1738 goto http_msg_hdr_name;
1739 }
1740
1741 if (likely(*ptr == '\r'))
1742 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1743 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001744
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001745 http_msg_last_lf:
1746 case HTTP_MSG_LAST_LF:
1747 /* Assumes msg->sol points to the first of either CR or LF */
1748 EXPECT_LF_HERE(ptr, http_msg_invalid);
1749 ptr++;
1750 buf->lr = ptr;
1751 msg->eoh = msg->sol - buf->data;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001752 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001753 return;
1754#ifdef DEBUG_FULL
1755 default:
1756 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1757 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001758#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001759 }
1760 http_msg_ood:
1761 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001762 msg->msg_state = state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001763 buf->lr = ptr;
1764 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001765
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001766 http_msg_invalid:
1767 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001768 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001769 return;
1770}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001771
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001772/* This function performs all the processing enabled for the current request.
Willy Tarreaudafde432008-08-17 01:00:46 +02001773 * It normally returns zero, but may return 1 if it absolutely needs to be
1774 * called again after other functions. It relies on buffers flags, and updates
Willy Tarreau2df28e82008-08-17 15:20:19 +02001775 * t->req->analysers. It might make sense to explode it into several other
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001776 * functions. Its behaviour is rather simple :
1777 * - all enabled analysers are called in turn from the lower to the higher
1778 * bit.
1779 * - if an analyser does not have enough data, it must return without calling
Willy Tarreau3da77c52008-08-29 09:58:42 +02001780 * other ones. It should also probably reset the BF_WRITE_ENA bit to ensure
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001781 * that unprocessed data will not be forwarded. But that probably depends on
1782 * the protocol. Generally it is not reset in case of errors.
1783 * - if an analyser has enough data, it just has to pass on to the next
Willy Tarreau3da77c52008-08-29 09:58:42 +02001784 * analyser without touching BF_WRITE_ENA (it is enabled prior to
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001785 * analysis).
1786 * - if an analyser thinks it has no added value anymore staying here, it must
1787 * reset its bit from the analysers flags in order not to be called anymore.
1788 *
1789 * In the future, analysers should be able to indicate that they want to be
1790 * called after XXX bytes have been received (or transfered), and the min of
1791 * all's wishes will be used to ring back (unless a special condition occurs).
1792 *
1793 *
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001794 */
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001795int process_request(struct session *t)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001796{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001797 struct buffer *req = t->req;
1798 struct buffer *rep = t->rep;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001799
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02001800 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001801 now_ms, __FUNCTION__,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02001802 t,
1803 req,
1804 req->rex, req->wex,
1805 req->flags,
1806 req->l,
1807 req->analysers);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001808
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001809 /* The tcp-inspect analyser is always called alone */
Willy Tarreau2df28e82008-08-17 15:20:19 +02001810 if (req->analysers & AN_REQ_INSPECT) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001811 struct tcp_rule *rule;
1812 int partial;
1813
Willy Tarreauf495ddf2008-08-17 14:38:41 +02001814 /* We will abort if we encounter a read error. In theory, we
1815 * should not abort if we get a close, it might be valid,
1816 * although very unlikely. FIXME: we'll abort for now, this
1817 * will be easier to change later.
Willy Tarreaub6866442008-07-14 23:54:42 +02001818 */
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001819 if (req->flags & BF_READ_ERROR) {
Willy Tarreau2df28e82008-08-17 15:20:19 +02001820 req->analysers = 0;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02001821 //t->fe->failed_req++;
Willy Tarreaub6866442008-07-14 23:54:42 +02001822 if (!(t->flags & SN_ERR_MASK))
1823 t->flags |= SN_ERR_CLICL;
1824 if (!(t->flags & SN_FINST_MASK))
1825 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02001826 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02001827 }
1828
1829 /* Abort if client read timeout has expired */
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001830 else if (req->flags & BF_READ_TIMEOUT) {
Willy Tarreau2df28e82008-08-17 15:20:19 +02001831 req->analysers = 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02001832 t->fe->failed_req++;
1833 if (!(t->flags & SN_ERR_MASK))
1834 t->flags |= SN_ERR_CLITO;
1835 if (!(t->flags & SN_FINST_MASK))
1836 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02001837 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02001838 }
1839
1840 /* We don't know whether we have enough data, so must proceed
1841 * this way :
1842 * - iterate through all rules in their declaration order
1843 * - if one rule returns MISS, it means the inspect delay is
1844 * not over yet, then return immediately, otherwise consider
1845 * it as a non-match.
1846 * - if one rule returns OK, then return OK
1847 * - if one rule returns KO, then return KO
1848 */
1849
Willy Tarreaue5ed4062008-08-30 03:17:31 +02001850 if (req->flags & BF_SHUTR || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreaub6866442008-07-14 23:54:42 +02001851 partial = 0;
1852 else
1853 partial = ACL_PARTIAL;
1854
1855 list_for_each_entry(rule, &t->fe->tcp_req.inspect_rules, list) {
1856 int ret = ACL_PAT_PASS;
1857
1858 if (rule->cond) {
1859 ret = acl_exec_cond(rule->cond, t->fe, t, NULL, ACL_DIR_REQ | partial);
1860 if (ret == ACL_PAT_MISS) {
Willy Tarreau3da77c52008-08-29 09:58:42 +02001861 buffer_write_dis(req);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001862 /* just set the request timeout once at the beginning of the request */
Willy Tarreauffab5b42008-08-17 18:03:28 +02001863 if (!tick_isset(req->analyse_exp))
1864 req->analyse_exp = tick_add_ifset(now_ms, t->fe->tcp_req.inspect_delay);
Willy Tarreaudafde432008-08-17 01:00:46 +02001865 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02001866 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001867
Willy Tarreaub6866442008-07-14 23:54:42 +02001868 ret = acl_pass(ret);
1869 if (rule->cond->pol == ACL_COND_UNLESS)
1870 ret = !ret;
1871 }
1872
1873 if (ret) {
1874 /* we have a matching rule. */
1875 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001876 buffer_abort(req);
1877 buffer_abort(rep);
1878 //FIXME: this delete this
1879 //fd_delete(t->cli_fd);
1880 //t->cli_state = CL_STCLOSE;
Willy Tarreau2df28e82008-08-17 15:20:19 +02001881 req->analysers = 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02001882 t->fe->failed_req++;
1883 if (!(t->flags & SN_ERR_MASK))
1884 t->flags |= SN_ERR_PRXCOND;
1885 if (!(t->flags & SN_FINST_MASK))
1886 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02001887 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02001888 }
1889 /* otherwise accept */
1890 break;
1891 }
1892 }
1893
Willy Tarreau67f0eea2008-08-10 22:55:22 +02001894 /* if we get there, it means we have no rule which matches, or
1895 * we have an explicit accept, so we apply the default accept.
Willy Tarreaub6866442008-07-14 23:54:42 +02001896 */
Willy Tarreau2df28e82008-08-17 15:20:19 +02001897 req->analysers &= ~AN_REQ_INSPECT;
Willy Tarreauffab5b42008-08-17 18:03:28 +02001898 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaub6866442008-07-14 23:54:42 +02001899 }
Willy Tarreau67f0eea2008-08-10 22:55:22 +02001900
Willy Tarreau2df28e82008-08-17 15:20:19 +02001901 if (req->analysers & AN_REQ_HTTP_HDR) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001902 /*
1903 * Now parse the partial (or complete) lines.
1904 * We will check the request syntax, and also join multi-line
1905 * headers. An index of all the lines will be elaborated while
1906 * parsing.
1907 *
Willy Tarreau8973c702007-01-21 23:58:29 +01001908 * For the parsing, we use a 28 states FSM.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001909 *
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001910 * Here is the information we currently have :
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001911 * req->data + req->som = beginning of request
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001912 * req->data + req->eoh = end of processed headers / start of current one
1913 * req->data + req->eol = end of current header or line (LF or CRLF)
1914 * req->lr = first non-visited byte
1915 * req->r = end of data
1916 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001917
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001918 int cur_idx;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001919 struct http_txn *txn = &t->txn;
1920 struct http_msg *msg = &txn->req;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001921 struct proxy *cur_proxy;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001922
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001923 if (likely(req->lr < req->r))
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001924 http_msg_analyzer(req, msg, &txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001925
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001926 /* 1: we might have to print this header in debug mode */
1927 if (unlikely((global.mode & MODE_DEBUG) &&
1928 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001929 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001930 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001931
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001932 sol = req->data + msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001933 eol = sol + msg->sl.rq.l;
1934 debug_hdr("clireq", t, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01001935
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001936 sol += hdr_idx_first_pos(&txn->hdr_idx);
1937 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001938
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001939 while (cur_idx) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001940 eol = sol + txn->hdr_idx.v[cur_idx].len;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001941 debug_hdr("clihdr", t, sol, eol);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001942 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
1943 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001944 }
1945 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001946
Willy Tarreau58f10d72006-12-04 02:26:12 +01001947
1948 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001949 * Now we quickly check if we have found a full valid request.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001950 * If not so, we check the FD and buffer states before leaving.
1951 * A full request is indicated by the fact that we have seen
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001952 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
1953 * requests are checked first.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001954 *
1955 */
1956
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001957 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001958 /*
1959 * First, let's catch bad requests.
1960 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001961 if (unlikely(msg->msg_state == HTTP_MSG_ERROR))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001962 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001963
1964 /* 1: Since we are in header mode, if there's no space
1965 * left for headers, we won't be able to free more
1966 * later, so the session will never terminate. We
1967 * must terminate it now.
1968 */
Willy Tarreaue393fe22008-08-16 22:18:07 +02001969 if (unlikely(req->flags & BF_FULL)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001970 /* FIXME: check if URI is set and return Status
1971 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001972 */
Willy Tarreau06619262006-12-17 08:37:22 +01001973 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001974 }
1975
Willy Tarreauf9839bd2008-08-27 23:57:16 +02001976 /* 2: have we encountered a read error ? */
1977 else if (req->flags & BF_READ_ERROR) {
1978 /* we cannot return any message on error */
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001979 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau2df28e82008-08-17 15:20:19 +02001980 req->analysers = 0;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02001981 //t->fe->failed_req++;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001982 if (!(t->flags & SN_ERR_MASK))
1983 t->flags |= SN_ERR_CLICL;
1984 if (!(t->flags & SN_FINST_MASK))
1985 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02001986 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001987 }
1988
1989 /* 3: has the read timeout expired ? */
Willy Tarreauffab5b42008-08-17 18:03:28 +02001990 else if (req->flags & BF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01001991 /* read timeout : give up with an error message. */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01001992 txn->status = 408;
Willy Tarreau80587432006-12-24 17:47:20 +01001993 client_retnclose(t, error_message(t, HTTP_ERR_408));
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001994 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau2df28e82008-08-17 15:20:19 +02001995 req->analysers = 0;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01001996 t->fe->failed_req++;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001997 if (!(t->flags & SN_ERR_MASK))
1998 t->flags |= SN_ERR_CLITO;
1999 if (!(t->flags & SN_FINST_MASK))
2000 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002001 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002002 }
2003
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002004 /* 4: have we encountered a close ? */
Willy Tarreaue5ed4062008-08-30 03:17:31 +02002005 else if (req->flags & BF_SHUTR) {
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002006 txn->status = 400;
2007 client_retnclose(t, error_message(t, HTTP_ERR_400));
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002008 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002009 req->analysers = 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002010 t->fe->failed_req++;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002011
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002012 if (!(t->flags & SN_ERR_MASK))
2013 t->flags |= SN_ERR_CLICL;
2014 if (!(t->flags & SN_FINST_MASK))
2015 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002016 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002017 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002018
Willy Tarreau3da77c52008-08-29 09:58:42 +02002019 buffer_write_dis(req);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002020 /* just set the request timeout once at the beginning of the request */
Willy Tarreauffab5b42008-08-17 18:03:28 +02002021 if (!tick_isset(req->analyse_exp))
2022 req->analyse_exp = tick_add_ifset(now_ms, t->fe->timeout.httpreq);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002023
2024 /* we're not ready yet */
Willy Tarreaudafde432008-08-17 01:00:46 +02002025 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002026 }
2027
2028
2029 /****************************************************************
2030 * More interesting part now : we know that we have a complete *
2031 * request which at least looks like HTTP. We have an indicator *
2032 * of each header's length, so we can parse them quickly. *
2033 ****************************************************************/
2034
Willy Tarreau2df28e82008-08-17 15:20:19 +02002035 req->analysers &= ~AN_REQ_HTTP_HDR;
Willy Tarreauffab5b42008-08-17 18:03:28 +02002036 req->analyse_exp = TICK_ETERNITY;
Willy Tarreau67f0eea2008-08-10 22:55:22 +02002037
Willy Tarreau9cdde232007-05-02 20:58:19 +02002038 /* ensure we keep this pointer to the beginning of the message */
2039 msg->sol = req->data + msg->som;
2040
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002041 /*
2042 * 1: identify the method
2043 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002044 txn->meth = find_http_meth(&req->data[msg->som], msg->sl.rq.m_l);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002045
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002046 /* we can make use of server redirect on GET and HEAD */
2047 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2048 t->flags |= SN_REDIRECTABLE;
2049
Willy Tarreau58f10d72006-12-04 02:26:12 +01002050 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002051 * 2: check if the URI matches the monitor_uri.
Willy Tarreau06619262006-12-17 08:37:22 +01002052 * We have to do this for every request which gets in, because
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002053 * the monitor-uri is defined by the frontend.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002054 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002055 if (unlikely((t->fe->monitor_uri_len != 0) &&
2056 (t->fe->monitor_uri_len == msg->sl.rq.u_l) &&
2057 !memcmp(&req->data[msg->sl.rq.u],
2058 t->fe->monitor_uri,
2059 t->fe->monitor_uri_len))) {
2060 /*
2061 * We have found the monitor URI
2062 */
Willy Tarreaub80c2302007-11-30 20:51:32 +01002063 struct acl_cond *cond;
2064 cur_proxy = t->fe;
2065
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002066 t->flags |= SN_MONITOR;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002067
2068 /* Check if we want to fail this monitor request or not */
2069 list_for_each_entry(cond, &cur_proxy->mon_fail_cond, list) {
2070 int ret = acl_exec_cond(cond, cur_proxy, t, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002071
2072 ret = acl_pass(ret);
Willy Tarreaub80c2302007-11-30 20:51:32 +01002073 if (cond->pol == ACL_COND_UNLESS)
2074 ret = !ret;
2075
2076 if (ret) {
2077 /* we fail this request, let's return 503 service unavail */
2078 txn->status = 503;
2079 client_retnclose(t, error_message(t, HTTP_ERR_503));
2080 goto return_prx_cond;
2081 }
2082 }
2083
2084 /* nothing to fail, let's reply normaly */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002085 txn->status = 200;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002086 client_retnclose(t, &http_200_chunk);
2087 goto return_prx_cond;
2088 }
2089
2090 /*
2091 * 3: Maybe we have to copy the original REQURI for the logs ?
2092 * Note: we cannot log anymore if the request has been
2093 * classified as invalid.
2094 */
2095 if (unlikely(t->logs.logwait & LW_REQ)) {
2096 /* we have a complete HTTP request that we must log */
Willy Tarreau332f8bf2007-05-13 21:36:56 +02002097 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002098 int urilen = msg->sl.rq.l;
2099
2100 if (urilen >= REQURI_LEN)
2101 urilen = REQURI_LEN - 1;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002102 memcpy(txn->uri, &req->data[msg->som], urilen);
2103 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002104
2105 if (!(t->logs.logwait &= ~LW_REQ))
Willy Tarreau42250582007-04-01 01:30:43 +02002106 http_sess_log(t);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002107 } else {
2108 Alert("HTTP logging : out of memory.\n");
2109 }
2110 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002111
Willy Tarreau06619262006-12-17 08:37:22 +01002112
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002113 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
2114 if (unlikely(msg->sl.rq.v_l == 0)) {
2115 int delta;
2116 char *cur_end;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01002117 msg->sol = req->data + msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002118 cur_end = msg->sol + msg->sl.rq.l;
2119 delta = 0;
Willy Tarreau06619262006-12-17 08:37:22 +01002120
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002121 if (msg->sl.rq.u_l == 0) {
2122 /* if no URI was set, add "/" */
2123 delta = buffer_replace2(req, cur_end, cur_end, " /", 2);
2124 cur_end += delta;
2125 msg->eoh += delta;
Willy Tarreau06619262006-12-17 08:37:22 +01002126 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002127 /* add HTTP version */
2128 delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11);
2129 msg->eoh += delta;
2130 cur_end += delta;
2131 cur_end = (char *)http_parse_reqline(msg, req->data,
2132 HTTP_MSG_RQMETH,
2133 msg->sol, cur_end + 1,
2134 NULL, NULL);
2135 if (unlikely(!cur_end))
2136 goto return_bad_req;
2137
2138 /* we have a full HTTP/1.0 request now and we know that
2139 * we have either a CR or an LF at <ptr>.
2140 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002141 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
Willy Tarreau58f10d72006-12-04 02:26:12 +01002142 }
2143
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002144
2145 /* 5: we may need to capture headers */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002146 if (unlikely((t->logs.logwait & LW_REQHDR) && t->fe->req_cap))
Willy Tarreau117f59e2007-03-04 18:17:17 +01002147 capture_headers(req->data + msg->som, &txn->hdr_idx,
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002148 txn->req.cap, t->fe->req_cap);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002149
2150 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002151 * 6: we will have to evaluate the filters.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002152 * As opposed to version 1.2, now they will be evaluated in the
2153 * filters order and not in the header order. This means that
2154 * each filter has to be validated among all headers.
Willy Tarreau06619262006-12-17 08:37:22 +01002155 *
2156 * We can now check whether we want to switch to another
2157 * backend, in which case we will re-check the backend's
2158 * filters and various options. In order to support 3-level
2159 * switching, here's how we should proceed :
2160 *
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002161 * a) run be.
Willy Tarreau830ff452006-12-17 19:31:23 +01002162 * if (switch) then switch ->be to the new backend.
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002163 * b) run be if (be != fe).
Willy Tarreau06619262006-12-17 08:37:22 +01002164 * There cannot be any switch from there, so ->be cannot be
2165 * changed anymore.
2166 *
Willy Tarreau830ff452006-12-17 19:31:23 +01002167 * => filters always apply to ->be, then ->be may change.
Willy Tarreau230fd0b2006-12-17 12:05:00 +01002168 *
Willy Tarreau830ff452006-12-17 19:31:23 +01002169 * The response path will be able to apply either ->be, or
2170 * ->be then ->fe filters in order to match the reverse of
2171 * the forward sequence.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002172 */
2173
Willy Tarreau06619262006-12-17 08:37:22 +01002174 do {
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02002175 struct acl_cond *cond;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002176 struct redirect_rule *rule;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002177 struct proxy *rule_set = t->be;
Willy Tarreau830ff452006-12-17 19:31:23 +01002178 cur_proxy = t->be;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002179
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002180 /* first check whether we have some ACLs set to redirect this request */
2181 list_for_each_entry(rule, &cur_proxy->redirect_rules, list) {
2182 int ret = acl_exec_cond(rule->cond, cur_proxy, t, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002183
2184 ret = acl_pass(ret);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002185 if (rule->cond->pol == ACL_COND_UNLESS)
2186 ret = !ret;
2187
2188 if (ret) {
2189 struct chunk rdr = { trash, 0 };
2190 const char *msg_fmt;
2191
2192 /* build redirect message */
2193 switch(rule->code) {
2194 case 303:
2195 rdr.len = strlen(HTTP_303);
2196 msg_fmt = HTTP_303;
2197 break;
2198 case 301:
2199 rdr.len = strlen(HTTP_301);
2200 msg_fmt = HTTP_301;
2201 break;
2202 case 302:
2203 default:
2204 rdr.len = strlen(HTTP_302);
2205 msg_fmt = HTTP_302;
2206 break;
2207 }
2208
2209 if (unlikely(rdr.len > sizeof(trash)))
2210 goto return_bad_req;
2211 memcpy(rdr.str, msg_fmt, rdr.len);
2212
2213 switch(rule->type) {
2214 case REDIRECT_TYPE_PREFIX: {
2215 const char *path;
2216 int pathlen;
2217
2218 path = http_get_path(txn);
2219 /* build message using path */
2220 if (path) {
2221 pathlen = txn->req.sl.rq.u_l + (txn->req.sol+txn->req.sl.rq.u) - path;
2222 } else {
2223 path = "/";
2224 pathlen = 1;
2225 }
2226
2227 if (rdr.len + rule->rdr_len + pathlen > sizeof(trash) - 4)
2228 goto return_bad_req;
2229
2230 /* add prefix */
2231 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
2232 rdr.len += rule->rdr_len;
2233
2234 /* add path */
2235 memcpy(rdr.str + rdr.len, path, pathlen);
2236 rdr.len += pathlen;
2237 break;
2238 }
2239 case REDIRECT_TYPE_LOCATION:
2240 default:
2241 if (rdr.len + rule->rdr_len > sizeof(trash) - 4)
2242 goto return_bad_req;
2243
2244 /* add location */
2245 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
2246 rdr.len += rule->rdr_len;
2247 break;
2248 }
2249
2250 /* add end of headers */
2251 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
2252 rdr.len += 4;
2253
2254 txn->status = rule->code;
2255 /* let's log the request time */
Willy Tarreau70089872008-06-13 21:12:51 +02002256 t->logs.tv_request = now;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002257 client_retnclose(t, &rdr);
2258 goto return_prx_cond;
2259 }
2260 }
2261
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02002262 /* first check whether we have some ACLs set to block this request */
2263 list_for_each_entry(cond, &cur_proxy->block_cond, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02002264 int ret = acl_exec_cond(cond, cur_proxy, t, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002265
2266 ret = acl_pass(ret);
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02002267 if (cond->pol == ACL_COND_UNLESS)
2268 ret = !ret;
2269
2270 if (ret) {
2271 txn->status = 403;
2272 /* let's log the request time */
Willy Tarreau70089872008-06-13 21:12:51 +02002273 t->logs.tv_request = now;
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02002274 client_retnclose(t, error_message(t, HTTP_ERR_403));
2275 goto return_prx_cond;
2276 }
2277 }
2278
Willy Tarreau06619262006-12-17 08:37:22 +01002279 /* try headers filters */
Willy Tarreau53b6c742006-12-17 13:37:46 +01002280 if (rule_set->req_exp != NULL) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002281 if (apply_filters_to_request(t, req, rule_set->req_exp) < 0)
2282 goto return_bad_req;
Willy Tarreau53b6c742006-12-17 13:37:46 +01002283 }
2284
Willy Tarreauf1221aa2006-12-17 22:14:12 +01002285 if (!(t->flags & SN_BE_ASSIGNED) && (t->be != cur_proxy)) {
2286 /* to ensure correct connection accounting on
2287 * the backend, we count the connection for the
2288 * one managing the queue.
2289 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002290 t->be->beconn++;
2291 if (t->be->beconn > t->be->beconn_max)
2292 t->be->beconn_max = t->be->beconn;
2293 t->be->cum_beconn++;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01002294 t->flags |= SN_BE_ASSIGNED;
2295 }
2296
Willy Tarreau06619262006-12-17 08:37:22 +01002297 /* has the request been denied ? */
Willy Tarreau3d300592007-03-18 18:34:41 +01002298 if (txn->flags & TX_CLDENY) {
Willy Tarreau06619262006-12-17 08:37:22 +01002299 /* no need to go further */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002300 txn->status = 403;
Willy Tarreau06619262006-12-17 08:37:22 +01002301 /* let's log the request time */
Willy Tarreau70089872008-06-13 21:12:51 +02002302 t->logs.tv_request = now;
Willy Tarreau80587432006-12-24 17:47:20 +01002303 client_retnclose(t, error_message(t, HTTP_ERR_403));
Willy Tarreau06619262006-12-17 08:37:22 +01002304 goto return_prx_cond;
2305 }
2306
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002307 /* We might have to check for "Connection:" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002308 if (((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002309 !(t->flags & SN_CONN_CLOSED)) {
2310 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01002311 int cur_idx, old_idx, delta, val;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002312 struct hdr_idx_elem *cur_hdr;
Willy Tarreau06619262006-12-17 08:37:22 +01002313
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002314 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002315 old_idx = 0;
2316
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002317 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
2318 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002319 cur_ptr = cur_next;
2320 cur_end = cur_ptr + cur_hdr->len;
2321 cur_next = cur_end + cur_hdr->cr + 1;
2322
Willy Tarreauaa9dce32007-03-18 23:50:16 +01002323 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
2324 if (val) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002325 /* 3 possibilities :
2326 * - we have already set Connection: close,
2327 * so we remove this line.
2328 * - we have not yet set Connection: close,
2329 * but this line indicates close. We leave
2330 * it untouched and set the flag.
2331 * - we have not yet set Connection: close,
2332 * and this line indicates non-close. We
2333 * replace it.
2334 */
2335 if (t->flags & SN_CONN_CLOSED) {
2336 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002337 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002338 cur_next += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002339 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
2340 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002341 cur_hdr->len = 0;
2342 } else {
Willy Tarreauaa9dce32007-03-18 23:50:16 +01002343 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
2344 delta = buffer_replace2(req, cur_ptr + val, cur_end,
2345 "close", 5);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002346 cur_next += delta;
2347 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002348 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002349 }
2350 t->flags |= SN_CONN_CLOSED;
2351 }
2352 }
2353 old_idx = cur_idx;
2354 }
Willy Tarreauf2f0ee82007-03-30 12:02:43 +02002355 }
2356 /* add request headers from the rule sets in the same order */
2357 for (cur_idx = 0; cur_idx < rule_set->nb_reqadd; cur_idx++) {
2358 if (unlikely(http_header_add_tail(req,
2359 &txn->req,
2360 &txn->hdr_idx,
2361 rule_set->req_add[cur_idx])) < 0)
2362 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01002363 }
Willy Tarreaub2513902006-12-17 14:52:38 +01002364
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002365 /* check if stats URI was requested, and if an auth is needed */
Willy Tarreau0214c3a2007-01-07 13:47:30 +01002366 if (rule_set->uri_auth != NULL &&
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002367 (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)) {
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002368 /* we have to check the URI and auth for this request.
2369 * FIXME!!! that one is rather dangerous, we want to
Willy Tarreau2df28e82008-08-17 15:20:19 +02002370 * make it follow standard rules (eg: clear req->analysers).
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002371 */
Willy Tarreaub2513902006-12-17 14:52:38 +01002372 if (stats_check_uri_auth(t, rule_set))
2373 return 1;
2374 }
2375
Willy Tarreau55ea7572007-06-17 19:56:27 +02002376 /* now check whether we have some switching rules for this request */
2377 if (!(t->flags & SN_BE_ASSIGNED)) {
2378 struct switching_rule *rule;
2379
2380 list_for_each_entry(rule, &cur_proxy->switching_rules, list) {
2381 int ret;
2382
2383 ret = acl_exec_cond(rule->cond, cur_proxy, t, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002384
2385 ret = acl_pass(ret);
Willy Tarreaua8cfa342008-07-09 11:23:31 +02002386 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreau55ea7572007-06-17 19:56:27 +02002387 ret = !ret;
2388
2389 if (ret) {
2390 t->be = rule->be.backend;
2391 t->be->beconn++;
2392 if (t->be->beconn > t->be->beconn_max)
2393 t->be->beconn_max = t->be->beconn;
2394 t->be->cum_beconn++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02002395
2396 /* assign new parameters to the session from the new backend */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002397 t->rep->rto = t->req->wto = t->be->timeout.server;
2398 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02002399 t->conn_retries = t->be->conn_retries;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002400 t->flags |= SN_BE_ASSIGNED;
2401 break;
2402 }
2403 }
2404 }
2405
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002406 if (!(t->flags & SN_BE_ASSIGNED) && cur_proxy->defbe.be) {
2407 /* No backend was set, but there was a default
2408 * backend set in the frontend, so we use it and
2409 * loop again.
2410 */
2411 t->be = cur_proxy->defbe.be;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002412 t->be->beconn++;
2413 if (t->be->beconn > t->be->beconn_max)
2414 t->be->beconn_max = t->be->beconn;
2415 t->be->cum_beconn++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02002416
2417 /* assign new parameters to the session from the new backend */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002418 t->rep->rto = t->req->wto = t->be->timeout.server;
2419 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02002420 t->conn_retries = t->be->conn_retries;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002421 t->flags |= SN_BE_ASSIGNED;
2422 }
2423 } while (t->be != cur_proxy); /* we loop only if t->be has changed */
Willy Tarreau2a324282006-12-05 00:05:46 +01002424
Willy Tarreau58f10d72006-12-04 02:26:12 +01002425
Willy Tarreauf1221aa2006-12-17 22:14:12 +01002426 if (!(t->flags & SN_BE_ASSIGNED)) {
2427 /* To ensure correct connection accounting on
2428 * the backend, we count the connection for the
2429 * one managing the queue.
2430 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002431 t->be->beconn++;
2432 if (t->be->beconn > t->be->beconn_max)
2433 t->be->beconn_max = t->be->beconn;
2434 t->be->cum_beconn++;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01002435 t->flags |= SN_BE_ASSIGNED;
2436 }
2437
Willy Tarreau230fd0b2006-12-17 12:05:00 +01002438 /*
2439 * Right now, we know that we have processed the entire headers
Willy Tarreau2a324282006-12-05 00:05:46 +01002440 * and that unwanted requests have been filtered out. We can do
Willy Tarreau230fd0b2006-12-17 12:05:00 +01002441 * whatever we want with the remaining request. Also, now we
Willy Tarreau830ff452006-12-17 19:31:23 +01002442 * may have separate values for ->fe, ->be.
Willy Tarreau2a324282006-12-05 00:05:46 +01002443 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002444
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01002445 /*
2446 * If HTTP PROXY is set we simply get remote server address
2447 * parsing incoming request.
2448 */
2449 if ((t->be->options & PR_O_HTTP_PROXY) && !(t->flags & SN_ADDR_SET)) {
2450 url2sa(req->data + msg->sl.rq.u, msg->sl.rq.u_l, &t->srv_addr);
2451 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002452
Willy Tarreau2a324282006-12-05 00:05:46 +01002453 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002454 * 7: the appsession cookie was looked up very early in 1.2,
Willy Tarreau06619262006-12-17 08:37:22 +01002455 * so let's do the same now.
2456 */
2457
2458 /* It needs to look into the URI */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002459 if (t->be->appsession_name) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01002460 get_srv_from_appsession(t, &req->data[msg->som], msg->sl.rq.l);
Willy Tarreau06619262006-12-17 08:37:22 +01002461 }
2462
2463
2464 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002465 * 8: Now we can work with the cookies.
Willy Tarreau2a324282006-12-05 00:05:46 +01002466 * Note that doing so might move headers in the request, but
2467 * the fields will stay coherent and the URI will not move.
Willy Tarreau06619262006-12-17 08:37:22 +01002468 * This should only be performed in the backend.
Willy Tarreau2a324282006-12-05 00:05:46 +01002469 */
Willy Tarreau396d2c62007-11-04 19:30:00 +01002470 if ((t->be->cookie_name || t->be->appsession_name || t->be->capture_name)
2471 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
Willy Tarreau2a324282006-12-05 00:05:46 +01002472 manage_client_side_cookies(t, req);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002473
Willy Tarreau58f10d72006-12-04 02:26:12 +01002474
Willy Tarreau2a324282006-12-05 00:05:46 +01002475 /*
Willy Tarreaubb046ac2007-03-03 19:17:03 +01002476 * 9: add X-Forwarded-For if either the frontend or the backend
2477 * asks for it.
Willy Tarreau2a324282006-12-05 00:05:46 +01002478 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002479 if ((t->fe->options | t->be->options) & PR_O_FWDFOR) {
Willy Tarreau2a324282006-12-05 00:05:46 +01002480 if (t->cli_addr.ss_family == AF_INET) {
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002481 /* Add an X-Forwarded-For header unless the source IP is
2482 * in the 'except' network range.
2483 */
2484 if ((!t->fe->except_mask.s_addr ||
2485 (((struct sockaddr_in *)&t->cli_addr)->sin_addr.s_addr & t->fe->except_mask.s_addr)
2486 != t->fe->except_net.s_addr) &&
2487 (!t->be->except_mask.s_addr ||
2488 (((struct sockaddr_in *)&t->cli_addr)->sin_addr.s_addr & t->be->except_mask.s_addr)
2489 != t->be->except_net.s_addr)) {
2490 int len;
2491 unsigned char *pn;
2492 pn = (unsigned char *)&((struct sockaddr_in *)&t->cli_addr)->sin_addr;
Willy Tarreau45e73e32006-12-17 00:05:15 +01002493
Ross Westaf72a1d2008-08-03 10:51:45 +02002494 /* Note: we rely on the backend to get the header name to be used for
2495 * x-forwarded-for, because the header is really meant for the backends.
2496 * However, if the backend did not specify any option, we have to rely
2497 * on the frontend's header name.
2498 */
2499 if (t->be->fwdfor_hdr_len) {
2500 len = t->be->fwdfor_hdr_len;
2501 memcpy(trash, t->be->fwdfor_hdr_name, len);
2502 } else {
2503 len = t->fe->fwdfor_hdr_len;
2504 memcpy(trash, t->fe->fwdfor_hdr_name, len);
2505 }
2506 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002507
Ross Westaf72a1d2008-08-03 10:51:45 +02002508 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002509 &txn->hdr_idx, trash, len)) < 0)
2510 goto return_bad_req;
2511 }
Willy Tarreau2a324282006-12-05 00:05:46 +01002512 }
2513 else if (t->cli_addr.ss_family == AF_INET6) {
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002514 /* FIXME: for the sake of completeness, we should also support
2515 * 'except' here, although it is mostly useless in this case.
2516 */
Willy Tarreau2a324282006-12-05 00:05:46 +01002517 int len;
2518 char pn[INET6_ADDRSTRLEN];
2519 inet_ntop(AF_INET6,
2520 (const void *)&((struct sockaddr_in6 *)(&t->cli_addr))->sin6_addr,
2521 pn, sizeof(pn));
Ross Westaf72a1d2008-08-03 10:51:45 +02002522
2523 /* Note: we rely on the backend to get the header name to be used for
2524 * x-forwarded-for, because the header is really meant for the backends.
2525 * However, if the backend did not specify any option, we have to rely
2526 * on the frontend's header name.
2527 */
2528 if (t->be->fwdfor_hdr_len) {
2529 len = t->be->fwdfor_hdr_len;
2530 memcpy(trash, t->be->fwdfor_hdr_name, len);
2531 } else {
2532 len = t->fe->fwdfor_hdr_len;
2533 memcpy(trash, t->fe->fwdfor_hdr_name, len);
2534 }
2535 len += sprintf(trash + len, ": %s", pn);
2536
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01002537 if (unlikely(http_header_add_tail2(req, &txn->req,
2538 &txn->hdr_idx, trash, len)) < 0)
Willy Tarreau06619262006-12-17 08:37:22 +01002539 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01002540 }
2541 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002542
Willy Tarreau2a324282006-12-05 00:05:46 +01002543 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002544 * 10: add "Connection: close" if needed and not yet set.
Willy Tarreau2807efd2007-03-25 23:47:23 +02002545 * Note that we do not need to add it in case of HTTP/1.0.
Willy Tarreaub2513902006-12-17 14:52:38 +01002546 */
Willy Tarreau2807efd2007-03-25 23:47:23 +02002547 if (!(t->flags & SN_CONN_CLOSED) &&
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002548 ((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
Willy Tarreau2807efd2007-03-25 23:47:23 +02002549 if ((unlikely(msg->sl.rq.v_l != 8) ||
2550 unlikely(req->data[msg->som + msg->sl.rq.v + 7] != '0')) &&
2551 unlikely(http_header_add_tail2(req, &txn->req, &txn->hdr_idx,
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01002552 "Connection: close", 17)) < 0)
Willy Tarreau06619262006-12-17 08:37:22 +01002553 goto return_bad_req;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002554 t->flags |= SN_CONN_CLOSED;
Willy Tarreaue15d9132006-12-14 22:26:42 +01002555 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002556 /* Before we switch to data, was assignment set in manage_client_side_cookie?
2557 * If not assigned, perhaps we are balancing on url_param, but this is a
2558 * POST; and the parameters are in the body, maybe scan there to find our server.
2559 * (unless headers overflowed the buffer?)
2560 */
2561 if (!(t->flags & (SN_ASSIGNED|SN_DIRECT)) &&
2562 t->txn.meth == HTTP_METH_POST && t->be->url_param_name != NULL &&
Willy Tarreaue393fe22008-08-16 22:18:07 +02002563 t->be->url_param_post_limit != 0 && !(req->flags & BF_FULL) &&
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002564 memchr(msg->sol + msg->sl.rq.u, '?', msg->sl.rq.u_l) == NULL) {
2565 /* are there enough bytes here? total == l || r || rlim ?
2566 * len is unsigned, but eoh is int,
2567 * how many bytes of body have we received?
2568 * eoh is the first empty line of the header
2569 */
2570 /* already established CRLF or LF at eoh, move to start of message, find message length in buffer */
Willy Tarreaufb0528b2008-08-11 00:21:56 +02002571 unsigned long len = req->l - (msg->sol[msg->eoh] == '\r' ? msg->eoh + 2 : msg->eoh + 1);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002572
2573 /* If we have HTTP/1.1 and Expect: 100-continue, then abort.
2574 * We can't assume responsibility for the server's decision,
2575 * on this URI and header set. See rfc2616: 14.20, 8.2.3,
2576 * We also can't change our mind later, about which server to choose, so round robin.
2577 */
2578 if ((likely(msg->sl.rq.v_l == 8) && req->data[msg->som + msg->sl.rq.v + 7] == '1')) {
2579 struct hdr_ctx ctx;
2580 ctx.idx = 0;
2581 /* Expect is allowed in 1.1, look for it */
2582 http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx);
2583 if (ctx.idx != 0 &&
Willy Tarreauadfb8562008-08-11 15:24:42 +02002584 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0))
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002585 /* We can't reliablly stall and wait for data, because of
2586 * .NET clients that don't conform to rfc2616; so, no need for
2587 * the next block to check length expectations.
2588 * We could send 100 status back to the client, but then we need to
2589 * re-write headers, and send the message. And this isn't the right
2590 * place for that action.
2591 * TODO: support Expect elsewhere and delete this block.
2592 */
2593 goto end_check_maybe_wait_for_body;
2594 }
Willy Tarreauadfb8562008-08-11 15:24:42 +02002595
2596 if (likely(len > t->be->url_param_post_limit)) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002597 /* nothing to do, we got enough */
2598 } else {
2599 /* limit implies we are supposed to need this many bytes
2600 * to find the parameter. Let's see how many bytes we can wait for.
2601 */
2602 long long hint = len;
2603 struct hdr_ctx ctx;
2604 ctx.idx = 0;
2605 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx);
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002606 if (ctx.idx && ctx.vlen >= 7 && strncasecmp(ctx.line+ctx.val, "chunked", 7) == 0) {
Willy Tarreau3da77c52008-08-29 09:58:42 +02002607 buffer_write_dis(req);
Willy Tarreau2df28e82008-08-17 15:20:19 +02002608 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002609 }
Willy Tarreauadfb8562008-08-11 15:24:42 +02002610 else {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002611 ctx.idx = 0;
2612 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx);
2613 /* now if we have a length, we'll take the hint */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002614 if (ctx.idx) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002615 /* We have Content-Length */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002616 if (strl2llrc(ctx.line+ctx.val,ctx.vlen, &hint))
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002617 hint = 0; /* parse failure, untrusted client */
2618 else {
Willy Tarreauadfb8562008-08-11 15:24:42 +02002619 if (hint > 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002620 msg->hdr_content_len = hint;
2621 else
2622 hint = 0; /* bad client, sent negative length */
2623 }
2624 }
2625 /* but limited to what we care about, maybe we don't expect any entity data (hint == 0) */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002626 if (t->be->url_param_post_limit < hint)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002627 hint = t->be->url_param_post_limit;
2628 /* now do we really need to buffer more data? */
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002629 if (len < hint) {
Willy Tarreau3da77c52008-08-29 09:58:42 +02002630 buffer_write_dis(req);
Willy Tarreau2df28e82008-08-17 15:20:19 +02002631 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002632 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002633 /* else... There are no body bytes to wait for */
2634 }
2635 }
2636 }
2637 end_check_maybe_wait_for_body:
Willy Tarreaubaaee002006-06-26 02:48:02 +02002638
Willy Tarreau2a324282006-12-05 00:05:46 +01002639 /*************************************************************
2640 * OK, that's finished for the headers. We have done what we *
2641 * could. Let's switch to the DATA state. *
2642 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02002643
Willy Tarreaue393fe22008-08-16 22:18:07 +02002644 buffer_set_rlim(req, BUFSIZE); /* no more rewrite needed */
Willy Tarreau70089872008-06-13 21:12:51 +02002645 t->logs.tv_request = now;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002646
Willy Tarreau1fa31262007-12-03 00:36:16 +01002647 /* When a connection is tarpitted, we use the tarpit timeout,
2648 * which may be the same as the connect timeout if unspecified.
2649 * If unset, then set it to zero because we really want it to
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002650 * eventually expire. We build the tarpit as an analyser.
Willy Tarreau2a324282006-12-05 00:05:46 +01002651 */
Willy Tarreau3d300592007-03-18 18:34:41 +01002652 if (txn->flags & TX_CLTARPIT) {
Willy Tarreaue393fe22008-08-16 22:18:07 +02002653 buffer_flush(t->req);
Willy Tarreau2a324282006-12-05 00:05:46 +01002654 /* flush the request so that we can drop the connection early
2655 * if the client closes first.
2656 */
Willy Tarreau3da77c52008-08-29 09:58:42 +02002657 buffer_write_dis(req);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002658 req->analysers |= AN_REQ_HTTP_TARPIT;
2659 req->analyse_exp = tick_add_ifset(now_ms, t->be->timeout.tarpit);
2660 if (!req->analyse_exp)
2661 req->analyse_exp = now_ms;
Willy Tarreau2a324282006-12-05 00:05:46 +01002662 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002663
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002664 /* OK let's go on with the BODY now */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002665 goto end_of_headers;
Willy Tarreau06619262006-12-17 08:37:22 +01002666
2667 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002668 txn->req.msg_state = HTTP_MSG_ERROR;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002669 txn->status = 400;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002670 req->analysers = 0;
Willy Tarreau80587432006-12-24 17:47:20 +01002671 client_retnclose(t, error_message(t, HTTP_ERR_400));
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01002672 t->fe->failed_req++;
Willy Tarreau06619262006-12-17 08:37:22 +01002673 return_prx_cond:
2674 if (!(t->flags & SN_ERR_MASK))
2675 t->flags |= SN_ERR_PRXCOND;
2676 if (!(t->flags & SN_FINST_MASK))
2677 t->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002678 return 0;
Willy Tarreauadfb8562008-08-11 15:24:42 +02002679 end_of_headers:
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002680 ; // to keep gcc happy
Willy Tarreauadfb8562008-08-11 15:24:42 +02002681 }
2682
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002683 if (req->analysers & AN_REQ_HTTP_TARPIT) {
2684 struct http_txn *txn = &t->txn;
2685
2686 /* This connection is being tarpitted. The CLIENT side has
2687 * already set the connect expiration date to the right
2688 * timeout. We just have to check that the client is still
2689 * there and that the timeout has not expired.
2690 */
Willy Tarreaue5ed4062008-08-30 03:17:31 +02002691 if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 &&
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002692 !tick_is_expired(req->analyse_exp, now_ms))
2693 return 0;
2694
2695 /* We will set the queue timer to the time spent, just for
2696 * logging purposes. We fake a 500 server error, so that the
2697 * attacker will not suspect his connection has been tarpitted.
2698 * It will not cause trouble to the logs because we can exclude
2699 * the tarpitted connections by filtering on the 'PT' status flags.
2700 */
2701 trace_term(t, TT_HTTP_SRV_2);
2702 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
2703
2704 txn->status = 500;
2705 if (req->flags != BF_READ_ERROR)
2706 client_retnclose(t, error_message(t, HTTP_ERR_500));
2707
2708 req->analysers = 0;
2709 req->analyse_exp = TICK_ETERNITY;
2710
2711 t->fe->failed_req++;
2712 if (!(t->flags & SN_ERR_MASK))
2713 t->flags |= SN_ERR_PRXCOND;
2714 if (!(t->flags & SN_FINST_MASK))
2715 t->flags |= SN_FINST_T;
2716 return 0;
2717 }
2718
Willy Tarreau2df28e82008-08-17 15:20:19 +02002719 if (req->analysers & AN_REQ_HTTP_BODY) {
Willy Tarreauadfb8562008-08-11 15:24:42 +02002720 /* We have to parse the HTTP request body to find any required data.
2721 * "balance url_param check_post" should have been the only way to get
2722 * into this. We were brought here after HTTP header analysis, so all
2723 * related structures are ready.
2724 */
2725 struct http_msg *msg = &t->txn.req;
2726 unsigned long body = msg->sol[msg->eoh] == '\r' ? msg->eoh + 2 : msg->eoh + 1;
2727 long long limit = t->be->url_param_post_limit;
2728 struct hdr_ctx ctx;
2729
2730 ctx.idx = 0;
2731
2732 /* now if we have a length, we'll take the hint */
2733 http_find_header2("Transfer-Encoding", 17, msg->sol, &t->txn.hdr_idx, &ctx);
2734 if (ctx.idx && ctx.vlen >= 7 && strncasecmp(ctx.line+ctx.val, "chunked", 7) == 0) {
2735 unsigned int chunk = 0;
2736 while (body < req->l && !HTTP_IS_CRLF(msg->sol[body])) {
2737 char c = msg->sol[body];
2738 if (ishex(c)) {
2739 unsigned int hex = toupper(c) - '0';
2740 if (hex > 9)
2741 hex -= 'A' - '9' - 1;
2742 chunk = (chunk << 4) | hex;
2743 } else
2744 break;
2745 body++;
2746 }
2747 if (body + 2 >= req->l) /* we want CRLF too */
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002748 goto http_body_end; /* end of buffer? data missing! */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002749
2750 if (memcmp(msg->sol+body, "\r\n", 2) != 0)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002751 goto http_body_end; /* chunked encoding len ends with CRLF, and we don't have it yet */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002752
2753 body += 2; // skip CRLF
2754
2755 /* if we support more then one chunk here, we have to do it again when assigning server
2756 * 1. how much entity data do we have? new var
2757 * 2. should save entity_start, entity_cursor, elen & rlen in req; so we don't repeat scanning here
2758 * 3. test if elen > limit, or set new limit to elen if 0 (end of entity found)
2759 */
2760
2761 if (chunk < limit)
2762 limit = chunk; /* only reading one chunk */
2763 } else {
2764 if (msg->hdr_content_len < limit)
2765 limit = msg->hdr_content_len;
2766 }
2767
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002768 http_body_end:
2769 /* we leave once we know we have nothing left to do. This means that we have
2770 * enough bytes, or that we know we'll not get any more (buffer full, read
2771 * buffer closed).
2772 */
2773 if (req->l - body >= limit || /* enough bytes! */
Willy Tarreaue5ed4062008-08-30 03:17:31 +02002774 req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR | BF_READ_TIMEOUT) ||
Willy Tarreauc52164a2008-08-17 19:17:57 +02002775 tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002776 /* The situation will not evolve, so let's give up on the analysis. */
Willy Tarreauadfb8562008-08-11 15:24:42 +02002777 t->logs.tv_request = now; /* update the request timer to reflect full request */
Willy Tarreau2df28e82008-08-17 15:20:19 +02002778 req->analysers &= ~AN_REQ_HTTP_BODY;
Willy Tarreauffab5b42008-08-17 18:03:28 +02002779 req->analyse_exp = TICK_ETERNITY;
Willy Tarreauadfb8562008-08-11 15:24:42 +02002780 }
Willy Tarreauc52164a2008-08-17 19:17:57 +02002781 else {
2782 /* Not enough data. We'll re-use the http-request
2783 * timeout here. Ideally, we should set the timeout
2784 * relative to the accept() date. We just set the
2785 * request timeout once at the beginning of the
2786 * request.
2787 */
Willy Tarreau3da77c52008-08-29 09:58:42 +02002788 buffer_write_dis(req);
Willy Tarreauc52164a2008-08-17 19:17:57 +02002789 if (!tick_isset(req->analyse_exp))
2790 req->analyse_exp = tick_add_ifset(now_ms, t->fe->timeout.httpreq);
2791 return 0;
2792 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002793 }
Willy Tarreauadfb8562008-08-11 15:24:42 +02002794
Willy Tarreau2df28e82008-08-17 15:20:19 +02002795 /* Note: eventhough nobody should set an unknown flag, clearing them right now will
2796 * probably reduce one day's debugging session.
2797 */
2798#ifdef DEBUG_DEV
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002799 if (req->analysers & ~(AN_REQ_INSPECT | AN_REQ_HTTP_HDR | AN_REQ_HTTP_TARPIT | AN_REQ_HTTP_BODY)) {
Willy Tarreau2df28e82008-08-17 15:20:19 +02002800 fprintf(stderr, "FIXME !!!! unknown analysers flags %s:%d = 0x%08X\n",
2801 __FILE__, __LINE__, req->analysers);
2802 ABORT_NOW();
2803 }
2804#endif
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002805 req->analysers &= AN_REQ_INSPECT | AN_REQ_HTTP_HDR | AN_REQ_HTTP_TARPIT | AN_REQ_HTTP_BODY;
Willy Tarreaudafde432008-08-17 01:00:46 +02002806 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002807}
Willy Tarreauadfb8562008-08-11 15:24:42 +02002808
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002809/* This function performs all the processing enabled for the current response.
Willy Tarreaudafde432008-08-17 01:00:46 +02002810 * It normally returns zero, but may return 1 if it absolutely needs to be
2811 * called again after other functions. It relies on buffers flags, and updates
Willy Tarreau2df28e82008-08-17 15:20:19 +02002812 * t->rep->analysers. It might make sense to explode it into several other
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002813 * functions. It works like process_request (see indications above).
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002814 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002815int process_response(struct session *t)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002816{
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002817 struct http_txn *txn = &t->txn;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002818 struct buffer *req = t->req;
2819 struct buffer *rep = t->rep;
Willy Tarreauadfb8562008-08-11 15:24:42 +02002820
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02002821 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002822 now_ms, __FUNCTION__,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02002823 t,
2824 rep,
2825 rep->rex, rep->wex,
2826 rep->flags,
2827 rep->l,
2828 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02002829
Willy Tarreau2df28e82008-08-17 15:20:19 +02002830 if (rep->analysers & AN_RTR_HTTP_HDR) { /* receiving server headers */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002831 /*
2832 * Now parse the partial (or complete) lines.
2833 * We will check the response syntax, and also join multi-line
2834 * headers. An index of all the lines will be elaborated while
2835 * parsing.
2836 *
2837 * For the parsing, we use a 28 states FSM.
2838 *
2839 * Here is the information we currently have :
Willy Tarreaue393fe22008-08-16 22:18:07 +02002840 * rep->data + rep->som = beginning of response
2841 * rep->data + rep->eoh = end of processed headers / start of current one
2842 * rep->data + rep->eol = end of current header or line (LF or CRLF)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002843 * rep->lr = first non-visited byte
2844 * rep->r = end of data
2845 */
Willy Tarreau7f875f62008-08-11 17:35:01 +02002846
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002847 int cur_idx;
2848 struct http_msg *msg = &txn->rsp;
2849 struct proxy *cur_proxy;
2850
2851 if (likely(rep->lr < rep->r))
2852 http_msg_analyzer(rep, msg, &txn->hdr_idx);
2853
2854 /* 1: we might have to print this header in debug mode */
2855 if (unlikely((global.mode & MODE_DEBUG) &&
2856 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
2857 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
2858 char *eol, *sol;
2859
2860 sol = rep->data + msg->som;
2861 eol = sol + msg->sl.rq.l;
2862 debug_hdr("srvrep", t, sol, eol);
2863
2864 sol += hdr_idx_first_pos(&txn->hdr_idx);
2865 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
2866
2867 while (cur_idx) {
2868 eol = sol + txn->hdr_idx.v[cur_idx].len;
2869 debug_hdr("srvhdr", t, sol, eol);
2870 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2871 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002872 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002873 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002874
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002875 /*
2876 * Now we quickly check if we have found a full valid response.
2877 * If not so, we check the FD and buffer states before leaving.
2878 * A full response is indicated by the fact that we have seen
2879 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
2880 * responses are checked first.
2881 *
2882 * Depending on whether the client is still there or not, we
2883 * may send an error response back or not. Note that normally
2884 * we should only check for HTTP status there, and check I/O
2885 * errors somewhere else.
2886 */
2887
2888 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002889 /* Invalid response */
2890 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
2891 hdr_response_bad:
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002892 //buffer_shutr(rep);
2893 //buffer_shutw(req);
2894 //fd_delete(req->cons->fd);
2895 //req->cons->state = SI_ST_CLO;
2896 buffer_shutr_now(rep);
2897 buffer_shutw_now(req);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002898 if (t->srv) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002899 //t->srv->cur_sess--;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002900 t->srv->failed_resp++;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002901 //sess_change_server(t, NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002902 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002903 t->be->failed_resp++;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002904 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002905 txn->status = 502;
2906 client_return(t, error_message(t, HTTP_ERR_502));
2907 if (!(t->flags & SN_ERR_MASK))
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002908 t->flags |= SN_ERR_PRXCOND;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002909 if (!(t->flags & SN_FINST_MASK))
2910 t->flags |= SN_FINST_H;
Willy Tarreau461f6622008-08-15 23:43:19 +02002911
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002912 //if (t->srv && may_dequeue_tasks(t->srv, t->be))
2913 // process_srv_queue(t->srv);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002914
Willy Tarreaudafde432008-08-17 01:00:46 +02002915 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002916 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002917 /* too large response does not fit in buffer. */
2918 else if (rep->flags & BF_FULL) {
2919 goto hdr_response_bad;
2920 }
2921 /* read error */
2922 else if (rep->flags & BF_READ_ERROR) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002923 buffer_shutr_now(rep);
2924 buffer_shutw_now(req);
2925 //fd_delete(req->cons->fd);
2926 //req->cons->state = SI_ST_CLO;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002927 //if (t->srv) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002928 //t->srv->cur_sess--;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002929 //t->srv->failed_resp++;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002930 //sess_change_server(t, NULL);
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002931 //}
2932 //t->be->failed_resp++;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002933 rep->analysers = 0;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002934 txn->status = 502;
2935 client_return(t, error_message(t, HTTP_ERR_502));
2936 if (!(t->flags & SN_ERR_MASK))
2937 t->flags |= SN_ERR_SRVCL;
2938 if (!(t->flags & SN_FINST_MASK))
2939 t->flags |= SN_FINST_H;
Willy Tarreau461f6622008-08-15 23:43:19 +02002940
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002941 //if (t->srv && may_dequeue_tasks(t->srv, t->be))
2942 // process_srv_queue(t->srv);
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002943
Willy Tarreaudafde432008-08-17 01:00:46 +02002944 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002945 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002946 /* read timeout : return a 504 to the client. */
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002947 else if (rep->flags & BF_READ_TIMEOUT) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002948 buffer_shutr_now(rep);
2949 buffer_shutw_now(req);
2950 //fd_delete(req->cons->fd);
2951 //req->cons->state = SI_ST_CLO;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002952 if (t->srv) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002953 //t->srv->cur_sess--;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002954 t->srv->failed_resp++;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002955 //sess_change_server(t, NULL);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002956 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002957 t->be->failed_resp++;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002958 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002959 txn->status = 504;
2960 client_return(t, error_message(t, HTTP_ERR_504));
2961 if (!(t->flags & SN_ERR_MASK))
2962 t->flags |= SN_ERR_SRVTO;
2963 if (!(t->flags & SN_FINST_MASK))
2964 t->flags |= SN_FINST_H;
Willy Tarreau461f6622008-08-15 23:43:19 +02002965
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002966 //if (t->srv && may_dequeue_tasks(t->srv, t->be))
2967 // process_srv_queue(t->srv);
Willy Tarreaudafde432008-08-17 01:00:46 +02002968 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002969 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002970 /* write error to client, or close from server */
Willy Tarreaue5ed4062008-08-30 03:17:31 +02002971 else if (rep->flags & (BF_WRITE_ERROR|BF_SHUTR)) {
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002972 buffer_shutr_now(rep);
2973 buffer_shutw_now(req);
2974 //fd_delete(req->cons->fd);
2975 //req->cons->state = SI_ST_CLO;
2976 if (t->srv) {
2977 //t->srv->cur_sess--;
2978 t->srv->failed_resp++;
2979 //sess_change_server(t, NULL);
2980 }
2981 t->be->failed_resp++;
2982 rep->analysers = 0;
2983 txn->status = 502;
2984 client_return(t, error_message(t, HTTP_ERR_502));
2985 if (!(t->flags & SN_ERR_MASK))
2986 t->flags |= SN_ERR_SRVCL;
2987 if (!(t->flags & SN_FINST_MASK))
2988 t->flags |= SN_FINST_H;
2989
2990 //if (t->srv && may_dequeue_tasks(t->srv, t->be))
2991 // process_srv_queue(t->srv);
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002992
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002993 return 0;
2994 }
Willy Tarreau3da77c52008-08-29 09:58:42 +02002995 buffer_write_dis(rep);
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002996 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002997 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002998
Willy Tarreau21d2af32008-02-14 20:25:24 +01002999
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003000 /*****************************************************************
3001 * More interesting part now : we know that we have a complete *
3002 * response which at least looks like HTTP. We have an indicator *
3003 * of each header's length, so we can parse them quickly. *
3004 ****************************************************************/
Willy Tarreau21d2af32008-02-14 20:25:24 +01003005
Willy Tarreau2df28e82008-08-17 15:20:19 +02003006 rep->analysers &= ~AN_RTR_HTTP_HDR;
Willy Tarreaua7c52762008-08-16 18:40:18 +02003007
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003008 /* ensure we keep this pointer to the beginning of the message */
3009 msg->sol = rep->data + msg->som;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003010
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003011 /*
3012 * 1: get the status code and check for cacheability.
3013 */
Willy Tarreau21d2af32008-02-14 20:25:24 +01003014
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003015 t->logs.logwait &= ~LW_RESP;
3016 txn->status = strl2ui(rep->data + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreau21d2af32008-02-14 20:25:24 +01003017
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003018 switch (txn->status) {
3019 case 200:
3020 case 203:
3021 case 206:
3022 case 300:
3023 case 301:
3024 case 410:
3025 /* RFC2616 @13.4:
3026 * "A response received with a status code of
3027 * 200, 203, 206, 300, 301 or 410 MAY be stored
3028 * by a cache (...) unless a cache-control
3029 * directive prohibits caching."
3030 *
3031 * RFC2616 @9.5: POST method :
3032 * "Responses to this method are not cacheable,
3033 * unless the response includes appropriate
3034 * Cache-Control or Expires header fields."
3035 */
3036 if (likely(txn->meth != HTTP_METH_POST) &&
3037 (t->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
3038 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
3039 break;
3040 default:
3041 break;
3042 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01003043
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003044 /*
3045 * 2: we may need to capture headers
3046 */
3047 if (unlikely((t->logs.logwait & LW_RSPHDR) && t->fe->rsp_cap))
3048 capture_headers(rep->data + msg->som, &txn->hdr_idx,
3049 txn->rsp.cap, t->fe->rsp_cap);
3050
3051 /*
3052 * 3: we will have to evaluate the filters.
3053 * As opposed to version 1.2, now they will be evaluated in the
3054 * filters order and not in the header order. This means that
3055 * each filter has to be validated among all headers.
3056 *
3057 * Filters are tried with ->be first, then with ->fe if it is
3058 * different from ->be.
3059 */
3060
3061 t->flags &= ~SN_CONN_CLOSED; /* prepare for inspection */
3062
3063 cur_proxy = t->be;
3064 while (1) {
3065 struct proxy *rule_set = cur_proxy;
3066
3067 /* try headers filters */
3068 if (rule_set->rsp_exp != NULL) {
3069 if (apply_filters_to_response(t, rep, rule_set->rsp_exp) < 0) {
3070 return_bad_resp:
3071 if (t->srv) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003072 //t->srv->cur_sess--;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003073 t->srv->failed_resp++;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003074 //sess_change_server(t, NULL);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003075 }
3076 cur_proxy->failed_resp++;
3077 return_srv_prx_502:
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003078 buffer_shutr_now(rep);
3079 buffer_shutw_now(req);
3080 //fd_delete(req->cons->fd);
3081 //req->cons->state = SI_ST_CLO;
Willy Tarreau2df28e82008-08-17 15:20:19 +02003082 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003083 txn->status = 502;
3084 client_return(t, error_message(t, HTTP_ERR_502));
3085 if (!(t->flags & SN_ERR_MASK))
3086 t->flags |= SN_ERR_PRXCOND;
3087 if (!(t->flags & SN_FINST_MASK))
3088 t->flags |= SN_FINST_H;
3089 /* We used to have a free connection slot. Since we'll never use it,
3090 * we have to inform the server that it may be used by another session.
3091 */
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003092 //if (t->srv && may_dequeue_tasks(t->srv, cur_proxy))
3093 // process_srv_queue(t->srv);
Willy Tarreaudafde432008-08-17 01:00:46 +02003094 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003095 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003096 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01003097
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003098 /* has the response been denied ? */
3099 if (txn->flags & TX_SVDENY) {
Willy Tarreauf899b942008-03-28 18:09:38 +01003100 if (t->srv) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003101 //t->srv->cur_sess--;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003102 t->srv->failed_secu++;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003103 //sess_change_server(t, NULL);
Willy Tarreauf899b942008-03-28 18:09:38 +01003104 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003105 cur_proxy->denied_resp++;
3106 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01003107 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003108
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003109 /* We might have to check for "Connection:" */
3110 if (((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
3111 !(t->flags & SN_CONN_CLOSED)) {
3112 char *cur_ptr, *cur_end, *cur_next;
3113 int cur_idx, old_idx, delta, val;
3114 struct hdr_idx_elem *cur_hdr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003115
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003116 cur_next = rep->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
3117 old_idx = 0;
Willy Tarreau541b5c22008-01-06 23:34:21 +01003118
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003119 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
3120 cur_hdr = &txn->hdr_idx.v[cur_idx];
3121 cur_ptr = cur_next;
3122 cur_end = cur_ptr + cur_hdr->len;
3123 cur_next = cur_end + cur_hdr->cr + 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003124
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003125 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
3126 if (val) {
3127 /* 3 possibilities :
3128 * - we have already set Connection: close,
3129 * so we remove this line.
3130 * - we have not yet set Connection: close,
3131 * but this line indicates close. We leave
3132 * it untouched and set the flag.
3133 * - we have not yet set Connection: close,
3134 * and this line indicates non-close. We
3135 * replace it.
3136 */
3137 if (t->flags & SN_CONN_CLOSED) {
3138 delta = buffer_replace2(rep, cur_ptr, cur_next, NULL, 0);
3139 txn->rsp.eoh += delta;
3140 cur_next += delta;
3141 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3142 txn->hdr_idx.used--;
3143 cur_hdr->len = 0;
3144 } else {
3145 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
3146 delta = buffer_replace2(rep, cur_ptr + val, cur_end,
3147 "close", 5);
3148 cur_next += delta;
3149 cur_hdr->len += delta;
3150 txn->rsp.eoh += delta;
3151 }
3152 t->flags |= SN_CONN_CLOSED;
3153 }
3154 }
3155 old_idx = cur_idx;
Willy Tarreau541b5c22008-01-06 23:34:21 +01003156 }
3157 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003158
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003159 /* add response headers from the rule sets in the same order */
3160 for (cur_idx = 0; cur_idx < rule_set->nb_rspadd; cur_idx++) {
3161 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx,
3162 rule_set->rsp_add[cur_idx])) < 0)
3163 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02003164 }
3165
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003166 /* check whether we're already working on the frontend */
3167 if (cur_proxy == t->fe)
3168 break;
3169 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003170 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003171
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003172 /*
3173 * 4: check for server cookie.
3174 */
3175 if (t->be->cookie_name || t->be->appsession_name || t->be->capture_name
3176 || (t->be->options & PR_O_CHK_CACHE))
3177 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003178
Willy Tarreaubaaee002006-06-26 02:48:02 +02003179
Willy Tarreaua15645d2007-03-18 16:22:39 +01003180 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003181 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003182 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003183 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
3184 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003185
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003186 /*
3187 * 6: add server cookie in the response if needed
3188 */
3189 if ((t->srv) && !(t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_INS) &&
3190 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST))) {
3191 int len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003192
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003193 /* the server is known, it's not the one the client requested, we have to
3194 * insert a set-cookie here, except if we want to insert only on POST
3195 * requests and this one isn't. Note that servers which don't have cookies
3196 * (eg: some backup servers) will return a full cookie removal request.
3197 */
3198 len = sprintf(trash, "Set-Cookie: %s=%s; path=/",
3199 t->be->cookie_name,
3200 t->srv->cookie ? t->srv->cookie : "; Expires=Thu, 01-Jan-1970 00:00:01 GMT");
Willy Tarreaubaaee002006-06-26 02:48:02 +02003201
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003202 if (t->be->cookie_domain)
3203 len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003204
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003205 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3206 trash, len)) < 0)
3207 goto return_bad_resp;
3208 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003209
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003210 /* Here, we will tell an eventual cache on the client side that we don't
3211 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
3212 * Some caches understand the correct form: 'no-cache="set-cookie"', but
3213 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
3214 */
3215 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003216
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003217 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3218
3219 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3220 "Cache-control: private", 22)) < 0)
3221 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003222 }
3223 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003224
Willy Tarreaubaaee002006-06-26 02:48:02 +02003225
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003226 /*
3227 * 7: check if result will be cacheable with a cookie.
3228 * We'll block the response if security checks have caught
3229 * nasty things such as a cacheable cookie.
3230 */
3231 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) ==
3232 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) &&
3233 (t->be->options & PR_O_CHK_CACHE)) {
3234
3235 /* we're in presence of a cacheable response containing
3236 * a set-cookie header. We'll block it as requested by
3237 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003238 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003239 if (t->srv) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003240 //t->srv->cur_sess--;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003241 t->srv->failed_secu++;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003242 //sess_change_server(t, NULL);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003243 }
3244 t->be->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003245
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003246 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
3247 t->be->id, t->srv?t->srv->id:"<dispatch>");
3248 send_log(t->be, LOG_ALERT,
3249 "Blocking cacheable cookie in response from instance %s, server %s.\n",
3250 t->be->id, t->srv?t->srv->id:"<dispatch>");
3251 goto return_srv_prx_502;
3252 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003253
3254 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003255 * 8: add "Connection: close" if needed and not yet set.
3256 * Note that we do not need to add it in case of HTTP/1.0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003257 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003258 if (!(t->flags & SN_CONN_CLOSED) &&
3259 ((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
3260 if ((unlikely(msg->sl.st.v_l != 8) ||
3261 unlikely(req->data[msg->som + 7] != '0')) &&
3262 unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3263 "Connection: close", 17)) < 0)
3264 goto return_bad_resp;
3265 t->flags |= SN_CONN_CLOSED;
3266 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003267
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003268 /*************************************************************
3269 * OK, that's finished for the headers. We have done what we *
3270 * could. Let's switch to the DATA state. *
3271 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02003272
Willy Tarreaue393fe22008-08-16 22:18:07 +02003273 buffer_set_rlim(rep, BUFSIZE); /* no more rewrite needed */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003274 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003275
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003276#ifdef CONFIG_HAP_TCPSPLICE
3277 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
3278 /* TCP splicing supported by both FE and BE */
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02003279 tcp_splice_splicefd(rep->cons->fd, rep->prod->fd, 0);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003280 }
3281#endif
3282 /* if the user wants to log as soon as possible, without counting
3283 * bytes from the server, then this is the right moment. We have
3284 * to temporarily assign bytes_out to log what we currently have.
3285 */
3286 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
3287 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
3288 t->logs.bytes_out = txn->rsp.eoh;
3289 if (t->fe->to_log & LW_REQ)
3290 http_sess_log(t);
3291 else
3292 tcp_sess_log(t);
3293 t->logs.bytes_out = 0;
3294 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003295
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003296 /* Note: we must not try to cheat by jumping directly to DATA,
3297 * otherwise we would not let the client side wake up.
3298 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003299
Willy Tarreaudafde432008-08-17 01:00:46 +02003300 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003301 }
Willy Tarreaudafde432008-08-17 01:00:46 +02003302
Willy Tarreau2df28e82008-08-17 15:20:19 +02003303 /* Note: eventhough nobody should set an unknown flag, clearing them right now will
3304 * probably reduce one day's debugging session.
3305 */
3306#ifdef DEBUG_DEV
3307 if (rep->analysers & ~(AN_RTR_HTTP_HDR)) {
3308 fprintf(stderr, "FIXME !!!! unknown analysers flags %s:%d = 0x%08X\n",
3309 __FILE__, __LINE__, rep->analysers);
3310 ABORT_NOW();
3311 }
3312#endif
3313 rep->analysers &= AN_RTR_HTTP_HDR;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003314 return 0;
3315}
Willy Tarreaua15645d2007-03-18 16:22:39 +01003316
Willy Tarreauf9839bd2008-08-27 23:57:16 +02003317///*
3318// * Manages the client FSM and its socket. It normally returns zero, but may
3319// * return 1 if it absolutely wants to be called again.
3320// *
3321// * Note: process_cli is the ONLY function allowed to set cli_state to anything
3322// * but CL_STCLOSE.
3323// */
3324//int process_cli(struct session *t)
3325//{
3326// struct buffer *req = t->req;
3327// struct buffer *rep = t->rep;
3328//
3329// DPRINTF(stderr,"[%u] %s: fd=%d[%d] c=%s set(r,w)=%d,%d exp(r,w)=%u,%u req=%08x rep=%08x rql=%d rpl=%d\n",
3330// now_ms, __FUNCTION__,
3331// t->cli_fd, t->cli_fd >= 0 ? fdtab[t->cli_fd].state : 0, /* fd,state*/
3332// cli_stnames[t->cli_state],
3333// t->cli_fd >= 0 && fdtab[t->cli_fd].state != FD_STCLOSE ? EV_FD_ISSET(t->cli_fd, DIR_RD) : 0,
3334// t->cli_fd >= 0 && fdtab[t->cli_fd].state != FD_STCLOSE ? EV_FD_ISSET(t->cli_fd, DIR_WR) : 0,
3335// req->rex, rep->wex,
3336// req->flags, rep->flags,
3337// req->l, rep->l);
3338//
3339// update_state:
3340// /* FIXME: we still have to check for CL_STSHUTR because client_retnclose
3341// * still set this state (and will do until unix sockets are converted).
3342// */
3343// if (t->cli_state == CL_STDATA || t->cli_state == CL_STSHUTR) {
3344// /* we can skip most of the tests at once if some conditions are not met */
3345// if (!((fdtab[t->cli_fd].state == FD_STERROR) ||
3346// (req->flags & (BF_READ_TIMEOUT|BF_READ_ERROR|BF_SHUTR_NOW)) ||
3347// (rep->flags & (BF_WRITE_TIMEOUT|BF_WRITE_ERROR|BF_SHUTW_NOW)) ||
3348// (!(req->flags & BF_SHUTR) && req->flags & (BF_READ_NULL|BF_SHUTW)) ||
3349// (!(rep->flags & BF_SHUTW) &&
3350// (rep->flags & (BF_EMPTY|BF_MAY_FORWARD|BF_SHUTR)) == (BF_EMPTY|BF_MAY_FORWARD|BF_SHUTR))))
3351// goto update_timeouts;
3352//
3353// /* read or write error */
3354// if (fdtab[t->cli_fd].state == FD_STERROR) {
3355// buffer_shutr(req);
3356// req->flags |= BF_READ_ERROR;
3357// buffer_shutw(rep);
3358// rep->flags |= BF_WRITE_ERROR;
3359// fd_delete(t->cli_fd);
3360// t->cli_state = CL_STCLOSE;
3361// trace_term(t, TT_HTTP_CLI_1);
3362// if (!req->analysers) {
3363// if (!(t->flags & SN_ERR_MASK))
3364// t->flags |= SN_ERR_CLICL;
3365// if (!(t->flags & SN_FINST_MASK)) {
3366// if (req->cons->err_type <= SI_ET_QUEUE_ABRT)
3367// t->flags |= SN_FINST_Q;
3368// else if (req->cons->err_type <= SI_ET_CONN_OTHER)
3369// t->flags |= SN_FINST_C;
3370// else
3371// t->flags |= SN_FINST_D;
3372// }
3373// }
3374// goto update_state;
3375// }
3376// /* last read, or end of server write */
3377// else if (!(req->flags & BF_SHUTR) && /* not already done */
3378// req->flags & (BF_READ_NULL|BF_SHUTR_NOW|BF_SHUTW)) {
3379// buffer_shutr(req);
3380// if (!(rep->flags & BF_SHUTW)) {
3381// EV_FD_CLR(t->cli_fd, DIR_RD);
3382// trace_term(t, TT_HTTP_CLI_2);
3383// } else {
3384// /* output was already closed */
3385// fd_delete(t->cli_fd);
3386// t->cli_state = CL_STCLOSE;
3387// trace_term(t, TT_HTTP_CLI_3);
3388// }
3389// goto update_state;
3390// }
3391// /* last server read and buffer empty : we only check them when we're
3392// * allowed to forward the data.
3393// */
3394// else if (!(rep->flags & BF_SHUTW) && /* not already done */
3395// ((rep->flags & BF_SHUTW_NOW) ||
3396// (rep->flags & BF_EMPTY && rep->flags & BF_MAY_FORWARD &&
3397// rep->flags & BF_SHUTR && !(t->flags & SN_SELF_GEN)))) {
3398// buffer_shutw(rep);
3399// if (!(req->flags & BF_SHUTR)) {
3400// EV_FD_CLR(t->cli_fd, DIR_WR);
3401// shutdown(t->cli_fd, SHUT_WR);
3402// trace_term(t, TT_HTTP_CLI_4);
3403// } else {
3404// fd_delete(t->cli_fd);
3405// t->cli_state = CL_STCLOSE;
3406// trace_term(t, TT_HTTP_CLI_5);
3407// }
3408// goto update_state;
3409// }
3410// /* read timeout */
3411// else if ((req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT) {
3412// buffer_shutr(req);
3413// if (!(rep->flags & BF_SHUTW)) {
3414// EV_FD_CLR(t->cli_fd, DIR_RD);
3415// trace_term(t, TT_HTTP_CLI_6);
3416// } else {
3417// /* output was already closed */
3418// fd_delete(t->cli_fd);
3419// t->cli_state = CL_STCLOSE;
3420// trace_term(t, TT_HTTP_CLI_7);
3421// }
3422// if (!req->analysers) {
3423// if (!(t->flags & SN_ERR_MASK))
3424// t->flags |= SN_ERR_CLITO;
3425// if (!(t->flags & SN_FINST_MASK)) {
3426// if (req->cons->err_type <= SI_ET_QUEUE_ABRT)
3427// t->flags |= SN_FINST_Q;
3428// else if (req->cons->err_type <= SI_ET_CONN_OTHER)
3429// t->flags |= SN_FINST_C;
3430// else
3431// t->flags |= SN_FINST_D;
3432// }
3433// }
3434// goto update_state;
3435// }
3436// /* write timeout */
3437// else if ((rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT) {
3438// buffer_shutw(rep);
3439// if (!(req->flags & BF_SHUTR)) {
3440// EV_FD_CLR(t->cli_fd, DIR_WR);
3441// shutdown(t->cli_fd, SHUT_WR);
3442// trace_term(t, TT_HTTP_CLI_8);
3443// } else {
3444// fd_delete(t->cli_fd);
3445// t->cli_state = CL_STCLOSE;
3446// trace_term(t, TT_HTTP_CLI_9);
3447// }
3448// if (!req->analysers) {
3449// if (!(t->flags & SN_ERR_MASK))
3450// t->flags |= SN_ERR_CLITO;
3451// if (!(t->flags & SN_FINST_MASK)) {
3452// if (req->cons->err_type <= SI_ET_QUEUE_ABRT)
3453// t->flags |= SN_FINST_Q;
3454// else if (req->cons->err_type <= SI_ET_CONN_OTHER)
3455// t->flags |= SN_FINST_C;
3456// else
3457// t->flags |= SN_FINST_D;
3458// }
3459// }
3460// goto update_state;
3461// }
3462//
3463// update_timeouts:
3464// /* manage read timeout */
3465// if (!(req->flags & BF_SHUTR)) {
3466// if (req->flags & BF_FULL) {
3467// /* no room to read more data */
3468// if (EV_FD_COND_C(t->cli_fd, DIR_RD)) {
3469// /* stop reading until we get some space */
3470// req->rex = TICK_ETERNITY;
3471// }
3472// } else {
3473// EV_FD_COND_S(t->cli_fd, DIR_RD);
3474// req->rex = tick_add_ifset(now_ms, t->fe->timeout.client);
3475// }
3476// }
3477//
3478// /* manage write timeout */
3479// if (!(rep->flags & BF_SHUTW)) {
3480// /* first, we may have to produce data (eg: stats).
3481// * right now, this is limited to the SHUTR state.
3482// */
3483// if (req->flags & BF_SHUTR && t->flags & SN_SELF_GEN) {
3484// produce_content(t);
3485// if (rep->flags & BF_EMPTY) {
3486// buffer_shutw(rep);
3487// fd_delete(t->cli_fd);
3488// t->cli_state = CL_STCLOSE;
3489// trace_term(t, TT_HTTP_CLI_10);
3490// goto update_state;
3491// }
3492// }
3493//
3494// /* we don't enable client write if the buffer is empty, nor if the server has to analyze it */
3495// if ((rep->flags & (BF_EMPTY|BF_MAY_FORWARD)) != BF_MAY_FORWARD) {
3496// if (EV_FD_COND_C(t->cli_fd, DIR_WR)) {
3497// /* stop writing */
3498// rep->wex = TICK_ETERNITY;
3499// }
3500// } else {
3501// /* buffer not empty */
3502// EV_FD_COND_S(t->cli_fd, DIR_WR);
3503// if (!tick_isset(rep->wex)) {
3504// /* restart writing */
3505// rep->wex = tick_add_ifset(now_ms, t->fe->timeout.client);
3506// if (!(req->flags & BF_SHUTR) && tick_isset(rep->wex) && tick_isset(req->rex)) {
3507// /* FIXME: to prevent the client from expiring read timeouts during writes,
3508// * we refresh it, except if it was already infinite. */
3509// req->rex = rep->wex;
3510// }
3511// }
3512// }
3513// }
3514// return 0; /* other cases change nothing */
3515// }
3516// else if (t->cli_state == CL_STCLOSE) { /* CL_STCLOSE: nothing to do */
3517// if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
3518// int len;
3519// len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n", t->uniq_id, t->be->id, (unsigned short)t->cli_fd, (unsigned short)req->cons->fd);
3520// write(1, trash, len);
3521// }
3522// return 0;
3523// }
3524//#ifdef DEBUG_DEV
3525// fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, t->cli_state);
3526// ABORT_NOW();
3527//#endif
3528// return 0;
3529//}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003530
Willy Tarreaubaaee002006-06-26 02:48:02 +02003531
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003532/* Return 1 if the pending connection has failed and should be retried,
3533 * otherwise zero. We may only come here in SI_ST_CON state, which means that
3534 * the socket's file descriptor is known.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003535 */
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003536int tcp_connection_status(struct session *t)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003537{
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003538 struct buffer *req = t->req;
3539 struct buffer *rep = t->rep;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003540 int conn_err = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003541
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003542 DPRINTF(stderr,"[%u] %s: c=%s exp(r,w)=%u,%u req=%08x rep=%08x rql=%d rpl=%d\n",
3543 now_ms, __FUNCTION__,
3544 cli_stnames[t->cli_state],
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003545 rep->rex, req->wex,
Willy Tarreaucebf57e2008-08-15 18:16:37 +02003546 req->flags, rep->flags,
3547 req->l, rep->l);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003548
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003549 if ((req->flags & BF_SHUTW_NOW) ||
3550 (rep->flags & BF_SHUTW) ||
3551 ((req->flags & BF_SHUTR) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreau3da77c52008-08-29 09:58:42 +02003552 ((req->flags & BF_EMPTY && !(req->flags & BF_WRITE_ACTIVITY)) ||
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003553 t->be->options & PR_O_ABRT_CLOSE))) { /* give up */
3554
3555 trace_term(t, TT_HTTP_SRV_5);
3556 req->wex = TICK_ETERNITY;
3557 fd_delete(req->cons->fd);
3558 if (t->srv) {
3559 t->srv->cur_sess--;
3560 sess_change_server(t, NULL);
3561 }
3562 /* note that this must not return any error because it would be able to
3563 * overwrite the client_retnclose() output.
3564 */
3565 //srv_close_with_err(t, SN_ERR_CLICL, SN_FINST_C, 0, NULL);
3566
3567 // FIXME: should we set rep->MAY_FORWARD ?
3568 buffer_shutw(req);
3569 buffer_shutr(rep);
3570 req->cons->state = SI_ST_CLO;
3571 if (!req->cons->err_type)
3572 req->cons->err_type = SI_ET_CONN_ABRT;
3573 req->cons->err_loc = t->srv;
3574 return 0;
3575 }
3576
3577 /* check for timeouts and asynchronous connect errors */
3578 if (fdtab[req->cons->fd].state == FD_STERROR) {
3579 conn_err = SI_ET_CONN_ERR;
3580 if (!req->cons->err_type)
3581 req->cons->err_type = SI_ET_CONN_ERR;
3582 }
Willy Tarreau3da77c52008-08-29 09:58:42 +02003583 else if (!(req->flags & BF_WRITE_ACTIVITY)) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003584 /* nothing happened, maybe we timed out */
3585 if (tick_is_expired(req->wex, now_ms)) {
3586 conn_err = SI_ET_CONN_TO;
3587 if (!req->cons->err_type)
3588 req->cons->err_type = SI_ET_CONN_TO;
3589 }
3590 else
3591 return 0; /* let's wait a bit more */
3592 }
3593
3594 if (conn_err) {
3595 fd_delete(req->cons->fd);
3596 req->cons->state = SI_ST_CLO;
3597
3598 if (t->srv) {
3599 t->srv->cur_sess--;
3600 sess_change_server(t, NULL);
3601 req->cons->err_loc = t->srv;
3602 }
3603
3604 /* ensure that we have enough retries left */
3605 if (srv_count_retry_down(t, conn_err))
3606 return 0;
3607
3608 if (conn_err == SI_ET_CONN_ERR) {
3609 /* we encountered an immediate connection error, and we
3610 * will have to retry connecting to the same server, most
3611 * likely leading to the same result. To avoid this, we
3612 * fake a connection timeout to retry after a turn-around
3613 * time of 1 second. We will wait in the previous if block.
3614 */
3615 req->cons->state = SI_ST_TAR;
3616 req->wex = tick_add(now_ms, MS_TO_TICKS(1000));
3617 return 0;
3618 }
3619
3620 if (t->srv && t->conn_retries == 0 && t->be->options & PR_O_REDISP) {
3621 /* We're on our last chance, and the REDISP option was specified.
3622 * We will ignore cookie and force to balance or use the dispatcher.
3623 */
3624 /* let's try to offer this slot to anybody */
3625 if (may_dequeue_tasks(t->srv, t->be))
3626 process_srv_queue(t->srv);
3627
3628 /* it's left to the dispatcher to choose a server */
3629 t->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
3630 t->prev_srv = t->srv;
3631 } else {
3632 /* we just want to retry */
3633 if (t->srv)
3634 t->srv->retries++;
3635 t->be->retries++;
3636
3637 /* Now we will try to either reconnect to the same server or
3638 * connect to another server. If the connection gets queued
3639 * because all servers are saturated, then we will go back to
3640 * the idle state where the buffer's consumer is marked as
3641 * unknown.
3642 */
3643 if (srv_retryable_connect(t)) {
3644 /* success or unrecoverable error */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003645 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003646 return 0;
3647 }
3648 }
3649
3650 /* We'll rely on the caller to try to get a connection again */
3651 return 1;
3652 }
3653 else {
3654 /* no error and write OK : connection succeeded */
3655 t->logs.t_connect = tv_ms_elapsed(&t->logs.tv_accept, &now);
3656 req->cons->state = SI_ST_EST;
3657 req->cons->err_type = SI_ET_NONE;
3658 req->cons->err_loc = NULL;
3659
3660 if (req->flags & BF_EMPTY) {
3661 EV_FD_CLR(req->cons->fd, DIR_WR);
3662 req->wex = TICK_ETERNITY;
3663 } else {
3664 EV_FD_SET(req->cons->fd, DIR_WR);
3665 req->wex = tick_add_ifset(now_ms, t->be->timeout.server);
3666 if (tick_isset(req->wex)) {
3667 /* FIXME: to prevent the server from expiring read timeouts during writes,
3668 * we refresh it. */
3669 rep->rex = req->wex;
3670 }
3671 }
3672
3673 if (t->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
3674 if (!(rep->flags & BF_HIJACK)) {
3675 EV_FD_SET(req->cons->fd, DIR_RD);
3676 rep->rex = tick_add_ifset(now_ms, t->be->timeout.server);
3677 }
3678 buffer_set_rlim(rep, BUFSIZE); /* no rewrite needed */
3679
3680 /* if the user wants to log as soon as possible, without counting
3681 bytes from the server, then this is the right moment. */
3682 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
3683 t->logs.t_close = t->logs.t_connect; /* to get a valid end date */
3684 tcp_sess_log(t);
3685 }
3686#ifdef CONFIG_HAP_TCPSPLICE
3687 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
3688 /* TCP splicing supported by both FE and BE */
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02003689 tcp_splice_splicefd(req->prod->fd, req->cons->fd, 0);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003690 }
3691#endif
3692 }
3693 else {
3694 rep->analysers |= AN_RTR_HTTP_HDR;
3695 buffer_set_rlim(rep, BUFSIZE - MAXREWRITE); /* rewrite needed */
3696 t->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
3697 /* reset hdr_idx which was already initialized by the request.
3698 * right now, the http parser does it.
3699 * hdr_idx_init(&t->txn.hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003700 */
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003701 }
3702
3703 if (!rep->analysers)
Willy Tarreau3da77c52008-08-29 09:58:42 +02003704 buffer_write_ena(t->rep);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003705 req->wex = TICK_ETERNITY;
3706 return 0;
3707 }
3708}
3709
3710
3711/*
3712 * This function tries to assign a server to a stream_sock interface.
3713 * It may be called only for t->req->cons->state = one of { SI_ST_INI,
3714 * SI_ST_TAR, SI_ST_QUE }. It returns one of those states, SI_ST_ASS
3715 * in case of success, or SI_ST_CLO in case of failure. It returns 1 if
3716 * it returns SI_ST_ASS, otherwise zero.
3717 */
3718int stream_sock_assign_server(struct session *t)
3719{
3720 DPRINTF(stderr,"[%u] %s: c=%s exp(r,w)=%u,%u req=%08x rep=%08x rql=%d rpl=%d\n",
3721 now_ms, __FUNCTION__,
3722 cli_stnames[t->cli_state],
3723 t->rep->rex, t->req->wex,
3724 t->req->flags, t->rep->flags,
3725 t->req->l, t->rep->l);
3726
3727 if (t->req->cons->state == SI_ST_TAR) {
3728 /* connection might be aborted */
3729 if ((t->req->flags & BF_SHUTW_NOW) ||
3730 (t->rep->flags & BF_SHUTW) ||
3731 ((t->req->flags & BF_SHUTR) && /* FIXME: this should not prevent a connection from establishing */
3732 (t->req->flags & BF_EMPTY || t->be->options & PR_O_ABRT_CLOSE))) { /* give up */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003733
Willy Tarreauf8533202008-08-16 14:55:08 +02003734 trace_term(t, TT_HTTP_SRV_1);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003735 t->req->wex = TICK_ETERNITY;
3736
3737 // FIXME: should we set rep->MAY_FORWARD ?
3738 buffer_shutr(t->rep);
3739 buffer_shutw(t->req);
3740 if (!t->req->cons->err_type)
3741 t->req->cons->err_type = SI_ET_CONN_ABRT;
3742 t->req->cons->state = SI_ST_CLO;
3743 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003744 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003745
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003746 if (!tick_is_expired(t->req->wex, now_ms))
3747 return 0; /* still in turn-around */
3748
3749 t->req->cons->state = SI_ST_INI;
3750 }
3751 else if (t->req->cons->state == SI_ST_QUE) {
3752 if (t->pend_pos) {
3753 /* request still in queue... */
3754 if (tick_is_expired(t->req->wex, now_ms)) {
3755 /* ... and timeout expired */
3756 trace_term(t, TT_HTTP_SRV_3);
3757 t->req->wex = TICK_ETERNITY;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003758 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003759 if (t->srv)
3760 t->srv->failed_conns++;
3761 t->be->failed_conns++;
3762
3763 // FIXME: should we set rep->MAY_FORWARD ?
3764 buffer_shutr(t->rep);
3765 buffer_shutw(t->req);
3766 t->req->flags |= BF_WRITE_TIMEOUT;
3767 if (!t->req->cons->err_type)
3768 t->req->cons->err_type = SI_ET_QUEUE_TO;
3769 t->req->cons->state = SI_ST_CLO;
3770 return 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003771 }
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003772 /* connection remains in queue, check if we have to abort it */
3773 if ((t->req->flags & BF_SHUTW_NOW) ||
3774 (t->rep->flags & BF_SHUTW) ||
3775 ((t->req->flags & BF_SHUTR) && /* FIXME: this should not prevent a connection from establishing */
3776 (t->req->flags & BF_EMPTY || t->be->options & PR_O_ABRT_CLOSE))) {
3777 /* give up */
3778 trace_term(t, TT_HTTP_SRV_1);
3779 t->req->wex = TICK_ETERNITY;
3780 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003781
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003782 // FIXME: should we set rep->MAY_FORWARD ?
3783 buffer_shutr(t->rep);
3784 buffer_shutw(t->req);
3785 if (!t->req->cons->err_type)
3786 t->req->cons->err_type = SI_ET_QUEUE_ABRT;
3787 t->req->cons->state = SI_ST_CLO;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003788 }
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003789 return 0;
3790 }
3791 /* The connection is not in the queue anymore */
3792 t->req->cons->state = SI_ST_INI;
3793 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003794
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003795 /* we may get here from above */
3796 if (t->req->cons->state == SI_ST_INI) {
3797 /* no connection in progress, we have to get a new one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003798
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003799 /* first, check if the connection has been aborted */
3800 if ((t->req->flags & BF_SHUTW_NOW) ||
3801 (t->rep->flags & BF_SHUTW) ||
3802 ((t->req->flags & BF_SHUTR) &&
3803 (t->req->flags & BF_EMPTY || t->be->options & PR_O_ABRT_CLOSE))) { /* give up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003804
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003805 trace_term(t, TT_HTTP_SRV_1);
3806 t->req->wex = TICK_ETERNITY;
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003807
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003808 // FIXME: should we set rep->MAY_FORWARD ?
3809 buffer_shutr(t->rep);
3810 buffer_shutw(t->req);
3811 if (!t->req->cons->err_type)
3812 t->req->cons->err_type = SI_ET_CONN_ABRT;
3813 t->req->cons->state = SI_ST_CLO;
3814 return 0;
3815 }
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003816
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003817 /* try to get a server assigned */
3818 if (srv_redispatch_connect(t) != 0) {
3819 /* we did not get any server, let's check the cause */
3820 if (t->req->cons->state == SI_ST_QUE) {
3821 /* the connection was queued, that's OK */
3822 return 0;
3823 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003824
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003825 trace_term(t, TT_HTTP_SRV_2);
3826 t->req->wex = TICK_ETERNITY;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003827
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003828 // FIXME: should we set rep->MAY_FORWARD ?
3829 buffer_shutr(t->rep);
3830 buffer_shutw(t->req);
3831 t->req->flags |= BF_WRITE_ERROR;
3832 if (!t->req->cons->err_type)
3833 t->req->cons->err_type = SI_ET_CONN_OTHER;
3834 t->req->cons->state = SI_ST_CLO;
3835 return 0;
3836 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003837
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003838 t->req->cons->state = SI_ST_ASS;
3839 /* Once the server is assigned, we have to return because
3840 * the caller might be interested in checking several
3841 * things before connecting.
3842 */
3843 return 1;
3844 }
3845 return 0;
3846}
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +02003847
Willy Tarreauf8533202008-08-16 14:55:08 +02003848
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003849/*
3850 * This function tries to establish a connection to an assigned server. It also
3851 * performs connection retries. It may only be called with t->req->cons->state
3852 * in { SI_ST_ASS, SI_ST_CON }. It may also set the state to SI_ST_INI,
3853 * SI_ST_EST, or SI_ST_CLO.
3854 */
3855int stream_sock_connect_server(struct session *t)
3856{
3857 if (t->req->cons->state == SI_ST_ASS) {
3858 /* server assigned to request, we have to try to connect now */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003859
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003860 if (!srv_retryable_connect(t)) {
3861 /* we need to redispatch */
3862 t->req->cons->state = SI_ST_INI;
3863 return 0;
3864 }
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003865
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003866 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
3867 if (t->req->cons->state != SI_ST_CON) {
3868 /* it was an error */
3869 trace_term(t, TT_HTTP_SRV_4);
3870 t->req->wex = TICK_ETERNITY;
3871
3872 // FIXME: should we set rep->MAY_FORWARD ?
3873 buffer_shutr(t->rep);
3874 buffer_shutw(t->req);
3875 t->req->flags |= BF_WRITE_ERROR;
3876 if (!t->req->cons->err_type)
3877 t->req->cons->err_type = SI_ET_CONN_OTHER;
3878 t->req->cons->state = SI_ST_CLO;
3879 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003880 }
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003881 /* We have a socket and switched to SI_ST_CON */
3882 }
3883
3884 /* we may also get here from above */
3885 if (t->req->cons->state == SI_ST_CON) {
3886 /* connection in progress or just completed */
3887 if (!tcp_connection_status(t))
3888 return 0;
3889 }
3890 return 0;
3891}
3892
3893
3894/*
3895 * Tries to establish a connection to the server and associate it to the
3896 * request buffer's consumer side. It is assumed that this function will not be
Willy Tarreau3da77c52008-08-29 09:58:42 +02003897 * be called with SI_ST_EST nor with BF_WRITE_ENA cleared. It normally
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003898 * returns zero, but may return 1 if it absolutely wants to be called again.
3899 */
3900int process_srv_conn(struct session *t)
3901{
3902 DPRINTF(stderr,"[%u] %s: c=%s exp(r,w)=%u,%u req=%08x rep=%08x rql=%d rpl=%d\n",
3903 now_ms, __FUNCTION__,
3904 cli_stnames[t->cli_state],
3905 t->rep->rex, t->req->wex,
3906 t->req->flags, t->rep->flags,
3907 t->req->l, t->rep->l);
3908
3909 do {
3910 if (t->req->cons->state == SI_ST_INI ||
3911 t->req->cons->state == SI_ST_TAR ||
3912 t->req->cons->state == SI_ST_QUE) {
3913 /* try to assign a server */
3914 if (!stream_sock_assign_server(t))
3915 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003916 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003917
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003918 if (t->req->cons->state == SI_ST_ASS &&
3919 t->srv && t->srv->rdr_len && t->flags & SN_REDIRECTABLE) {
3920 /* Server supporting redirection and it is possible.
3921 * Invalid requests are reported as such. It concerns all
3922 * the largest ones.
3923 */
3924 struct http_txn *txn = &t->txn;
3925 struct chunk rdr;
3926 char *path;
3927 int len;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003928
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003929 /* 1: create the response header */
3930 rdr.len = strlen(HTTP_302);
3931 rdr.str = trash;
3932 memcpy(rdr.str, HTTP_302, rdr.len);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003933
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003934 /* 2: add the server's prefix */
3935 if (rdr.len + t->srv->rdr_len > sizeof(trash))
3936 goto cancel_redir;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003937
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003938 memcpy(rdr.str + rdr.len, t->srv->rdr_pfx, t->srv->rdr_len);
3939 rdr.len += t->srv->rdr_len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003940
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003941 /* 3: add the request URI */
3942 path = http_get_path(txn);
3943 if (!path)
3944 goto cancel_redir;
3945 len = txn->req.sl.rq.u_l + (txn->req.sol+txn->req.sl.rq.u) - path;
3946 if (rdr.len + len > sizeof(trash) - 4) /* 4 for CRLF-CRLF */
3947 goto cancel_redir;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003948
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003949 memcpy(rdr.str + rdr.len, path, len);
3950 rdr.len += len;
3951 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
3952 rdr.len += 4;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003953
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003954 srv_close_with_err(t, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr);
3955 trace_term(t, TT_HTTP_SRV_3);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003956
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003957 /* FIXME: we should increase a counter of redirects per server and per backend. */
3958 if (t->srv)
3959 t->srv->cum_sess++;
3960
3961 t->req->cons->state = SI_ST_CLO;
3962 return 0;
3963 cancel_redir:
3964 //txn->status = 400;
3965 //t->fe->failed_req++;
3966 //srv_close_with_err(t, SN_ERR_PRXCOND, SN_FINST_C,
3967 // 400, error_message(t, HTTP_ERR_400));
3968 trace_term(t, TT_HTTP_SRV_4);
3969
3970 // FIXME: should we set rep->MAY_FORWARD ?
3971 buffer_shutw(t->req);
3972 buffer_shutr(t->rep);
3973 if (!t->req->cons->err_type)
3974 t->req->cons->err_type = SI_ET_CONN_OTHER;
3975 t->req->cons->state = SI_ST_CLO;
3976 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02003977 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003978
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003979 if (t->req->cons->state == SI_ST_CON ||
3980 t->req->cons->state == SI_ST_ASS) {
3981 stream_sock_connect_server(t);
3982 }
3983 } while (t->req->cons->state != SI_ST_CLO &&
3984 t->req->cons->state != SI_ST_CON &&
3985 t->req->cons->state != SI_ST_EST);
3986 return 0;
3987}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003988
Willy Tarreaufa7e1022008-10-19 07:30:41 +02003989
Willy Tarreaubaaee002006-06-26 02:48:02 +02003990/*
3991 * Produces data for the session <s> depending on its source. Expects to be
Willy Tarreau1ae3a052008-08-16 10:56:30 +02003992 * called with client socket shut down on input. Right now, only statistics can
Willy Tarreau72b179a2008-08-28 16:01:32 +02003993 * be produced. It stops by itself by unsetting the BF_HIJACK flag from the
3994 * buffer, which it uses to keep on being called when there is free space in
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003995 * the buffer, or simply by letting an empty buffer upon return. It returns 1
Willy Tarreau1ae3a052008-08-16 10:56:30 +02003996 * when it wants to stop sending data, otherwise 0.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003997 */
3998int produce_content(struct session *s)
3999{
Willy Tarreaubaaee002006-06-26 02:48:02 +02004000 if (s->data_source == DATA_SRC_NONE) {
Willy Tarreau72b179a2008-08-28 16:01:32 +02004001 buffer_stop_hijack(s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02004002 return 1;
4003 }
4004 else if (s->data_source == DATA_SRC_STATS) {
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01004005 /* dump server statistics */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004006 int ret = stats_dump_http(s, s->be->uri_auth);
Willy Tarreau91861262007-10-17 17:06:05 +02004007 if (ret >= 0)
4008 return ret;
4009 /* -1 indicates an error */
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01004010 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004011
Willy Tarreau91861262007-10-17 17:06:05 +02004012 /* unknown data source or internal error */
4013 s->txn.status = 500;
4014 client_retnclose(s, error_message(s, HTTP_ERR_500));
Willy Tarreauf8533202008-08-16 14:55:08 +02004015 trace_term(s, TT_HTTP_CNT_1);
Willy Tarreau91861262007-10-17 17:06:05 +02004016 if (!(s->flags & SN_ERR_MASK))
4017 s->flags |= SN_ERR_PRXCOND;
4018 if (!(s->flags & SN_FINST_MASK))
4019 s->flags |= SN_FINST_R;
Willy Tarreau72b179a2008-08-28 16:01:32 +02004020 buffer_stop_hijack(s->rep);
Willy Tarreau91861262007-10-17 17:06:05 +02004021 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004022}
4023
4024
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004025/* Iterate the same filter through all request headers.
4026 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004027 * Since it can manage the switch to another backend, it updates the per-proxy
4028 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01004029 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004030int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004031{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004032 char term;
4033 char *cur_ptr, *cur_end, *cur_next;
4034 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004035 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004036 struct hdr_idx_elem *cur_hdr;
4037 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01004038
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004039 last_hdr = 0;
4040
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004041 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004042 old_idx = 0;
4043
4044 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004045 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004046 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004047 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004048 (exp->action == ACT_ALLOW ||
4049 exp->action == ACT_DENY ||
4050 exp->action == ACT_TARPIT))
4051 return 0;
4052
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004053 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004054 if (!cur_idx)
4055 break;
4056
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004057 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004058 cur_ptr = cur_next;
4059 cur_end = cur_ptr + cur_hdr->len;
4060 cur_next = cur_end + cur_hdr->cr + 1;
4061
4062 /* Now we have one header between cur_ptr and cur_end,
4063 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01004064 */
4065
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004066 /* The annoying part is that pattern matching needs
4067 * that we modify the contents to null-terminate all
4068 * strings before testing them.
4069 */
4070
4071 term = *cur_end;
4072 *cur_end = '\0';
4073
4074 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4075 switch (exp->action) {
4076 case ACT_SETBE:
4077 /* It is not possible to jump a second time.
4078 * FIXME: should we return an HTTP/500 here so that
4079 * the admin knows there's a problem ?
4080 */
4081 if (t->be != t->fe)
4082 break;
4083
4084 /* Swithing Proxy */
4085 t->be = (struct proxy *) exp->replace;
4086
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004087 /* right now, the backend switch is not overly complicated
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004088 * because we have associated req_cap and rsp_cap to the
4089 * frontend, and the beconn will be updated later.
4090 */
4091
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004092 t->rep->rto = t->req->wto = t->be->timeout.server;
4093 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02004094 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004095 last_hdr = 1;
4096 break;
4097
4098 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004099 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004100 last_hdr = 1;
4101 break;
4102
4103 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004104 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004105 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004106 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004107 break;
4108
4109 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01004110 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004111 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004112 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004113 break;
4114
4115 case ACT_REPLACE:
4116 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4117 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
4118 /* FIXME: if the user adds a newline in the replacement, the
4119 * index will not be recalculated for now, and the new line
4120 * will not be counted as a new header.
4121 */
4122
4123 cur_end += delta;
4124 cur_next += delta;
4125 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004126 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004127 break;
4128
4129 case ACT_REMOVE:
4130 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
4131 cur_next += delta;
4132
4133 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004134 txn->req.eoh += delta;
4135 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4136 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004137 cur_hdr->len = 0;
4138 cur_end = NULL; /* null-term has been rewritten */
4139 break;
4140
4141 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004142 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004143 if (cur_end)
4144 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01004145
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004146 /* keep the link from this header to next one in case of later
4147 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01004148 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004149 old_idx = cur_idx;
4150 }
4151 return 0;
4152}
4153
4154
4155/* Apply the filter to the request line.
4156 * Returns 0 if nothing has been done, 1 if the filter has been applied,
4157 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004158 * Since it can manage the switch to another backend, it updates the per-proxy
4159 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004160 */
4161int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
4162{
4163 char term;
4164 char *cur_ptr, *cur_end;
4165 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004166 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004167 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004168
Willy Tarreau58f10d72006-12-04 02:26:12 +01004169
Willy Tarreau3d300592007-03-18 18:34:41 +01004170 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004171 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004172 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004173 (exp->action == ACT_ALLOW ||
4174 exp->action == ACT_DENY ||
4175 exp->action == ACT_TARPIT))
4176 return 0;
4177 else if (exp->action == ACT_REMOVE)
4178 return 0;
4179
4180 done = 0;
4181
Willy Tarreau9cdde232007-05-02 20:58:19 +02004182 cur_ptr = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004183 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004184
4185 /* Now we have the request line between cur_ptr and cur_end */
4186
4187 /* The annoying part is that pattern matching needs
4188 * that we modify the contents to null-terminate all
4189 * strings before testing them.
4190 */
4191
4192 term = *cur_end;
4193 *cur_end = '\0';
4194
4195 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4196 switch (exp->action) {
4197 case ACT_SETBE:
4198 /* It is not possible to jump a second time.
4199 * FIXME: should we return an HTTP/500 here so that
4200 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01004201 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004202 if (t->be != t->fe)
4203 break;
4204
4205 /* Swithing Proxy */
4206 t->be = (struct proxy *) exp->replace;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004207
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004208 /* right now, the backend switch is not too much complicated
4209 * because we have associated req_cap and rsp_cap to the
4210 * frontend, and the beconn will be updated later.
Willy Tarreau58f10d72006-12-04 02:26:12 +01004211 */
4212
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004213 t->rep->rto = t->req->wto = t->be->timeout.server;
4214 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02004215 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004216 done = 1;
4217 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004218
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004219 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004220 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004221 done = 1;
4222 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01004223
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004224 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004225 txn->flags |= TX_CLDENY;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004226 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004227 done = 1;
4228 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01004229
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004230 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01004231 txn->flags |= TX_CLTARPIT;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004232 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004233 done = 1;
4234 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01004235
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004236 case ACT_REPLACE:
4237 *cur_end = term; /* restore the string terminator */
4238 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4239 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
4240 /* FIXME: if the user adds a newline in the replacement, the
4241 * index will not be recalculated for now, and the new line
4242 * will not be counted as a new header.
4243 */
Willy Tarreaua496b602006-12-17 23:15:24 +01004244
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004245 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004246 cur_end += delta;
Willy Tarreaua496b602006-12-17 23:15:24 +01004247
Willy Tarreau9cdde232007-05-02 20:58:19 +02004248 txn->req.sol = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004249 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004250 HTTP_MSG_RQMETH,
4251 cur_ptr, cur_end + 1,
4252 NULL, NULL);
4253 if (unlikely(!cur_end))
4254 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01004255
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004256 /* we have a full request and we know that we have either a CR
4257 * or an LF at <ptr>.
4258 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004259 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
4260 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004261 /* there is no point trying this regex on headers */
4262 return 1;
4263 }
4264 }
4265 *cur_end = term; /* restore the string terminator */
4266 return done;
4267}
Willy Tarreau97de6242006-12-27 17:18:38 +01004268
Willy Tarreau58f10d72006-12-04 02:26:12 +01004269
Willy Tarreau58f10d72006-12-04 02:26:12 +01004270
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004271/*
4272 * Apply all the req filters <exp> to all headers in buffer <req> of session <t>.
4273 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01004274 * unparsable request. Since it can manage the switch to another backend, it
4275 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004276 */
4277int apply_filters_to_request(struct session *t, struct buffer *req, struct hdr_exp *exp)
4278{
Willy Tarreau3d300592007-03-18 18:34:41 +01004279 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004280 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01004281 while (exp && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004282 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004283
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004284 /*
4285 * The interleaving of transformations and verdicts
4286 * makes it difficult to decide to continue or stop
4287 * the evaluation.
4288 */
4289
Willy Tarreau3d300592007-03-18 18:34:41 +01004290 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004291 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
4292 exp->action == ACT_TARPIT || exp->action == ACT_PASS)) {
4293 exp = exp->next;
4294 continue;
4295 }
4296
4297 /* Apply the filter to the request line. */
4298 ret = apply_filter_to_req_line(t, req, exp);
4299 if (unlikely(ret < 0))
4300 return -1;
4301
4302 if (likely(ret == 0)) {
4303 /* The filter did not match the request, it can be
4304 * iterated through all headers.
4305 */
4306 apply_filter_to_req_headers(t, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004307 }
4308 exp = exp->next;
4309 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004310 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004311}
4312
4313
Willy Tarreaua15645d2007-03-18 16:22:39 +01004314
Willy Tarreau58f10d72006-12-04 02:26:12 +01004315/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01004316 * Manage client-side cookie. It can impact performance by about 2% so it is
4317 * desirable to call it only when needed.
Willy Tarreau58f10d72006-12-04 02:26:12 +01004318 */
4319void manage_client_side_cookies(struct session *t, struct buffer *req)
4320{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004321 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004322 char *p1, *p2, *p3, *p4;
4323 char *del_colon, *del_cookie, *colon;
4324 int app_cookies;
4325
4326 appsess *asession_temp = NULL;
4327 appsess local_asession;
4328
4329 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004330 int cur_idx, old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004331
Willy Tarreau2a324282006-12-05 00:05:46 +01004332 /* Iterate through the headers.
Willy Tarreau58f10d72006-12-04 02:26:12 +01004333 * we start with the start line.
4334 */
Willy Tarreau83969f42007-01-22 08:55:47 +01004335 old_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004336 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004337
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004338 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004339 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004340 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004341
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004342 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau58f10d72006-12-04 02:26:12 +01004343 cur_ptr = cur_next;
4344 cur_end = cur_ptr + cur_hdr->len;
4345 cur_next = cur_end + cur_hdr->cr + 1;
4346
4347 /* We have one full header between cur_ptr and cur_end, and the
4348 * next header starts at cur_next. We're only interested in
4349 * "Cookie:" headers.
4350 */
4351
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004352 val = http_header_match2(cur_ptr, cur_end, "Cookie", 6);
4353 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004354 old_idx = cur_idx;
4355 continue;
4356 }
4357
4358 /* Now look for cookies. Conforming to RFC2109, we have to support
4359 * attributes whose name begin with a '$', and associate them with
4360 * the right cookie, if we want to delete this cookie.
4361 * So there are 3 cases for each cookie read :
4362 * 1) it's a special attribute, beginning with a '$' : ignore it.
4363 * 2) it's a server id cookie that we *MAY* want to delete : save
4364 * some pointers on it (last semi-colon, beginning of cookie...)
4365 * 3) it's an application cookie : we *MAY* have to delete a previous
4366 * "special" cookie.
4367 * At the end of loop, if a "special" cookie remains, we may have to
4368 * remove it. If no application cookie persists in the header, we
4369 * *MUST* delete it
4370 */
4371
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004372 colon = p1 = cur_ptr + val; /* first non-space char after 'Cookie:' */
Willy Tarreau58f10d72006-12-04 02:26:12 +01004373
Willy Tarreau58f10d72006-12-04 02:26:12 +01004374 /* del_cookie == NULL => nothing to be deleted */
4375 del_colon = del_cookie = NULL;
4376 app_cookies = 0;
4377
4378 while (p1 < cur_end) {
4379 /* skip spaces and colons, but keep an eye on these ones */
4380 while (p1 < cur_end) {
4381 if (*p1 == ';' || *p1 == ',')
4382 colon = p1;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004383 else if (!isspace((unsigned char)*p1))
Willy Tarreau58f10d72006-12-04 02:26:12 +01004384 break;
4385 p1++;
4386 }
4387
4388 if (p1 == cur_end)
4389 break;
4390
4391 /* p1 is at the beginning of the cookie name */
4392 p2 = p1;
4393 while (p2 < cur_end && *p2 != '=')
4394 p2++;
4395
4396 if (p2 == cur_end)
4397 break;
4398
4399 p3 = p2 + 1; /* skips the '=' sign */
4400 if (p3 == cur_end)
4401 break;
4402
4403 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004404 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';' && *p4 != ',')
Willy Tarreau58f10d72006-12-04 02:26:12 +01004405 p4++;
4406
4407 /* here, we have the cookie name between p1 and p2,
4408 * and its value between p3 and p4.
4409 * we can process it :
4410 *
4411 * Cookie: NAME=VALUE;
4412 * | || || |
4413 * | || || +--> p4
4414 * | || |+-------> p3
4415 * | || +--------> p2
4416 * | |+------------> p1
4417 * | +-------------> colon
4418 * +--------------------> cur_ptr
4419 */
4420
4421 if (*p1 == '$') {
4422 /* skip this one */
4423 }
4424 else {
4425 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004426 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004427 txn->cli_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004428 (p4 - p1 >= t->fe->capture_namelen) &&
4429 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004430 int log_len = p4 - p1;
4431
Willy Tarreau086b3b42007-05-13 21:45:51 +02004432 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004433 Alert("HTTP logging : out of memory.\n");
4434 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004435 if (log_len > t->fe->capture_len)
4436 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004437 memcpy(txn->cli_cookie, p1, log_len);
4438 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004439 }
4440 }
4441
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004442 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
4443 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004444 /* Cool... it's the right one */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004445 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004446 char *delim;
4447
4448 /* if we're in cookie prefix mode, we'll search the delimitor so that we
4449 * have the server ID betweek p3 and delim, and the original cookie between
4450 * delim+1 and p4. Otherwise, delim==p4 :
4451 *
4452 * Cookie: NAME=SRV~VALUE;
4453 * | || || | |
4454 * | || || | +--> p4
4455 * | || || +--------> delim
4456 * | || |+-----------> p3
4457 * | || +------------> p2
4458 * | |+----------------> p1
4459 * | +-----------------> colon
4460 * +------------------------> cur_ptr
4461 */
4462
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004463 if (t->be->options & PR_O_COOK_PFX) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004464 for (delim = p3; delim < p4; delim++)
4465 if (*delim == COOKIE_DELIM)
4466 break;
4467 }
4468 else
4469 delim = p4;
4470
4471
4472 /* Here, we'll look for the first running server which supports the cookie.
4473 * This allows to share a same cookie between several servers, for example
4474 * to dedicate backup servers to specific servers only.
4475 * However, to prevent clients from sticking to cookie-less backup server
4476 * when they have incidentely learned an empty cookie, we simply ignore
4477 * empty cookies and mark them as invalid.
4478 */
4479 if (delim == p3)
4480 srv = NULL;
4481
4482 while (srv) {
Willy Tarreau92f2ab12007-02-02 22:14:47 +01004483 if (srv->cookie && (srv->cklen == delim - p3) &&
4484 !memcmp(p3, srv->cookie, delim - p3)) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004485 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004486 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004487 txn->flags &= ~TX_CK_MASK;
4488 txn->flags |= TX_CK_VALID;
4489 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004490 t->srv = srv;
4491 break;
4492 } else {
4493 /* we found a server, but it's down */
Willy Tarreau3d300592007-03-18 18:34:41 +01004494 txn->flags &= ~TX_CK_MASK;
4495 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004496 }
4497 }
4498 srv = srv->next;
4499 }
4500
Willy Tarreau3d300592007-03-18 18:34:41 +01004501 if (!srv && !(txn->flags & TX_CK_DOWN)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004502 /* no server matched this cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +01004503 txn->flags &= ~TX_CK_MASK;
4504 txn->flags |= TX_CK_INVALID;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004505 }
4506
4507 /* depending on the cookie mode, we may have to either :
4508 * - delete the complete cookie if we're in insert+indirect mode, so that
4509 * the server never sees it ;
4510 * - remove the server id from the cookie value, and tag the cookie as an
4511 * application cookie so that it does not get accidentely removed later,
4512 * if we're in cookie prefix mode
4513 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004514 if ((t->be->options & PR_O_COOK_PFX) && (delim != p4)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004515 int delta; /* negative */
4516
4517 delta = buffer_replace2(req, p3, delim + 1, NULL, 0);
4518 p4 += delta;
4519 cur_end += delta;
4520 cur_next += delta;
4521 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004522 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004523
4524 del_cookie = del_colon = NULL;
4525 app_cookies++; /* protect the header from deletion */
4526 }
4527 else if (del_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004528 (t->be->options & (PR_O_COOK_INS | PR_O_COOK_IND)) == (PR_O_COOK_INS | PR_O_COOK_IND)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004529 del_cookie = p1;
4530 del_colon = colon;
4531 }
4532 } else {
4533 /* now we know that we must keep this cookie since it's
4534 * not ours. But if we wanted to delete our cookie
4535 * earlier, we cannot remove the complete header, but we
4536 * can remove the previous block itself.
4537 */
4538 app_cookies++;
4539
4540 if (del_cookie != NULL) {
4541 int delta; /* negative */
4542
4543 delta = buffer_replace2(req, del_cookie, p1, NULL, 0);
4544 p4 += delta;
4545 cur_end += delta;
4546 cur_next += delta;
4547 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004548 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004549 del_cookie = del_colon = NULL;
4550 }
4551 }
4552
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004553 if ((t->be->appsession_name != NULL) &&
4554 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004555 /* first, let's see if the cookie is our appcookie*/
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004556
Willy Tarreau58f10d72006-12-04 02:26:12 +01004557 /* Cool... it's the right one */
4558
4559 asession_temp = &local_asession;
4560
Willy Tarreau63963c62007-05-13 21:29:55 +02004561 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004562 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
4563 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
4564 return;
4565 }
4566
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004567 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
4568 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004569 asession_temp->serverid = NULL;
Willy Tarreau51041c72007-09-09 21:56:53 +02004570
Willy Tarreau58f10d72006-12-04 02:26:12 +01004571 /* only do insert, if lookup fails */
Willy Tarreau51041c72007-09-09 21:56:53 +02004572 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4573 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004574 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004575 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004576 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004577 Alert("Not enough memory process_cli():asession:calloc().\n");
4578 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
4579 return;
4580 }
4581
4582 asession_temp->sessid = local_asession.sessid;
4583 asession_temp->serverid = local_asession.serverid;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004584 asession_temp->request_count = 0;
Willy Tarreau51041c72007-09-09 21:56:53 +02004585 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004586 } else {
4587 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004588 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004589 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004590 if (asession_temp->serverid == NULL) {
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004591 /* TODO redispatch request */
Willy Tarreau58f10d72006-12-04 02:26:12 +01004592 Alert("Found Application Session without matching server.\n");
4593 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004594 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004595 while (srv) {
4596 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004597 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004598 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004599 txn->flags &= ~TX_CK_MASK;
4600 txn->flags |= TX_CK_VALID;
4601 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004602 t->srv = srv;
4603 break;
4604 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01004605 txn->flags &= ~TX_CK_MASK;
4606 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004607 }
4608 }
4609 srv = srv->next;
4610 }/* end while(srv) */
4611 }/* end else if server == NULL */
4612
Willy Tarreau0c303ee2008-07-07 00:09:58 +02004613 asession_temp->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004614 asession_temp->request_count++;
4615#if defined(DEBUG_HASH)
4616 Alert("manage_client_side_cookies\n");
4617 appsession_hash_dump(&(t->be->htbl_proxy));
4618#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01004619 }/* end if ((t->proxy->appsession_name != NULL) ... */
4620 }
4621
4622 /* we'll have to look for another cookie ... */
4623 p1 = p4;
4624 } /* while (p1 < cur_end) */
4625
4626 /* There's no more cookie on this line.
4627 * We may have marked the last one(s) for deletion.
4628 * We must do this now in two ways :
4629 * - if there is no app cookie, we simply delete the header ;
4630 * - if there are app cookies, we must delete the end of the
4631 * string properly, including the colon/semi-colon before
4632 * the cookie name.
4633 */
4634 if (del_cookie != NULL) {
4635 int delta;
4636 if (app_cookies) {
4637 delta = buffer_replace2(req, del_colon, cur_end, NULL, 0);
4638 cur_end = del_colon;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004639 cur_hdr->len += delta;
4640 } else {
4641 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004642
4643 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004644 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4645 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004646 cur_hdr->len = 0;
4647 }
Willy Tarreau45e73e32006-12-17 00:05:15 +01004648 cur_next += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004649 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004650 }
4651
4652 /* keep the link from this header to next one */
4653 old_idx = cur_idx;
4654 } /* end of cookie processing on this header */
4655}
4656
4657
Willy Tarreaua15645d2007-03-18 16:22:39 +01004658/* Iterate the same filter through all response headers contained in <rtr>.
4659 * Returns 1 if this filter can be stopped upon return, otherwise 0.
4660 */
4661int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4662{
4663 char term;
4664 char *cur_ptr, *cur_end, *cur_next;
4665 int cur_idx, old_idx, last_hdr;
4666 struct http_txn *txn = &t->txn;
4667 struct hdr_idx_elem *cur_hdr;
4668 int len, delta;
4669
4670 last_hdr = 0;
4671
4672 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4673 old_idx = 0;
4674
4675 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004676 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004677 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004678 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004679 (exp->action == ACT_ALLOW ||
4680 exp->action == ACT_DENY))
4681 return 0;
4682
4683 cur_idx = txn->hdr_idx.v[old_idx].next;
4684 if (!cur_idx)
4685 break;
4686
4687 cur_hdr = &txn->hdr_idx.v[cur_idx];
4688 cur_ptr = cur_next;
4689 cur_end = cur_ptr + cur_hdr->len;
4690 cur_next = cur_end + cur_hdr->cr + 1;
4691
4692 /* Now we have one header between cur_ptr and cur_end,
4693 * and the next header starts at cur_next.
4694 */
4695
4696 /* The annoying part is that pattern matching needs
4697 * that we modify the contents to null-terminate all
4698 * strings before testing them.
4699 */
4700
4701 term = *cur_end;
4702 *cur_end = '\0';
4703
4704 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4705 switch (exp->action) {
4706 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004707 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004708 last_hdr = 1;
4709 break;
4710
4711 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004712 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004713 last_hdr = 1;
4714 break;
4715
4716 case ACT_REPLACE:
4717 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4718 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
4719 /* FIXME: if the user adds a newline in the replacement, the
4720 * index will not be recalculated for now, and the new line
4721 * will not be counted as a new header.
4722 */
4723
4724 cur_end += delta;
4725 cur_next += delta;
4726 cur_hdr->len += delta;
4727 txn->rsp.eoh += delta;
4728 break;
4729
4730 case ACT_REMOVE:
4731 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
4732 cur_next += delta;
4733
4734 /* FIXME: this should be a separate function */
4735 txn->rsp.eoh += delta;
4736 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4737 txn->hdr_idx.used--;
4738 cur_hdr->len = 0;
4739 cur_end = NULL; /* null-term has been rewritten */
4740 break;
4741
4742 }
4743 }
4744 if (cur_end)
4745 *cur_end = term; /* restore the string terminator */
4746
4747 /* keep the link from this header to next one in case of later
4748 * removal of next header.
4749 */
4750 old_idx = cur_idx;
4751 }
4752 return 0;
4753}
4754
4755
4756/* Apply the filter to the status line in the response buffer <rtr>.
4757 * Returns 0 if nothing has been done, 1 if the filter has been applied,
4758 * or -1 if a replacement resulted in an invalid status line.
4759 */
4760int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4761{
4762 char term;
4763 char *cur_ptr, *cur_end;
4764 int done;
4765 struct http_txn *txn = &t->txn;
4766 int len, delta;
4767
4768
Willy Tarreau3d300592007-03-18 18:34:41 +01004769 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004770 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004771 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004772 (exp->action == ACT_ALLOW ||
4773 exp->action == ACT_DENY))
4774 return 0;
4775 else if (exp->action == ACT_REMOVE)
4776 return 0;
4777
4778 done = 0;
4779
Willy Tarreau9cdde232007-05-02 20:58:19 +02004780 cur_ptr = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004781 cur_end = cur_ptr + txn->rsp.sl.rq.l;
4782
4783 /* Now we have the status line between cur_ptr and cur_end */
4784
4785 /* The annoying part is that pattern matching needs
4786 * that we modify the contents to null-terminate all
4787 * strings before testing them.
4788 */
4789
4790 term = *cur_end;
4791 *cur_end = '\0';
4792
4793 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4794 switch (exp->action) {
4795 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004796 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004797 done = 1;
4798 break;
4799
4800 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004801 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004802 done = 1;
4803 break;
4804
4805 case ACT_REPLACE:
4806 *cur_end = term; /* restore the string terminator */
4807 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4808 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
4809 /* FIXME: if the user adds a newline in the replacement, the
4810 * index will not be recalculated for now, and the new line
4811 * will not be counted as a new header.
4812 */
4813
4814 txn->rsp.eoh += delta;
4815 cur_end += delta;
4816
Willy Tarreau9cdde232007-05-02 20:58:19 +02004817 txn->rsp.sol = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004818 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02004819 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01004820 cur_ptr, cur_end + 1,
4821 NULL, NULL);
4822 if (unlikely(!cur_end))
4823 return -1;
4824
4825 /* we have a full respnse and we know that we have either a CR
4826 * or an LF at <ptr>.
4827 */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004828 txn->status = strl2ui(rtr->data + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004829 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.rq.l, *cur_end == '\r');
4830 /* there is no point trying this regex on headers */
4831 return 1;
4832 }
4833 }
4834 *cur_end = term; /* restore the string terminator */
4835 return done;
4836}
4837
4838
4839
4840/*
4841 * Apply all the resp filters <exp> to all headers in buffer <rtr> of session <t>.
4842 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
4843 * unparsable response.
4844 */
4845int apply_filters_to_response(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4846{
Willy Tarreau3d300592007-03-18 18:34:41 +01004847 struct http_txn *txn = &t->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004848 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01004849 while (exp && !(txn->flags & TX_SVDENY)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004850 int ret;
4851
4852 /*
4853 * The interleaving of transformations and verdicts
4854 * makes it difficult to decide to continue or stop
4855 * the evaluation.
4856 */
4857
Willy Tarreau3d300592007-03-18 18:34:41 +01004858 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004859 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
4860 exp->action == ACT_PASS)) {
4861 exp = exp->next;
4862 continue;
4863 }
4864
4865 /* Apply the filter to the status line. */
4866 ret = apply_filter_to_sts_line(t, rtr, exp);
4867 if (unlikely(ret < 0))
4868 return -1;
4869
4870 if (likely(ret == 0)) {
4871 /* The filter did not match the response, it can be
4872 * iterated through all headers.
4873 */
4874 apply_filter_to_resp_headers(t, rtr, exp);
4875 }
4876 exp = exp->next;
4877 }
4878 return 0;
4879}
4880
4881
4882
4883/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01004884 * Manage server-side cookies. It can impact performance by about 2% so it is
4885 * desirable to call it only when needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004886 */
4887void manage_server_side_cookies(struct session *t, struct buffer *rtr)
4888{
4889 struct http_txn *txn = &t->txn;
4890 char *p1, *p2, *p3, *p4;
4891
4892 appsess *asession_temp = NULL;
4893 appsess local_asession;
4894
4895 char *cur_ptr, *cur_end, *cur_next;
4896 int cur_idx, old_idx, delta;
4897
Willy Tarreaua15645d2007-03-18 16:22:39 +01004898 /* Iterate through the headers.
4899 * we start with the start line.
4900 */
4901 old_idx = 0;
4902 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4903
4904 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
4905 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004906 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004907
4908 cur_hdr = &txn->hdr_idx.v[cur_idx];
4909 cur_ptr = cur_next;
4910 cur_end = cur_ptr + cur_hdr->len;
4911 cur_next = cur_end + cur_hdr->cr + 1;
4912
4913 /* We have one full header between cur_ptr and cur_end, and the
4914 * next header starts at cur_next. We're only interested in
4915 * "Cookie:" headers.
4916 */
4917
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004918 val = http_header_match2(cur_ptr, cur_end, "Set-Cookie", 10);
4919 if (!val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004920 old_idx = cur_idx;
4921 continue;
4922 }
4923
4924 /* OK, right now we know we have a set-cookie at cur_ptr */
Willy Tarreau3d300592007-03-18 18:34:41 +01004925 txn->flags |= TX_SCK_ANY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004926
4927
4928 /* maybe we only wanted to see if there was a set-cookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004929 if (t->be->cookie_name == NULL &&
4930 t->be->appsession_name == NULL &&
4931 t->be->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01004932 return;
4933
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004934 p1 = cur_ptr + val; /* first non-space char after 'Set-Cookie:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004935
4936 while (p1 < cur_end) { /* in fact, we'll break after the first cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004937 if (p1 == cur_end || *p1 == ';') /* end of cookie */
4938 break;
4939
4940 /* p1 is at the beginning of the cookie name */
4941 p2 = p1;
4942
4943 while (p2 < cur_end && *p2 != '=' && *p2 != ';')
4944 p2++;
4945
4946 if (p2 == cur_end || *p2 == ';') /* next cookie */
4947 break;
4948
4949 p3 = p2 + 1; /* skip the '=' sign */
4950 if (p3 == cur_end)
4951 break;
4952
4953 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004954 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';')
Willy Tarreaua15645d2007-03-18 16:22:39 +01004955 p4++;
4956
4957 /* here, we have the cookie name between p1 and p2,
4958 * and its value between p3 and p4.
4959 * we can process it.
4960 */
4961
4962 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004963 if (t->be->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004964 txn->srv_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004965 (p4 - p1 >= t->be->capture_namelen) &&
4966 memcmp(p1, t->be->capture_name, t->be->capture_namelen) == 0) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004967 int log_len = p4 - p1;
4968
Willy Tarreau086b3b42007-05-13 21:45:51 +02004969 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004970 Alert("HTTP logging : out of memory.\n");
4971 }
4972
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004973 if (log_len > t->be->capture_len)
4974 log_len = t->be->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004975 memcpy(txn->srv_cookie, p1, log_len);
4976 txn->srv_cookie[log_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004977 }
4978
4979 /* now check if we need to process it for persistence */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004980 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
4981 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004982 /* Cool... it's the right one */
Willy Tarreau3d300592007-03-18 18:34:41 +01004983 txn->flags |= TX_SCK_SEEN;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004984
4985 /* If the cookie is in insert mode on a known server, we'll delete
4986 * this occurrence because we'll insert another one later.
4987 * We'll delete it too if the "indirect" option is set and we're in
4988 * a direct access. */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004989 if (((t->srv) && (t->be->options & PR_O_COOK_INS)) ||
4990 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004991 /* this header must be deleted */
4992 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
4993 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4994 txn->hdr_idx.used--;
4995 cur_hdr->len = 0;
4996 cur_next += delta;
4997 txn->rsp.eoh += delta;
4998
Willy Tarreau3d300592007-03-18 18:34:41 +01004999 txn->flags |= TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005000 }
5001 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005002 (t->be->options & PR_O_COOK_RW)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005003 /* replace bytes p3->p4 with the cookie name associated
5004 * with this server since we know it.
5005 */
5006 delta = buffer_replace2(rtr, p3, p4, t->srv->cookie, t->srv->cklen);
5007 cur_hdr->len += delta;
5008 cur_next += delta;
5009 txn->rsp.eoh += delta;
5010
Willy Tarreau3d300592007-03-18 18:34:41 +01005011 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005012 }
5013 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005014 (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005015 /* insert the cookie name associated with this server
5016 * before existing cookie, and insert a delimitor between them..
5017 */
5018 delta = buffer_replace2(rtr, p3, p3, t->srv->cookie, t->srv->cklen + 1);
5019 cur_hdr->len += delta;
5020 cur_next += delta;
5021 txn->rsp.eoh += delta;
5022
5023 p3[t->srv->cklen] = COOKIE_DELIM;
Willy Tarreau3d300592007-03-18 18:34:41 +01005024 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005025 }
5026 }
5027 /* next, let's see if the cookie is our appcookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005028 else if ((t->be->appsession_name != NULL) &&
5029 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005030
5031 /* Cool... it's the right one */
5032
5033 size_t server_id_len = strlen(t->srv->id) + 1;
5034 asession_temp = &local_asession;
5035
Willy Tarreau63963c62007-05-13 21:29:55 +02005036 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005037 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
5038 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
5039 return;
5040 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005041 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
5042 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005043 asession_temp->serverid = NULL;
5044
5045 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01005046 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
5047 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02005048 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005049 Alert("Not enough Memory process_srv():asession:calloc().\n");
5050 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
5051 return;
5052 }
5053 asession_temp->sessid = local_asession.sessid;
5054 asession_temp->serverid = local_asession.serverid;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005055 asession_temp->request_count = 0;
Willy Tarreau51041c72007-09-09 21:56:53 +02005056 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
5057 } else {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005058 /* free wasted memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02005059 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau51041c72007-09-09 21:56:53 +02005060 }
5061
Willy Tarreaua15645d2007-03-18 16:22:39 +01005062 if (asession_temp->serverid == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02005063 if ((asession_temp->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005064 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
5065 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
5066 return;
5067 }
5068 asession_temp->serverid[0] = '\0';
5069 }
5070
5071 if (asession_temp->serverid[0] == '\0')
5072 memcpy(asession_temp->serverid, t->srv->id, server_id_len);
5073
Willy Tarreau0c303ee2008-07-07 00:09:58 +02005074 asession_temp->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005075 asession_temp->request_count++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005076#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005077 Alert("manage_server_side_cookies\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02005078 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreaua15645d2007-03-18 16:22:39 +01005079#endif
5080 }/* end if ((t->proxy->appsession_name != NULL) ... */
5081 break; /* we don't want to loop again since there cannot be another cookie on the same line */
5082 } /* we're now at the end of the cookie value */
5083
5084 /* keep the link from this header to next one */
5085 old_idx = cur_idx;
5086 } /* end of cookie processing on this header */
5087}
5088
5089
5090
5091/*
5092 * Check if response is cacheable or not. Updates t->flags.
5093 */
5094void check_response_for_cacheability(struct session *t, struct buffer *rtr)
5095{
5096 struct http_txn *txn = &t->txn;
5097 char *p1, *p2;
5098
5099 char *cur_ptr, *cur_end, *cur_next;
5100 int cur_idx;
5101
Willy Tarreau5df51872007-11-25 16:20:08 +01005102 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01005103 return;
5104
5105 /* Iterate through the headers.
5106 * we start with the start line.
5107 */
5108 cur_idx = 0;
5109 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
5110
5111 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
5112 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005113 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005114
5115 cur_hdr = &txn->hdr_idx.v[cur_idx];
5116 cur_ptr = cur_next;
5117 cur_end = cur_ptr + cur_hdr->len;
5118 cur_next = cur_end + cur_hdr->cr + 1;
5119
5120 /* We have one full header between cur_ptr and cur_end, and the
5121 * next header starts at cur_next. We're only interested in
5122 * "Cookie:" headers.
5123 */
5124
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005125 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
5126 if (val) {
5127 if ((cur_end - (cur_ptr + val) >= 8) &&
5128 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
5129 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
5130 return;
5131 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005132 }
5133
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005134 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
5135 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01005136 continue;
5137
5138 /* OK, right now we know we have a cache-control header at cur_ptr */
5139
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005140 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01005141
5142 if (p1 >= cur_end) /* no more info */
5143 continue;
5144
5145 /* p1 is at the beginning of the value */
5146 p2 = p1;
5147
Willy Tarreau8f8e6452007-06-17 21:51:38 +02005148 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01005149 p2++;
5150
5151 /* we have a complete value between p1 and p2 */
5152 if (p2 < cur_end && *p2 == '=') {
5153 /* we have something of the form no-cache="set-cookie" */
5154 if ((cur_end - p1 >= 21) &&
5155 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
5156 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01005157 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005158 continue;
5159 }
5160
5161 /* OK, so we know that either p2 points to the end of string or to a comma */
5162 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
5163 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
5164 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
5165 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005166 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005167 return;
5168 }
5169
5170 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005171 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005172 continue;
5173 }
5174 }
5175}
5176
5177
Willy Tarreau58f10d72006-12-04 02:26:12 +01005178/*
5179 * Try to retrieve a known appsession in the URI, then the associated server.
5180 * If the server is found, it's assigned to the session.
5181 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005182void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005183{
Willy Tarreau3d300592007-03-18 18:34:41 +01005184 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005185 appsess *asession_temp = NULL;
5186 appsess local_asession;
5187 char *request_line;
5188
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005189 if (t->be->appsession_name == NULL ||
Willy Tarreaub326fcc2007-03-03 13:54:32 +01005190 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST) ||
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005191 (request_line = memchr(begin, ';', len)) == NULL ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005192 ((1 + t->be->appsession_name_len + 1 + t->be->appsession_len) > (begin + len - request_line)))
Willy Tarreau58f10d72006-12-04 02:26:12 +01005193 return;
5194
5195 /* skip ';' */
5196 request_line++;
5197
5198 /* look if we have a jsessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005199 if (strncasecmp(request_line, t->be->appsession_name, t->be->appsession_name_len) != 0)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005200 return;
5201
5202 /* skip jsessionid= */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005203 request_line += t->be->appsession_name_len + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005204
5205 /* First try if we already have an appsession */
5206 asession_temp = &local_asession;
5207
Willy Tarreau63963c62007-05-13 21:29:55 +02005208 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005209 Alert("Not enough memory process_cli():asession_temp->sessid:calloc().\n");
5210 send_log(t->be, LOG_ALERT, "Not enough Memory process_cli():asession_temp->sessid:calloc().\n");
5211 return;
5212 }
5213
5214 /* Copy the sessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005215 memcpy(asession_temp->sessid, request_line, t->be->appsession_len);
5216 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005217 asession_temp->serverid = NULL;
5218
5219 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01005220 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
5221 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02005222 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005223 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02005224 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005225 Alert("Not enough memory process_cli():asession:calloc().\n");
5226 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
5227 return;
5228 }
5229 asession_temp->sessid = local_asession.sessid;
5230 asession_temp->serverid = local_asession.serverid;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005231 asession_temp->request_count=0;
Willy Tarreau51041c72007-09-09 21:56:53 +02005232 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005233 }
5234 else {
5235 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02005236 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005237 }
Willy Tarreau51041c72007-09-09 21:56:53 +02005238
Willy Tarreau0c303ee2008-07-07 00:09:58 +02005239 asession_temp->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005240 asession_temp->request_count++;
Willy Tarreau51041c72007-09-09 21:56:53 +02005241
Willy Tarreau58f10d72006-12-04 02:26:12 +01005242#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005243 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02005244 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01005245#endif
5246 if (asession_temp->serverid == NULL) {
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005247 /* TODO redispatch request */
Willy Tarreau58f10d72006-12-04 02:26:12 +01005248 Alert("Found Application Session without matching server.\n");
5249 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005250 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005251 while (srv) {
5252 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005253 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005254 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01005255 txn->flags &= ~TX_CK_MASK;
5256 txn->flags |= TX_CK_VALID;
5257 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005258 t->srv = srv;
5259 break;
5260 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01005261 txn->flags &= ~TX_CK_MASK;
5262 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005263 }
5264 }
5265 srv = srv->next;
5266 }
5267 }
5268}
5269
5270
Willy Tarreaub2513902006-12-17 14:52:38 +01005271/*
Willy Tarreau0214c3a2007-01-07 13:47:30 +01005272 * In a GET or HEAD request, check if the requested URI matches the stats uri
5273 * for the current backend, and if an authorization has been passed and is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01005274 *
Willy Tarreau0214c3a2007-01-07 13:47:30 +01005275 * It is assumed that the request is either a HEAD or GET and that the
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005276 * t->be->uri_auth field is valid. An HTTP/401 response may be sent, or
Willy Tarreau0214c3a2007-01-07 13:47:30 +01005277 * produce_content() can be called to start sending data.
Willy Tarreaub2513902006-12-17 14:52:38 +01005278 *
5279 * Returns 1 if the session's state changes, otherwise 0.
5280 */
5281int stats_check_uri_auth(struct session *t, struct proxy *backend)
5282{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005283 struct http_txn *txn = &t->txn;
Willy Tarreaub2513902006-12-17 14:52:38 +01005284 struct uri_auth *uri_auth = backend->uri_auth;
5285 struct user_auth *user;
5286 int authenticated, cur_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005287 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01005288
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01005289 memset(&t->data_ctx.stats, 0, sizeof(t->data_ctx.stats));
5290
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005291 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005292 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01005293 return 0;
5294
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005295 h = t->req->data + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005296
Willy Tarreau0214c3a2007-01-07 13:47:30 +01005297 /* the URI is in h */
5298 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01005299 return 0;
5300
Willy Tarreaue7150cd2007-07-25 14:43:32 +02005301 h += uri_auth->uri_len;
5302 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
5303 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01005304 t->data_ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02005305 break;
5306 }
5307 h++;
5308 }
5309
5310 if (uri_auth->refresh) {
5311 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
5312 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
5313 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01005314 t->data_ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02005315 break;
5316 }
5317 h++;
5318 }
5319 }
5320
Willy Tarreau55bb8452007-10-17 18:44:57 +02005321 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
5322 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
5323 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01005324 t->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau55bb8452007-10-17 18:44:57 +02005325 break;
5326 }
5327 h++;
5328 }
5329
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01005330 t->data_ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO;
5331
Willy Tarreaub2513902006-12-17 14:52:38 +01005332 /* we are in front of a interceptable URI. Let's check
5333 * if there's an authentication and if it's valid.
5334 */
5335 user = uri_auth->users;
5336 if (!user) {
5337 /* no user auth required, it's OK */
5338 authenticated = 1;
5339 } else {
5340 authenticated = 0;
5341
5342 /* a user list is defined, we have to check.
5343 * skip 21 chars for "Authorization: Basic ".
5344 */
5345
5346 /* FIXME: this should move to an earlier place */
5347 cur_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005348 h = t->req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
5349 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
5350 int len = txn->hdr_idx.v[cur_idx].len;
Willy Tarreaub2513902006-12-17 14:52:38 +01005351 if (len > 14 &&
5352 !strncasecmp("Authorization:", h, 14)) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005353 txn->auth_hdr.str = h;
5354 txn->auth_hdr.len = len;
Willy Tarreaub2513902006-12-17 14:52:38 +01005355 break;
5356 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005357 h += len + txn->hdr_idx.v[cur_idx].cr + 1;
Willy Tarreaub2513902006-12-17 14:52:38 +01005358 }
5359
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005360 if (txn->auth_hdr.len < 21 ||
5361 memcmp(txn->auth_hdr.str + 14, " Basic ", 7))
Willy Tarreaub2513902006-12-17 14:52:38 +01005362 user = NULL;
5363
5364 while (user) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005365 if ((txn->auth_hdr.len == user->user_len + 14 + 7)
5366 && !memcmp(txn->auth_hdr.str + 14 + 7,
Willy Tarreaub2513902006-12-17 14:52:38 +01005367 user->user_pwd, user->user_len)) {
5368 authenticated = 1;
5369 break;
5370 }
5371 user = user->next;
5372 }
5373 }
5374
5375 if (!authenticated) {
Willy Tarreau0f772532006-12-23 20:51:41 +01005376 struct chunk msg;
Willy Tarreaub2513902006-12-17 14:52:38 +01005377
5378 /* no need to go further */
Willy Tarreau0f772532006-12-23 20:51:41 +01005379 msg.str = trash;
5380 msg.len = sprintf(trash, HTTP_401_fmt, uri_auth->auth_realm);
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01005381 txn->status = 401;
Willy Tarreau0f772532006-12-23 20:51:41 +01005382 client_retnclose(t, &msg);
Willy Tarreauf8533202008-08-16 14:55:08 +02005383 trace_term(t, TT_HTTP_URI_1);
Willy Tarreau2df28e82008-08-17 15:20:19 +02005384 t->req->analysers = 0;
Willy Tarreaub2513902006-12-17 14:52:38 +01005385 if (!(t->flags & SN_ERR_MASK))
5386 t->flags |= SN_ERR_PRXCOND;
5387 if (!(t->flags & SN_FINST_MASK))
5388 t->flags |= SN_FINST_R;
5389 return 1;
5390 }
5391
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01005392 /* The request is valid, the user is authenticated. Let's start sending
Willy Tarreaub2513902006-12-17 14:52:38 +01005393 * data.
5394 */
Willy Tarreau72b179a2008-08-28 16:01:32 +02005395 buffer_shutw_now(t->req);
5396 buffer_shutr_now(t->rep);
5397 buffer_start_hijack(t->rep);
Willy Tarreau70089872008-06-13 21:12:51 +02005398 t->logs.tv_request = now;
Willy Tarreaub2513902006-12-17 14:52:38 +01005399 t->data_source = DATA_SRC_STATS;
5400 t->data_state = DATA_ST_INIT;
Willy Tarreau91e99932008-06-30 07:51:00 +02005401 t->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreaub2513902006-12-17 14:52:38 +01005402 produce_content(t);
5403 return 1;
5404}
5405
5406
Willy Tarreaubaaee002006-06-26 02:48:02 +02005407/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01005408 * Print a debug line with a header
5409 */
5410void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
5411{
5412 int len, max;
5413 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005414 dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005415 max = end - start;
5416 UBOUND(max, sizeof(trash) - len - 1);
5417 len += strlcpy2(trash + len, start, max + 1);
5418 trash[len++] = '\n';
5419 write(1, trash, len);
5420}
5421
5422
Willy Tarreau8797c062007-05-07 00:55:35 +02005423/************************************************************************/
5424/* The code below is dedicated to ACL parsing and matching */
5425/************************************************************************/
5426
5427
5428
5429
5430/* 1. Check on METHOD
5431 * We use the pre-parsed method if it is known, and store its number as an
5432 * integer. If it is unknown, we use the pointer and the length.
5433 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02005434static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02005435{
5436 int len, meth;
5437
Willy Tarreauae8b7962007-06-09 23:10:04 +02005438 len = strlen(*text);
5439 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02005440
5441 pattern->val.i = meth;
5442 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02005443 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005444 if (!pattern->ptr.str)
5445 return 0;
5446 pattern->len = len;
5447 }
5448 return 1;
5449}
5450
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005451static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005452acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
5453 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005454{
5455 int meth;
5456 struct http_txn *txn = l7;
5457
Willy Tarreaub6866442008-07-14 23:54:42 +02005458 if (!txn)
5459 return 0;
5460
Willy Tarreauc11416f2007-06-17 16:58:38 +02005461 if (txn->req.msg_state != HTTP_MSG_BODY)
5462 return 0;
5463
Willy Tarreau8797c062007-05-07 00:55:35 +02005464 meth = txn->meth;
5465 test->i = meth;
5466 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02005467 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5468 /* ensure the indexes are not affected */
5469 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02005470 test->len = txn->req.sl.rq.m_l;
5471 test->ptr = txn->req.sol;
5472 }
5473 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5474 return 1;
5475}
5476
5477static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
5478{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02005479 int icase;
5480
Willy Tarreau8797c062007-05-07 00:55:35 +02005481 if (test->i != pattern->val.i)
Willy Tarreau11382812008-07-09 16:18:21 +02005482 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02005483
5484 if (test->i != HTTP_METH_OTHER)
Willy Tarreau11382812008-07-09 16:18:21 +02005485 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02005486
5487 /* Other method, we must compare the strings */
5488 if (pattern->len != test->len)
Willy Tarreau11382812008-07-09 16:18:21 +02005489 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02005490
5491 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
5492 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
5493 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02005494 return ACL_PAT_FAIL;
5495 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02005496}
5497
5498/* 2. Check on Request/Status Version
5499 * We simply compare strings here.
5500 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02005501static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02005502{
Willy Tarreauae8b7962007-06-09 23:10:04 +02005503 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005504 if (!pattern->ptr.str)
5505 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02005506 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005507 return 1;
5508}
5509
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005510static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005511acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
5512 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005513{
5514 struct http_txn *txn = l7;
5515 char *ptr;
5516 int len;
5517
Willy Tarreaub6866442008-07-14 23:54:42 +02005518 if (!txn)
5519 return 0;
5520
Willy Tarreauc11416f2007-06-17 16:58:38 +02005521 if (txn->req.msg_state != HTTP_MSG_BODY)
5522 return 0;
5523
Willy Tarreau8797c062007-05-07 00:55:35 +02005524 len = txn->req.sl.rq.v_l;
5525 ptr = txn->req.sol + txn->req.sl.rq.v - txn->req.som;
5526
5527 while ((len-- > 0) && (*ptr++ != '/'));
5528 if (len <= 0)
5529 return 0;
5530
5531 test->ptr = ptr;
5532 test->len = len;
5533
5534 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5535 return 1;
5536}
5537
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005538static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005539acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
5540 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005541{
5542 struct http_txn *txn = l7;
5543 char *ptr;
5544 int len;
5545
Willy Tarreaub6866442008-07-14 23:54:42 +02005546 if (!txn)
5547 return 0;
5548
Willy Tarreauc11416f2007-06-17 16:58:38 +02005549 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5550 return 0;
5551
Willy Tarreau8797c062007-05-07 00:55:35 +02005552 len = txn->rsp.sl.st.v_l;
5553 ptr = txn->rsp.sol;
5554
5555 while ((len-- > 0) && (*ptr++ != '/'));
5556 if (len <= 0)
5557 return 0;
5558
5559 test->ptr = ptr;
5560 test->len = len;
5561
5562 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5563 return 1;
5564}
5565
5566/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005567static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005568acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
5569 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005570{
5571 struct http_txn *txn = l7;
5572 char *ptr;
5573 int len;
5574
Willy Tarreaub6866442008-07-14 23:54:42 +02005575 if (!txn)
5576 return 0;
5577
Willy Tarreauc11416f2007-06-17 16:58:38 +02005578 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5579 return 0;
5580
Willy Tarreau8797c062007-05-07 00:55:35 +02005581 len = txn->rsp.sl.st.c_l;
5582 ptr = txn->rsp.sol + txn->rsp.sl.st.c - txn->rsp.som;
5583
5584 test->i = __strl2ui(ptr, len);
5585 test->flags = ACL_TEST_F_VOL_1ST;
5586 return 1;
5587}
5588
5589/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005590static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005591acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
5592 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005593{
5594 struct http_txn *txn = l7;
5595
Willy Tarreaub6866442008-07-14 23:54:42 +02005596 if (!txn)
5597 return 0;
5598
Willy Tarreauc11416f2007-06-17 16:58:38 +02005599 if (txn->req.msg_state != HTTP_MSG_BODY)
5600 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005601
Willy Tarreauc11416f2007-06-17 16:58:38 +02005602 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5603 /* ensure the indexes are not affected */
5604 return 0;
5605
Willy Tarreau8797c062007-05-07 00:55:35 +02005606 test->len = txn->req.sl.rq.u_l;
5607 test->ptr = txn->req.sol + txn->req.sl.rq.u;
5608
Willy Tarreauf3d25982007-05-08 22:45:09 +02005609 /* we do not need to set READ_ONLY because the data is in a buffer */
5610 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02005611 return 1;
5612}
5613
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005614static int
5615acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
5616 struct acl_expr *expr, struct acl_test *test)
5617{
5618 struct http_txn *txn = l7;
5619
Willy Tarreaub6866442008-07-14 23:54:42 +02005620 if (!txn)
5621 return 0;
5622
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005623 if (txn->req.msg_state != HTTP_MSG_BODY)
5624 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005625
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005626 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5627 /* ensure the indexes are not affected */
5628 return 0;
5629
5630 /* Parse HTTP request */
5631 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
5632 test->ptr = (void *)&((struct sockaddr_in *)&l4->srv_addr)->sin_addr;
5633 test->i = AF_INET;
5634
5635 /*
5636 * If we are parsing url in frontend space, we prepare backend stage
5637 * to not parse again the same url ! optimization lazyness...
5638 */
5639 if (px->options & PR_O_HTTP_PROXY)
5640 l4->flags |= SN_ADDR_SET;
5641
5642 test->flags = ACL_TEST_F_READ_ONLY;
5643 return 1;
5644}
5645
5646static int
5647acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
5648 struct acl_expr *expr, struct acl_test *test)
5649{
5650 struct http_txn *txn = l7;
5651
Willy Tarreaub6866442008-07-14 23:54:42 +02005652 if (!txn)
5653 return 0;
5654
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005655 if (txn->req.msg_state != HTTP_MSG_BODY)
5656 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005657
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005658 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5659 /* ensure the indexes are not affected */
5660 return 0;
5661
5662 /* Same optimization as url_ip */
5663 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
5664 test->i = ntohs(((struct sockaddr_in *)&l4->srv_addr)->sin_port);
5665
5666 if (px->options & PR_O_HTTP_PROXY)
5667 l4->flags |= SN_ADDR_SET;
5668
5669 test->flags = ACL_TEST_F_READ_ONLY;
5670 return 1;
5671}
5672
Willy Tarreauc11416f2007-06-17 16:58:38 +02005673/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
5674 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
5675 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02005676static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005677acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005678 struct acl_expr *expr, struct acl_test *test)
5679{
5680 struct http_txn *txn = l7;
5681 struct hdr_idx *idx = &txn->hdr_idx;
5682 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005683
Willy Tarreaub6866442008-07-14 23:54:42 +02005684 if (!txn)
5685 return 0;
5686
Willy Tarreau33a7e692007-06-10 19:45:56 +02005687 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
5688 /* search for header from the beginning */
5689 ctx->idx = 0;
5690
Willy Tarreau33a7e692007-06-10 19:45:56 +02005691 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
5692 test->flags |= ACL_TEST_F_FETCH_MORE;
5693 test->flags |= ACL_TEST_F_VOL_HDR;
5694 test->len = ctx->vlen;
5695 test->ptr = (char *)ctx->line + ctx->val;
5696 return 1;
5697 }
5698
5699 test->flags &= ~ACL_TEST_F_FETCH_MORE;
5700 test->flags |= ACL_TEST_F_VOL_HDR;
5701 return 0;
5702}
5703
Willy Tarreau33a7e692007-06-10 19:45:56 +02005704static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005705acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
5706 struct acl_expr *expr, struct acl_test *test)
5707{
5708 struct http_txn *txn = l7;
5709
Willy Tarreaub6866442008-07-14 23:54:42 +02005710 if (!txn)
5711 return 0;
5712
Willy Tarreauc11416f2007-06-17 16:58:38 +02005713 if (txn->req.msg_state != HTTP_MSG_BODY)
5714 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005715
Willy Tarreauc11416f2007-06-17 16:58:38 +02005716 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5717 /* ensure the indexes are not affected */
5718 return 0;
5719
5720 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
5721}
5722
5723static int
5724acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
5725 struct acl_expr *expr, struct acl_test *test)
5726{
5727 struct http_txn *txn = l7;
5728
Willy Tarreaub6866442008-07-14 23:54:42 +02005729 if (!txn)
5730 return 0;
5731
Willy Tarreauc11416f2007-06-17 16:58:38 +02005732 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5733 return 0;
5734
5735 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
5736}
5737
5738/* 6. Check on HTTP header count. The number of occurrences is returned.
5739 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
5740 */
5741static int
5742acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005743 struct acl_expr *expr, struct acl_test *test)
5744{
5745 struct http_txn *txn = l7;
5746 struct hdr_idx *idx = &txn->hdr_idx;
5747 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005748 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02005749
Willy Tarreaub6866442008-07-14 23:54:42 +02005750 if (!txn)
5751 return 0;
5752
Willy Tarreau33a7e692007-06-10 19:45:56 +02005753 ctx.idx = 0;
5754 cnt = 0;
5755 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
5756 cnt++;
5757
5758 test->i = cnt;
5759 test->flags = ACL_TEST_F_VOL_HDR;
5760 return 1;
5761}
5762
Willy Tarreauc11416f2007-06-17 16:58:38 +02005763static int
5764acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
5765 struct acl_expr *expr, struct acl_test *test)
5766{
5767 struct http_txn *txn = l7;
5768
Willy Tarreaub6866442008-07-14 23:54:42 +02005769 if (!txn)
5770 return 0;
5771
Willy Tarreauc11416f2007-06-17 16:58:38 +02005772 if (txn->req.msg_state != HTTP_MSG_BODY)
5773 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005774
Willy Tarreauc11416f2007-06-17 16:58:38 +02005775 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5776 /* ensure the indexes are not affected */
5777 return 0;
5778
5779 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
5780}
5781
5782static int
5783acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
5784 struct acl_expr *expr, struct acl_test *test)
5785{
5786 struct http_txn *txn = l7;
5787
Willy Tarreaub6866442008-07-14 23:54:42 +02005788 if (!txn)
5789 return 0;
5790
Willy Tarreauc11416f2007-06-17 16:58:38 +02005791 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5792 return 0;
5793
5794 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
5795}
5796
Willy Tarreau33a7e692007-06-10 19:45:56 +02005797/* 7. Check on HTTP header's integer value. The integer value is returned.
5798 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02005799 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02005800 */
5801static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005802acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005803 struct acl_expr *expr, struct acl_test *test)
5804{
5805 struct http_txn *txn = l7;
5806 struct hdr_idx *idx = &txn->hdr_idx;
5807 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005808
Willy Tarreaub6866442008-07-14 23:54:42 +02005809 if (!txn)
5810 return 0;
5811
Willy Tarreau33a7e692007-06-10 19:45:56 +02005812 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
5813 /* search for header from the beginning */
5814 ctx->idx = 0;
5815
Willy Tarreau33a7e692007-06-10 19:45:56 +02005816 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
5817 test->flags |= ACL_TEST_F_FETCH_MORE;
5818 test->flags |= ACL_TEST_F_VOL_HDR;
5819 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
5820 return 1;
5821 }
5822
5823 test->flags &= ~ACL_TEST_F_FETCH_MORE;
5824 test->flags |= ACL_TEST_F_VOL_HDR;
5825 return 0;
5826}
5827
Willy Tarreauc11416f2007-06-17 16:58:38 +02005828static int
5829acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
5830 struct acl_expr *expr, struct acl_test *test)
5831{
5832 struct http_txn *txn = l7;
5833
Willy Tarreaub6866442008-07-14 23:54:42 +02005834 if (!txn)
5835 return 0;
5836
Willy Tarreauc11416f2007-06-17 16:58:38 +02005837 if (txn->req.msg_state != HTTP_MSG_BODY)
5838 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005839
Willy Tarreauc11416f2007-06-17 16:58:38 +02005840 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5841 /* ensure the indexes are not affected */
5842 return 0;
5843
5844 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
5845}
5846
5847static int
5848acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
5849 struct acl_expr *expr, struct acl_test *test)
5850{
5851 struct http_txn *txn = l7;
5852
Willy Tarreaub6866442008-07-14 23:54:42 +02005853 if (!txn)
5854 return 0;
5855
Willy Tarreauc11416f2007-06-17 16:58:38 +02005856 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5857 return 0;
5858
5859 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
5860}
5861
Willy Tarreau737b0c12007-06-10 21:28:46 +02005862/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
5863 * the first '/' after the possible hostname, and ends before the possible '?'.
5864 */
5865static int
5866acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
5867 struct acl_expr *expr, struct acl_test *test)
5868{
5869 struct http_txn *txn = l7;
5870 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005871
Willy Tarreaub6866442008-07-14 23:54:42 +02005872 if (!txn)
5873 return 0;
5874
Willy Tarreauc11416f2007-06-17 16:58:38 +02005875 if (txn->req.msg_state != HTTP_MSG_BODY)
5876 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02005877
Willy Tarreauc11416f2007-06-17 16:58:38 +02005878 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5879 /* ensure the indexes are not affected */
5880 return 0;
5881
Willy Tarreau21d2af32008-02-14 20:25:24 +01005882 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
5883 ptr = http_get_path(txn);
5884 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02005885 return 0;
5886
5887 /* OK, we got the '/' ! */
5888 test->ptr = ptr;
5889
5890 while (ptr < end && *ptr != '?')
5891 ptr++;
5892
5893 test->len = ptr - test->ptr;
5894
5895 /* we do not need to set READ_ONLY because the data is in a buffer */
5896 test->flags = ACL_TEST_F_VOL_1ST;
5897 return 1;
5898}
5899
5900
Willy Tarreau8797c062007-05-07 00:55:35 +02005901
5902/************************************************************************/
5903/* All supported keywords must be declared here. */
5904/************************************************************************/
5905
5906/* Note: must not be declared <const> as its list will be overwritten */
5907static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02005908 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT },
5909 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE },
5910 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE },
5911 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02005912
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02005913 { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE },
5914 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
5915 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE },
5916 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
5917 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
5918 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
5919 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
5920 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE },
5921 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau8797c062007-05-07 00:55:35 +02005922
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02005923 /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */
5924 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE },
5925 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
5926 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
5927 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE },
5928 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
5929 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
5930 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
5931 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE },
5932 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreauc11416f2007-06-17 16:58:38 +02005933
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02005934 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE },
5935 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE },
5936 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE },
5937 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE },
5938 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE },
5939 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE },
5940 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE },
5941 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE },
5942 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02005943
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02005944 { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE },
5945 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
5946 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
5947 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE },
5948 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
5949 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
5950 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02005951
Willy Tarreauf3d25982007-05-08 22:45:09 +02005952 { NULL, NULL, NULL, NULL },
5953
5954#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02005955 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
5956 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
5957 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
5958 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
5959 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
5960 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
5961 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
5962
Willy Tarreau8797c062007-05-07 00:55:35 +02005963 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
5964 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
5965 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
5966 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
5967 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
5968 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
5969 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
5970 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
5971
5972 { "auth_user", acl_parse_str, acl_fetch_user, acl_match_str },
5973 { "auth_regex", acl_parse_reg, acl_fetch_user, acl_match_reg },
5974 { "auth_clear", acl_parse_str, acl_fetch_auth, acl_match_str },
5975 { "auth_md5", acl_parse_str, acl_fetch_auth, acl_match_md5 },
5976 { NULL, NULL, NULL, NULL },
5977#endif
5978}};
5979
5980
5981__attribute__((constructor))
5982static void __http_protocol_init(void)
5983{
5984 acl_register_keywords(&acl_kws);
5985}
5986
5987
Willy Tarreau58f10d72006-12-04 02:26:12 +01005988/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005989 * Local variables:
5990 * c-indent-level: 8
5991 * c-basic-offset: 8
5992 * End:
5993 */