blob: 8c8ff634098718dbdfe571c4c8cbdef8cdecd2fa [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>
Willy Tarreau7f062c42009-03-05 18:43:00 +010050#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010052#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010054#include <proto/stream_interface.h>
Willy Tarreau2d212792008-08-27 21:41:35 +020055#include <proto/stream_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/task.h>
57
Willy Tarreau6d1a9882007-01-07 02:03:04 +010058#ifdef CONFIG_HAP_TCPSPLICE
59#include <libtcpsplice.h>
60#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreau58f10d72006-12-04 02:26:12 +010062#define DEBUG_PARSE_NO_SPEEDUP
63#undef DEBUG_PARSE_NO_SPEEDUP
64
Willy Tarreau976f1ee2006-12-17 10:06:03 +010065/* This is used to perform a quick jump as an alternative to a break/continue
66 * instruction. The first argument is the label for normal operation, and the
67 * second one is the break/continue instruction in the no_speedup mode.
68 */
69
70#ifdef DEBUG_PARSE_NO_SPEEDUP
71#define QUICK_JUMP(x,y) y
72#else
73#define QUICK_JUMP(x,y) goto x
74#endif
75
Willy Tarreau1c47f852006-07-09 08:22:27 +020076/* This is used by remote monitoring */
Willy Tarreau0f772532006-12-23 20:51:41 +010077const char HTTP_200[] =
Willy Tarreau1c47f852006-07-09 08:22:27 +020078 "HTTP/1.0 200 OK\r\n"
79 "Cache-Control: no-cache\r\n"
80 "Connection: close\r\n"
81 "Content-Type: text/html\r\n"
82 "\r\n"
83 "<html><body><h1>200 OK</h1>\nHAProxy: service ready.\n</body></html>\n";
84
Willy Tarreau0f772532006-12-23 20:51:41 +010085const struct chunk http_200_chunk = {
86 .str = (char *)&HTTP_200,
87 .len = sizeof(HTTP_200)-1
88};
89
Willy Tarreaub463dfb2008-06-07 23:08:56 +020090const char *HTTP_301 =
91 "HTTP/1.0 301 Moved Permantenly\r\n"
92 "Cache-Control: no-cache\r\n"
93 "Connection: close\r\n"
94 "Location: "; /* not terminated since it will be concatenated with the URL */
95
Willy Tarreau0f772532006-12-23 20:51:41 +010096const char *HTTP_302 =
97 "HTTP/1.0 302 Found\r\n"
98 "Cache-Control: no-cache\r\n"
99 "Connection: close\r\n"
100 "Location: "; /* not terminated since it will be concatenated with the URL */
101
102/* same as 302 except that the browser MUST retry with the GET method */
103const char *HTTP_303 =
104 "HTTP/1.0 303 See Other\r\n"
105 "Cache-Control: no-cache\r\n"
106 "Connection: close\r\n"
107 "Location: "; /* not terminated since it will be concatenated with the URL */
108
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
110const char *HTTP_401_fmt =
111 "HTTP/1.0 401 Unauthorized\r\n"
112 "Cache-Control: no-cache\r\n"
113 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200114 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
116 "\r\n"
117 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
118
Willy Tarreau0f772532006-12-23 20:51:41 +0100119
120const int http_err_codes[HTTP_ERR_SIZE] = {
121 [HTTP_ERR_400] = 400,
122 [HTTP_ERR_403] = 403,
123 [HTTP_ERR_408] = 408,
124 [HTTP_ERR_500] = 500,
125 [HTTP_ERR_502] = 502,
126 [HTTP_ERR_503] = 503,
127 [HTTP_ERR_504] = 504,
128};
129
Willy Tarreau80587432006-12-24 17:47:20 +0100130static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreau0f772532006-12-23 20:51:41 +0100131 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100132 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100133 "Cache-Control: no-cache\r\n"
134 "Connection: close\r\n"
135 "Content-Type: text/html\r\n"
136 "\r\n"
137 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
138
139 [HTTP_ERR_403] =
140 "HTTP/1.0 403 Forbidden\r\n"
141 "Cache-Control: no-cache\r\n"
142 "Connection: close\r\n"
143 "Content-Type: text/html\r\n"
144 "\r\n"
145 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
146
147 [HTTP_ERR_408] =
148 "HTTP/1.0 408 Request Time-out\r\n"
149 "Cache-Control: no-cache\r\n"
150 "Connection: close\r\n"
151 "Content-Type: text/html\r\n"
152 "\r\n"
153 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
154
155 [HTTP_ERR_500] =
156 "HTTP/1.0 500 Server Error\r\n"
157 "Cache-Control: no-cache\r\n"
158 "Connection: close\r\n"
159 "Content-Type: text/html\r\n"
160 "\r\n"
161 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
162
163 [HTTP_ERR_502] =
164 "HTTP/1.0 502 Bad Gateway\r\n"
165 "Cache-Control: no-cache\r\n"
166 "Connection: close\r\n"
167 "Content-Type: text/html\r\n"
168 "\r\n"
169 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
170
171 [HTTP_ERR_503] =
172 "HTTP/1.0 503 Service Unavailable\r\n"
173 "Cache-Control: no-cache\r\n"
174 "Connection: close\r\n"
175 "Content-Type: text/html\r\n"
176 "\r\n"
177 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
178
179 [HTTP_ERR_504] =
180 "HTTP/1.0 504 Gateway Time-out\r\n"
181 "Cache-Control: no-cache\r\n"
182 "Connection: close\r\n"
183 "Content-Type: text/html\r\n"
184 "\r\n"
185 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
186
187};
188
Willy Tarreau80587432006-12-24 17:47:20 +0100189/* We must put the messages here since GCC cannot initialize consts depending
190 * on strlen().
191 */
192struct chunk http_err_chunks[HTTP_ERR_SIZE];
193
Willy Tarreau42250582007-04-01 01:30:43 +0200194#define FD_SETS_ARE_BITFIELDS
195#ifdef FD_SETS_ARE_BITFIELDS
196/*
197 * This map is used with all the FD_* macros to check whether a particular bit
198 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
199 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
200 * byte should be encoded. Be careful to always pass bytes from 0 to 255
201 * exclusively to the macros.
202 */
203fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
204fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
205
206#else
207#error "Check if your OS uses bitfields for fd_sets"
208#endif
209
Willy Tarreau80587432006-12-24 17:47:20 +0100210void init_proto_http()
211{
Willy Tarreau42250582007-04-01 01:30:43 +0200212 int i;
213 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100214 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200215
Willy Tarreau80587432006-12-24 17:47:20 +0100216 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
217 if (!http_err_msgs[msg]) {
218 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
219 abort();
220 }
221
222 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
223 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
224 }
Willy Tarreau42250582007-04-01 01:30:43 +0200225
226 /* initialize the log header encoding map : '{|}"#' should be encoded with
227 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
228 * URL encoding only requires '"', '#' to be encoded as well as non-
229 * printable characters above.
230 */
231 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
232 memset(url_encode_map, 0, sizeof(url_encode_map));
233 for (i = 0; i < 32; i++) {
234 FD_SET(i, hdr_encode_map);
235 FD_SET(i, url_encode_map);
236 }
237 for (i = 127; i < 256; i++) {
238 FD_SET(i, hdr_encode_map);
239 FD_SET(i, url_encode_map);
240 }
241
242 tmp = "\"#{|}";
243 while (*tmp) {
244 FD_SET(*tmp, hdr_encode_map);
245 tmp++;
246 }
247
248 tmp = "\"#";
249 while (*tmp) {
250 FD_SET(*tmp, url_encode_map);
251 tmp++;
252 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200253
254 /* memory allocations */
255 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200256 pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100257}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200258
Willy Tarreau53b6c742006-12-17 13:37:46 +0100259/*
260 * We have 26 list of methods (1 per first letter), each of which can have
261 * up to 3 entries (2 valid, 1 null).
262 */
263struct http_method_desc {
264 http_meth_t meth;
265 int len;
266 const char text[8];
267};
268
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100269const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100270 ['C' - 'A'] = {
271 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
272 },
273 ['D' - 'A'] = {
274 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
275 },
276 ['G' - 'A'] = {
277 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
278 },
279 ['H' - 'A'] = {
280 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
281 },
282 ['P' - 'A'] = {
283 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
284 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
285 },
286 ['T' - 'A'] = {
287 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
288 },
289 /* rest is empty like this :
290 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
291 */
292};
293
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100294/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200295 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100296 * RFC2616 for those chars.
297 */
298
299const char http_is_spht[256] = {
300 [' '] = 1, ['\t'] = 1,
301};
302
303const char http_is_crlf[256] = {
304 ['\r'] = 1, ['\n'] = 1,
305};
306
307const char http_is_lws[256] = {
308 [' '] = 1, ['\t'] = 1,
309 ['\r'] = 1, ['\n'] = 1,
310};
311
312const char http_is_sep[256] = {
313 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
314 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
315 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
316 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
317 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
318};
319
320const char http_is_ctl[256] = {
321 [0 ... 31] = 1,
322 [127] = 1,
323};
324
325/*
326 * A token is any ASCII char that is neither a separator nor a CTL char.
327 * Do not overwrite values in assignment since gcc-2.95 will not handle
328 * them correctly. Instead, define every non-CTL char's status.
329 */
330const char http_is_token[256] = {
331 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
332 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
333 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
334 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
335 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
336 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
337 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
338 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
339 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
340 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
341 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
342 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
343 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
344 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
345 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
346 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
347 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
348 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
349 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
350 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
351 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
352 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
353 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
354 ['|'] = 1, ['}'] = 0, ['~'] = 1,
355};
356
357
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100358/*
359 * An http ver_token is any ASCII which can be found in an HTTP version,
360 * which includes 'H', 'T', 'P', '/', '.' and any digit.
361 */
362const char http_is_ver_token[256] = {
363 ['.'] = 1, ['/'] = 1,
364 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
365 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
366 ['H'] = 1, ['P'] = 1, ['T'] = 1,
367};
368
369
Willy Tarreaubaaee002006-06-26 02:48:02 +0200370#ifdef DEBUG_FULL
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200371static char *cli_stnames[4] = { "DAT", "SHR", "SHW", "CLS" };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200372#endif
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{
Willy Tarreau33a7e692007-06-10 19:45:56 +0200470 const char *eol, *sov;
471 int cur_idx;
472
473 if (ctx->idx) {
474 /* We have previously returned a value, let's search
475 * another one on the same line.
476 */
477 cur_idx = ctx->idx;
478 sol = ctx->line;
479 sov = sol + ctx->val + ctx->vlen;
480 eol = sol + idx->v[cur_idx].len;
481
482 if (sov >= eol)
483 /* no more values in this header */
484 goto next_hdr;
485
486 /* values remaining for this header, skip the comma */
487 sov++;
488 while (sov < eol && http_is_lws[(unsigned char)*sov])
489 sov++;
490
491 goto return_hdr;
492 }
493
494 /* first request for this header */
495 sol += hdr_idx_first_pos(idx);
496 cur_idx = hdr_idx_first_idx(idx);
497
498 while (cur_idx) {
499 eol = sol + idx->v[cur_idx].len;
500
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200501 if (len == 0) {
502 /* No argument was passed, we want any header.
503 * To achieve this, we simply build a fake request. */
504 while (sol + len < eol && sol[len] != ':')
505 len++;
506 name = sol;
507 }
508
Willy Tarreau33a7e692007-06-10 19:45:56 +0200509 if ((len < eol - sol) &&
510 (sol[len] == ':') &&
511 (strncasecmp(sol, name, len) == 0)) {
512
513 sov = sol + len + 1;
514 while (sov < eol && http_is_lws[(unsigned char)*sov])
515 sov++;
516 return_hdr:
517 ctx->line = sol;
518 ctx->idx = cur_idx;
519 ctx->val = sov - sol;
520
521 eol = find_hdr_value_end(sov, eol);
522 ctx->vlen = eol - sov;
523 return 1;
524 }
525 next_hdr:
526 sol = eol + idx->v[cur_idx].cr + 1;
527 cur_idx = idx->v[cur_idx].next;
528 }
529 return 0;
530}
531
532int http_find_header(const char *name,
533 const char *sol, struct hdr_idx *idx,
534 struct hdr_ctx *ctx)
535{
536 return http_find_header2(name, strlen(name), sol, idx, ctx);
537}
538
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100539/* This function handles a server error at the stream interface level. The
540 * stream interface is assumed to be already in a closed state. An optional
541 * message is copied into the input buffer, and an HTTP status code stored.
542 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100543 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200544 */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100545static void http_server_error(struct session *t, struct stream_interface *si,
546 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200547{
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100548 buffer_erase(si->ob);
549 buffer_erase(si->ib);
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100550 buffer_write_ena(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100551 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100552 t->txn.status = status;
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100553 buffer_write(si->ib, msg->str, msg->len);
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 Tarreauefb453c2008-10-26 20:49:47 +0100647/* Returns a 302 for a redirectable request. This may only be called just after
648 * the stream interface has moved to SI_ST_ASS. Unprocessable requests are
649 * left unchanged and will follow normal proxy processing.
650 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100651void perform_http_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100652{
653 struct http_txn *txn;
654 struct chunk rdr;
655 char *path;
656 int len;
657
658 /* 1: create the response header */
659 rdr.len = strlen(HTTP_302);
660 rdr.str = trash;
661 memcpy(rdr.str, HTTP_302, rdr.len);
662
663 /* 2: add the server's prefix */
664 if (rdr.len + s->srv->rdr_len > sizeof(trash))
665 return;
666
667 memcpy(rdr.str + rdr.len, s->srv->rdr_pfx, s->srv->rdr_len);
668 rdr.len += s->srv->rdr_len;
669
670 /* 3: add the request URI */
671 txn = &s->txn;
672 path = http_get_path(txn);
673 if (!path)
674 return;
675
676 len = txn->req.sl.rq.u_l + (txn->req.sol+txn->req.sl.rq.u) - path;
677 if (rdr.len + len > sizeof(trash) - 4) /* 4 for CRLF-CRLF */
678 return;
679
680 memcpy(rdr.str + rdr.len, path, len);
681 rdr.len += len;
682 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
683 rdr.len += 4;
684
685 /* prepare to return without error. */
Willy Tarreau99126c32008-11-27 10:30:51 +0100686 si->shutr(si);
687 si->shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100688 si->err_type = SI_ET_NONE;
689 si->err_loc = NULL;
690 si->state = SI_ST_CLO;
691
692 /* send the message */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100693 http_server_error(s, si, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100694
695 /* FIXME: we should increase a counter of redirects per server and per backend. */
696 if (s->srv)
Willy Tarreau7f062c42009-03-05 18:43:00 +0100697 srv_inc_sess_ctr(s->srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100698}
699
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100700/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100701 * that the server side is closed. Note that err_type is actually a
702 * bitmask, where almost only aborts may be cumulated with other
703 * values. We consider that aborted operations are more important
704 * than timeouts or errors due to the fact that nobody else in the
705 * logs might explain incomplete retries. All others should avoid
706 * being cumulated. It should normally not be possible to have multiple
707 * aborts at once, but just in case, the first one in sequence is reported.
708 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100709void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100710{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100711 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100712
713 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100714 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
715 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100716 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100717 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
718 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100719 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100720 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
721 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100722 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100723 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
724 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100725 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100726 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
727 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100728 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100729 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
730 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100731 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100732 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
733 500, error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100734}
735
Willy Tarreau42250582007-04-01 01:30:43 +0200736extern const char sess_term_cond[8];
737extern const char sess_fin_state[8];
738extern const char *monthname[12];
739const char sess_cookie[4] = "NIDV"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie */
740const char sess_set_cookie[8] = "N1I3PD5R"; /* No set-cookie, unknown, Set-Cookie Inserted, unknown,
741 Set-cookie seen and left unchanged (passive), Set-cookie Deleted,
742 unknown, Set-cookie Rewritten */
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200743struct pool_head *pool2_requri;
Willy Tarreau086b3b42007-05-13 21:45:51 +0200744struct pool_head *pool2_capture;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100745
Willy Tarreau42250582007-04-01 01:30:43 +0200746/*
747 * send a log for the session when we have enough info about it.
748 * Will not log if the frontend has no log defined.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100749 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100750void http_sess_log(struct session *s)
Willy Tarreau42250582007-04-01 01:30:43 +0200751{
752 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
753 struct proxy *fe = s->fe;
754 struct proxy *be = s->be;
755 struct proxy *prx_log;
756 struct http_txn *txn = &s->txn;
757 int tolog;
758 char *uri, *h;
759 char *svid;
Willy Tarreaufe944602007-10-25 10:34:16 +0200760 struct tm tm;
Willy Tarreau42250582007-04-01 01:30:43 +0200761 static char tmpline[MAX_SYSLOG_LEN];
Willy Tarreau70089872008-06-13 21:12:51 +0200762 int t_request;
Willy Tarreau42250582007-04-01 01:30:43 +0200763 int hdr;
764
765 if (fe->logfac1 < 0 && fe->logfac2 < 0)
766 return;
767 prx_log = fe;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100768
Willy Tarreau42250582007-04-01 01:30:43 +0200769 if (s->cli_addr.ss_family == AF_INET)
770 inet_ntop(AF_INET,
771 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
772 pn, sizeof(pn));
773 else
774 inet_ntop(AF_INET6,
775 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
776 pn, sizeof(pn));
777
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200778 get_localtime(s->logs.accept_date.tv_sec, &tm);
Willy Tarreau42250582007-04-01 01:30:43 +0200779
780 /* FIXME: let's limit ourselves to frontend logging for now. */
781 tolog = fe->to_log;
782
783 h = tmpline;
784 if (fe->to_log & LW_REQHDR &&
785 txn->req.cap &&
786 (h < tmpline + sizeof(tmpline) - 10)) {
787 *(h++) = ' ';
788 *(h++) = '{';
789 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
790 if (hdr)
791 *(h++) = '|';
792 if (txn->req.cap[hdr] != NULL)
793 h = encode_string(h, tmpline + sizeof(tmpline) - 7,
794 '#', hdr_encode_map, txn->req.cap[hdr]);
795 }
796 *(h++) = '}';
797 }
798
799 if (fe->to_log & LW_RSPHDR &&
800 txn->rsp.cap &&
801 (h < tmpline + sizeof(tmpline) - 7)) {
802 *(h++) = ' ';
803 *(h++) = '{';
804 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
805 if (hdr)
806 *(h++) = '|';
807 if (txn->rsp.cap[hdr] != NULL)
808 h = encode_string(h, tmpline + sizeof(tmpline) - 4,
809 '#', hdr_encode_map, txn->rsp.cap[hdr]);
810 }
811 *(h++) = '}';
812 }
813
814 if (h < tmpline + sizeof(tmpline) - 4) {
815 *(h++) = ' ';
816 *(h++) = '"';
817 uri = txn->uri ? txn->uri : "<BADREQ>";
818 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
819 '#', url_encode_map, uri);
820 *(h++) = '"';
821 }
822 *h = '\0';
823
824 svid = (tolog & LW_SVID) ?
825 (s->data_source != DATA_SRC_STATS) ?
826 (s->srv != NULL) ? s->srv->id : "<NOSRV>" : "<STATS>" : "-";
827
Willy Tarreau70089872008-06-13 21:12:51 +0200828 t_request = -1;
829 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
830 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
831
Willy Tarreau42250582007-04-01 01:30:43 +0200832 send_log(prx_log, LOG_INFO,
833 "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]"
834 " %s %s/%s %d/%d/%d/%d/%s%d %d %s%lld"
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +0100835 " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %d/%d%s\n",
Willy Tarreau42250582007-04-01 01:30:43 +0200836 pn,
837 (s->cli_addr.ss_family == AF_INET) ?
838 ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port) :
839 ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreaufe944602007-10-25 10:34:16 +0200840 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200841 tm.tm_hour, tm.tm_min, tm.tm_sec, s->logs.accept_date.tv_usec/1000,
Willy Tarreau42250582007-04-01 01:30:43 +0200842 fe->id, be->id, svid,
Willy Tarreau70089872008-06-13 21:12:51 +0200843 t_request,
844 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
Willy Tarreau42250582007-04-01 01:30:43 +0200845 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
846 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
847 (tolog & LW_BYTES) ? "" : "+", s->logs.t_close,
848 txn->status,
Willy Tarreau8b3977f2008-01-18 11:16:32 +0100849 (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out,
Willy Tarreau42250582007-04-01 01:30:43 +0200850 txn->cli_cookie ? txn->cli_cookie : "-",
851 txn->srv_cookie ? txn->srv_cookie : "-",
852 sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT],
853 sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT],
854 (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
855 (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-',
856 actconn, fe->feconn, be->beconn, s->srv ? s->srv->cur_sess : 0,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +0100857 (s->flags & SN_REDISP)?"+":"",
858 (s->conn_retries>0)?(be->conn_retries - s->conn_retries):be->conn_retries,
Willy Tarreau42250582007-04-01 01:30:43 +0200859 s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline);
860
861 s->logs.logwait = 0;
862}
863
Willy Tarreau117f59e2007-03-04 18:17:17 +0100864
865/*
866 * Capture headers from message starting at <som> according to header list
867 * <cap_hdr>, and fill the <idx> structure appropriately.
868 */
869void capture_headers(char *som, struct hdr_idx *idx,
870 char **cap, struct cap_hdr *cap_hdr)
871{
872 char *eol, *sol, *col, *sov;
873 int cur_idx;
874 struct cap_hdr *h;
875 int len;
876
877 sol = som + hdr_idx_first_pos(idx);
878 cur_idx = hdr_idx_first_idx(idx);
879
880 while (cur_idx) {
881 eol = sol + idx->v[cur_idx].len;
882
883 col = sol;
884 while (col < eol && *col != ':')
885 col++;
886
887 sov = col + 1;
888 while (sov < eol && http_is_lws[(unsigned char)*sov])
889 sov++;
890
891 for (h = cap_hdr; h; h = h->next) {
892 if ((h->namelen == col - sol) &&
893 (strncasecmp(sol, h->name, h->namelen) == 0)) {
894 if (cap[h->index] == NULL)
895 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200896 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +0100897
898 if (cap[h->index] == NULL) {
899 Alert("HTTP capture : out of memory.\n");
900 continue;
901 }
902
903 len = eol - sov;
904 if (len > h->len)
905 len = h->len;
906
907 memcpy(cap[h->index], sov, len);
908 cap[h->index][len]=0;
909 }
910 }
911 sol = eol + idx->v[cur_idx].cr + 1;
912 cur_idx = idx->v[cur_idx].next;
913 }
914}
915
916
Willy Tarreau42250582007-04-01 01:30:43 +0200917/* either we find an LF at <ptr> or we jump to <bad>.
918 */
919#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
920
921/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
922 * otherwise to <http_msg_ood> with <state> set to <st>.
923 */
924#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
925 ptr++; \
926 if (likely(ptr < end)) \
927 goto good; \
928 else { \
929 state = (st); \
930 goto http_msg_ood; \
931 } \
932 } while (0)
933
934
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935/*
Willy Tarreaua15645d2007-03-18 16:22:39 +0100936 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +0100937 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
938 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
939 * will give undefined results.
940 * Note that it is upon the caller's responsibility to ensure that ptr < end,
941 * and that msg->sol points to the beginning of the response.
942 * If a complete line is found (which implies that at least one CR or LF is
943 * found before <end>, the updated <ptr> is returned, otherwise NULL is
944 * returned indicating an incomplete line (which does not mean that parts have
945 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
946 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
947 * upon next call.
948 *
Willy Tarreau9cdde232007-05-02 20:58:19 +0200949 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +0100950 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
951 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +0200952 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +0100953 */
Willy Tarreaue69eada2008-01-27 00:34:10 +0100954const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf,
955 unsigned int state, const char *ptr, const char *end,
956 char **ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +0100957{
Willy Tarreau8973c702007-01-21 23:58:29 +0100958 switch (state) {
959 http_msg_rpver:
960 case HTTP_MSG_RPVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100961 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +0100962 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
963
964 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +0100965 msg->sl.st.v_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +0100966 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
967 }
Willy Tarreau7552c032009-03-01 11:10:40 +0100968 state = HTTP_MSG_ERROR;
969 break;
970
Willy Tarreau8973c702007-01-21 23:58:29 +0100971 http_msg_rpver_sp:
972 case HTTP_MSG_RPVER_SP:
973 if (likely(!HTTP_IS_LWS(*ptr))) {
974 msg->sl.st.c = ptr - msg_buf;
975 goto http_msg_rpcode;
976 }
977 if (likely(HTTP_IS_SPHT(*ptr)))
978 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
979 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +0100980 state = HTTP_MSG_ERROR;
981 break;
Willy Tarreau8973c702007-01-21 23:58:29 +0100982
983 http_msg_rpcode:
984 case HTTP_MSG_RPCODE:
985 if (likely(!HTTP_IS_LWS(*ptr)))
986 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
987
988 if (likely(HTTP_IS_SPHT(*ptr))) {
989 msg->sl.st.c_l = (ptr - msg_buf) - msg->sl.st.c;
990 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
991 }
992
993 /* so it's a CR/LF, so there is no reason phrase */
994 msg->sl.st.c_l = (ptr - msg_buf) - msg->sl.st.c;
995 http_msg_rsp_reason:
996 /* FIXME: should we support HTTP responses without any reason phrase ? */
997 msg->sl.st.r = ptr - msg_buf;
998 msg->sl.st.r_l = 0;
999 goto http_msg_rpline_eol;
1000
1001 http_msg_rpcode_sp:
1002 case HTTP_MSG_RPCODE_SP:
1003 if (likely(!HTTP_IS_LWS(*ptr))) {
1004 msg->sl.st.r = ptr - msg_buf;
1005 goto http_msg_rpreason;
1006 }
1007 if (likely(HTTP_IS_SPHT(*ptr)))
1008 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1009 /* so it's a CR/LF, so there is no reason phrase */
1010 goto http_msg_rsp_reason;
1011
1012 http_msg_rpreason:
1013 case HTTP_MSG_RPREASON:
1014 if (likely(!HTTP_IS_CRLF(*ptr)))
1015 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
1016 msg->sl.st.r_l = (ptr - msg_buf) - msg->sl.st.r;
1017 http_msg_rpline_eol:
1018 /* We have seen the end of line. Note that we do not
1019 * necessarily have the \n yet, but at least we know that we
1020 * have EITHER \r OR \n, otherwise the response would not be
1021 * complete. We can then record the response length and return
1022 * to the caller which will be able to register it.
1023 */
1024 msg->sl.st.l = ptr - msg->sol;
1025 return ptr;
1026
1027#ifdef DEBUG_FULL
1028 default:
1029 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1030 exit(1);
1031#endif
1032 }
1033
1034 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001035 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001036 if (ret_state)
1037 *ret_state = state;
1038 if (ret_ptr)
1039 *ret_ptr = (char *)ptr;
1040 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001041}
1042
1043
1044/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001045 * This function parses a request line between <ptr> and <end>, starting with
1046 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1047 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1048 * will give undefined results.
1049 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1050 * and that msg->sol points to the beginning of the request.
1051 * If a complete line is found (which implies that at least one CR or LF is
1052 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1053 * returned indicating an incomplete line (which does not mean that parts have
1054 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1055 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1056 * upon next call.
1057 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001058 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001059 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1060 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001061 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001062 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001063const char *http_parse_reqline(struct http_msg *msg, const char *msg_buf,
1064 unsigned int state, const char *ptr, const char *end,
1065 char **ret_ptr, unsigned int *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001066{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001067 switch (state) {
1068 http_msg_rqmeth:
1069 case HTTP_MSG_RQMETH:
1070 if (likely(HTTP_IS_TOKEN(*ptr)))
1071 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001072
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001073 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001074 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001075 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1076 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001077
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001078 if (likely(HTTP_IS_CRLF(*ptr))) {
1079 /* HTTP 0.9 request */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001080 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001081 http_msg_req09_uri:
1082 msg->sl.rq.u = ptr - msg_buf;
1083 http_msg_req09_uri_e:
1084 msg->sl.rq.u_l = (ptr - msg_buf) - msg->sl.rq.u;
1085 http_msg_req09_ver:
1086 msg->sl.rq.v = ptr - msg_buf;
1087 msg->sl.rq.v_l = 0;
1088 goto http_msg_rqline_eol;
1089 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001090 state = HTTP_MSG_ERROR;
1091 break;
1092
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001093 http_msg_rqmeth_sp:
1094 case HTTP_MSG_RQMETH_SP:
1095 if (likely(!HTTP_IS_LWS(*ptr))) {
1096 msg->sl.rq.u = ptr - msg_buf;
1097 goto http_msg_rquri;
1098 }
1099 if (likely(HTTP_IS_SPHT(*ptr)))
1100 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1101 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1102 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001103
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001104 http_msg_rquri:
1105 case HTTP_MSG_RQURI:
1106 if (likely(!HTTP_IS_LWS(*ptr)))
1107 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001108
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001109 if (likely(HTTP_IS_SPHT(*ptr))) {
1110 msg->sl.rq.u_l = (ptr - msg_buf) - msg->sl.rq.u;
1111 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1112 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001113
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001114 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1115 goto http_msg_req09_uri_e;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001116
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001117 http_msg_rquri_sp:
1118 case HTTP_MSG_RQURI_SP:
1119 if (likely(!HTTP_IS_LWS(*ptr))) {
1120 msg->sl.rq.v = ptr - msg_buf;
1121 goto http_msg_rqver;
1122 }
1123 if (likely(HTTP_IS_SPHT(*ptr)))
1124 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1125 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1126 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001127
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001128 http_msg_rqver:
1129 case HTTP_MSG_RQVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001130 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001131 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001132
1133 if (likely(HTTP_IS_CRLF(*ptr))) {
1134 msg->sl.rq.v_l = (ptr - msg_buf) - msg->sl.rq.v;
1135 http_msg_rqline_eol:
1136 /* We have seen the end of line. Note that we do not
1137 * necessarily have the \n yet, but at least we know that we
1138 * have EITHER \r OR \n, otherwise the request would not be
1139 * complete. We can then record the request length and return
1140 * to the caller which will be able to register it.
1141 */
1142 msg->sl.rq.l = ptr - msg->sol;
1143 return ptr;
1144 }
1145
1146 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001147 state = HTTP_MSG_ERROR;
1148 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001149
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001150#ifdef DEBUG_FULL
1151 default:
1152 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1153 exit(1);
1154#endif
1155 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001156
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001157 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001158 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001159 if (ret_state)
1160 *ret_state = state;
1161 if (ret_ptr)
1162 *ret_ptr = (char *)ptr;
1163 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001164}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001165
1166
Willy Tarreau8973c702007-01-21 23:58:29 +01001167/*
1168 * This function parses an HTTP message, either a request or a response,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001169 * depending on the initial msg->msg_state. It can be preempted everywhere
Willy Tarreau8973c702007-01-21 23:58:29 +01001170 * when data are missing and recalled at the exact same location with no
1171 * information loss. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001172 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
1173 * fields.
Willy Tarreau8973c702007-01-21 23:58:29 +01001174 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001175void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx)
1176{
Willy Tarreaue69eada2008-01-27 00:34:10 +01001177 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001178 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001179
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001180 state = msg->msg_state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001181 ptr = buf->lr;
1182 end = buf->r;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001183
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001184 if (unlikely(ptr >= end))
1185 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001186
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001187 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001188 /*
1189 * First, states that are specific to the response only.
1190 * We check them first so that request and headers are
1191 * closer to each other (accessed more often).
1192 */
1193 http_msg_rpbefore:
1194 case HTTP_MSG_RPBEFORE:
1195 if (likely(HTTP_IS_TOKEN(*ptr))) {
1196 if (likely(ptr == buf->data)) {
1197 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001198 msg->som = 0;
Willy Tarreau8973c702007-01-21 23:58:29 +01001199 } else {
1200#if PARSE_PRESERVE_EMPTY_LINES
1201 /* only skip empty leading lines, don't remove them */
1202 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001203 msg->som = ptr - buf->data;
Willy Tarreau8973c702007-01-21 23:58:29 +01001204#else
1205 /* Remove empty leading lines, as recommended by
1206 * RFC2616. This takes a lot of time because we
1207 * must move all the buffer backwards, but this
1208 * is rarely needed. The method above will be
1209 * cleaner when we'll be able to start sending
1210 * the request from any place in the buffer.
1211 */
1212 buf->lr = ptr;
1213 buffer_replace2(buf, buf->data, buf->lr, NULL, 0);
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001214 msg->som = 0;
Willy Tarreau8973c702007-01-21 23:58:29 +01001215 msg->sol = buf->data;
1216 ptr = buf->data;
1217 end = buf->r;
1218#endif
1219 }
1220 hdr_idx_init(idx);
1221 state = HTTP_MSG_RPVER;
1222 goto http_msg_rpver;
1223 }
1224
1225 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1226 goto http_msg_invalid;
1227
1228 if (unlikely(*ptr == '\n'))
1229 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1230 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1231 /* stop here */
1232
1233 http_msg_rpbefore_cr:
1234 case HTTP_MSG_RPBEFORE_CR:
1235 EXPECT_LF_HERE(ptr, http_msg_invalid);
1236 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1237 /* stop here */
1238
1239 http_msg_rpver:
1240 case HTTP_MSG_RPVER:
1241 case HTTP_MSG_RPVER_SP:
1242 case HTTP_MSG_RPCODE:
1243 case HTTP_MSG_RPCODE_SP:
1244 case HTTP_MSG_RPREASON:
Willy Tarreaua15645d2007-03-18 16:22:39 +01001245 ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001246 &buf->lr, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001247 if (unlikely(!ptr))
1248 return;
1249
1250 /* we have a full response and we know that we have either a CR
1251 * or an LF at <ptr>.
1252 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001253 //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 +01001254 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1255
1256 msg->sol = ptr;
1257 if (likely(*ptr == '\r'))
1258 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1259 goto http_msg_rpline_end;
1260
1261 http_msg_rpline_end:
1262 case HTTP_MSG_RPLINE_END:
1263 /* msg->sol must point to the first of CR or LF. */
1264 EXPECT_LF_HERE(ptr, http_msg_invalid);
1265 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1266 /* stop here */
1267
1268 /*
1269 * Second, states that are specific to the request only
1270 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001271 http_msg_rqbefore:
1272 case HTTP_MSG_RQBEFORE:
1273 if (likely(HTTP_IS_TOKEN(*ptr))) {
1274 if (likely(ptr == buf->data)) {
1275 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001276 msg->som = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001277 } else {
1278#if PARSE_PRESERVE_EMPTY_LINES
1279 /* only skip empty leading lines, don't remove them */
1280 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001281 msg->som = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001282#else
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001283 /* Remove empty leading lines, as recommended by
1284 * RFC2616. This takes a lot of time because we
1285 * must move all the buffer backwards, but this
1286 * is rarely needed. The method above will be
1287 * cleaner when we'll be able to start sending
1288 * the request from any place in the buffer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001289 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001290 buf->lr = ptr;
1291 buffer_replace2(buf, buf->data, buf->lr, NULL, 0);
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001292 msg->som = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001293 msg->sol = buf->data;
1294 ptr = buf->data;
1295 end = buf->r;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001296#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001297 }
Willy Tarreauf0d058e2007-01-25 12:03:42 +01001298 /* we will need this when keep-alive will be supported
1299 hdr_idx_init(idx);
1300 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001301 state = HTTP_MSG_RQMETH;
1302 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001303 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001304
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001305 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1306 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001307
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001308 if (unlikely(*ptr == '\n'))
1309 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1310 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001311 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001312
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001313 http_msg_rqbefore_cr:
1314 case HTTP_MSG_RQBEFORE_CR:
1315 EXPECT_LF_HERE(ptr, http_msg_invalid);
1316 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001317 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001318
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001319 http_msg_rqmeth:
1320 case HTTP_MSG_RQMETH:
1321 case HTTP_MSG_RQMETH_SP:
1322 case HTTP_MSG_RQURI:
1323 case HTTP_MSG_RQURI_SP:
1324 case HTTP_MSG_RQVER:
1325 ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001326 &buf->lr, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001327 if (unlikely(!ptr))
1328 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001329
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001330 /* we have a full request and we know that we have either a CR
1331 * or an LF at <ptr>.
1332 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001333 //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 +01001334 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001335
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001336 msg->sol = ptr;
1337 if (likely(*ptr == '\r'))
1338 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001339 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001340
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001341 http_msg_rqline_end:
1342 case HTTP_MSG_RQLINE_END:
1343 /* check for HTTP/0.9 request : no version information available.
1344 * msg->sol must point to the first of CR or LF.
1345 */
1346 if (unlikely(msg->sl.rq.v_l == 0))
1347 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001348
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001349 EXPECT_LF_HERE(ptr, http_msg_invalid);
1350 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001351 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001352
Willy Tarreau8973c702007-01-21 23:58:29 +01001353 /*
1354 * Common states below
1355 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001356 http_msg_hdr_first:
1357 case HTTP_MSG_HDR_FIRST:
1358 msg->sol = ptr;
1359 if (likely(!HTTP_IS_CRLF(*ptr))) {
1360 goto http_msg_hdr_name;
1361 }
1362
1363 if (likely(*ptr == '\r'))
1364 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1365 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001366
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001367 http_msg_hdr_name:
1368 case HTTP_MSG_HDR_NAME:
1369 /* assumes msg->sol points to the first char */
1370 if (likely(HTTP_IS_TOKEN(*ptr)))
1371 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001372
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001373 if (likely(*ptr == ':')) {
1374 msg->col = ptr - buf->data;
1375 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
1376 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001377
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001378 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001379
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001380 http_msg_hdr_l1_sp:
1381 case HTTP_MSG_HDR_L1_SP:
1382 /* assumes msg->sol points to the first char and msg->col to the colon */
1383 if (likely(HTTP_IS_SPHT(*ptr)))
1384 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001385
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001386 /* header value can be basically anything except CR/LF */
1387 msg->sov = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001388
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001389 if (likely(!HTTP_IS_CRLF(*ptr))) {
1390 goto http_msg_hdr_val;
1391 }
1392
1393 if (likely(*ptr == '\r'))
1394 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1395 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001396
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001397 http_msg_hdr_l1_lf:
1398 case HTTP_MSG_HDR_L1_LF:
1399 EXPECT_LF_HERE(ptr, http_msg_invalid);
1400 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001401
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001402 http_msg_hdr_l1_lws:
1403 case HTTP_MSG_HDR_L1_LWS:
1404 if (likely(HTTP_IS_SPHT(*ptr))) {
1405 /* replace HT,CR,LF with spaces */
1406 for (; buf->data+msg->sov < ptr; msg->sov++)
1407 buf->data[msg->sov] = ' ';
1408 goto http_msg_hdr_l1_sp;
1409 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001410 /* we had a header consisting only in spaces ! */
1411 msg->eol = buf->data + msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001412 goto http_msg_complete_header;
1413
1414 http_msg_hdr_val:
1415 case HTTP_MSG_HDR_VAL:
1416 /* assumes msg->sol points to the first char, msg->col to the
1417 * colon, and msg->sov points to the first character of the
1418 * value.
1419 */
1420 if (likely(!HTTP_IS_CRLF(*ptr)))
1421 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001422
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001423 msg->eol = ptr;
1424 /* Note: we could also copy eol into ->eoh so that we have the
1425 * real header end in case it ends with lots of LWS, but is this
1426 * really needed ?
1427 */
1428 if (likely(*ptr == '\r'))
1429 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1430 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001431
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001432 http_msg_hdr_l2_lf:
1433 case HTTP_MSG_HDR_L2_LF:
1434 EXPECT_LF_HERE(ptr, http_msg_invalid);
1435 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001436
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001437 http_msg_hdr_l2_lws:
1438 case HTTP_MSG_HDR_L2_LWS:
1439 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1440 /* LWS: replace HT,CR,LF with spaces */
1441 for (; msg->eol < ptr; msg->eol++)
1442 *msg->eol = ' ';
1443 goto http_msg_hdr_val;
1444 }
1445 http_msg_complete_header:
1446 /*
1447 * It was a new header, so the last one is finished.
1448 * Assumes msg->sol points to the first char, msg->col to the
1449 * colon, msg->sov points to the first character of the value
1450 * and msg->eol to the first CR or LF so we know how the line
1451 * ends. We insert last header into the index.
1452 */
1453 /*
1454 fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol);
1455 write(2, msg->sol, msg->eol-msg->sol);
1456 fprintf(stderr,"\n");
1457 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001458
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001459 if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r',
1460 idx, idx->tail) < 0))
1461 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001462
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001463 msg->sol = ptr;
1464 if (likely(!HTTP_IS_CRLF(*ptr))) {
1465 goto http_msg_hdr_name;
1466 }
1467
1468 if (likely(*ptr == '\r'))
1469 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1470 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001471
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001472 http_msg_last_lf:
1473 case HTTP_MSG_LAST_LF:
1474 /* Assumes msg->sol points to the first of either CR or LF */
1475 EXPECT_LF_HERE(ptr, http_msg_invalid);
1476 ptr++;
1477 buf->lr = ptr;
1478 msg->eoh = msg->sol - buf->data;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001479 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001480 return;
1481#ifdef DEBUG_FULL
1482 default:
1483 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1484 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001485#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001486 }
1487 http_msg_ood:
1488 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001489 msg->msg_state = state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001490 buf->lr = ptr;
1491 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001492
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001493 http_msg_invalid:
1494 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001495 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau7552c032009-03-01 11:10:40 +01001496 buf->lr = ptr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001497 return;
1498}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001499
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001500/* This function performs all the processing enabled for the current request.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001501 * It returns 1 if the processing can continue on next analysers, or zero if it
1502 * needs more data, encounters an error, or wants to immediately abort the
1503 * request. It relies on buffers flags, and updates s->req->analysers. Its
1504 * behaviour is rather simple:
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001505 * - all enabled analysers are called in turn from the lower to the higher
1506 * bit.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001507 * - the analyser must check for errors and timeouts, and react as expected.
1508 * It does not have to close anything upon error, the caller will.
1509 * - if the analyser does not have enough data, it must return 0without calling
1510 * other ones. It should also probably do a buffer_write_dis() to ensure
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001511 * that unprocessed data will not be forwarded. But that probably depends on
Willy Tarreauedcf6682008-11-30 23:15:34 +01001512 * the protocol.
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001513 * - if an analyser has enough data, it just has to pass on to the next
Willy Tarreauedcf6682008-11-30 23:15:34 +01001514 * analyser without using buffer_write_dis() (enabled by default).
Willy Tarreau41f40ed2008-08-21 10:05:00 +02001515 * - if an analyser thinks it has no added value anymore staying here, it must
1516 * reset its bit from the analysers flags in order not to be called anymore.
1517 *
1518 * In the future, analysers should be able to indicate that they want to be
1519 * called after XXX bytes have been received (or transfered), and the min of
1520 * all's wishes will be used to ring back (unless a special condition occurs).
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001521 */
Willy Tarreau59234e92008-11-30 23:51:27 +01001522int http_process_request(struct session *s, struct buffer *req)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001523{
Willy Tarreau59234e92008-11-30 23:51:27 +01001524 /*
1525 * We will parse the partial (or complete) lines.
1526 * We will check the request syntax, and also join multi-line
1527 * headers. An index of all the lines will be elaborated while
1528 * parsing.
1529 *
1530 * For the parsing, we use a 28 states FSM.
1531 *
1532 * Here is the information we currently have :
Willy Tarreauf073a832009-03-01 23:21:47 +01001533 * req->data + msg->som = beginning of request
Willy Tarreau59234e92008-11-30 23:51:27 +01001534 * req->data + req->eoh = end of processed headers / start of current one
1535 * req->data + req->eol = end of current header or line (LF or CRLF)
1536 * req->lr = first non-visited byte
1537 * req->r = end of data
1538 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001539
Willy Tarreau59234e92008-11-30 23:51:27 +01001540 int cur_idx;
1541 struct http_txn *txn = &s->txn;
1542 struct http_msg *msg = &txn->req;
1543 struct proxy *cur_proxy;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001544
Willy Tarreau6bf17362009-02-24 10:48:35 +01001545 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1546 now_ms, __FUNCTION__,
1547 s,
1548 req,
1549 req->rex, req->wex,
1550 req->flags,
1551 req->l,
1552 req->analysers);
1553
Willy Tarreau59234e92008-11-30 23:51:27 +01001554 if (likely(req->lr < req->r))
1555 http_msg_analyzer(req, msg, &txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001556
Willy Tarreau59234e92008-11-30 23:51:27 +01001557 /* 1: we might have to print this header in debug mode */
1558 if (unlikely((global.mode & MODE_DEBUG) &&
1559 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
1560 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
1561 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001562
Willy Tarreau59234e92008-11-30 23:51:27 +01001563 sol = req->data + msg->som;
1564 eol = sol + msg->sl.rq.l;
1565 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01001566
Willy Tarreau59234e92008-11-30 23:51:27 +01001567 sol += hdr_idx_first_pos(&txn->hdr_idx);
1568 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001569
Willy Tarreau59234e92008-11-30 23:51:27 +01001570 while (cur_idx) {
1571 eol = sol + txn->hdr_idx.v[cur_idx].len;
1572 debug_hdr("clihdr", s, sol, eol);
1573 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
1574 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001575 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001576 }
1577
Willy Tarreau58f10d72006-12-04 02:26:12 +01001578
Willy Tarreau59234e92008-11-30 23:51:27 +01001579 /*
1580 * Now we quickly check if we have found a full valid request.
1581 * If not so, we check the FD and buffer states before leaving.
1582 * A full request is indicated by the fact that we have seen
1583 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
1584 * requests are checked first.
1585 *
1586 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001587
Willy Tarreau59234e92008-11-30 23:51:27 +01001588 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01001589 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01001590 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001591 */
Willy Tarreau59234e92008-11-30 23:51:27 +01001592 if (unlikely(msg->msg_state == HTTP_MSG_ERROR))
1593 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001594
Willy Tarreau59234e92008-11-30 23:51:27 +01001595 /* 1: Since we are in header mode, if there's no space
1596 * left for headers, we won't be able to free more
1597 * later, so the session will never terminate. We
1598 * must terminate it now.
1599 */
1600 if (unlikely(req->flags & BF_FULL)) {
1601 /* FIXME: check if URI is set and return Status
1602 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001603 */
Willy Tarreau59234e92008-11-30 23:51:27 +01001604 goto return_bad_req;
1605 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001606
Willy Tarreau59234e92008-11-30 23:51:27 +01001607 /* 2: have we encountered a read error ? */
1608 else if (req->flags & BF_READ_ERROR) {
1609 /* we cannot return any message on error */
1610 msg->msg_state = HTTP_MSG_ERROR;
1611 req->analysers = 0;
1612 s->fe->failed_req++;
1613 if (!(s->flags & SN_ERR_MASK))
1614 s->flags |= SN_ERR_CLICL;
1615 if (!(s->flags & SN_FINST_MASK))
1616 s->flags |= SN_FINST_R;
1617 return 0;
1618 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02001619
Willy Tarreau59234e92008-11-30 23:51:27 +01001620 /* 3: has the read timeout expired ? */
1621 else if (req->flags & BF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
1622 /* read timeout : give up with an error message. */
1623 txn->status = 408;
1624 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
1625 msg->msg_state = HTTP_MSG_ERROR;
1626 req->analysers = 0;
1627 s->fe->failed_req++;
1628 if (!(s->flags & SN_ERR_MASK))
1629 s->flags |= SN_ERR_CLITO;
1630 if (!(s->flags & SN_FINST_MASK))
1631 s->flags |= SN_FINST_R;
1632 return 0;
1633 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001634
Willy Tarreau59234e92008-11-30 23:51:27 +01001635 /* 4: have we encountered a close ? */
1636 else if (req->flags & BF_SHUTR) {
1637 txn->status = 400;
1638 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
1639 msg->msg_state = HTTP_MSG_ERROR;
1640 req->analysers = 0;
1641 s->fe->failed_req++;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001642
Willy Tarreau59234e92008-11-30 23:51:27 +01001643 if (!(s->flags & SN_ERR_MASK))
1644 s->flags |= SN_ERR_CLICL;
1645 if (!(s->flags & SN_FINST_MASK))
1646 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02001647 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001648 }
1649
Willy Tarreau59234e92008-11-30 23:51:27 +01001650 buffer_write_dis(req);
1651 /* just set the request timeout once at the beginning of the request */
1652 if (!tick_isset(req->analyse_exp))
1653 req->analyse_exp = tick_add_ifset(now_ms, s->fe->timeout.httpreq);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001654
Willy Tarreau59234e92008-11-30 23:51:27 +01001655 /* we're not ready yet */
1656 return 0;
1657 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001658
Willy Tarreau67f0eea2008-08-10 22:55:22 +02001659
Willy Tarreau59234e92008-11-30 23:51:27 +01001660 /****************************************************************
1661 * More interesting part now : we know that we have a complete *
1662 * request which at least looks like HTTP. We have an indicator *
1663 * of each header's length, so we can parse them quickly. *
1664 ****************************************************************/
Willy Tarreau9cdde232007-05-02 20:58:19 +02001665
Willy Tarreau59234e92008-11-30 23:51:27 +01001666 req->analysers &= ~AN_REQ_HTTP_HDR;
1667 req->analyse_exp = TICK_ETERNITY;
1668
1669 /* ensure we keep this pointer to the beginning of the message */
1670 msg->sol = req->data + msg->som;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001671
Willy Tarreau59234e92008-11-30 23:51:27 +01001672 /*
1673 * 1: identify the method
1674 */
1675 txn->meth = find_http_meth(&req->data[msg->som], msg->sl.rq.m_l);
1676
1677 /* we can make use of server redirect on GET and HEAD */
1678 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
1679 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001680
Willy Tarreau59234e92008-11-30 23:51:27 +01001681 /*
1682 * 2: check if the URI matches the monitor_uri.
1683 * We have to do this for every request which gets in, because
1684 * the monitor-uri is defined by the frontend.
1685 */
1686 if (unlikely((s->fe->monitor_uri_len != 0) &&
1687 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
1688 !memcmp(&req->data[msg->sl.rq.u],
1689 s->fe->monitor_uri,
1690 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01001691 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01001692 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01001693 */
Willy Tarreau59234e92008-11-30 23:51:27 +01001694 struct acl_cond *cond;
1695 cur_proxy = s->fe;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001696
Willy Tarreau59234e92008-11-30 23:51:27 +01001697 s->flags |= SN_MONITOR;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001698
Willy Tarreau59234e92008-11-30 23:51:27 +01001699 /* Check if we want to fail this monitor request or not */
1700 list_for_each_entry(cond, &cur_proxy->mon_fail_cond, list) {
1701 int ret = acl_exec_cond(cond, cur_proxy, s, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02001702
Willy Tarreau59234e92008-11-30 23:51:27 +01001703 ret = acl_pass(ret);
1704 if (cond->pol == ACL_COND_UNLESS)
1705 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001706
Willy Tarreau59234e92008-11-30 23:51:27 +01001707 if (ret) {
1708 /* we fail this request, let's return 503 service unavail */
1709 txn->status = 503;
1710 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_503));
1711 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001712 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001713 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01001714
Willy Tarreau59234e92008-11-30 23:51:27 +01001715 /* nothing to fail, let's reply normaly */
1716 txn->status = 200;
1717 stream_int_retnclose(req->prod, &http_200_chunk);
1718 goto return_prx_cond;
1719 }
1720
1721 /*
1722 * 3: Maybe we have to copy the original REQURI for the logs ?
1723 * Note: we cannot log anymore if the request has been
1724 * classified as invalid.
1725 */
1726 if (unlikely(s->logs.logwait & LW_REQ)) {
1727 /* we have a complete HTTP request that we must log */
1728 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
1729 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001730
Willy Tarreau59234e92008-11-30 23:51:27 +01001731 if (urilen >= REQURI_LEN)
1732 urilen = REQURI_LEN - 1;
1733 memcpy(txn->uri, &req->data[msg->som], urilen);
1734 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001735
Willy Tarreau59234e92008-11-30 23:51:27 +01001736 if (!(s->logs.logwait &= ~LW_REQ))
1737 s->do_log(s);
1738 } else {
1739 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001740 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001741 }
Willy Tarreau06619262006-12-17 08:37:22 +01001742
Willy Tarreau59234e92008-11-30 23:51:27 +01001743 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
1744 if (unlikely(msg->sl.rq.v_l == 0)) {
1745 int delta;
1746 char *cur_end;
1747 msg->sol = req->data + msg->som;
1748 cur_end = msg->sol + msg->sl.rq.l;
1749 delta = 0;
Willy Tarreau06619262006-12-17 08:37:22 +01001750
Willy Tarreau59234e92008-11-30 23:51:27 +01001751 if (msg->sl.rq.u_l == 0) {
1752 /* if no URI was set, add "/" */
1753 delta = buffer_replace2(req, cur_end, cur_end, " /", 2);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001754 cur_end += delta;
Willy Tarreau59234e92008-11-30 23:51:27 +01001755 msg->eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001756 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001757 /* add HTTP version */
1758 delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11);
1759 msg->eoh += delta;
1760 cur_end += delta;
1761 cur_end = (char *)http_parse_reqline(msg, req->data,
1762 HTTP_MSG_RQMETH,
1763 msg->sol, cur_end + 1,
1764 NULL, NULL);
1765 if (unlikely(!cur_end))
1766 goto return_bad_req;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001767
Willy Tarreau59234e92008-11-30 23:51:27 +01001768 /* we have a full HTTP/1.0 request now and we know that
1769 * we have either a CR or an LF at <ptr>.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001770 */
Willy Tarreau59234e92008-11-30 23:51:27 +01001771 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1772 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001773
1774
Willy Tarreau59234e92008-11-30 23:51:27 +01001775 /* 5: we may need to capture headers */
1776 if (unlikely((s->logs.logwait & LW_REQHDR) && s->fe->req_cap))
1777 capture_headers(req->data + msg->som, &txn->hdr_idx,
1778 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02001779
Willy Tarreau59234e92008-11-30 23:51:27 +01001780 /*
1781 * 6: we will have to evaluate the filters.
1782 * As opposed to version 1.2, now they will be evaluated in the
1783 * filters order and not in the header order. This means that
1784 * each filter has to be validated among all headers.
1785 *
1786 * We can now check whether we want to switch to another
1787 * backend, in which case we will re-check the backend's
1788 * filters and various options. In order to support 3-level
1789 * switching, here's how we should proceed :
1790 *
1791 * a) run be.
1792 * if (switch) then switch ->be to the new backend.
1793 * b) run be if (be != fe).
1794 * There cannot be any switch from there, so ->be cannot be
1795 * changed anymore.
1796 *
1797 * => filters always apply to ->be, then ->be may change.
1798 *
1799 * The response path will be able to apply either ->be, or
1800 * ->be then ->fe filters in order to match the reverse of
1801 * the forward sequence.
1802 */
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001803
Willy Tarreau59234e92008-11-30 23:51:27 +01001804 do {
1805 struct acl_cond *cond;
1806 struct redirect_rule *rule;
1807 struct proxy *rule_set = s->be;
1808 cur_proxy = s->be;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001809
Willy Tarreau59234e92008-11-30 23:51:27 +01001810 /* first check whether we have some ACLs set to redirect this request */
1811 list_for_each_entry(rule, &cur_proxy->redirect_rules, list) {
1812 int ret = acl_exec_cond(rule->cond, cur_proxy, s, txn, ACL_DIR_REQ);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001813
Willy Tarreau59234e92008-11-30 23:51:27 +01001814 ret = acl_pass(ret);
1815 if (rule->cond->pol == ACL_COND_UNLESS)
1816 ret = !ret;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001817
Willy Tarreau59234e92008-11-30 23:51:27 +01001818 if (ret) {
1819 struct chunk rdr = { trash, 0 };
1820 const char *msg_fmt;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001821
Willy Tarreau59234e92008-11-30 23:51:27 +01001822 /* build redirect message */
1823 switch(rule->code) {
1824 case 303:
1825 rdr.len = strlen(HTTP_303);
1826 msg_fmt = HTTP_303;
1827 break;
1828 case 301:
1829 rdr.len = strlen(HTTP_301);
1830 msg_fmt = HTTP_301;
1831 break;
1832 case 302:
1833 default:
1834 rdr.len = strlen(HTTP_302);
1835 msg_fmt = HTTP_302;
1836 break;
1837 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001838
Willy Tarreau59234e92008-11-30 23:51:27 +01001839 if (unlikely(rdr.len > sizeof(trash)))
1840 goto return_bad_req;
1841 memcpy(rdr.str, msg_fmt, rdr.len);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001842
Willy Tarreau59234e92008-11-30 23:51:27 +01001843 switch(rule->type) {
1844 case REDIRECT_TYPE_PREFIX: {
1845 const char *path;
1846 int pathlen;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001847
Willy Tarreau59234e92008-11-30 23:51:27 +01001848 path = http_get_path(txn);
1849 /* build message using path */
1850 if (path) {
1851 pathlen = txn->req.sl.rq.u_l + (txn->req.sol+txn->req.sl.rq.u) - path;
Willy Tarreau79da4692008-11-19 20:03:04 +01001852 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
1853 int qs = 0;
1854 while (qs < pathlen) {
1855 if (path[qs] == '?') {
1856 pathlen = qs;
1857 break;
1858 }
1859 qs++;
1860 }
1861 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001862 } else {
1863 path = "/";
1864 pathlen = 1;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001865 }
1866
Willy Tarreau59234e92008-11-30 23:51:27 +01001867 if (rdr.len + rule->rdr_len + pathlen > sizeof(trash) - 4)
1868 goto return_bad_req;
1869
Willy Tarreaufe651a52008-11-19 21:15:17 +01001870 /* add prefix. Note that if prefix == "/", we don't want to
1871 * add anything, otherwise it makes it hard for the user to
1872 * configure a self-redirection.
1873 */
1874 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
1875 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
1876 rdr.len += rule->rdr_len;
1877 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001878
Willy Tarreau59234e92008-11-30 23:51:27 +01001879 /* add path */
1880 memcpy(rdr.str + rdr.len, path, pathlen);
1881 rdr.len += pathlen;
1882 break;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001883 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001884 case REDIRECT_TYPE_LOCATION:
1885 default:
1886 if (rdr.len + rule->rdr_len > sizeof(trash) - 4)
1887 goto return_bad_req;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001888
Willy Tarreau59234e92008-11-30 23:51:27 +01001889 /* add location */
1890 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
1891 rdr.len += rule->rdr_len;
1892 break;
1893 }
Willy Tarreau11382812008-07-09 16:18:21 +02001894
Willy Tarreau0140f252008-11-19 21:07:09 +01001895 if (rule->cookie_len) {
1896 memcpy(rdr.str + rdr.len, "\r\nSet-Cookie: ", 14);
1897 rdr.len += 14;
1898 memcpy(rdr.str + rdr.len, rule->cookie_str, rule->cookie_len);
1899 rdr.len += rule->cookie_len;
1900 memcpy(rdr.str + rdr.len, "\r\n", 2);
1901 rdr.len += 2;
1902 }
1903
Willy Tarreau59234e92008-11-30 23:51:27 +01001904 /* add end of headers */
1905 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
1906 rdr.len += 4;
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02001907
Willy Tarreau59234e92008-11-30 23:51:27 +01001908 txn->status = rule->code;
1909 /* let's log the request time */
1910 s->logs.tv_request = now;
1911 stream_int_retnclose(req->prod, &rdr);
1912 goto return_prx_cond;
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02001913 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001914 }
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02001915
Willy Tarreau59234e92008-11-30 23:51:27 +01001916 /* first check whether we have some ACLs set to block this request */
1917 list_for_each_entry(cond, &cur_proxy->block_cond, list) {
1918 int ret = acl_exec_cond(cond, cur_proxy, s, txn, ACL_DIR_REQ);
Willy Tarreau53b6c742006-12-17 13:37:46 +01001919
Willy Tarreau59234e92008-11-30 23:51:27 +01001920 ret = acl_pass(ret);
1921 if (cond->pol == ACL_COND_UNLESS)
1922 ret = !ret;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01001923
Willy Tarreau59234e92008-11-30 23:51:27 +01001924 if (ret) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01001925 txn->status = 403;
Willy Tarreau06619262006-12-17 08:37:22 +01001926 /* let's log the request time */
Willy Tarreau59234e92008-11-30 23:51:27 +01001927 s->logs.tv_request = now;
1928 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreau06619262006-12-17 08:37:22 +01001929 goto return_prx_cond;
1930 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001931 }
1932
1933 /* try headers filters */
1934 if (rule_set->req_exp != NULL) {
1935 if (apply_filters_to_request(s, req, rule_set->req_exp) < 0)
1936 goto return_bad_req;
1937 }
1938
1939 if (!(s->flags & SN_BE_ASSIGNED) && (s->be != cur_proxy)) {
1940 /* to ensure correct connection accounting on
1941 * the backend, we count the connection for the
1942 * one managing the queue.
1943 */
1944 s->be->beconn++;
1945 if (s->be->beconn > s->be->beconn_max)
1946 s->be->beconn_max = s->be->beconn;
Willy Tarreau7f062c42009-03-05 18:43:00 +01001947 proxy_inc_be_ctr(s->be);
Willy Tarreau59234e92008-11-30 23:51:27 +01001948 s->flags |= SN_BE_ASSIGNED;
1949 }
Willy Tarreau06619262006-12-17 08:37:22 +01001950
Willy Tarreau59234e92008-11-30 23:51:27 +01001951 /* has the request been denied ? */
1952 if (txn->flags & TX_CLDENY) {
1953 /* no need to go further */
1954 txn->status = 403;
1955 /* let's log the request time */
1956 s->logs.tv_request = now;
1957 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
1958 goto return_prx_cond;
1959 }
Willy Tarreau06619262006-12-17 08:37:22 +01001960
Willy Tarreau59234e92008-11-30 23:51:27 +01001961 /* We might have to check for "Connection:" */
1962 if (((s->fe->options | s->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
1963 !(s->flags & SN_CONN_CLOSED)) {
1964 char *cur_ptr, *cur_end, *cur_next;
1965 int cur_idx, old_idx, delta, val;
1966 struct hdr_idx_elem *cur_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001967
Willy Tarreau59234e92008-11-30 23:51:27 +01001968 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
1969 old_idx = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001970
Willy Tarreau59234e92008-11-30 23:51:27 +01001971 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
1972 cur_hdr = &txn->hdr_idx.v[cur_idx];
1973 cur_ptr = cur_next;
1974 cur_end = cur_ptr + cur_hdr->len;
1975 cur_next = cur_end + cur_hdr->cr + 1;
1976
1977 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
1978 if (val) {
1979 /* 3 possibilities :
1980 * - we have already set Connection: close,
1981 * so we remove this line.
1982 * - we have not yet set Connection: close,
1983 * but this line indicates close. We leave
1984 * it untouched and set the flag.
1985 * - we have not yet set Connection: close,
1986 * and this line indicates non-close. We
1987 * replace it.
1988 */
1989 if (s->flags & SN_CONN_CLOSED) {
1990 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
1991 txn->req.eoh += delta;
1992 cur_next += delta;
1993 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
1994 txn->hdr_idx.used--;
1995 cur_hdr->len = 0;
1996 } else {
1997 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
1998 delta = buffer_replace2(req, cur_ptr + val, cur_end,
1999 "close", 5);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002000 cur_next += delta;
Willy Tarreau59234e92008-11-30 23:51:27 +01002001 cur_hdr->len += delta;
2002 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002003 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002004 s->flags |= SN_CONN_CLOSED;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002005 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002006 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002007 old_idx = cur_idx;
Willy Tarreau06619262006-12-17 08:37:22 +01002008 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002009 }
2010 /* add request headers from the rule sets in the same order */
2011 for (cur_idx = 0; cur_idx < rule_set->nb_reqadd; cur_idx++) {
2012 if (unlikely(http_header_add_tail(req,
2013 &txn->req,
2014 &txn->hdr_idx,
2015 rule_set->req_add[cur_idx])) < 0)
2016 goto return_bad_req;
2017 }
Willy Tarreaub2513902006-12-17 14:52:38 +01002018
Willy Tarreau59234e92008-11-30 23:51:27 +01002019 /* check if stats URI was requested, and if an auth is needed */
2020 if (rule_set->uri_auth != NULL &&
2021 (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)) {
2022 /* we have to check the URI and auth for this request.
2023 * FIXME!!! that one is rather dangerous, we want to
2024 * make it follow standard rules (eg: clear req->analysers).
2025 */
2026 if (stats_check_uri_auth(s, rule_set)) {
2027 req->analysers = 0;
2028 return 0;
Willy Tarreaub2513902006-12-17 14:52:38 +01002029 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002030 }
Willy Tarreaub2513902006-12-17 14:52:38 +01002031
Willy Tarreau59234e92008-11-30 23:51:27 +01002032 /* now check whether we have some switching rules for this request */
2033 if (!(s->flags & SN_BE_ASSIGNED)) {
2034 struct switching_rule *rule;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002035
Willy Tarreau59234e92008-11-30 23:51:27 +01002036 list_for_each_entry(rule, &cur_proxy->switching_rules, list) {
2037 int ret;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002038
Willy Tarreau59234e92008-11-30 23:51:27 +01002039 ret = acl_exec_cond(rule->cond, cur_proxy, s, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002040
Willy Tarreau59234e92008-11-30 23:51:27 +01002041 ret = acl_pass(ret);
2042 if (rule->cond->pol == ACL_COND_UNLESS)
2043 ret = !ret;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002044
Willy Tarreau59234e92008-11-30 23:51:27 +01002045 if (ret) {
2046 s->be = rule->be.backend;
2047 s->be->beconn++;
2048 if (s->be->beconn > s->be->beconn_max)
2049 s->be->beconn_max = s->be->beconn;
Willy Tarreau7f062c42009-03-05 18:43:00 +01002050 proxy_inc_be_ctr(s->be);
Willy Tarreau6e4261e2007-09-18 18:36:05 +02002051
Willy Tarreau59234e92008-11-30 23:51:27 +01002052 /* assign new parameters to the session from the new backend */
2053 s->rep->rto = s->req->wto = s->be->timeout.server;
2054 s->req->cto = s->be->timeout.connect;
2055 s->conn_retries = s->be->conn_retries;
2056 s->flags |= SN_BE_ASSIGNED;
2057 break;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002058 }
2059 }
Willy Tarreauf1221aa2006-12-17 22:14:12 +01002060 }
2061
Willy Tarreau59234e92008-11-30 23:51:27 +01002062 if (!(s->flags & SN_BE_ASSIGNED) && cur_proxy->defbe.be) {
2063 /* No backend was set, but there was a default
2064 * backend set in the frontend, so we use it and
2065 * loop again.
2066 */
2067 s->be = cur_proxy->defbe.be;
2068 s->be->beconn++;
2069 if (s->be->beconn > s->be->beconn_max)
2070 s->be->beconn_max = s->be->beconn;
Willy Tarreau7f062c42009-03-05 18:43:00 +01002071 proxy_inc_be_ctr(s->be);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002072
Willy Tarreau59234e92008-11-30 23:51:27 +01002073 /* assign new parameters to the session from the new backend */
2074 s->rep->rto = s->req->wto = s->be->timeout.server;
2075 s->req->cto = s->be->timeout.connect;
2076 s->conn_retries = s->be->conn_retries;
2077 s->flags |= SN_BE_ASSIGNED;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01002078 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002079 } while (s->be != cur_proxy); /* we loop only if s->be has changed */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002080
Willy Tarreau59234e92008-11-30 23:51:27 +01002081 if (!(s->flags & SN_BE_ASSIGNED)) {
2082 /* To ensure correct connection accounting on
2083 * the backend, we count the connection for the
2084 * one managing the queue.
Willy Tarreau06619262006-12-17 08:37:22 +01002085 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002086 s->be->beconn++;
2087 if (s->be->beconn > s->be->beconn_max)
2088 s->be->beconn_max = s->be->beconn;
Willy Tarreau7f062c42009-03-05 18:43:00 +01002089 proxy_inc_be_ctr(s->be);
Willy Tarreau59234e92008-11-30 23:51:27 +01002090 s->flags |= SN_BE_ASSIGNED;
2091 }
Willy Tarreau06619262006-12-17 08:37:22 +01002092
Willy Tarreau59234e92008-11-30 23:51:27 +01002093 /*
2094 * Right now, we know that we have processed the entire headers
2095 * and that unwanted requests have been filtered out. We can do
2096 * whatever we want with the remaining request. Also, now we
2097 * may have separate values for ->fe, ->be.
2098 */
Willy Tarreau06619262006-12-17 08:37:22 +01002099
Willy Tarreau59234e92008-11-30 23:51:27 +01002100 /*
2101 * If HTTP PROXY is set we simply get remote server address
2102 * parsing incoming request.
2103 */
2104 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
2105 url2sa(req->data + msg->sl.rq.u, msg->sl.rq.u_l, &s->srv_addr);
2106 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002107
Willy Tarreau59234e92008-11-30 23:51:27 +01002108 /*
2109 * 7: the appsession cookie was looked up very early in 1.2,
2110 * so let's do the same now.
2111 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002112
Willy Tarreau59234e92008-11-30 23:51:27 +01002113 /* It needs to look into the URI */
2114 if (s->be->appsession_name) {
2115 get_srv_from_appsession(s, &req->data[msg->som], msg->sl.rq.l);
2116 }
Willy Tarreau45e73e32006-12-17 00:05:15 +01002117
Willy Tarreau59234e92008-11-30 23:51:27 +01002118 /*
2119 * 8: Now we can work with the cookies.
2120 * Note that doing so might move headers in the request, but
2121 * the fields will stay coherent and the URI will not move.
2122 * This should only be performed in the backend.
2123 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02002124 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01002125 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
2126 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002127
Willy Tarreau59234e92008-11-30 23:51:27 +01002128 /*
2129 * 9: add X-Forwarded-For if either the frontend or the backend
2130 * asks for it.
2131 */
2132 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
2133 if (s->cli_addr.ss_family == AF_INET) {
2134 /* Add an X-Forwarded-For header unless the source IP is
2135 * in the 'except' network range.
2136 */
2137 if ((!s->fe->except_mask.s_addr ||
2138 (((struct sockaddr_in *)&s->cli_addr)->sin_addr.s_addr & s->fe->except_mask.s_addr)
2139 != s->fe->except_net.s_addr) &&
2140 (!s->be->except_mask.s_addr ||
2141 (((struct sockaddr_in *)&s->cli_addr)->sin_addr.s_addr & s->be->except_mask.s_addr)
2142 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01002143 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01002144 unsigned char *pn;
2145 pn = (unsigned char *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02002146
2147 /* Note: we rely on the backend to get the header name to be used for
2148 * x-forwarded-for, because the header is really meant for the backends.
2149 * However, if the backend did not specify any option, we have to rely
2150 * on the frontend's header name.
2151 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002152 if (s->be->fwdfor_hdr_len) {
2153 len = s->be->fwdfor_hdr_len;
2154 memcpy(trash, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02002155 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01002156 len = s->fe->fwdfor_hdr_len;
2157 memcpy(trash, s->fe->fwdfor_hdr_name, len);
2158 }
2159 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01002160
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01002161 if (unlikely(http_header_add_tail2(req, &txn->req,
2162 &txn->hdr_idx, trash, len)) < 0)
Willy Tarreau06619262006-12-17 08:37:22 +01002163 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01002164 }
2165 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002166 else if (s->cli_addr.ss_family == AF_INET6) {
2167 /* FIXME: for the sake of completeness, we should also support
2168 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002169 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002170 int len;
2171 char pn[INET6_ADDRSTRLEN];
2172 inet_ntop(AF_INET6,
2173 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
2174 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002175
Willy Tarreau59234e92008-11-30 23:51:27 +01002176 /* Note: we rely on the backend to get the header name to be used for
2177 * x-forwarded-for, because the header is really meant for the backends.
2178 * However, if the backend did not specify any option, we have to rely
2179 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002180 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002181 if (s->be->fwdfor_hdr_len) {
2182 len = s->be->fwdfor_hdr_len;
2183 memcpy(trash, s->be->fwdfor_hdr_name, len);
2184 } else {
2185 len = s->fe->fwdfor_hdr_len;
2186 memcpy(trash, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002187 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002188 len += sprintf(trash + len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02002189
Willy Tarreau59234e92008-11-30 23:51:27 +01002190 if (unlikely(http_header_add_tail2(req, &txn->req,
2191 &txn->hdr_idx, trash, len)) < 0)
2192 goto return_bad_req;
2193 }
2194 }
2195
2196 /*
2197 * 10: add "Connection: close" if needed and not yet set.
2198 * Note that we do not need to add it in case of HTTP/1.0.
2199 */
2200 if (!(s->flags & SN_CONN_CLOSED) &&
2201 ((s->fe->options | s->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
2202 if ((unlikely(msg->sl.rq.v_l != 8) ||
2203 unlikely(req->data[msg->som + msg->sl.rq.v + 7] != '0')) &&
2204 unlikely(http_header_add_tail2(req, &txn->req, &txn->hdr_idx,
2205 "Connection: close", 17)) < 0)
2206 goto return_bad_req;
2207 s->flags |= SN_CONN_CLOSED;
2208 }
2209 /* Before we switch to data, was assignment set in manage_client_side_cookie?
2210 * If not assigned, perhaps we are balancing on url_param, but this is a
2211 * POST; and the parameters are in the body, maybe scan there to find our server.
2212 * (unless headers overflowed the buffer?)
2213 */
2214 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
2215 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
2216 s->be->url_param_post_limit != 0 && !(req->flags & BF_FULL) &&
2217 memchr(msg->sol + msg->sl.rq.u, '?', msg->sl.rq.u_l) == NULL) {
2218 /* are there enough bytes here? total == l || r || rlim ?
2219 * len is unsigned, but eoh is int,
2220 * how many bytes of body have we received?
2221 * eoh is the first empty line of the header
2222 */
2223 /* already established CRLF or LF at eoh, move to start of message, find message length in buffer */
2224 unsigned long len = req->l - (msg->sol[msg->eoh] == '\r' ? msg->eoh + 2 : msg->eoh + 1);
2225
2226 /* If we have HTTP/1.1 and Expect: 100-continue, then abort.
2227 * We can't assume responsibility for the server's decision,
2228 * on this URI and header set. See rfc2616: 14.20, 8.2.3,
2229 * We also can't change our mind later, about which server to choose, so round robin.
2230 */
2231 if ((likely(msg->sl.rq.v_l == 8) && req->data[msg->som + msg->sl.rq.v + 7] == '1')) {
2232 struct hdr_ctx ctx;
2233 ctx.idx = 0;
2234 /* Expect is allowed in 1.1, look for it */
2235 http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx);
2236 if (ctx.idx != 0 &&
2237 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0))
2238 /* We can't reliablly stall and wait for data, because of
2239 * .NET clients that don't conform to rfc2616; so, no need for
2240 * the next block to check length expectations.
2241 * We could send 100 status back to the client, but then we need to
2242 * re-write headers, and send the message. And this isn't the right
2243 * place for that action.
2244 * TODO: support Expect elsewhere and delete this block.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002245 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002246 goto end_check_maybe_wait_for_body;
2247 }
2248
2249 if (likely(len > s->be->url_param_post_limit)) {
2250 /* nothing to do, we got enough */
2251 } else {
2252 /* limit implies we are supposed to need this many bytes
2253 * to find the parameter. Let's see how many bytes we can wait for.
2254 */
2255 long long hint = len;
2256 struct hdr_ctx ctx;
2257 ctx.idx = 0;
2258 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx);
2259 if (ctx.idx && ctx.vlen >= 7 && strncasecmp(ctx.line+ctx.val, "chunked", 7) == 0) {
2260 buffer_write_dis(req);
2261 req->analysers |= AN_REQ_HTTP_BODY;
2262 }
2263 else {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002264 ctx.idx = 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002265 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx);
2266 /* now if we have a length, we'll take the hint */
2267 if (ctx.idx) {
2268 /* We have Content-Length */
2269 if (strl2llrc(ctx.line+ctx.val,ctx.vlen, &hint))
2270 hint = 0; /* parse failure, untrusted client */
2271 else {
2272 if (hint > 0)
2273 msg->hdr_content_len = hint;
2274 else
2275 hint = 0; /* bad client, sent negative length */
2276 }
2277 }
2278 /* but limited to what we care about, maybe we don't expect any entity data (hint == 0) */
2279 if (s->be->url_param_post_limit < hint)
2280 hint = s->be->url_param_post_limit;
2281 /* now do we really need to buffer more data? */
2282 if (len < hint) {
Willy Tarreau3da77c52008-08-29 09:58:42 +02002283 buffer_write_dis(req);
Willy Tarreau2df28e82008-08-17 15:20:19 +02002284 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002285 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002286 /* else... There are no body bytes to wait for */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002287 }
2288 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002289 }
2290 end_check_maybe_wait_for_body:
Willy Tarreaubaaee002006-06-26 02:48:02 +02002291
Willy Tarreau59234e92008-11-30 23:51:27 +01002292 /*************************************************************
2293 * OK, that's finished for the headers. We have done what we *
2294 * could. Let's switch to the DATA state. *
2295 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02002296
Willy Tarreau59234e92008-11-30 23:51:27 +01002297 buffer_set_rlim(req, BUFSIZE); /* no more rewrite needed */
2298 s->logs.tv_request = now;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002299
Willy Tarreau59234e92008-11-30 23:51:27 +01002300 /* When a connection is tarpitted, we use the tarpit timeout,
2301 * which may be the same as the connect timeout if unspecified.
2302 * If unset, then set it to zero because we really want it to
2303 * eventually expire. We build the tarpit as an analyser.
2304 */
2305 if (txn->flags & TX_CLTARPIT) {
Willy Tarreau6f0aa472009-03-08 20:33:29 +01002306 buffer_erase(s->req);
2307 /* wipe the request out so that we can drop the connection early
Willy Tarreau59234e92008-11-30 23:51:27 +01002308 * if the client closes first.
Willy Tarreau2a324282006-12-05 00:05:46 +01002309 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002310 buffer_write_dis(req);
2311 req->analysers |= AN_REQ_HTTP_TARPIT;
2312 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
2313 if (!req->analyse_exp)
2314 req->analyse_exp = now_ms;
2315 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002316
Willy Tarreau59234e92008-11-30 23:51:27 +01002317 /* OK let's go on with the BODY now */
2318 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01002319
Willy Tarreau59234e92008-11-30 23:51:27 +01002320 return_bad_req: /* let's centralize all bad requests */
Willy Tarreauf073a832009-03-01 23:21:47 +01002321 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
2322 /* we detected a parsing error. We want to archive this request
2323 * in the dedicated proxy area for later troubleshooting.
2324 */
2325 struct error_snapshot *es = &s->fe->invalid_req;
2326 int maxlen = MIN(req->r - req->data + msg->som, sizeof(es->buf));
2327 memcpy(es->buf, req->data + msg->som, maxlen);
2328 es->pos = req->lr - req->data + msg->som;
2329 es->len = req->r - req->data + msg->som;
Willy Tarreaudefc52d2009-03-04 20:53:44 +01002330 es->when = date; // user-visible date
Willy Tarreauf073a832009-03-01 23:21:47 +01002331 es->sid = s->uniq_id;
2332 es->srv = s->srv;
2333 es->oe = s->be;
2334 es->src = s->cli_addr;
2335 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002336 txn->req.msg_state = HTTP_MSG_ERROR;
2337 txn->status = 400;
2338 req->analysers = 0;
2339 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
2340 s->fe->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02002341
Willy Tarreau59234e92008-11-30 23:51:27 +01002342 return_prx_cond:
2343 if (!(s->flags & SN_ERR_MASK))
2344 s->flags |= SN_ERR_PRXCOND;
2345 if (!(s->flags & SN_FINST_MASK))
2346 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002347 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002348}
Willy Tarreauadfb8562008-08-11 15:24:42 +02002349
Willy Tarreau60b85b02008-11-30 23:28:40 +01002350/* This function is an analyser which processes the HTTP tarpit. It always
2351 * returns zero, at the beginning because it prevents any other processing
2352 * from occurring, and at the end because it terminates the request.
2353 */
2354int http_process_tarpit(struct session *s, struct buffer *req)
2355{
2356 struct http_txn *txn = &s->txn;
2357
2358 /* This connection is being tarpitted. The CLIENT side has
2359 * already set the connect expiration date to the right
2360 * timeout. We just have to check that the client is still
2361 * there and that the timeout has not expired.
2362 */
2363 if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 &&
2364 !tick_is_expired(req->analyse_exp, now_ms))
2365 return 0;
2366
2367 /* We will set the queue timer to the time spent, just for
2368 * logging purposes. We fake a 500 server error, so that the
2369 * attacker will not suspect his connection has been tarpitted.
2370 * It will not cause trouble to the logs because we can exclude
2371 * the tarpitted connections by filtering on the 'PT' status flags.
2372 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01002373 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2374
2375 txn->status = 500;
2376 if (req->flags != BF_READ_ERROR)
2377 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_500));
2378
2379 req->analysers = 0;
2380 req->analyse_exp = TICK_ETERNITY;
2381
2382 s->fe->failed_req++;
2383 if (!(s->flags & SN_ERR_MASK))
2384 s->flags |= SN_ERR_PRXCOND;
2385 if (!(s->flags & SN_FINST_MASK))
2386 s->flags |= SN_FINST_T;
2387 return 0;
2388}
2389
Willy Tarreaud34af782008-11-30 23:36:37 +01002390/* This function is an analyser which processes the HTTP request body. It looks
2391 * for parameters to be used for the load balancing algorithm (url_param). It
2392 * must only be called after the standard HTTP request processing has occurred,
2393 * because it expects the request to be parsed. It returns zero if it needs to
2394 * read more data, or 1 once it has completed its analysis.
2395 */
2396int http_process_request_body(struct session *s, struct buffer *req)
2397{
2398 struct http_msg *msg = &s->txn.req;
2399 unsigned long body = msg->sol[msg->eoh] == '\r' ? msg->eoh + 2 : msg->eoh + 1;
2400 long long limit = s->be->url_param_post_limit;
2401 struct hdr_ctx ctx;
2402
2403 /* We have to parse the HTTP request body to find any required data.
2404 * "balance url_param check_post" should have been the only way to get
2405 * into this. We were brought here after HTTP header analysis, so all
2406 * related structures are ready.
2407 */
2408
2409 ctx.idx = 0;
2410
2411 /* now if we have a length, we'll take the hint */
2412 http_find_header2("Transfer-Encoding", 17, msg->sol, &s->txn.hdr_idx, &ctx);
2413 if (ctx.idx && ctx.vlen >= 7 && strncasecmp(ctx.line+ctx.val, "chunked", 7) == 0) {
2414 unsigned int chunk = 0;
2415 while (body < req->l && !HTTP_IS_CRLF(msg->sol[body])) {
2416 char c = msg->sol[body];
2417 if (ishex(c)) {
2418 unsigned int hex = toupper(c) - '0';
2419 if (hex > 9)
2420 hex -= 'A' - '9' - 1;
2421 chunk = (chunk << 4) | hex;
2422 } else
2423 break;
2424 body++;
2425 }
2426 if (body + 2 >= req->l) /* we want CRLF too */
2427 goto http_body_end; /* end of buffer? data missing! */
2428
2429 if (memcmp(msg->sol+body, "\r\n", 2) != 0)
2430 goto http_body_end; /* chunked encoding len ends with CRLF, and we don't have it yet */
2431
2432 body += 2; // skip CRLF
2433
2434 /* if we support more then one chunk here, we have to do it again when assigning server
2435 * 1. how much entity data do we have? new var
2436 * 2. should save entity_start, entity_cursor, elen & rlen in req; so we don't repeat scanning here
2437 * 3. test if elen > limit, or set new limit to elen if 0 (end of entity found)
2438 */
2439
2440 if (chunk < limit)
2441 limit = chunk; /* only reading one chunk */
2442 } else {
2443 if (msg->hdr_content_len < limit)
2444 limit = msg->hdr_content_len;
2445 }
2446
2447 http_body_end:
2448 /* we leave once we know we have nothing left to do. This means that we have
2449 * enough bytes, or that we know we'll not get any more (buffer full, read
2450 * buffer closed).
2451 */
2452 if (req->l - body >= limit || /* enough bytes! */
2453 req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR | BF_READ_TIMEOUT) ||
2454 tick_is_expired(req->analyse_exp, now_ms)) {
2455 /* The situation will not evolve, so let's give up on the analysis. */
2456 s->logs.tv_request = now; /* update the request timer to reflect full request */
2457 req->analysers &= ~AN_REQ_HTTP_BODY;
2458 req->analyse_exp = TICK_ETERNITY;
2459 return 1;
2460 }
2461 else {
2462 /* Not enough data. We'll re-use the http-request
2463 * timeout here. Ideally, we should set the timeout
2464 * relative to the accept() date. We just set the
2465 * request timeout once at the beginning of the
2466 * request.
2467 */
2468 buffer_write_dis(req);
2469 if (!tick_isset(req->analyse_exp))
2470 req->analyse_exp = tick_add_ifset(now_ms, s->fe->timeout.httpreq);
2471 return 0;
2472 }
2473}
2474
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002475/* This function performs all the processing enabled for the current response.
Willy Tarreaudafde432008-08-17 01:00:46 +02002476 * It normally returns zero, but may return 1 if it absolutely needs to be
2477 * called again after other functions. It relies on buffers flags, and updates
Willy Tarreau2df28e82008-08-17 15:20:19 +02002478 * t->rep->analysers. It might make sense to explode it into several other
Willy Tarreau41f40ed2008-08-21 10:05:00 +02002479 * functions. It works like process_request (see indications above).
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002480 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002481int process_response(struct session *t)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002482{
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002483 struct http_txn *txn = &t->txn;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002484 struct buffer *req = t->req;
2485 struct buffer *rep = t->rep;
Willy Tarreauadfb8562008-08-11 15:24:42 +02002486
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02002487 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 +02002488 now_ms, __FUNCTION__,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02002489 t,
2490 rep,
2491 rep->rex, rep->wex,
2492 rep->flags,
2493 rep->l,
2494 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02002495
Willy Tarreau2df28e82008-08-17 15:20:19 +02002496 if (rep->analysers & AN_RTR_HTTP_HDR) { /* receiving server headers */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002497 /*
2498 * Now parse the partial (or complete) lines.
2499 * We will check the response syntax, and also join multi-line
2500 * headers. An index of all the lines will be elaborated while
2501 * parsing.
2502 *
2503 * For the parsing, we use a 28 states FSM.
2504 *
2505 * Here is the information we currently have :
Willy Tarreaue393fe22008-08-16 22:18:07 +02002506 * rep->data + rep->som = beginning of response
2507 * rep->data + rep->eoh = end of processed headers / start of current one
2508 * rep->data + rep->eol = end of current header or line (LF or CRLF)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002509 * rep->lr = first non-visited byte
2510 * rep->r = end of data
2511 */
Willy Tarreau7f875f62008-08-11 17:35:01 +02002512
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002513 int cur_idx;
2514 struct http_msg *msg = &txn->rsp;
2515 struct proxy *cur_proxy;
2516
2517 if (likely(rep->lr < rep->r))
2518 http_msg_analyzer(rep, msg, &txn->hdr_idx);
2519
2520 /* 1: we might have to print this header in debug mode */
2521 if (unlikely((global.mode & MODE_DEBUG) &&
2522 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
2523 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
2524 char *eol, *sol;
2525
2526 sol = rep->data + msg->som;
2527 eol = sol + msg->sl.rq.l;
2528 debug_hdr("srvrep", t, sol, eol);
2529
2530 sol += hdr_idx_first_pos(&txn->hdr_idx);
2531 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
2532
2533 while (cur_idx) {
2534 eol = sol + txn->hdr_idx.v[cur_idx].len;
2535 debug_hdr("srvhdr", t, sol, eol);
2536 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2537 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002538 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002539 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002540
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002541 /*
2542 * Now we quickly check if we have found a full valid response.
2543 * If not so, we check the FD and buffer states before leaving.
2544 * A full response is indicated by the fact that we have seen
2545 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
2546 * responses are checked first.
2547 *
2548 * Depending on whether the client is still there or not, we
2549 * may send an error response back or not. Note that normally
2550 * we should only check for HTTP status there, and check I/O
2551 * errors somewhere else.
2552 */
2553
2554 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002555 /* Invalid response */
2556 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauf073a832009-03-01 23:21:47 +01002557 /* we detected a parsing error. We want to archive this response
2558 * in the dedicated proxy area for later troubleshooting.
2559 */
2560 struct error_snapshot *es = &t->be->invalid_rep;
2561 int maxlen = MIN(rep->r - rep->data + msg->som, sizeof(es->buf));
2562 memcpy(es->buf, rep->data + msg->som, maxlen);
2563 es->pos = rep->lr - rep->data + msg->som;
2564 es->len = rep->r - rep->data + msg->som;
Willy Tarreaudefc52d2009-03-04 20:53:44 +01002565 es->when = date; // user-visible date
Willy Tarreauf073a832009-03-01 23:21:47 +01002566 es->sid = t->uniq_id;
2567 es->srv = t->srv;
2568 es->oe = t->fe;
2569 es->src = t->cli_addr;
2570
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002571 hdr_response_bad:
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002572 buffer_shutr_now(rep);
2573 buffer_shutw_now(req);
Willy Tarreau8365f932009-03-15 23:11:49 +01002574 if (t->srv)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002575 t->srv->failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002576 t->be->failed_resp++;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002577 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002578 txn->status = 502;
Willy Tarreau81acfab2008-11-30 19:22:53 +01002579 stream_int_return(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002580 if (!(t->flags & SN_ERR_MASK))
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002581 t->flags |= SN_ERR_PRXCOND;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002582 if (!(t->flags & SN_FINST_MASK))
2583 t->flags |= SN_FINST_H;
Willy Tarreau461f6622008-08-15 23:43:19 +02002584
Willy Tarreaudafde432008-08-17 01:00:46 +02002585 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002586 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002587 /* too large response does not fit in buffer. */
2588 else if (rep->flags & BF_FULL) {
2589 goto hdr_response_bad;
2590 }
2591 /* read error */
2592 else if (rep->flags & BF_READ_ERROR) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002593 buffer_shutr_now(rep);
2594 buffer_shutw_now(req);
Willy Tarreau8365f932009-03-15 23:11:49 +01002595 if (t->srv)
2596 t->srv->failed_resp++;
2597 t->be->failed_resp++;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002598 rep->analysers = 0;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002599 txn->status = 502;
Willy Tarreau81acfab2008-11-30 19:22:53 +01002600 stream_int_return(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002601 if (!(t->flags & SN_ERR_MASK))
2602 t->flags |= SN_ERR_SRVCL;
2603 if (!(t->flags & SN_FINST_MASK))
2604 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02002605 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002606 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002607 /* read timeout : return a 504 to the client. */
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002608 else if (rep->flags & BF_READ_TIMEOUT) {
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002609 buffer_shutr_now(rep);
2610 buffer_shutw_now(req);
Willy Tarreau8365f932009-03-15 23:11:49 +01002611 if (t->srv)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002612 t->srv->failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002613 t->be->failed_resp++;
Willy Tarreau2df28e82008-08-17 15:20:19 +02002614 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002615 txn->status = 504;
Willy Tarreau81acfab2008-11-30 19:22:53 +01002616 stream_int_return(rep->cons, error_message(t, HTTP_ERR_504));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002617 if (!(t->flags & SN_ERR_MASK))
2618 t->flags |= SN_ERR_SRVTO;
2619 if (!(t->flags & SN_FINST_MASK))
2620 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02002621 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002622 }
Willy Tarreau8365f932009-03-15 23:11:49 +01002623 /* close from server */
2624 else if (rep->flags & BF_SHUTR) {
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002625 buffer_shutw_now(req);
Willy Tarreau8365f932009-03-15 23:11:49 +01002626 if (t->srv)
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002627 t->srv->failed_resp++;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002628 t->be->failed_resp++;
2629 rep->analysers = 0;
2630 txn->status = 502;
Willy Tarreau81acfab2008-11-30 19:22:53 +01002631 stream_int_return(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002632 if (!(t->flags & SN_ERR_MASK))
2633 t->flags |= SN_ERR_SRVCL;
2634 if (!(t->flags & SN_FINST_MASK))
2635 t->flags |= SN_FINST_H;
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002636 return 0;
2637 }
Willy Tarreau8365f932009-03-15 23:11:49 +01002638 /* write error to client (we don't send any message then) */
2639 else if (rep->flags & BF_WRITE_ERROR) {
2640 buffer_shutr_now(rep);
2641 t->be->failed_resp++;
2642 rep->analysers = 0;
2643 if (!(t->flags & SN_ERR_MASK))
2644 t->flags |= SN_ERR_CLICL;
2645 if (!(t->flags & SN_FINST_MASK))
2646 t->flags |= SN_FINST_H;
2647 return 0;
2648 }
Willy Tarreau3da77c52008-08-29 09:58:42 +02002649 buffer_write_dis(rep);
Willy Tarreaucebf57e2008-08-15 18:16:37 +02002650 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002651 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002652
Willy Tarreau21d2af32008-02-14 20:25:24 +01002653
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002654 /*****************************************************************
2655 * More interesting part now : we know that we have a complete *
2656 * response which at least looks like HTTP. We have an indicator *
2657 * of each header's length, so we can parse them quickly. *
2658 ****************************************************************/
Willy Tarreau21d2af32008-02-14 20:25:24 +01002659
Willy Tarreau2df28e82008-08-17 15:20:19 +02002660 rep->analysers &= ~AN_RTR_HTTP_HDR;
Willy Tarreaua7c52762008-08-16 18:40:18 +02002661
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002662 /* ensure we keep this pointer to the beginning of the message */
2663 msg->sol = rep->data + msg->som;
Willy Tarreau21d2af32008-02-14 20:25:24 +01002664
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002665 /*
2666 * 1: get the status code and check for cacheability.
2667 */
Willy Tarreau21d2af32008-02-14 20:25:24 +01002668
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002669 t->logs.logwait &= ~LW_RESP;
2670 txn->status = strl2ui(rep->data + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreau21d2af32008-02-14 20:25:24 +01002671
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002672 switch (txn->status) {
2673 case 200:
2674 case 203:
2675 case 206:
2676 case 300:
2677 case 301:
2678 case 410:
2679 /* RFC2616 @13.4:
2680 * "A response received with a status code of
2681 * 200, 203, 206, 300, 301 or 410 MAY be stored
2682 * by a cache (...) unless a cache-control
2683 * directive prohibits caching."
2684 *
2685 * RFC2616 @9.5: POST method :
2686 * "Responses to this method are not cacheable,
2687 * unless the response includes appropriate
2688 * Cache-Control or Expires header fields."
2689 */
2690 if (likely(txn->meth != HTTP_METH_POST) &&
2691 (t->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
2692 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
2693 break;
2694 default:
2695 break;
2696 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01002697
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002698 /*
2699 * 2: we may need to capture headers
2700 */
2701 if (unlikely((t->logs.logwait & LW_RSPHDR) && t->fe->rsp_cap))
2702 capture_headers(rep->data + msg->som, &txn->hdr_idx,
2703 txn->rsp.cap, t->fe->rsp_cap);
2704
2705 /*
2706 * 3: we will have to evaluate the filters.
2707 * As opposed to version 1.2, now they will be evaluated in the
2708 * filters order and not in the header order. This means that
2709 * each filter has to be validated among all headers.
2710 *
2711 * Filters are tried with ->be first, then with ->fe if it is
2712 * different from ->be.
2713 */
2714
2715 t->flags &= ~SN_CONN_CLOSED; /* prepare for inspection */
2716
2717 cur_proxy = t->be;
2718 while (1) {
2719 struct proxy *rule_set = cur_proxy;
2720
2721 /* try headers filters */
2722 if (rule_set->rsp_exp != NULL) {
2723 if (apply_filters_to_response(t, rep, rule_set->rsp_exp) < 0) {
2724 return_bad_resp:
Willy Tarreau8365f932009-03-15 23:11:49 +01002725 if (t->srv)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002726 t->srv->failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002727 cur_proxy->failed_resp++;
2728 return_srv_prx_502:
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002729 buffer_shutr_now(rep);
2730 buffer_shutw_now(req);
Willy Tarreau2df28e82008-08-17 15:20:19 +02002731 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002732 txn->status = 502;
Willy Tarreau81acfab2008-11-30 19:22:53 +01002733 stream_int_return(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002734 if (!(t->flags & SN_ERR_MASK))
2735 t->flags |= SN_ERR_PRXCOND;
2736 if (!(t->flags & SN_FINST_MASK))
2737 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02002738 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01002739 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002740 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01002741
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002742 /* has the response been denied ? */
2743 if (txn->flags & TX_SVDENY) {
Willy Tarreau8365f932009-03-15 23:11:49 +01002744 if (t->srv)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002745 t->srv->failed_secu++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002746 cur_proxy->denied_resp++;
2747 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01002748 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002749
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002750 /* We might have to check for "Connection:" */
2751 if (((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
2752 !(t->flags & SN_CONN_CLOSED)) {
2753 char *cur_ptr, *cur_end, *cur_next;
2754 int cur_idx, old_idx, delta, val;
2755 struct hdr_idx_elem *cur_hdr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002756
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002757 cur_next = rep->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
2758 old_idx = 0;
Willy Tarreau541b5c22008-01-06 23:34:21 +01002759
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002760 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
2761 cur_hdr = &txn->hdr_idx.v[cur_idx];
2762 cur_ptr = cur_next;
2763 cur_end = cur_ptr + cur_hdr->len;
2764 cur_next = cur_end + cur_hdr->cr + 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002765
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002766 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
2767 if (val) {
2768 /* 3 possibilities :
2769 * - we have already set Connection: close,
2770 * so we remove this line.
2771 * - we have not yet set Connection: close,
2772 * but this line indicates close. We leave
2773 * it untouched and set the flag.
2774 * - we have not yet set Connection: close,
2775 * and this line indicates non-close. We
2776 * replace it.
2777 */
2778 if (t->flags & SN_CONN_CLOSED) {
2779 delta = buffer_replace2(rep, cur_ptr, cur_next, NULL, 0);
2780 txn->rsp.eoh += delta;
2781 cur_next += delta;
2782 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
2783 txn->hdr_idx.used--;
2784 cur_hdr->len = 0;
2785 } else {
2786 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
2787 delta = buffer_replace2(rep, cur_ptr + val, cur_end,
2788 "close", 5);
2789 cur_next += delta;
2790 cur_hdr->len += delta;
2791 txn->rsp.eoh += delta;
2792 }
2793 t->flags |= SN_CONN_CLOSED;
2794 }
2795 }
2796 old_idx = cur_idx;
Willy Tarreau541b5c22008-01-06 23:34:21 +01002797 }
2798 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002799
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002800 /* add response headers from the rule sets in the same order */
2801 for (cur_idx = 0; cur_idx < rule_set->nb_rspadd; cur_idx++) {
2802 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx,
2803 rule_set->rsp_add[cur_idx])) < 0)
2804 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002805 }
2806
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002807 /* check whether we're already working on the frontend */
2808 if (cur_proxy == t->fe)
2809 break;
2810 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002811 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002812
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002813 /*
2814 * 4: check for server cookie.
2815 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02002816 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002817 || (t->be->options & PR_O_CHK_CACHE))
2818 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002819
Willy Tarreaubaaee002006-06-26 02:48:02 +02002820
Willy Tarreaua15645d2007-03-18 16:22:39 +01002821 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002822 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01002823 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002824 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
2825 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002826
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002827 /*
2828 * 6: add server cookie in the response if needed
2829 */
2830 if ((t->srv) && !(t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_INS) &&
2831 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST))) {
2832 int len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002833
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002834 /* the server is known, it's not the one the client requested, we have to
2835 * insert a set-cookie here, except if we want to insert only on POST
2836 * requests and this one isn't. Note that servers which don't have cookies
2837 * (eg: some backup servers) will return a full cookie removal request.
2838 */
2839 len = sprintf(trash, "Set-Cookie: %s=%s; path=/",
2840 t->be->cookie_name,
2841 t->srv->cookie ? t->srv->cookie : "; Expires=Thu, 01-Jan-1970 00:00:01 GMT");
Willy Tarreaubaaee002006-06-26 02:48:02 +02002842
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002843 if (t->be->cookie_domain)
2844 len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002845
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002846 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
2847 trash, len)) < 0)
2848 goto return_bad_resp;
2849 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002850
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002851 /* Here, we will tell an eventual cache on the client side that we don't
2852 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
2853 * Some caches understand the correct form: 'no-cache="set-cookie"', but
2854 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
2855 */
2856 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002857
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002858 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
2859
2860 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
2861 "Cache-control: private", 22)) < 0)
2862 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002863 }
2864 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002865
Willy Tarreaubaaee002006-06-26 02:48:02 +02002866
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002867 /*
2868 * 7: check if result will be cacheable with a cookie.
2869 * We'll block the response if security checks have caught
2870 * nasty things such as a cacheable cookie.
2871 */
2872 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) ==
2873 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) &&
2874 (t->be->options & PR_O_CHK_CACHE)) {
2875
2876 /* we're in presence of a cacheable response containing
2877 * a set-cookie header. We'll block it as requested by
2878 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01002879 */
Willy Tarreau8365f932009-03-15 23:11:49 +01002880 if (t->srv)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002881 t->srv->failed_secu++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002882 t->be->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002883
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002884 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
2885 t->be->id, t->srv?t->srv->id:"<dispatch>");
2886 send_log(t->be, LOG_ALERT,
2887 "Blocking cacheable cookie in response from instance %s, server %s.\n",
2888 t->be->id, t->srv?t->srv->id:"<dispatch>");
2889 goto return_srv_prx_502;
2890 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002891
2892 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002893 * 8: add "Connection: close" if needed and not yet set.
2894 * Note that we do not need to add it in case of HTTP/1.0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01002895 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002896 if (!(t->flags & SN_CONN_CLOSED) &&
2897 ((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
2898 if ((unlikely(msg->sl.st.v_l != 8) ||
2899 unlikely(req->data[msg->som + 7] != '0')) &&
2900 unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
2901 "Connection: close", 17)) < 0)
2902 goto return_bad_resp;
2903 t->flags |= SN_CONN_CLOSED;
2904 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002905
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002906 /*************************************************************
2907 * OK, that's finished for the headers. We have done what we *
2908 * could. Let's switch to the DATA state. *
2909 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02002910
Willy Tarreaue393fe22008-08-16 22:18:07 +02002911 buffer_set_rlim(rep, BUFSIZE); /* no more rewrite needed */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002912 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002913
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002914#ifdef CONFIG_HAP_TCPSPLICE
2915 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
2916 /* TCP splicing supported by both FE and BE */
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02002917 tcp_splice_splicefd(rep->cons->fd, rep->prod->fd, 0);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002918 }
2919#endif
2920 /* if the user wants to log as soon as possible, without counting
2921 * bytes from the server, then this is the right moment. We have
2922 * to temporarily assign bytes_out to log what we currently have.
2923 */
2924 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
2925 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
2926 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002927 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002928 t->logs.bytes_out = 0;
2929 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002930
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002931 /* Note: we must not try to cheat by jumping directly to DATA,
2932 * otherwise we would not let the client side wake up.
2933 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01002934
Willy Tarreaudafde432008-08-17 01:00:46 +02002935 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002936 }
Willy Tarreaudafde432008-08-17 01:00:46 +02002937
Willy Tarreau2df28e82008-08-17 15:20:19 +02002938 /* Note: eventhough nobody should set an unknown flag, clearing them right now will
2939 * probably reduce one day's debugging session.
2940 */
2941#ifdef DEBUG_DEV
2942 if (rep->analysers & ~(AN_RTR_HTTP_HDR)) {
2943 fprintf(stderr, "FIXME !!!! unknown analysers flags %s:%d = 0x%08X\n",
2944 __FILE__, __LINE__, rep->analysers);
2945 ABORT_NOW();
2946 }
2947#endif
2948 rep->analysers &= AN_RTR_HTTP_HDR;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02002949 return 0;
2950}
Willy Tarreaua15645d2007-03-18 16:22:39 +01002951
Willy Tarreaubaaee002006-06-26 02:48:02 +02002952/*
2953 * Produces data for the session <s> depending on its source. Expects to be
Willy Tarreau1ae3a052008-08-16 10:56:30 +02002954 * called with client socket shut down on input. Right now, only statistics can
Willy Tarreau72b179a2008-08-28 16:01:32 +02002955 * be produced. It stops by itself by unsetting the BF_HIJACK flag from the
2956 * buffer, which it uses to keep on being called when there is free space in
Willy Tarreau01bf8672008-12-07 18:03:29 +01002957 * the buffer, or simply by letting an empty buffer upon return.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002958 */
Willy Tarreau01bf8672008-12-07 18:03:29 +01002959void produce_content(struct session *s, struct buffer *rep)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002960{
Willy Tarreaubaaee002006-06-26 02:48:02 +02002961 if (s->data_source == DATA_SRC_NONE) {
Willy Tarreau01bf8672008-12-07 18:03:29 +01002962 buffer_stop_hijack(rep);
2963 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002964 }
2965 else if (s->data_source == DATA_SRC_STATS) {
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01002966 /* dump server statistics */
Willy Tarreau0a464892008-12-07 18:30:00 +01002967 int ret = stats_dump_http(s, rep, s->be->uri_auth);
Willy Tarreau91861262007-10-17 17:06:05 +02002968 if (ret >= 0)
Willy Tarreau01bf8672008-12-07 18:03:29 +01002969 return;
Willy Tarreau91861262007-10-17 17:06:05 +02002970 /* -1 indicates an error */
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01002971 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002972
Willy Tarreau91861262007-10-17 17:06:05 +02002973 /* unknown data source or internal error */
2974 s->txn.status = 500;
Willy Tarreau01bf8672008-12-07 18:03:29 +01002975 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_500));
Willy Tarreau91861262007-10-17 17:06:05 +02002976 if (!(s->flags & SN_ERR_MASK))
2977 s->flags |= SN_ERR_PRXCOND;
2978 if (!(s->flags & SN_FINST_MASK))
2979 s->flags |= SN_FINST_R;
Willy Tarreau01bf8672008-12-07 18:03:29 +01002980 buffer_stop_hijack(rep);
2981 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002982}
2983
2984
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002985/* Iterate the same filter through all request headers.
2986 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01002987 * Since it can manage the switch to another backend, it updates the per-proxy
2988 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002989 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002990int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01002991{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002992 char term;
2993 char *cur_ptr, *cur_end, *cur_next;
2994 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002995 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002996 struct hdr_idx_elem *cur_hdr;
2997 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01002998
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002999 last_hdr = 0;
3000
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003001 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003002 old_idx = 0;
3003
3004 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01003005 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003006 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003007 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003008 (exp->action == ACT_ALLOW ||
3009 exp->action == ACT_DENY ||
3010 exp->action == ACT_TARPIT))
3011 return 0;
3012
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003013 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003014 if (!cur_idx)
3015 break;
3016
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003017 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003018 cur_ptr = cur_next;
3019 cur_end = cur_ptr + cur_hdr->len;
3020 cur_next = cur_end + cur_hdr->cr + 1;
3021
3022 /* Now we have one header between cur_ptr and cur_end,
3023 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003024 */
3025
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003026 /* The annoying part is that pattern matching needs
3027 * that we modify the contents to null-terminate all
3028 * strings before testing them.
3029 */
3030
3031 term = *cur_end;
3032 *cur_end = '\0';
3033
3034 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3035 switch (exp->action) {
3036 case ACT_SETBE:
3037 /* It is not possible to jump a second time.
3038 * FIXME: should we return an HTTP/500 here so that
3039 * the admin knows there's a problem ?
3040 */
3041 if (t->be != t->fe)
3042 break;
3043
3044 /* Swithing Proxy */
3045 t->be = (struct proxy *) exp->replace;
3046
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003047 /* right now, the backend switch is not overly complicated
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003048 * because we have associated req_cap and rsp_cap to the
3049 * frontend, and the beconn will be updated later.
3050 */
3051
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003052 t->rep->rto = t->req->wto = t->be->timeout.server;
3053 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003054 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003055 last_hdr = 1;
3056 break;
3057
3058 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003059 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003060 last_hdr = 1;
3061 break;
3062
3063 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003064 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003065 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003066 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003067 break;
3068
3069 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01003070 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003071 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003072 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003073 break;
3074
3075 case ACT_REPLACE:
3076 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3077 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
3078 /* FIXME: if the user adds a newline in the replacement, the
3079 * index will not be recalculated for now, and the new line
3080 * will not be counted as a new header.
3081 */
3082
3083 cur_end += delta;
3084 cur_next += delta;
3085 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003086 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003087 break;
3088
3089 case ACT_REMOVE:
3090 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
3091 cur_next += delta;
3092
3093 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003094 txn->req.eoh += delta;
3095 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3096 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003097 cur_hdr->len = 0;
3098 cur_end = NULL; /* null-term has been rewritten */
3099 break;
3100
3101 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003102 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003103 if (cur_end)
3104 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003105
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003106 /* keep the link from this header to next one in case of later
3107 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003108 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003109 old_idx = cur_idx;
3110 }
3111 return 0;
3112}
3113
3114
3115/* Apply the filter to the request line.
3116 * Returns 0 if nothing has been done, 1 if the filter has been applied,
3117 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003118 * Since it can manage the switch to another backend, it updates the per-proxy
3119 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003120 */
3121int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
3122{
3123 char term;
3124 char *cur_ptr, *cur_end;
3125 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003126 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003127 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003128
Willy Tarreau58f10d72006-12-04 02:26:12 +01003129
Willy Tarreau3d300592007-03-18 18:34:41 +01003130 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003131 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003132 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003133 (exp->action == ACT_ALLOW ||
3134 exp->action == ACT_DENY ||
3135 exp->action == ACT_TARPIT))
3136 return 0;
3137 else if (exp->action == ACT_REMOVE)
3138 return 0;
3139
3140 done = 0;
3141
Willy Tarreau9cdde232007-05-02 20:58:19 +02003142 cur_ptr = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003143 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003144
3145 /* Now we have the request line between cur_ptr and cur_end */
3146
3147 /* The annoying part is that pattern matching needs
3148 * that we modify the contents to null-terminate all
3149 * strings before testing them.
3150 */
3151
3152 term = *cur_end;
3153 *cur_end = '\0';
3154
3155 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3156 switch (exp->action) {
3157 case ACT_SETBE:
3158 /* It is not possible to jump a second time.
3159 * FIXME: should we return an HTTP/500 here so that
3160 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01003161 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003162 if (t->be != t->fe)
3163 break;
3164
3165 /* Swithing Proxy */
3166 t->be = (struct proxy *) exp->replace;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003167
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003168 /* right now, the backend switch is not too much complicated
3169 * because we have associated req_cap and rsp_cap to the
3170 * frontend, and the beconn will be updated later.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003171 */
3172
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003173 t->rep->rto = t->req->wto = t->be->timeout.server;
3174 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003175 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003176 done = 1;
3177 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003178
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003179 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003180 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003181 done = 1;
3182 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003183
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003184 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003185 txn->flags |= TX_CLDENY;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003186 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003187 done = 1;
3188 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003189
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003190 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01003191 txn->flags |= TX_CLTARPIT;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003192 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003193 done = 1;
3194 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003195
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003196 case ACT_REPLACE:
3197 *cur_end = term; /* restore the string terminator */
3198 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3199 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
3200 /* FIXME: if the user adds a newline in the replacement, the
3201 * index will not be recalculated for now, and the new line
3202 * will not be counted as a new header.
3203 */
Willy Tarreaua496b602006-12-17 23:15:24 +01003204
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003205 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003206 cur_end += delta;
Willy Tarreaua496b602006-12-17 23:15:24 +01003207
Willy Tarreau9cdde232007-05-02 20:58:19 +02003208 txn->req.sol = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003209 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003210 HTTP_MSG_RQMETH,
3211 cur_ptr, cur_end + 1,
3212 NULL, NULL);
3213 if (unlikely(!cur_end))
3214 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01003215
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003216 /* we have a full request and we know that we have either a CR
3217 * or an LF at <ptr>.
3218 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003219 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
3220 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003221 /* there is no point trying this regex on headers */
3222 return 1;
3223 }
3224 }
3225 *cur_end = term; /* restore the string terminator */
3226 return done;
3227}
Willy Tarreau97de6242006-12-27 17:18:38 +01003228
Willy Tarreau58f10d72006-12-04 02:26:12 +01003229
Willy Tarreau58f10d72006-12-04 02:26:12 +01003230
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003231/*
3232 * Apply all the req filters <exp> to all headers in buffer <req> of session <t>.
3233 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01003234 * unparsable request. Since it can manage the switch to another backend, it
3235 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003236 */
3237int apply_filters_to_request(struct session *t, struct buffer *req, struct hdr_exp *exp)
3238{
Willy Tarreau3d300592007-03-18 18:34:41 +01003239 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003240 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01003241 while (exp && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003242 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003243
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003244 /*
3245 * The interleaving of transformations and verdicts
3246 * makes it difficult to decide to continue or stop
3247 * the evaluation.
3248 */
3249
Willy Tarreau3d300592007-03-18 18:34:41 +01003250 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003251 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
3252 exp->action == ACT_TARPIT || exp->action == ACT_PASS)) {
3253 exp = exp->next;
3254 continue;
3255 }
3256
3257 /* Apply the filter to the request line. */
3258 ret = apply_filter_to_req_line(t, req, exp);
3259 if (unlikely(ret < 0))
3260 return -1;
3261
3262 if (likely(ret == 0)) {
3263 /* The filter did not match the request, it can be
3264 * iterated through all headers.
3265 */
3266 apply_filter_to_req_headers(t, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003267 }
3268 exp = exp->next;
3269 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003270 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003271}
3272
3273
Willy Tarreaua15645d2007-03-18 16:22:39 +01003274
Willy Tarreau58f10d72006-12-04 02:26:12 +01003275/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01003276 * Manage client-side cookie. It can impact performance by about 2% so it is
3277 * desirable to call it only when needed.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003278 */
3279void manage_client_side_cookies(struct session *t, struct buffer *req)
3280{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003281 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003282 char *p1, *p2, *p3, *p4;
3283 char *del_colon, *del_cookie, *colon;
3284 int app_cookies;
3285
3286 appsess *asession_temp = NULL;
3287 appsess local_asession;
3288
3289 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003290 int cur_idx, old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003291
Willy Tarreau2a324282006-12-05 00:05:46 +01003292 /* Iterate through the headers.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003293 * we start with the start line.
3294 */
Willy Tarreau83969f42007-01-22 08:55:47 +01003295 old_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003296 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003297
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003298 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003299 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003300 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003301
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003302 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau58f10d72006-12-04 02:26:12 +01003303 cur_ptr = cur_next;
3304 cur_end = cur_ptr + cur_hdr->len;
3305 cur_next = cur_end + cur_hdr->cr + 1;
3306
3307 /* We have one full header between cur_ptr and cur_end, and the
3308 * next header starts at cur_next. We're only interested in
3309 * "Cookie:" headers.
3310 */
3311
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003312 val = http_header_match2(cur_ptr, cur_end, "Cookie", 6);
3313 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003314 old_idx = cur_idx;
3315 continue;
3316 }
3317
3318 /* Now look for cookies. Conforming to RFC2109, we have to support
3319 * attributes whose name begin with a '$', and associate them with
3320 * the right cookie, if we want to delete this cookie.
3321 * So there are 3 cases for each cookie read :
3322 * 1) it's a special attribute, beginning with a '$' : ignore it.
3323 * 2) it's a server id cookie that we *MAY* want to delete : save
3324 * some pointers on it (last semi-colon, beginning of cookie...)
3325 * 3) it's an application cookie : we *MAY* have to delete a previous
3326 * "special" cookie.
3327 * At the end of loop, if a "special" cookie remains, we may have to
3328 * remove it. If no application cookie persists in the header, we
3329 * *MUST* delete it
3330 */
3331
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003332 colon = p1 = cur_ptr + val; /* first non-space char after 'Cookie:' */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003333
Willy Tarreau58f10d72006-12-04 02:26:12 +01003334 /* del_cookie == NULL => nothing to be deleted */
3335 del_colon = del_cookie = NULL;
3336 app_cookies = 0;
3337
3338 while (p1 < cur_end) {
3339 /* skip spaces and colons, but keep an eye on these ones */
3340 while (p1 < cur_end) {
3341 if (*p1 == ';' || *p1 == ',')
3342 colon = p1;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003343 else if (!isspace((unsigned char)*p1))
Willy Tarreau58f10d72006-12-04 02:26:12 +01003344 break;
3345 p1++;
3346 }
3347
3348 if (p1 == cur_end)
3349 break;
3350
3351 /* p1 is at the beginning of the cookie name */
3352 p2 = p1;
3353 while (p2 < cur_end && *p2 != '=')
3354 p2++;
3355
3356 if (p2 == cur_end)
3357 break;
3358
3359 p3 = p2 + 1; /* skips the '=' sign */
3360 if (p3 == cur_end)
3361 break;
3362
3363 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003364 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';' && *p4 != ',')
Willy Tarreau58f10d72006-12-04 02:26:12 +01003365 p4++;
3366
3367 /* here, we have the cookie name between p1 and p2,
3368 * and its value between p3 and p4.
3369 * we can process it :
3370 *
3371 * Cookie: NAME=VALUE;
3372 * | || || |
3373 * | || || +--> p4
3374 * | || |+-------> p3
3375 * | || +--------> p2
3376 * | |+------------> p1
3377 * | +-------------> colon
3378 * +--------------------> cur_ptr
3379 */
3380
3381 if (*p1 == '$') {
3382 /* skip this one */
3383 }
3384 else {
3385 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003386 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003387 txn->cli_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003388 (p4 - p1 >= t->fe->capture_namelen) &&
3389 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003390 int log_len = p4 - p1;
3391
Willy Tarreau086b3b42007-05-13 21:45:51 +02003392 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003393 Alert("HTTP logging : out of memory.\n");
3394 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003395 if (log_len > t->fe->capture_len)
3396 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003397 memcpy(txn->cli_cookie, p1, log_len);
3398 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003399 }
3400 }
3401
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003402 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
3403 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003404 /* Cool... it's the right one */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003405 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003406 char *delim;
3407
3408 /* if we're in cookie prefix mode, we'll search the delimitor so that we
3409 * have the server ID betweek p3 and delim, and the original cookie between
3410 * delim+1 and p4. Otherwise, delim==p4 :
3411 *
3412 * Cookie: NAME=SRV~VALUE;
3413 * | || || | |
3414 * | || || | +--> p4
3415 * | || || +--------> delim
3416 * | || |+-----------> p3
3417 * | || +------------> p2
3418 * | |+----------------> p1
3419 * | +-----------------> colon
3420 * +------------------------> cur_ptr
3421 */
3422
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003423 if (t->be->options & PR_O_COOK_PFX) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003424 for (delim = p3; delim < p4; delim++)
3425 if (*delim == COOKIE_DELIM)
3426 break;
3427 }
3428 else
3429 delim = p4;
3430
3431
3432 /* Here, we'll look for the first running server which supports the cookie.
3433 * This allows to share a same cookie between several servers, for example
3434 * to dedicate backup servers to specific servers only.
3435 * However, to prevent clients from sticking to cookie-less backup server
3436 * when they have incidentely learned an empty cookie, we simply ignore
3437 * empty cookies and mark them as invalid.
3438 */
3439 if (delim == p3)
3440 srv = NULL;
3441
3442 while (srv) {
Willy Tarreau92f2ab12007-02-02 22:14:47 +01003443 if (srv->cookie && (srv->cklen == delim - p3) &&
3444 !memcmp(p3, srv->cookie, delim - p3)) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003445 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003446 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01003447 txn->flags &= ~TX_CK_MASK;
3448 txn->flags |= TX_CK_VALID;
3449 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003450 t->srv = srv;
3451 break;
3452 } else {
3453 /* we found a server, but it's down */
Willy Tarreau3d300592007-03-18 18:34:41 +01003454 txn->flags &= ~TX_CK_MASK;
3455 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003456 }
3457 }
3458 srv = srv->next;
3459 }
3460
Willy Tarreau3d300592007-03-18 18:34:41 +01003461 if (!srv && !(txn->flags & TX_CK_DOWN)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003462 /* no server matched this cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +01003463 txn->flags &= ~TX_CK_MASK;
3464 txn->flags |= TX_CK_INVALID;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003465 }
3466
3467 /* depending on the cookie mode, we may have to either :
3468 * - delete the complete cookie if we're in insert+indirect mode, so that
3469 * the server never sees it ;
3470 * - remove the server id from the cookie value, and tag the cookie as an
3471 * application cookie so that it does not get accidentely removed later,
3472 * if we're in cookie prefix mode
3473 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003474 if ((t->be->options & PR_O_COOK_PFX) && (delim != p4)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003475 int delta; /* negative */
3476
3477 delta = buffer_replace2(req, p3, delim + 1, NULL, 0);
3478 p4 += delta;
3479 cur_end += delta;
3480 cur_next += delta;
3481 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003482 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003483
3484 del_cookie = del_colon = NULL;
3485 app_cookies++; /* protect the header from deletion */
3486 }
3487 else if (del_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003488 (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 +01003489 del_cookie = p1;
3490 del_colon = colon;
3491 }
3492 } else {
3493 /* now we know that we must keep this cookie since it's
3494 * not ours. But if we wanted to delete our cookie
3495 * earlier, we cannot remove the complete header, but we
3496 * can remove the previous block itself.
3497 */
3498 app_cookies++;
3499
3500 if (del_cookie != NULL) {
3501 int delta; /* negative */
3502
3503 delta = buffer_replace2(req, del_cookie, p1, NULL, 0);
3504 p4 += delta;
3505 cur_end += delta;
3506 cur_next += delta;
3507 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003508 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003509 del_cookie = del_colon = NULL;
3510 }
3511 }
3512
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003513 if ((t->be->appsession_name != NULL) &&
3514 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003515 /* first, let's see if the cookie is our appcookie*/
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02003516
Willy Tarreau58f10d72006-12-04 02:26:12 +01003517 /* Cool... it's the right one */
3518
3519 asession_temp = &local_asession;
3520
Willy Tarreau63963c62007-05-13 21:29:55 +02003521 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003522 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
3523 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
3524 return;
3525 }
3526
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003527 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
3528 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003529 asession_temp->serverid = NULL;
Willy Tarreau51041c72007-09-09 21:56:53 +02003530
Willy Tarreau58f10d72006-12-04 02:26:12 +01003531 /* only do insert, if lookup fails */
Willy Tarreau51041c72007-09-09 21:56:53 +02003532 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
3533 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02003534 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003535 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02003536 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003537 Alert("Not enough memory process_cli():asession:calloc().\n");
3538 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
3539 return;
3540 }
3541
3542 asession_temp->sessid = local_asession.sessid;
3543 asession_temp->serverid = local_asession.serverid;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02003544 asession_temp->request_count = 0;
Willy Tarreau51041c72007-09-09 21:56:53 +02003545 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003546 } else {
3547 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02003548 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003549 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003550 if (asession_temp->serverid == NULL) {
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02003551 /* TODO redispatch request */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003552 Alert("Found Application Session without matching server.\n");
3553 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003554 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003555 while (srv) {
3556 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003557 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003558 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01003559 txn->flags &= ~TX_CK_MASK;
3560 txn->flags |= TX_CK_VALID;
3561 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003562 t->srv = srv;
3563 break;
3564 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01003565 txn->flags &= ~TX_CK_MASK;
3566 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003567 }
3568 }
3569 srv = srv->next;
3570 }/* end while(srv) */
3571 }/* end else if server == NULL */
3572
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003573 asession_temp->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02003574 asession_temp->request_count++;
3575#if defined(DEBUG_HASH)
3576 Alert("manage_client_side_cookies\n");
3577 appsession_hash_dump(&(t->be->htbl_proxy));
3578#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01003579 }/* end if ((t->proxy->appsession_name != NULL) ... */
3580 }
3581
3582 /* we'll have to look for another cookie ... */
3583 p1 = p4;
3584 } /* while (p1 < cur_end) */
3585
3586 /* There's no more cookie on this line.
3587 * We may have marked the last one(s) for deletion.
3588 * We must do this now in two ways :
3589 * - if there is no app cookie, we simply delete the header ;
3590 * - if there are app cookies, we must delete the end of the
3591 * string properly, including the colon/semi-colon before
3592 * the cookie name.
3593 */
3594 if (del_cookie != NULL) {
3595 int delta;
3596 if (app_cookies) {
3597 delta = buffer_replace2(req, del_colon, cur_end, NULL, 0);
3598 cur_end = del_colon;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003599 cur_hdr->len += delta;
3600 } else {
3601 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003602
3603 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003604 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3605 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003606 cur_hdr->len = 0;
3607 }
Willy Tarreau45e73e32006-12-17 00:05:15 +01003608 cur_next += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003609 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003610 }
3611
3612 /* keep the link from this header to next one */
3613 old_idx = cur_idx;
3614 } /* end of cookie processing on this header */
3615}
3616
3617
Willy Tarreaua15645d2007-03-18 16:22:39 +01003618/* Iterate the same filter through all response headers contained in <rtr>.
3619 * Returns 1 if this filter can be stopped upon return, otherwise 0.
3620 */
3621int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
3622{
3623 char term;
3624 char *cur_ptr, *cur_end, *cur_next;
3625 int cur_idx, old_idx, last_hdr;
3626 struct http_txn *txn = &t->txn;
3627 struct hdr_idx_elem *cur_hdr;
3628 int len, delta;
3629
3630 last_hdr = 0;
3631
3632 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
3633 old_idx = 0;
3634
3635 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01003636 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01003637 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003638 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01003639 (exp->action == ACT_ALLOW ||
3640 exp->action == ACT_DENY))
3641 return 0;
3642
3643 cur_idx = txn->hdr_idx.v[old_idx].next;
3644 if (!cur_idx)
3645 break;
3646
3647 cur_hdr = &txn->hdr_idx.v[cur_idx];
3648 cur_ptr = cur_next;
3649 cur_end = cur_ptr + cur_hdr->len;
3650 cur_next = cur_end + cur_hdr->cr + 1;
3651
3652 /* Now we have one header between cur_ptr and cur_end,
3653 * and the next header starts at cur_next.
3654 */
3655
3656 /* The annoying part is that pattern matching needs
3657 * that we modify the contents to null-terminate all
3658 * strings before testing them.
3659 */
3660
3661 term = *cur_end;
3662 *cur_end = '\0';
3663
3664 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3665 switch (exp->action) {
3666 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003667 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003668 last_hdr = 1;
3669 break;
3670
3671 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003672 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003673 last_hdr = 1;
3674 break;
3675
3676 case ACT_REPLACE:
3677 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3678 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
3679 /* FIXME: if the user adds a newline in the replacement, the
3680 * index will not be recalculated for now, and the new line
3681 * will not be counted as a new header.
3682 */
3683
3684 cur_end += delta;
3685 cur_next += delta;
3686 cur_hdr->len += delta;
3687 txn->rsp.eoh += delta;
3688 break;
3689
3690 case ACT_REMOVE:
3691 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
3692 cur_next += delta;
3693
3694 /* FIXME: this should be a separate function */
3695 txn->rsp.eoh += delta;
3696 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3697 txn->hdr_idx.used--;
3698 cur_hdr->len = 0;
3699 cur_end = NULL; /* null-term has been rewritten */
3700 break;
3701
3702 }
3703 }
3704 if (cur_end)
3705 *cur_end = term; /* restore the string terminator */
3706
3707 /* keep the link from this header to next one in case of later
3708 * removal of next header.
3709 */
3710 old_idx = cur_idx;
3711 }
3712 return 0;
3713}
3714
3715
3716/* Apply the filter to the status line in the response buffer <rtr>.
3717 * Returns 0 if nothing has been done, 1 if the filter has been applied,
3718 * or -1 if a replacement resulted in an invalid status line.
3719 */
3720int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
3721{
3722 char term;
3723 char *cur_ptr, *cur_end;
3724 int done;
3725 struct http_txn *txn = &t->txn;
3726 int len, delta;
3727
3728
Willy Tarreau3d300592007-03-18 18:34:41 +01003729 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01003730 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003731 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01003732 (exp->action == ACT_ALLOW ||
3733 exp->action == ACT_DENY))
3734 return 0;
3735 else if (exp->action == ACT_REMOVE)
3736 return 0;
3737
3738 done = 0;
3739
Willy Tarreau9cdde232007-05-02 20:58:19 +02003740 cur_ptr = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003741 cur_end = cur_ptr + txn->rsp.sl.rq.l;
3742
3743 /* Now we have the status line between cur_ptr and cur_end */
3744
3745 /* The annoying part is that pattern matching needs
3746 * that we modify the contents to null-terminate all
3747 * strings before testing them.
3748 */
3749
3750 term = *cur_end;
3751 *cur_end = '\0';
3752
3753 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3754 switch (exp->action) {
3755 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003756 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003757 done = 1;
3758 break;
3759
3760 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003761 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003762 done = 1;
3763 break;
3764
3765 case ACT_REPLACE:
3766 *cur_end = term; /* restore the string terminator */
3767 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3768 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
3769 /* FIXME: if the user adds a newline in the replacement, the
3770 * index will not be recalculated for now, and the new line
3771 * will not be counted as a new header.
3772 */
3773
3774 txn->rsp.eoh += delta;
3775 cur_end += delta;
3776
Willy Tarreau9cdde232007-05-02 20:58:19 +02003777 txn->rsp.sol = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003778 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02003779 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01003780 cur_ptr, cur_end + 1,
3781 NULL, NULL);
3782 if (unlikely(!cur_end))
3783 return -1;
3784
3785 /* we have a full respnse and we know that we have either a CR
3786 * or an LF at <ptr>.
3787 */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003788 txn->status = strl2ui(rtr->data + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003789 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.rq.l, *cur_end == '\r');
3790 /* there is no point trying this regex on headers */
3791 return 1;
3792 }
3793 }
3794 *cur_end = term; /* restore the string terminator */
3795 return done;
3796}
3797
3798
3799
3800/*
3801 * Apply all the resp filters <exp> to all headers in buffer <rtr> of session <t>.
3802 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
3803 * unparsable response.
3804 */
3805int apply_filters_to_response(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
3806{
Willy Tarreau3d300592007-03-18 18:34:41 +01003807 struct http_txn *txn = &t->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003808 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01003809 while (exp && !(txn->flags & TX_SVDENY)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003810 int ret;
3811
3812 /*
3813 * The interleaving of transformations and verdicts
3814 * makes it difficult to decide to continue or stop
3815 * the evaluation.
3816 */
3817
Willy Tarreau3d300592007-03-18 18:34:41 +01003818 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01003819 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
3820 exp->action == ACT_PASS)) {
3821 exp = exp->next;
3822 continue;
3823 }
3824
3825 /* Apply the filter to the status line. */
3826 ret = apply_filter_to_sts_line(t, rtr, exp);
3827 if (unlikely(ret < 0))
3828 return -1;
3829
3830 if (likely(ret == 0)) {
3831 /* The filter did not match the response, it can be
3832 * iterated through all headers.
3833 */
3834 apply_filter_to_resp_headers(t, rtr, exp);
3835 }
3836 exp = exp->next;
3837 }
3838 return 0;
3839}
3840
3841
3842
3843/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01003844 * Manage server-side cookies. It can impact performance by about 2% so it is
3845 * desirable to call it only when needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003846 */
3847void manage_server_side_cookies(struct session *t, struct buffer *rtr)
3848{
3849 struct http_txn *txn = &t->txn;
3850 char *p1, *p2, *p3, *p4;
3851
3852 appsess *asession_temp = NULL;
3853 appsess local_asession;
3854
3855 char *cur_ptr, *cur_end, *cur_next;
3856 int cur_idx, old_idx, delta;
3857
Willy Tarreaua15645d2007-03-18 16:22:39 +01003858 /* Iterate through the headers.
3859 * we start with the start line.
3860 */
3861 old_idx = 0;
3862 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
3863
3864 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
3865 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003866 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003867
3868 cur_hdr = &txn->hdr_idx.v[cur_idx];
3869 cur_ptr = cur_next;
3870 cur_end = cur_ptr + cur_hdr->len;
3871 cur_next = cur_end + cur_hdr->cr + 1;
3872
3873 /* We have one full header between cur_ptr and cur_end, and the
3874 * next header starts at cur_next. We're only interested in
3875 * "Cookie:" headers.
3876 */
3877
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003878 val = http_header_match2(cur_ptr, cur_end, "Set-Cookie", 10);
3879 if (!val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003880 old_idx = cur_idx;
3881 continue;
3882 }
3883
3884 /* OK, right now we know we have a set-cookie at cur_ptr */
Willy Tarreau3d300592007-03-18 18:34:41 +01003885 txn->flags |= TX_SCK_ANY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003886
3887
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003888 /* maybe we only wanted to see if there was a set-cookie. Note that
3889 * the cookie capture is declared in the fronend.
3890 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003891 if (t->be->cookie_name == NULL &&
3892 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003893 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003894 return;
3895
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003896 p1 = cur_ptr + val; /* first non-space char after 'Set-Cookie:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003897
3898 while (p1 < cur_end) { /* in fact, we'll break after the first cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003899 if (p1 == cur_end || *p1 == ';') /* end of cookie */
3900 break;
3901
3902 /* p1 is at the beginning of the cookie name */
3903 p2 = p1;
3904
3905 while (p2 < cur_end && *p2 != '=' && *p2 != ';')
3906 p2++;
3907
3908 if (p2 == cur_end || *p2 == ';') /* next cookie */
3909 break;
3910
3911 p3 = p2 + 1; /* skip the '=' sign */
3912 if (p3 == cur_end)
3913 break;
3914
3915 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003916 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';')
Willy Tarreaua15645d2007-03-18 16:22:39 +01003917 p4++;
3918
3919 /* here, we have the cookie name between p1 and p2,
3920 * and its value between p3 and p4.
3921 * we can process it.
3922 */
3923
3924 /* first, let's see if we want to capture it */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003925 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003926 txn->srv_cookie == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003927 (p4 - p1 >= t->fe->capture_namelen) &&
3928 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003929 int log_len = p4 - p1;
3930
Willy Tarreau086b3b42007-05-13 21:45:51 +02003931 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003932 Alert("HTTP logging : out of memory.\n");
3933 }
3934
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003935 if (log_len > t->fe->capture_len)
3936 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003937 memcpy(txn->srv_cookie, p1, log_len);
3938 txn->srv_cookie[log_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003939 }
3940
3941 /* now check if we need to process it for persistence */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003942 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
3943 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003944 /* Cool... it's the right one */
Willy Tarreau3d300592007-03-18 18:34:41 +01003945 txn->flags |= TX_SCK_SEEN;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003946
3947 /* If the cookie is in insert mode on a known server, we'll delete
3948 * this occurrence because we'll insert another one later.
3949 * We'll delete it too if the "indirect" option is set and we're in
3950 * a direct access. */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003951 if (((t->srv) && (t->be->options & PR_O_COOK_INS)) ||
3952 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003953 /* this header must be deleted */
3954 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
3955 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3956 txn->hdr_idx.used--;
3957 cur_hdr->len = 0;
3958 cur_next += delta;
3959 txn->rsp.eoh += delta;
3960
Willy Tarreau3d300592007-03-18 18:34:41 +01003961 txn->flags |= TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003962 }
3963 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003964 (t->be->options & PR_O_COOK_RW)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003965 /* replace bytes p3->p4 with the cookie name associated
3966 * with this server since we know it.
3967 */
3968 delta = buffer_replace2(rtr, p3, p4, t->srv->cookie, t->srv->cklen);
3969 cur_hdr->len += delta;
3970 cur_next += delta;
3971 txn->rsp.eoh += delta;
3972
Willy Tarreau3d300592007-03-18 18:34:41 +01003973 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003974 }
3975 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003976 (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003977 /* insert the cookie name associated with this server
3978 * before existing cookie, and insert a delimitor between them..
3979 */
3980 delta = buffer_replace2(rtr, p3, p3, t->srv->cookie, t->srv->cklen + 1);
3981 cur_hdr->len += delta;
3982 cur_next += delta;
3983 txn->rsp.eoh += delta;
3984
3985 p3[t->srv->cklen] = COOKIE_DELIM;
Willy Tarreau3d300592007-03-18 18:34:41 +01003986 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003987 }
3988 }
3989 /* next, let's see if the cookie is our appcookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003990 else if ((t->be->appsession_name != NULL) &&
3991 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003992
3993 /* Cool... it's the right one */
3994
3995 size_t server_id_len = strlen(t->srv->id) + 1;
3996 asession_temp = &local_asession;
3997
Willy Tarreau63963c62007-05-13 21:29:55 +02003998 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003999 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
4000 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
4001 return;
4002 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004003 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
4004 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004005 asession_temp->serverid = NULL;
4006
4007 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01004008 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4009 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004010 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004011 Alert("Not enough Memory process_srv():asession:calloc().\n");
4012 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
4013 return;
4014 }
4015 asession_temp->sessid = local_asession.sessid;
4016 asession_temp->serverid = local_asession.serverid;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004017 asession_temp->request_count = 0;
Willy Tarreau51041c72007-09-09 21:56:53 +02004018 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
4019 } else {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004020 /* free wasted memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004021 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau51041c72007-09-09 21:56:53 +02004022 }
4023
Willy Tarreaua15645d2007-03-18 16:22:39 +01004024 if (asession_temp->serverid == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004025 if ((asession_temp->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004026 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
4027 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
4028 return;
4029 }
4030 asession_temp->serverid[0] = '\0';
4031 }
4032
4033 if (asession_temp->serverid[0] == '\0')
4034 memcpy(asession_temp->serverid, t->srv->id, server_id_len);
4035
Willy Tarreau0c303ee2008-07-07 00:09:58 +02004036 asession_temp->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004037 asession_temp->request_count++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004038#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004039 Alert("manage_server_side_cookies\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02004040 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreaua15645d2007-03-18 16:22:39 +01004041#endif
4042 }/* end if ((t->proxy->appsession_name != NULL) ... */
4043 break; /* we don't want to loop again since there cannot be another cookie on the same line */
4044 } /* we're now at the end of the cookie value */
4045
4046 /* keep the link from this header to next one */
4047 old_idx = cur_idx;
4048 } /* end of cookie processing on this header */
4049}
4050
4051
4052
4053/*
4054 * Check if response is cacheable or not. Updates t->flags.
4055 */
4056void check_response_for_cacheability(struct session *t, struct buffer *rtr)
4057{
4058 struct http_txn *txn = &t->txn;
4059 char *p1, *p2;
4060
4061 char *cur_ptr, *cur_end, *cur_next;
4062 int cur_idx;
4063
Willy Tarreau5df51872007-11-25 16:20:08 +01004064 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004065 return;
4066
4067 /* Iterate through the headers.
4068 * we start with the start line.
4069 */
4070 cur_idx = 0;
4071 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4072
4073 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
4074 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004075 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004076
4077 cur_hdr = &txn->hdr_idx.v[cur_idx];
4078 cur_ptr = cur_next;
4079 cur_end = cur_ptr + cur_hdr->len;
4080 cur_next = cur_end + cur_hdr->cr + 1;
4081
4082 /* We have one full header between cur_ptr and cur_end, and the
4083 * next header starts at cur_next. We're only interested in
4084 * "Cookie:" headers.
4085 */
4086
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004087 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
4088 if (val) {
4089 if ((cur_end - (cur_ptr + val) >= 8) &&
4090 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
4091 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4092 return;
4093 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01004094 }
4095
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004096 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
4097 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01004098 continue;
4099
4100 /* OK, right now we know we have a cache-control header at cur_ptr */
4101
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004102 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004103
4104 if (p1 >= cur_end) /* no more info */
4105 continue;
4106
4107 /* p1 is at the beginning of the value */
4108 p2 = p1;
4109
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004110 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004111 p2++;
4112
4113 /* we have a complete value between p1 and p2 */
4114 if (p2 < cur_end && *p2 == '=') {
4115 /* we have something of the form no-cache="set-cookie" */
4116 if ((cur_end - p1 >= 21) &&
4117 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
4118 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01004119 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004120 continue;
4121 }
4122
4123 /* OK, so we know that either p2 points to the end of string or to a comma */
4124 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
4125 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
4126 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
4127 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004128 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004129 return;
4130 }
4131
4132 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004133 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004134 continue;
4135 }
4136 }
4137}
4138
4139
Willy Tarreau58f10d72006-12-04 02:26:12 +01004140/*
4141 * Try to retrieve a known appsession in the URI, then the associated server.
4142 * If the server is found, it's assigned to the session.
4143 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004144void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004145{
Willy Tarreau3d300592007-03-18 18:34:41 +01004146 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004147 appsess *asession_temp = NULL;
4148 appsess local_asession;
4149 char *request_line;
4150
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004151 if (t->be->appsession_name == NULL ||
Willy Tarreaub326fcc2007-03-03 13:54:32 +01004152 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST) ||
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004153 (request_line = memchr(begin, ';', len)) == NULL ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004154 ((1 + t->be->appsession_name_len + 1 + t->be->appsession_len) > (begin + len - request_line)))
Willy Tarreau58f10d72006-12-04 02:26:12 +01004155 return;
4156
4157 /* skip ';' */
4158 request_line++;
4159
4160 /* look if we have a jsessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004161 if (strncasecmp(request_line, t->be->appsession_name, t->be->appsession_name_len) != 0)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004162 return;
4163
4164 /* skip jsessionid= */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004165 request_line += t->be->appsession_name_len + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004166
4167 /* First try if we already have an appsession */
4168 asession_temp = &local_asession;
4169
Willy Tarreau63963c62007-05-13 21:29:55 +02004170 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004171 Alert("Not enough memory process_cli():asession_temp->sessid:calloc().\n");
4172 send_log(t->be, LOG_ALERT, "Not enough Memory process_cli():asession_temp->sessid:calloc().\n");
4173 return;
4174 }
4175
4176 /* Copy the sessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004177 memcpy(asession_temp->sessid, request_line, t->be->appsession_len);
4178 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004179 asession_temp->serverid = NULL;
4180
4181 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01004182 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4183 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004184 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004185 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004186 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004187 Alert("Not enough memory process_cli():asession:calloc().\n");
4188 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
4189 return;
4190 }
4191 asession_temp->sessid = local_asession.sessid;
4192 asession_temp->serverid = local_asession.serverid;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004193 asession_temp->request_count=0;
Willy Tarreau51041c72007-09-09 21:56:53 +02004194 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004195 }
4196 else {
4197 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004198 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004199 }
Willy Tarreau51041c72007-09-09 21:56:53 +02004200
Willy Tarreau0c303ee2008-07-07 00:09:58 +02004201 asession_temp->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004202 asession_temp->request_count++;
Willy Tarreau51041c72007-09-09 21:56:53 +02004203
Willy Tarreau58f10d72006-12-04 02:26:12 +01004204#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004205 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02004206 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01004207#endif
4208 if (asession_temp->serverid == NULL) {
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02004209 /* TODO redispatch request */
Willy Tarreau58f10d72006-12-04 02:26:12 +01004210 Alert("Found Application Session without matching server.\n");
4211 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004212 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004213 while (srv) {
4214 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004215 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004216 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004217 txn->flags &= ~TX_CK_MASK;
4218 txn->flags |= TX_CK_VALID;
4219 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004220 t->srv = srv;
4221 break;
4222 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01004223 txn->flags &= ~TX_CK_MASK;
4224 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004225 }
4226 }
4227 srv = srv->next;
4228 }
4229 }
4230}
4231
4232
Willy Tarreaub2513902006-12-17 14:52:38 +01004233/*
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004234 * In a GET or HEAD request, check if the requested URI matches the stats uri
4235 * for the current backend, and if an authorization has been passed and is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01004236 *
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004237 * It is assumed that the request is either a HEAD or GET and that the
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004238 * t->be->uri_auth field is valid. An HTTP/401 response may be sent, or
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004239 * produce_content() can be called to start sending data.
Willy Tarreaub2513902006-12-17 14:52:38 +01004240 *
4241 * Returns 1 if the session's state changes, otherwise 0.
4242 */
4243int stats_check_uri_auth(struct session *t, struct proxy *backend)
4244{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004245 struct http_txn *txn = &t->txn;
Willy Tarreaub2513902006-12-17 14:52:38 +01004246 struct uri_auth *uri_auth = backend->uri_auth;
4247 struct user_auth *user;
4248 int authenticated, cur_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004249 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01004250
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004251 memset(&t->data_ctx.stats, 0, sizeof(t->data_ctx.stats));
4252
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004253 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004254 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01004255 return 0;
4256
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004257 h = t->req->data + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004258
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004259 /* the URI is in h */
4260 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01004261 return 0;
4262
Willy Tarreaue7150cd2007-07-25 14:43:32 +02004263 h += uri_auth->uri_len;
4264 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
4265 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004266 t->data_ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02004267 break;
4268 }
4269 h++;
4270 }
4271
4272 if (uri_auth->refresh) {
4273 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
4274 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
4275 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004276 t->data_ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02004277 break;
4278 }
4279 h++;
4280 }
4281 }
4282
Willy Tarreau55bb8452007-10-17 18:44:57 +02004283 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
4284 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
4285 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004286 t->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau55bb8452007-10-17 18:44:57 +02004287 break;
4288 }
4289 h++;
4290 }
4291
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004292 t->data_ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO;
4293
Willy Tarreaub2513902006-12-17 14:52:38 +01004294 /* we are in front of a interceptable URI. Let's check
4295 * if there's an authentication and if it's valid.
4296 */
4297 user = uri_auth->users;
4298 if (!user) {
4299 /* no user auth required, it's OK */
4300 authenticated = 1;
4301 } else {
4302 authenticated = 0;
4303
4304 /* a user list is defined, we have to check.
4305 * skip 21 chars for "Authorization: Basic ".
4306 */
4307
4308 /* FIXME: this should move to an earlier place */
4309 cur_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004310 h = t->req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
4311 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
4312 int len = txn->hdr_idx.v[cur_idx].len;
Willy Tarreaub2513902006-12-17 14:52:38 +01004313 if (len > 14 &&
4314 !strncasecmp("Authorization:", h, 14)) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004315 txn->auth_hdr.str = h;
4316 txn->auth_hdr.len = len;
Willy Tarreaub2513902006-12-17 14:52:38 +01004317 break;
4318 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004319 h += len + txn->hdr_idx.v[cur_idx].cr + 1;
Willy Tarreaub2513902006-12-17 14:52:38 +01004320 }
4321
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004322 if (txn->auth_hdr.len < 21 ||
4323 memcmp(txn->auth_hdr.str + 14, " Basic ", 7))
Willy Tarreaub2513902006-12-17 14:52:38 +01004324 user = NULL;
4325
4326 while (user) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004327 if ((txn->auth_hdr.len == user->user_len + 14 + 7)
4328 && !memcmp(txn->auth_hdr.str + 14 + 7,
Willy Tarreaub2513902006-12-17 14:52:38 +01004329 user->user_pwd, user->user_len)) {
4330 authenticated = 1;
4331 break;
4332 }
4333 user = user->next;
4334 }
4335 }
4336
4337 if (!authenticated) {
Willy Tarreau0f772532006-12-23 20:51:41 +01004338 struct chunk msg;
Willy Tarreaub2513902006-12-17 14:52:38 +01004339
4340 /* no need to go further */
Willy Tarreau0f772532006-12-23 20:51:41 +01004341 msg.str = trash;
4342 msg.len = sprintf(trash, HTTP_401_fmt, uri_auth->auth_realm);
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004343 txn->status = 401;
Willy Tarreaudded32d2008-11-30 19:48:07 +01004344 stream_int_retnclose(t->req->prod, &msg);
Willy Tarreau2df28e82008-08-17 15:20:19 +02004345 t->req->analysers = 0;
Willy Tarreaub2513902006-12-17 14:52:38 +01004346 if (!(t->flags & SN_ERR_MASK))
4347 t->flags |= SN_ERR_PRXCOND;
4348 if (!(t->flags & SN_FINST_MASK))
4349 t->flags |= SN_FINST_R;
4350 return 1;
4351 }
4352
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01004353 /* The request is valid, the user is authenticated. Let's start sending
Willy Tarreaub2513902006-12-17 14:52:38 +01004354 * data.
4355 */
Willy Tarreauefb453c2008-10-26 20:49:47 +01004356 buffer_write_dis(t->req);
Willy Tarreau72b179a2008-08-28 16:01:32 +02004357 buffer_shutw_now(t->req);
4358 buffer_shutr_now(t->rep);
Willy Tarreau70089872008-06-13 21:12:51 +02004359 t->logs.tv_request = now;
Willy Tarreaub2513902006-12-17 14:52:38 +01004360 t->data_source = DATA_SRC_STATS;
4361 t->data_state = DATA_ST_INIT;
Willy Tarreau91e99932008-06-30 07:51:00 +02004362 t->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau01bf8672008-12-07 18:03:29 +01004363 buffer_install_hijacker(t, t->rep, produce_content);
Willy Tarreaub2513902006-12-17 14:52:38 +01004364 return 1;
4365}
4366
4367
Willy Tarreaubaaee002006-06-26 02:48:02 +02004368/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01004369 * Print a debug line with a header
4370 */
4371void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
4372{
4373 int len, max;
4374 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004375 dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004376 max = end - start;
4377 UBOUND(max, sizeof(trash) - len - 1);
4378 len += strlcpy2(trash + len, start, max + 1);
4379 trash[len++] = '\n';
4380 write(1, trash, len);
4381}
4382
4383
Willy Tarreau8797c062007-05-07 00:55:35 +02004384/************************************************************************/
4385/* The code below is dedicated to ACL parsing and matching */
4386/************************************************************************/
4387
4388
4389
4390
4391/* 1. Check on METHOD
4392 * We use the pre-parsed method if it is known, and store its number as an
4393 * integer. If it is unknown, we use the pointer and the length.
4394 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02004395static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02004396{
4397 int len, meth;
4398
Willy Tarreauae8b7962007-06-09 23:10:04 +02004399 len = strlen(*text);
4400 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02004401
4402 pattern->val.i = meth;
4403 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02004404 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02004405 if (!pattern->ptr.str)
4406 return 0;
4407 pattern->len = len;
4408 }
4409 return 1;
4410}
4411
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004412static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004413acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
4414 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004415{
4416 int meth;
4417 struct http_txn *txn = l7;
4418
Willy Tarreaub6866442008-07-14 23:54:42 +02004419 if (!txn)
4420 return 0;
4421
Willy Tarreauc11416f2007-06-17 16:58:38 +02004422 if (txn->req.msg_state != HTTP_MSG_BODY)
4423 return 0;
4424
Willy Tarreau8797c062007-05-07 00:55:35 +02004425 meth = txn->meth;
4426 test->i = meth;
4427 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02004428 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4429 /* ensure the indexes are not affected */
4430 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02004431 test->len = txn->req.sl.rq.m_l;
4432 test->ptr = txn->req.sol;
4433 }
4434 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
4435 return 1;
4436}
4437
4438static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
4439{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02004440 int icase;
4441
Willy Tarreau8797c062007-05-07 00:55:35 +02004442 if (test->i != pattern->val.i)
Willy Tarreau11382812008-07-09 16:18:21 +02004443 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02004444
4445 if (test->i != HTTP_METH_OTHER)
Willy Tarreau11382812008-07-09 16:18:21 +02004446 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02004447
4448 /* Other method, we must compare the strings */
4449 if (pattern->len != test->len)
Willy Tarreau11382812008-07-09 16:18:21 +02004450 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02004451
4452 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
4453 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
4454 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02004455 return ACL_PAT_FAIL;
4456 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02004457}
4458
4459/* 2. Check on Request/Status Version
4460 * We simply compare strings here.
4461 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02004462static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02004463{
Willy Tarreauae8b7962007-06-09 23:10:04 +02004464 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02004465 if (!pattern->ptr.str)
4466 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02004467 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02004468 return 1;
4469}
4470
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004471static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004472acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
4473 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004474{
4475 struct http_txn *txn = l7;
4476 char *ptr;
4477 int len;
4478
Willy Tarreaub6866442008-07-14 23:54:42 +02004479 if (!txn)
4480 return 0;
4481
Willy Tarreauc11416f2007-06-17 16:58:38 +02004482 if (txn->req.msg_state != HTTP_MSG_BODY)
4483 return 0;
4484
Willy Tarreau8797c062007-05-07 00:55:35 +02004485 len = txn->req.sl.rq.v_l;
4486 ptr = txn->req.sol + txn->req.sl.rq.v - txn->req.som;
4487
4488 while ((len-- > 0) && (*ptr++ != '/'));
4489 if (len <= 0)
4490 return 0;
4491
4492 test->ptr = ptr;
4493 test->len = len;
4494
4495 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
4496 return 1;
4497}
4498
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004499static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004500acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
4501 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004502{
4503 struct http_txn *txn = l7;
4504 char *ptr;
4505 int len;
4506
Willy Tarreaub6866442008-07-14 23:54:42 +02004507 if (!txn)
4508 return 0;
4509
Willy Tarreauc11416f2007-06-17 16:58:38 +02004510 if (txn->rsp.msg_state != HTTP_MSG_BODY)
4511 return 0;
4512
Willy Tarreau8797c062007-05-07 00:55:35 +02004513 len = txn->rsp.sl.st.v_l;
4514 ptr = txn->rsp.sol;
4515
4516 while ((len-- > 0) && (*ptr++ != '/'));
4517 if (len <= 0)
4518 return 0;
4519
4520 test->ptr = ptr;
4521 test->len = len;
4522
4523 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
4524 return 1;
4525}
4526
4527/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004528static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004529acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
4530 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004531{
4532 struct http_txn *txn = l7;
4533 char *ptr;
4534 int len;
4535
Willy Tarreaub6866442008-07-14 23:54:42 +02004536 if (!txn)
4537 return 0;
4538
Willy Tarreauc11416f2007-06-17 16:58:38 +02004539 if (txn->rsp.msg_state != HTTP_MSG_BODY)
4540 return 0;
4541
Willy Tarreau8797c062007-05-07 00:55:35 +02004542 len = txn->rsp.sl.st.c_l;
4543 ptr = txn->rsp.sol + txn->rsp.sl.st.c - txn->rsp.som;
4544
4545 test->i = __strl2ui(ptr, len);
4546 test->flags = ACL_TEST_F_VOL_1ST;
4547 return 1;
4548}
4549
4550/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004551static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004552acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
4553 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004554{
4555 struct http_txn *txn = l7;
4556
Willy Tarreaub6866442008-07-14 23:54:42 +02004557 if (!txn)
4558 return 0;
4559
Willy Tarreauc11416f2007-06-17 16:58:38 +02004560 if (txn->req.msg_state != HTTP_MSG_BODY)
4561 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004562
Willy Tarreauc11416f2007-06-17 16:58:38 +02004563 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4564 /* ensure the indexes are not affected */
4565 return 0;
4566
Willy Tarreau8797c062007-05-07 00:55:35 +02004567 test->len = txn->req.sl.rq.u_l;
4568 test->ptr = txn->req.sol + txn->req.sl.rq.u;
4569
Willy Tarreauf3d25982007-05-08 22:45:09 +02004570 /* we do not need to set READ_ONLY because the data is in a buffer */
4571 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02004572 return 1;
4573}
4574
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01004575static int
4576acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
4577 struct acl_expr *expr, struct acl_test *test)
4578{
4579 struct http_txn *txn = l7;
4580
Willy Tarreaub6866442008-07-14 23:54:42 +02004581 if (!txn)
4582 return 0;
4583
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01004584 if (txn->req.msg_state != HTTP_MSG_BODY)
4585 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004586
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01004587 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4588 /* ensure the indexes are not affected */
4589 return 0;
4590
4591 /* Parse HTTP request */
4592 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
4593 test->ptr = (void *)&((struct sockaddr_in *)&l4->srv_addr)->sin_addr;
4594 test->i = AF_INET;
4595
4596 /*
4597 * If we are parsing url in frontend space, we prepare backend stage
4598 * to not parse again the same url ! optimization lazyness...
4599 */
4600 if (px->options & PR_O_HTTP_PROXY)
4601 l4->flags |= SN_ADDR_SET;
4602
4603 test->flags = ACL_TEST_F_READ_ONLY;
4604 return 1;
4605}
4606
4607static int
4608acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
4609 struct acl_expr *expr, struct acl_test *test)
4610{
4611 struct http_txn *txn = l7;
4612
Willy Tarreaub6866442008-07-14 23:54:42 +02004613 if (!txn)
4614 return 0;
4615
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01004616 if (txn->req.msg_state != HTTP_MSG_BODY)
4617 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004618
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01004619 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4620 /* ensure the indexes are not affected */
4621 return 0;
4622
4623 /* Same optimization as url_ip */
4624 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
4625 test->i = ntohs(((struct sockaddr_in *)&l4->srv_addr)->sin_port);
4626
4627 if (px->options & PR_O_HTTP_PROXY)
4628 l4->flags |= SN_ADDR_SET;
4629
4630 test->flags = ACL_TEST_F_READ_ONLY;
4631 return 1;
4632}
4633
Willy Tarreauc11416f2007-06-17 16:58:38 +02004634/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
4635 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
4636 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02004637static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02004638acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02004639 struct acl_expr *expr, struct acl_test *test)
4640{
4641 struct http_txn *txn = l7;
4642 struct hdr_idx *idx = &txn->hdr_idx;
4643 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02004644
Willy Tarreaub6866442008-07-14 23:54:42 +02004645 if (!txn)
4646 return 0;
4647
Willy Tarreau33a7e692007-06-10 19:45:56 +02004648 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
4649 /* search for header from the beginning */
4650 ctx->idx = 0;
4651
Willy Tarreau33a7e692007-06-10 19:45:56 +02004652 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
4653 test->flags |= ACL_TEST_F_FETCH_MORE;
4654 test->flags |= ACL_TEST_F_VOL_HDR;
4655 test->len = ctx->vlen;
4656 test->ptr = (char *)ctx->line + ctx->val;
4657 return 1;
4658 }
4659
4660 test->flags &= ~ACL_TEST_F_FETCH_MORE;
4661 test->flags |= ACL_TEST_F_VOL_HDR;
4662 return 0;
4663}
4664
Willy Tarreau33a7e692007-06-10 19:45:56 +02004665static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02004666acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
4667 struct acl_expr *expr, struct acl_test *test)
4668{
4669 struct http_txn *txn = l7;
4670
Willy Tarreaub6866442008-07-14 23:54:42 +02004671 if (!txn)
4672 return 0;
4673
Willy Tarreauc11416f2007-06-17 16:58:38 +02004674 if (txn->req.msg_state != HTTP_MSG_BODY)
4675 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004676
Willy Tarreauc11416f2007-06-17 16:58:38 +02004677 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4678 /* ensure the indexes are not affected */
4679 return 0;
4680
4681 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
4682}
4683
4684static int
4685acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
4686 struct acl_expr *expr, struct acl_test *test)
4687{
4688 struct http_txn *txn = l7;
4689
Willy Tarreaub6866442008-07-14 23:54:42 +02004690 if (!txn)
4691 return 0;
4692
Willy Tarreauc11416f2007-06-17 16:58:38 +02004693 if (txn->rsp.msg_state != HTTP_MSG_BODY)
4694 return 0;
4695
4696 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
4697}
4698
4699/* 6. Check on HTTP header count. The number of occurrences is returned.
4700 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
4701 */
4702static int
4703acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02004704 struct acl_expr *expr, struct acl_test *test)
4705{
4706 struct http_txn *txn = l7;
4707 struct hdr_idx *idx = &txn->hdr_idx;
4708 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02004709 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02004710
Willy Tarreaub6866442008-07-14 23:54:42 +02004711 if (!txn)
4712 return 0;
4713
Willy Tarreau33a7e692007-06-10 19:45:56 +02004714 ctx.idx = 0;
4715 cnt = 0;
4716 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
4717 cnt++;
4718
4719 test->i = cnt;
4720 test->flags = ACL_TEST_F_VOL_HDR;
4721 return 1;
4722}
4723
Willy Tarreauc11416f2007-06-17 16:58:38 +02004724static int
4725acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
4726 struct acl_expr *expr, struct acl_test *test)
4727{
4728 struct http_txn *txn = l7;
4729
Willy Tarreaub6866442008-07-14 23:54:42 +02004730 if (!txn)
4731 return 0;
4732
Willy Tarreauc11416f2007-06-17 16:58:38 +02004733 if (txn->req.msg_state != HTTP_MSG_BODY)
4734 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004735
Willy Tarreauc11416f2007-06-17 16:58:38 +02004736 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4737 /* ensure the indexes are not affected */
4738 return 0;
4739
4740 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
4741}
4742
4743static int
4744acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
4745 struct acl_expr *expr, struct acl_test *test)
4746{
4747 struct http_txn *txn = l7;
4748
Willy Tarreaub6866442008-07-14 23:54:42 +02004749 if (!txn)
4750 return 0;
4751
Willy Tarreauc11416f2007-06-17 16:58:38 +02004752 if (txn->rsp.msg_state != HTTP_MSG_BODY)
4753 return 0;
4754
4755 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
4756}
4757
Willy Tarreau33a7e692007-06-10 19:45:56 +02004758/* 7. Check on HTTP header's integer value. The integer value is returned.
4759 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02004760 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02004761 */
4762static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02004763acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02004764 struct acl_expr *expr, struct acl_test *test)
4765{
4766 struct http_txn *txn = l7;
4767 struct hdr_idx *idx = &txn->hdr_idx;
4768 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02004769
Willy Tarreaub6866442008-07-14 23:54:42 +02004770 if (!txn)
4771 return 0;
4772
Willy Tarreau33a7e692007-06-10 19:45:56 +02004773 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
4774 /* search for header from the beginning */
4775 ctx->idx = 0;
4776
Willy Tarreau33a7e692007-06-10 19:45:56 +02004777 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
4778 test->flags |= ACL_TEST_F_FETCH_MORE;
4779 test->flags |= ACL_TEST_F_VOL_HDR;
4780 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
4781 return 1;
4782 }
4783
4784 test->flags &= ~ACL_TEST_F_FETCH_MORE;
4785 test->flags |= ACL_TEST_F_VOL_HDR;
4786 return 0;
4787}
4788
Willy Tarreauc11416f2007-06-17 16:58:38 +02004789static int
4790acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
4791 struct acl_expr *expr, struct acl_test *test)
4792{
4793 struct http_txn *txn = l7;
4794
Willy Tarreaub6866442008-07-14 23:54:42 +02004795 if (!txn)
4796 return 0;
4797
Willy Tarreauc11416f2007-06-17 16:58:38 +02004798 if (txn->req.msg_state != HTTP_MSG_BODY)
4799 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004800
Willy Tarreauc11416f2007-06-17 16:58:38 +02004801 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4802 /* ensure the indexes are not affected */
4803 return 0;
4804
4805 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
4806}
4807
4808static int
4809acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
4810 struct acl_expr *expr, struct acl_test *test)
4811{
4812 struct http_txn *txn = l7;
4813
Willy Tarreaub6866442008-07-14 23:54:42 +02004814 if (!txn)
4815 return 0;
4816
Willy Tarreauc11416f2007-06-17 16:58:38 +02004817 if (txn->rsp.msg_state != HTTP_MSG_BODY)
4818 return 0;
4819
4820 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
4821}
4822
Willy Tarreau737b0c12007-06-10 21:28:46 +02004823/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
4824 * the first '/' after the possible hostname, and ends before the possible '?'.
4825 */
4826static int
4827acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
4828 struct acl_expr *expr, struct acl_test *test)
4829{
4830 struct http_txn *txn = l7;
4831 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02004832
Willy Tarreaub6866442008-07-14 23:54:42 +02004833 if (!txn)
4834 return 0;
4835
Willy Tarreauc11416f2007-06-17 16:58:38 +02004836 if (txn->req.msg_state != HTTP_MSG_BODY)
4837 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02004838
Willy Tarreauc11416f2007-06-17 16:58:38 +02004839 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4840 /* ensure the indexes are not affected */
4841 return 0;
4842
Willy Tarreau21d2af32008-02-14 20:25:24 +01004843 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
4844 ptr = http_get_path(txn);
4845 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02004846 return 0;
4847
4848 /* OK, we got the '/' ! */
4849 test->ptr = ptr;
4850
4851 while (ptr < end && *ptr != '?')
4852 ptr++;
4853
4854 test->len = ptr - test->ptr;
4855
4856 /* we do not need to set READ_ONLY because the data is in a buffer */
4857 test->flags = ACL_TEST_F_VOL_1ST;
4858 return 1;
4859}
4860
4861
Willy Tarreau8797c062007-05-07 00:55:35 +02004862
4863/************************************************************************/
4864/* All supported keywords must be declared here. */
4865/************************************************************************/
4866
4867/* Note: must not be declared <const> as its list will be overwritten */
4868static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02004869 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT },
4870 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE },
4871 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE },
4872 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02004873
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02004874 { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE },
4875 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
4876 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE },
4877 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
4878 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
4879 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
4880 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
4881 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE },
4882 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau8797c062007-05-07 00:55:35 +02004883
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02004884 /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */
4885 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE },
4886 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
4887 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
4888 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE },
4889 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
4890 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
4891 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
4892 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE },
4893 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreauc11416f2007-06-17 16:58:38 +02004894
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02004895 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE },
4896 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE },
4897 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE },
4898 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE },
4899 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE },
4900 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE },
4901 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE },
4902 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE },
4903 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02004904
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02004905 { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE },
4906 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
4907 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
4908 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE },
4909 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
4910 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
4911 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02004912
Willy Tarreauf3d25982007-05-08 22:45:09 +02004913 { NULL, NULL, NULL, NULL },
4914
4915#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02004916 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
4917 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
4918 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
4919 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
4920 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
4921 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
4922 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
4923
Willy Tarreau8797c062007-05-07 00:55:35 +02004924 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
4925 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
4926 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
4927 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
4928 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
4929 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
4930 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
4931 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
4932
4933 { "auth_user", acl_parse_str, acl_fetch_user, acl_match_str },
4934 { "auth_regex", acl_parse_reg, acl_fetch_user, acl_match_reg },
4935 { "auth_clear", acl_parse_str, acl_fetch_auth, acl_match_str },
4936 { "auth_md5", acl_parse_str, acl_fetch_auth, acl_match_md5 },
4937 { NULL, NULL, NULL, NULL },
4938#endif
4939}};
4940
4941
4942__attribute__((constructor))
4943static void __http_protocol_init(void)
4944{
4945 acl_register_keywords(&acl_kws);
4946}
4947
4948
Willy Tarreau58f10d72006-12-04 02:26:12 +01004949/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004950 * Local variables:
4951 * c-indent-level: 8
4952 * c-basic-offset: 8
4953 * End:
4954 */