blob: f685201787e023b93516b554d2c3499a14219449 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreaua15645d2007-03-18 16:22:39 +01004 * Copyright 2000-2007 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>
33#include <common/time.h>
34#include <common/uri_auth.h>
35#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036
Willy Tarreau8797c062007-05-07 00:55:35 +020037#include <types/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038#include <types/capture.h>
39#include <types/client.h>
40#include <types/global.h>
41#include <types/httperr.h>
42#include <types/polling.h>
43#include <types/proxy.h>
44#include <types/server.h>
45
Willy Tarreau8797c062007-05-07 00:55:35 +020046#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/backend.h>
48#include <proto/buffers.h>
Willy Tarreau91861262007-10-17 17:06:05 +020049#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <proto/fd.h>
51#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010052#include <proto/hdr_idx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/proto_http.h>
54#include <proto/queue.h>
Willy Tarreau91861262007-10-17 17:06:05 +020055#include <proto/senddata.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/session.h>
57#include <proto/task.h>
58
Willy Tarreau6d1a9882007-01-07 02:03:04 +010059#ifdef CONFIG_HAP_TCPSPLICE
60#include <libtcpsplice.h>
61#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020062
Willy Tarreau58f10d72006-12-04 02:26:12 +010063#define DEBUG_PARSE_NO_SPEEDUP
64#undef DEBUG_PARSE_NO_SPEEDUP
65
Willy Tarreau976f1ee2006-12-17 10:06:03 +010066/* This is used to perform a quick jump as an alternative to a break/continue
67 * instruction. The first argument is the label for normal operation, and the
68 * second one is the break/continue instruction in the no_speedup mode.
69 */
70
71#ifdef DEBUG_PARSE_NO_SPEEDUP
72#define QUICK_JUMP(x,y) y
73#else
74#define QUICK_JUMP(x,y) goto x
75#endif
76
Willy Tarreau1c47f852006-07-09 08:22:27 +020077/* This is used by remote monitoring */
Willy Tarreau0f772532006-12-23 20:51:41 +010078const char HTTP_200[] =
Willy Tarreau1c47f852006-07-09 08:22:27 +020079 "HTTP/1.0 200 OK\r\n"
80 "Cache-Control: no-cache\r\n"
81 "Connection: close\r\n"
82 "Content-Type: text/html\r\n"
83 "\r\n"
84 "<html><body><h1>200 OK</h1>\nHAProxy: service ready.\n</body></html>\n";
85
Willy Tarreau0f772532006-12-23 20:51:41 +010086const struct chunk http_200_chunk = {
87 .str = (char *)&HTTP_200,
88 .len = sizeof(HTTP_200)-1
89};
90
91const char *HTTP_302 =
92 "HTTP/1.0 302 Found\r\n"
93 "Cache-Control: no-cache\r\n"
94 "Connection: close\r\n"
95 "Location: "; /* not terminated since it will be concatenated with the URL */
96
97/* same as 302 except that the browser MUST retry with the GET method */
98const char *HTTP_303 =
99 "HTTP/1.0 303 See Other\r\n"
100 "Cache-Control: no-cache\r\n"
101 "Connection: close\r\n"
102 "Location: "; /* not terminated since it will be concatenated with the URL */
103
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
105const char *HTTP_401_fmt =
106 "HTTP/1.0 401 Unauthorized\r\n"
107 "Cache-Control: no-cache\r\n"
108 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200109 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
111 "\r\n"
112 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
113
Willy Tarreau0f772532006-12-23 20:51:41 +0100114
115const int http_err_codes[HTTP_ERR_SIZE] = {
116 [HTTP_ERR_400] = 400,
117 [HTTP_ERR_403] = 403,
118 [HTTP_ERR_408] = 408,
119 [HTTP_ERR_500] = 500,
120 [HTTP_ERR_502] = 502,
121 [HTTP_ERR_503] = 503,
122 [HTTP_ERR_504] = 504,
123};
124
Willy Tarreau80587432006-12-24 17:47:20 +0100125static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreau0f772532006-12-23 20:51:41 +0100126 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100127 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100128 "Cache-Control: no-cache\r\n"
129 "Connection: close\r\n"
130 "Content-Type: text/html\r\n"
131 "\r\n"
132 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
133
134 [HTTP_ERR_403] =
135 "HTTP/1.0 403 Forbidden\r\n"
136 "Cache-Control: no-cache\r\n"
137 "Connection: close\r\n"
138 "Content-Type: text/html\r\n"
139 "\r\n"
140 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
141
142 [HTTP_ERR_408] =
143 "HTTP/1.0 408 Request Time-out\r\n"
144 "Cache-Control: no-cache\r\n"
145 "Connection: close\r\n"
146 "Content-Type: text/html\r\n"
147 "\r\n"
148 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
149
150 [HTTP_ERR_500] =
151 "HTTP/1.0 500 Server Error\r\n"
152 "Cache-Control: no-cache\r\n"
153 "Connection: close\r\n"
154 "Content-Type: text/html\r\n"
155 "\r\n"
156 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
157
158 [HTTP_ERR_502] =
159 "HTTP/1.0 502 Bad Gateway\r\n"
160 "Cache-Control: no-cache\r\n"
161 "Connection: close\r\n"
162 "Content-Type: text/html\r\n"
163 "\r\n"
164 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
165
166 [HTTP_ERR_503] =
167 "HTTP/1.0 503 Service Unavailable\r\n"
168 "Cache-Control: no-cache\r\n"
169 "Connection: close\r\n"
170 "Content-Type: text/html\r\n"
171 "\r\n"
172 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
173
174 [HTTP_ERR_504] =
175 "HTTP/1.0 504 Gateway Time-out\r\n"
176 "Cache-Control: no-cache\r\n"
177 "Connection: close\r\n"
178 "Content-Type: text/html\r\n"
179 "\r\n"
180 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
181
182};
183
Willy Tarreau80587432006-12-24 17:47:20 +0100184/* We must put the messages here since GCC cannot initialize consts depending
185 * on strlen().
186 */
187struct chunk http_err_chunks[HTTP_ERR_SIZE];
188
Willy Tarreau42250582007-04-01 01:30:43 +0200189#define FD_SETS_ARE_BITFIELDS
190#ifdef FD_SETS_ARE_BITFIELDS
191/*
192 * This map is used with all the FD_* macros to check whether a particular bit
193 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
194 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
195 * byte should be encoded. Be careful to always pass bytes from 0 to 255
196 * exclusively to the macros.
197 */
198fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
199fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
200
201#else
202#error "Check if your OS uses bitfields for fd_sets"
203#endif
204
Willy Tarreau80587432006-12-24 17:47:20 +0100205void init_proto_http()
206{
Willy Tarreau42250582007-04-01 01:30:43 +0200207 int i;
208 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100209 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200210
Willy Tarreau80587432006-12-24 17:47:20 +0100211 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
212 if (!http_err_msgs[msg]) {
213 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
214 abort();
215 }
216
217 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
218 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
219 }
Willy Tarreau42250582007-04-01 01:30:43 +0200220
221 /* initialize the log header encoding map : '{|}"#' should be encoded with
222 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
223 * URL encoding only requires '"', '#' to be encoded as well as non-
224 * printable characters above.
225 */
226 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
227 memset(url_encode_map, 0, sizeof(url_encode_map));
228 for (i = 0; i < 32; i++) {
229 FD_SET(i, hdr_encode_map);
230 FD_SET(i, url_encode_map);
231 }
232 for (i = 127; i < 256; i++) {
233 FD_SET(i, hdr_encode_map);
234 FD_SET(i, url_encode_map);
235 }
236
237 tmp = "\"#{|}";
238 while (*tmp) {
239 FD_SET(*tmp, hdr_encode_map);
240 tmp++;
241 }
242
243 tmp = "\"#";
244 while (*tmp) {
245 FD_SET(*tmp, url_encode_map);
246 tmp++;
247 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200248
249 /* memory allocations */
250 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200251 pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100252}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200253
Willy Tarreau53b6c742006-12-17 13:37:46 +0100254/*
255 * We have 26 list of methods (1 per first letter), each of which can have
256 * up to 3 entries (2 valid, 1 null).
257 */
258struct http_method_desc {
259 http_meth_t meth;
260 int len;
261 const char text[8];
262};
263
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100264const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100265 ['C' - 'A'] = {
266 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
267 },
268 ['D' - 'A'] = {
269 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
270 },
271 ['G' - 'A'] = {
272 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
273 },
274 ['H' - 'A'] = {
275 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
276 },
277 ['P' - 'A'] = {
278 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
279 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
280 },
281 ['T' - 'A'] = {
282 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
283 },
284 /* rest is empty like this :
285 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
286 */
287};
288
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100289/* It is about twice as fast on recent architectures to lookup a byte in a
290 * table than two perform a boolean AND or OR between two tests. Refer to
291 * RFC2616 for those chars.
292 */
293
294const char http_is_spht[256] = {
295 [' '] = 1, ['\t'] = 1,
296};
297
298const char http_is_crlf[256] = {
299 ['\r'] = 1, ['\n'] = 1,
300};
301
302const char http_is_lws[256] = {
303 [' '] = 1, ['\t'] = 1,
304 ['\r'] = 1, ['\n'] = 1,
305};
306
307const char http_is_sep[256] = {
308 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
309 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
310 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
311 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
312 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
313};
314
315const char http_is_ctl[256] = {
316 [0 ... 31] = 1,
317 [127] = 1,
318};
319
320/*
321 * A token is any ASCII char that is neither a separator nor a CTL char.
322 * Do not overwrite values in assignment since gcc-2.95 will not handle
323 * them correctly. Instead, define every non-CTL char's status.
324 */
325const char http_is_token[256] = {
326 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
327 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
328 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
329 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
330 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
331 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
332 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
333 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
334 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
335 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
336 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
337 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
338 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
339 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
340 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
341 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
342 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
343 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
344 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
345 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
346 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
347 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
348 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
349 ['|'] = 1, ['}'] = 0, ['~'] = 1,
350};
351
352
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100353/*
354 * An http ver_token is any ASCII which can be found in an HTTP version,
355 * which includes 'H', 'T', 'P', '/', '.' and any digit.
356 */
357const char http_is_ver_token[256] = {
358 ['.'] = 1, ['/'] = 1,
359 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
360 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
361 ['H'] = 1, ['P'] = 1, ['T'] = 1,
362};
363
364
Willy Tarreaubaaee002006-06-26 02:48:02 +0200365#ifdef DEBUG_FULL
366static char *cli_stnames[5] = {"HDR", "DAT", "SHR", "SHW", "CLS" };
367static char *srv_stnames[7] = {"IDL", "CON", "HDR", "DAT", "SHR", "SHW", "CLS" };
368#endif
369
Willy Tarreau42250582007-04-01 01:30:43 +0200370static void http_sess_log(struct session *s);
371
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100372/*
373 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
374 * CRLF. Text length is measured first, so it cannot be NULL.
375 * The header is also automatically added to the index <hdr_idx>, and the end
376 * of headers is automatically adjusted. The number of bytes added is returned
377 * on success, otherwise <0 is returned indicating an error.
378 */
379int http_header_add_tail(struct buffer *b, struct http_msg *msg,
380 struct hdr_idx *hdr_idx, const char *text)
381{
382 int bytes, len;
383
384 len = strlen(text);
385 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
386 if (!bytes)
387 return -1;
388 msg->eoh += bytes;
389 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
390}
391
392/*
393 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
394 * CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
395 * the buffer is only opened and the space reserved, but nothing is copied.
396 * The header is also automatically added to the index <hdr_idx>, and the end
397 * of headers is automatically adjusted. The number of bytes added is returned
398 * on success, otherwise <0 is returned indicating an error.
399 */
400int http_header_add_tail2(struct buffer *b, struct http_msg *msg,
401 struct hdr_idx *hdr_idx, const char *text, int len)
402{
403 int bytes;
404
405 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
406 if (!bytes)
407 return -1;
408 msg->eoh += bytes;
409 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
410}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411
412/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100413 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
414 * If so, returns the position of the first non-space character relative to
415 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
416 * to return a pointer to the place after the first space. Returns 0 if the
417 * header name does not match. Checks are case-insensitive.
418 */
419int http_header_match2(const char *hdr, const char *end,
420 const char *name, int len)
421{
422 const char *val;
423
424 if (hdr + len >= end)
425 return 0;
426 if (hdr[len] != ':')
427 return 0;
428 if (strncasecmp(hdr, name, len) != 0)
429 return 0;
430 val = hdr + len + 1;
431 while (val < end && HTTP_IS_SPHT(*val))
432 val++;
433 if ((val >= end) && (len + 2 <= end - hdr))
434 return len + 2; /* we may replace starting from second space */
435 return val - hdr;
436}
437
Willy Tarreau33a7e692007-06-10 19:45:56 +0200438/* Find the end of the header value contained between <s> and <e>.
439 * See RFC2616, par 2.2 for more information. Note that it requires
440 * a valid header to return a valid result.
441 */
442const char *find_hdr_value_end(const char *s, const char *e)
443{
444 int quoted, qdpair;
445
446 quoted = qdpair = 0;
447 for (; s < e; s++) {
448 if (qdpair) qdpair = 0;
449 else if (quoted && *s == '\\') qdpair = 1;
450 else if (quoted && *s == '"') quoted = 0;
451 else if (*s == '"') quoted = 1;
452 else if (*s == ',') return s;
453 }
454 return s;
455}
456
457/* Find the first or next occurrence of header <name> in message buffer <sol>
458 * using headers index <idx>, and return it in the <ctx> structure. This
459 * structure holds everything necessary to use the header and find next
460 * occurrence. If its <idx> member is 0, the header is searched from the
461 * beginning. Otherwise, the next occurrence is returned. The function returns
462 * 1 when it finds a value, and 0 when there is no more.
463 */
464int http_find_header2(const char *name, int len,
465 const char *sol, struct hdr_idx *idx,
466 struct hdr_ctx *ctx)
467{
468 __label__ return_hdr, next_hdr;
469 const char *eol, *sov;
470 int cur_idx;
471
472 if (ctx->idx) {
473 /* We have previously returned a value, let's search
474 * another one on the same line.
475 */
476 cur_idx = ctx->idx;
477 sol = ctx->line;
478 sov = sol + ctx->val + ctx->vlen;
479 eol = sol + idx->v[cur_idx].len;
480
481 if (sov >= eol)
482 /* no more values in this header */
483 goto next_hdr;
484
485 /* values remaining for this header, skip the comma */
486 sov++;
487 while (sov < eol && http_is_lws[(unsigned char)*sov])
488 sov++;
489
490 goto return_hdr;
491 }
492
493 /* first request for this header */
494 sol += hdr_idx_first_pos(idx);
495 cur_idx = hdr_idx_first_idx(idx);
496
497 while (cur_idx) {
498 eol = sol + idx->v[cur_idx].len;
499
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200500 if (len == 0) {
501 /* No argument was passed, we want any header.
502 * To achieve this, we simply build a fake request. */
503 while (sol + len < eol && sol[len] != ':')
504 len++;
505 name = sol;
506 }
507
Willy Tarreau33a7e692007-06-10 19:45:56 +0200508 if ((len < eol - sol) &&
509 (sol[len] == ':') &&
510 (strncasecmp(sol, name, len) == 0)) {
511
512 sov = sol + len + 1;
513 while (sov < eol && http_is_lws[(unsigned char)*sov])
514 sov++;
515 return_hdr:
516 ctx->line = sol;
517 ctx->idx = cur_idx;
518 ctx->val = sov - sol;
519
520 eol = find_hdr_value_end(sov, eol);
521 ctx->vlen = eol - sov;
522 return 1;
523 }
524 next_hdr:
525 sol = eol + idx->v[cur_idx].cr + 1;
526 cur_idx = idx->v[cur_idx].next;
527 }
528 return 0;
529}
530
531int http_find_header(const char *name,
532 const char *sol, struct hdr_idx *idx,
533 struct hdr_ctx *ctx)
534{
535 return http_find_header2(name, strlen(name), sol, idx, ctx);
536}
537
Willy Tarreaubaaee002006-06-26 02:48:02 +0200538/* This function turns the server state into the SV_STCLOSE, and sets
Willy Tarreau0f772532006-12-23 20:51:41 +0100539 * indicators accordingly. Note that if <status> is 0, or if the message
540 * pointer is NULL, then no message is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200541 */
542void srv_close_with_err(struct session *t, int err, int finst,
Willy Tarreau0f772532006-12-23 20:51:41 +0100543 int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200544{
545 t->srv_state = SV_STCLOSE;
Willy Tarreau0f772532006-12-23 20:51:41 +0100546 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100547 t->txn.status = status;
Willy Tarreau73de9892006-11-30 11:40:23 +0100548 if (t->fe->mode == PR_MODE_HTTP)
Willy Tarreau0f772532006-12-23 20:51:41 +0100549 client_return(t, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200550 }
551 if (!(t->flags & SN_ERR_MASK))
552 t->flags |= err;
553 if (!(t->flags & SN_FINST_MASK))
554 t->flags |= finst;
555}
556
Willy Tarreau80587432006-12-24 17:47:20 +0100557/* This function returns the appropriate error location for the given session
558 * and message.
559 */
560
561struct chunk *error_message(struct session *s, int msgnum)
562{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200563 if (s->be->errmsg[msgnum].str)
564 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100565 else if (s->fe->errmsg[msgnum].str)
566 return &s->fe->errmsg[msgnum];
567 else
568 return &http_err_chunks[msgnum];
569}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200570
Willy Tarreau53b6c742006-12-17 13:37:46 +0100571/*
572 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
573 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
574 */
575static http_meth_t find_http_meth(const char *str, const int len)
576{
577 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100578 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100579
580 m = ((unsigned)*str - 'A');
581
582 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100583 for (h = http_methods[m]; h->len > 0; h++) {
584 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100585 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100586 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100587 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100588 };
589 return HTTP_METH_OTHER;
590 }
591 return HTTP_METH_NONE;
592
593}
594
Willy Tarreau21d2af32008-02-14 20:25:24 +0100595/* Parse the URI from the given transaction (which is assumed to be in request
596 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
597 * It is returned otherwise.
598 */
599static char *
600http_get_path(struct http_txn *txn)
601{
602 char *ptr, *end;
603
604 ptr = txn->req.sol + txn->req.sl.rq.u;
605 end = ptr + txn->req.sl.rq.u_l;
606
607 if (ptr >= end)
608 return NULL;
609
610 /* RFC2616, par. 5.1.2 :
611 * Request-URI = "*" | absuri | abspath | authority
612 */
613
614 if (*ptr == '*')
615 return NULL;
616
617 if (isalpha((unsigned char)*ptr)) {
618 /* this is a scheme as described by RFC3986, par. 3.1 */
619 ptr++;
620 while (ptr < end &&
621 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
622 ptr++;
623 /* skip '://' */
624 if (ptr == end || *ptr++ != ':')
625 return NULL;
626 if (ptr == end || *ptr++ != '/')
627 return NULL;
628 if (ptr == end || *ptr++ != '/')
629 return NULL;
630 }
631 /* skip [user[:passwd]@]host[:[port]] */
632
633 while (ptr < end && *ptr != '/')
634 ptr++;
635
636 if (ptr == end)
637 return NULL;
638
639 /* OK, we got the '/' ! */
640 return ptr;
641}
642
Willy Tarreaubaaee002006-06-26 02:48:02 +0200643/* Processes the client and server jobs of a session task, then
644 * puts it back to the wait queue in a clean state, or
645 * cleans up its resources if it must be deleted. Returns
646 * the time the task accepts to wait, or TIME_ETERNITY for
647 * infinity.
648 */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200649void process_session(struct task *t, struct timeval *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200650{
651 struct session *s = t->context;
652 int fsm_resync = 0;
653
654 do {
655 fsm_resync = 0;
656 //fprintf(stderr,"before_cli:cli=%d, srv=%d\n", s->cli_state, s->srv_state);
657 fsm_resync |= process_cli(s);
658 //fprintf(stderr,"cli/srv:cli=%d, srv=%d\n", s->cli_state, s->srv_state);
659 fsm_resync |= process_srv(s);
660 //fprintf(stderr,"after_srv:cli=%d, srv=%d\n", s->cli_state, s->srv_state);
661 } while (fsm_resync);
662
Willy Tarreauf41d4b12007-04-28 23:26:14 +0200663 if (likely(s->cli_state != CL_STCLOSE || s->srv_state != SV_STCLOSE)) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100664
665 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
666 session_process_counters(s);
667
Willy Tarreau0f9f5052006-07-29 17:39:25 +0200668 s->req->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE;
669 s->rep->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200670
Willy Tarreaua6a6a932007-04-28 22:40:08 +0200671 tv_min(&t->expire, &s->req->rex, &s->req->wex);
672 tv_bound(&t->expire, &s->req->cex);
673 tv_bound(&t->expire, &s->rep->rex);
674 tv_bound(&t->expire, &s->rep->wex);
Willy Tarreau036fae02008-01-06 13:24:40 +0100675 if (s->cli_state == CL_STHEADERS)
676 tv_bound(&t->expire, &s->txn.exp);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200677
678 /* restore t to its place in the task list */
679 task_queue(t);
680
681#ifdef DEBUG_FULL
682 /* DEBUG code : this should never ever happen, otherwise it indicates
683 * that a task still has something to do and will provoke a quick loop.
684 */
Willy Tarreaub8816082008-01-18 12:18:15 +0100685 if (tv_ms_remain2(&now, &t->expire) <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200686 exit(100);
687#endif
Willy Tarreaud825eef2007-05-12 22:35:00 +0200688 *next = t->expire;
689 return; /* nothing more to do */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200690 }
691
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100692 s->fe->feconn--;
693 if (s->flags & SN_BE_ASSIGNED)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200694 s->be->beconn--;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200695 actconn--;
696
Willy Tarreauf41d4b12007-04-28 23:26:14 +0200697 if (unlikely((global.mode & MODE_DEBUG) &&
698 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200699 int len;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100700 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200701 s->uniq_id, s->be->id,
Willy Tarreau45e73e32006-12-17 00:05:15 +0100702 (unsigned short)s->cli_fd, (unsigned short)s->srv_fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200703 write(1, trash, len);
704 }
705
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200706 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100707 session_process_counters(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200708
709 /* let's do a final log if we need it */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200710 if (s->logs.logwait &&
711 !(s->flags & SN_MONITOR) &&
Willy Tarreau42250582007-04-01 01:30:43 +0200712 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
713 if (s->fe->to_log & LW_REQ)
714 http_sess_log(s);
715 else
716 tcp_sess_log(s);
717 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200718
719 /* the task MUST not be in the run queue anymore */
720 task_delete(t);
721 session_free(s);
722 task_free(t);
Willy Tarreaud825eef2007-05-12 22:35:00 +0200723 tv_eternity(next);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200724}
725
726
Willy Tarreau42250582007-04-01 01:30:43 +0200727extern const char sess_term_cond[8];
728extern const char sess_fin_state[8];
729extern const char *monthname[12];
730const char sess_cookie[4] = "NIDV"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie */
731const char sess_set_cookie[8] = "N1I3PD5R"; /* No set-cookie, unknown, Set-Cookie Inserted, unknown,
732 Set-cookie seen and left unchanged (passive), Set-cookie Deleted,
733 unknown, Set-cookie Rewritten */
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200734struct pool_head *pool2_requri;
Willy Tarreau086b3b42007-05-13 21:45:51 +0200735struct pool_head *pool2_capture;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100736
Willy Tarreau42250582007-04-01 01:30:43 +0200737/*
738 * send a log for the session when we have enough info about it.
739 * Will not log if the frontend has no log defined.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100740 */
Willy Tarreau42250582007-04-01 01:30:43 +0200741static void http_sess_log(struct session *s)
742{
743 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
744 struct proxy *fe = s->fe;
745 struct proxy *be = s->be;
746 struct proxy *prx_log;
747 struct http_txn *txn = &s->txn;
748 int tolog;
749 char *uri, *h;
750 char *svid;
Willy Tarreaufe944602007-10-25 10:34:16 +0200751 struct tm tm;
Willy Tarreau42250582007-04-01 01:30:43 +0200752 static char tmpline[MAX_SYSLOG_LEN];
753 int hdr;
754
755 if (fe->logfac1 < 0 && fe->logfac2 < 0)
756 return;
757 prx_log = fe;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100758
Willy Tarreau42250582007-04-01 01:30:43 +0200759 if (s->cli_addr.ss_family == AF_INET)
760 inet_ntop(AF_INET,
761 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
762 pn, sizeof(pn));
763 else
764 inet_ntop(AF_INET6,
765 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
766 pn, sizeof(pn));
767
Willy Tarreaufe944602007-10-25 10:34:16 +0200768 get_localtime(s->logs.tv_accept.tv_sec, &tm);
Willy Tarreau42250582007-04-01 01:30:43 +0200769
770 /* FIXME: let's limit ourselves to frontend logging for now. */
771 tolog = fe->to_log;
772
773 h = tmpline;
774 if (fe->to_log & LW_REQHDR &&
775 txn->req.cap &&
776 (h < tmpline + sizeof(tmpline) - 10)) {
777 *(h++) = ' ';
778 *(h++) = '{';
779 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
780 if (hdr)
781 *(h++) = '|';
782 if (txn->req.cap[hdr] != NULL)
783 h = encode_string(h, tmpline + sizeof(tmpline) - 7,
784 '#', hdr_encode_map, txn->req.cap[hdr]);
785 }
786 *(h++) = '}';
787 }
788
789 if (fe->to_log & LW_RSPHDR &&
790 txn->rsp.cap &&
791 (h < tmpline + sizeof(tmpline) - 7)) {
792 *(h++) = ' ';
793 *(h++) = '{';
794 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
795 if (hdr)
796 *(h++) = '|';
797 if (txn->rsp.cap[hdr] != NULL)
798 h = encode_string(h, tmpline + sizeof(tmpline) - 4,
799 '#', hdr_encode_map, txn->rsp.cap[hdr]);
800 }
801 *(h++) = '}';
802 }
803
804 if (h < tmpline + sizeof(tmpline) - 4) {
805 *(h++) = ' ';
806 *(h++) = '"';
807 uri = txn->uri ? txn->uri : "<BADREQ>";
808 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
809 '#', url_encode_map, uri);
810 *(h++) = '"';
811 }
812 *h = '\0';
813
814 svid = (tolog & LW_SVID) ?
815 (s->data_source != DATA_SRC_STATS) ?
816 (s->srv != NULL) ? s->srv->id : "<NOSRV>" : "<STATS>" : "-";
817
818 send_log(prx_log, LOG_INFO,
819 "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]"
820 " %s %s/%s %d/%d/%d/%d/%s%d %d %s%lld"
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +0100821 " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %d/%d%s\n",
Willy Tarreau42250582007-04-01 01:30:43 +0200822 pn,
823 (s->cli_addr.ss_family == AF_INET) ?
824 ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port) :
825 ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreaufe944602007-10-25 10:34:16 +0200826 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
827 tm.tm_hour, tm.tm_min, tm.tm_sec, s->logs.tv_accept.tv_usec/1000,
Willy Tarreau42250582007-04-01 01:30:43 +0200828 fe->id, be->id, svid,
829 s->logs.t_request,
830 (s->logs.t_queue >= 0) ? s->logs.t_queue - s->logs.t_request : -1,
831 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
832 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
833 (tolog & LW_BYTES) ? "" : "+", s->logs.t_close,
834 txn->status,
Willy Tarreau8b3977f2008-01-18 11:16:32 +0100835 (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out,
Willy Tarreau42250582007-04-01 01:30:43 +0200836 txn->cli_cookie ? txn->cli_cookie : "-",
837 txn->srv_cookie ? txn->srv_cookie : "-",
838 sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT],
839 sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT],
840 (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
841 (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-',
842 actconn, fe->feconn, be->beconn, s->srv ? s->srv->cur_sess : 0,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +0100843 (s->flags & SN_REDISP)?"+":"",
844 (s->conn_retries>0)?(be->conn_retries - s->conn_retries):be->conn_retries,
Willy Tarreau42250582007-04-01 01:30:43 +0200845 s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline);
846
847 s->logs.logwait = 0;
848}
849
Willy Tarreau117f59e2007-03-04 18:17:17 +0100850
851/*
852 * Capture headers from message starting at <som> according to header list
853 * <cap_hdr>, and fill the <idx> structure appropriately.
854 */
855void capture_headers(char *som, struct hdr_idx *idx,
856 char **cap, struct cap_hdr *cap_hdr)
857{
858 char *eol, *sol, *col, *sov;
859 int cur_idx;
860 struct cap_hdr *h;
861 int len;
862
863 sol = som + hdr_idx_first_pos(idx);
864 cur_idx = hdr_idx_first_idx(idx);
865
866 while (cur_idx) {
867 eol = sol + idx->v[cur_idx].len;
868
869 col = sol;
870 while (col < eol && *col != ':')
871 col++;
872
873 sov = col + 1;
874 while (sov < eol && http_is_lws[(unsigned char)*sov])
875 sov++;
876
877 for (h = cap_hdr; h; h = h->next) {
878 if ((h->namelen == col - sol) &&
879 (strncasecmp(sol, h->name, h->namelen) == 0)) {
880 if (cap[h->index] == NULL)
881 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200882 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +0100883
884 if (cap[h->index] == NULL) {
885 Alert("HTTP capture : out of memory.\n");
886 continue;
887 }
888
889 len = eol - sov;
890 if (len > h->len)
891 len = h->len;
892
893 memcpy(cap[h->index], sov, len);
894 cap[h->index][len]=0;
895 }
896 }
897 sol = eol + idx->v[cur_idx].cr + 1;
898 cur_idx = idx->v[cur_idx].next;
899 }
900}
901
902
Willy Tarreau42250582007-04-01 01:30:43 +0200903/* either we find an LF at <ptr> or we jump to <bad>.
904 */
905#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
906
907/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
908 * otherwise to <http_msg_ood> with <state> set to <st>.
909 */
910#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
911 ptr++; \
912 if (likely(ptr < end)) \
913 goto good; \
914 else { \
915 state = (st); \
916 goto http_msg_ood; \
917 } \
918 } while (0)
919
920
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921/*
Willy Tarreaua15645d2007-03-18 16:22:39 +0100922 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +0100923 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
924 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
925 * will give undefined results.
926 * Note that it is upon the caller's responsibility to ensure that ptr < end,
927 * and that msg->sol points to the beginning of the response.
928 * If a complete line is found (which implies that at least one CR or LF is
929 * found before <end>, the updated <ptr> is returned, otherwise NULL is
930 * returned indicating an incomplete line (which does not mean that parts have
931 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
932 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
933 * upon next call.
934 *
Willy Tarreau9cdde232007-05-02 20:58:19 +0200935 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +0100936 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
937 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +0200938 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +0100939 */
Willy Tarreaue69eada2008-01-27 00:34:10 +0100940const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf,
941 unsigned int state, const char *ptr, const char *end,
942 char **ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +0100943{
944 __label__
945 http_msg_rpver,
946 http_msg_rpver_sp,
947 http_msg_rpcode,
948 http_msg_rpcode_sp,
949 http_msg_rpreason,
950 http_msg_rpline_eol,
951 http_msg_ood, /* out of data */
952 http_msg_invalid;
953
954 switch (state) {
955 http_msg_rpver:
956 case HTTP_MSG_RPVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100957 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +0100958 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
959
960 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +0100961 msg->sl.st.v_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +0100962 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
963 }
964 goto http_msg_invalid;
965
966 http_msg_rpver_sp:
967 case HTTP_MSG_RPVER_SP:
968 if (likely(!HTTP_IS_LWS(*ptr))) {
969 msg->sl.st.c = ptr - msg_buf;
970 goto http_msg_rpcode;
971 }
972 if (likely(HTTP_IS_SPHT(*ptr)))
973 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
974 /* so it's a CR/LF, this is invalid */
975 goto http_msg_invalid;
976
977 http_msg_rpcode:
978 case HTTP_MSG_RPCODE:
979 if (likely(!HTTP_IS_LWS(*ptr)))
980 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
981
982 if (likely(HTTP_IS_SPHT(*ptr))) {
983 msg->sl.st.c_l = (ptr - msg_buf) - msg->sl.st.c;
984 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
985 }
986
987 /* so it's a CR/LF, so there is no reason phrase */
988 msg->sl.st.c_l = (ptr - msg_buf) - msg->sl.st.c;
989 http_msg_rsp_reason:
990 /* FIXME: should we support HTTP responses without any reason phrase ? */
991 msg->sl.st.r = ptr - msg_buf;
992 msg->sl.st.r_l = 0;
993 goto http_msg_rpline_eol;
994
995 http_msg_rpcode_sp:
996 case HTTP_MSG_RPCODE_SP:
997 if (likely(!HTTP_IS_LWS(*ptr))) {
998 msg->sl.st.r = ptr - msg_buf;
999 goto http_msg_rpreason;
1000 }
1001 if (likely(HTTP_IS_SPHT(*ptr)))
1002 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1003 /* so it's a CR/LF, so there is no reason phrase */
1004 goto http_msg_rsp_reason;
1005
1006 http_msg_rpreason:
1007 case HTTP_MSG_RPREASON:
1008 if (likely(!HTTP_IS_CRLF(*ptr)))
1009 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
1010 msg->sl.st.r_l = (ptr - msg_buf) - msg->sl.st.r;
1011 http_msg_rpline_eol:
1012 /* We have seen the end of line. Note that we do not
1013 * necessarily have the \n yet, but at least we know that we
1014 * have EITHER \r OR \n, otherwise the response would not be
1015 * complete. We can then record the response length and return
1016 * to the caller which will be able to register it.
1017 */
1018 msg->sl.st.l = ptr - msg->sol;
1019 return ptr;
1020
1021#ifdef DEBUG_FULL
1022 default:
1023 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1024 exit(1);
1025#endif
1026 }
1027
1028 http_msg_ood:
1029 /* out of data */
1030 if (ret_state)
1031 *ret_state = state;
1032 if (ret_ptr)
1033 *ret_ptr = (char *)ptr;
1034 return NULL;
1035
1036 http_msg_invalid:
1037 /* invalid message */
1038 if (ret_state)
1039 *ret_state = HTTP_MSG_ERROR;
1040 return NULL;
1041}
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 __label__
1068 http_msg_rqmeth,
1069 http_msg_rqmeth_sp,
1070 http_msg_rquri,
1071 http_msg_rquri_sp,
1072 http_msg_rqver,
1073 http_msg_rqline_eol,
1074 http_msg_ood, /* out of data */
1075 http_msg_invalid;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001076
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001077 switch (state) {
1078 http_msg_rqmeth:
1079 case HTTP_MSG_RQMETH:
1080 if (likely(HTTP_IS_TOKEN(*ptr)))
1081 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001082
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001083 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001084 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001085 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1086 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001087
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001088 if (likely(HTTP_IS_CRLF(*ptr))) {
1089 /* HTTP 0.9 request */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001090 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001091 http_msg_req09_uri:
1092 msg->sl.rq.u = ptr - msg_buf;
1093 http_msg_req09_uri_e:
1094 msg->sl.rq.u_l = (ptr - msg_buf) - msg->sl.rq.u;
1095 http_msg_req09_ver:
1096 msg->sl.rq.v = ptr - msg_buf;
1097 msg->sl.rq.v_l = 0;
1098 goto http_msg_rqline_eol;
1099 }
1100 goto http_msg_invalid;
1101
1102 http_msg_rqmeth_sp:
1103 case HTTP_MSG_RQMETH_SP:
1104 if (likely(!HTTP_IS_LWS(*ptr))) {
1105 msg->sl.rq.u = ptr - msg_buf;
1106 goto http_msg_rquri;
1107 }
1108 if (likely(HTTP_IS_SPHT(*ptr)))
1109 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1110 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1111 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001112
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001113 http_msg_rquri:
1114 case HTTP_MSG_RQURI:
1115 if (likely(!HTTP_IS_LWS(*ptr)))
1116 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001117
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001118 if (likely(HTTP_IS_SPHT(*ptr))) {
1119 msg->sl.rq.u_l = (ptr - msg_buf) - msg->sl.rq.u;
1120 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1121 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001122
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001123 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1124 goto http_msg_req09_uri_e;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001125
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001126 http_msg_rquri_sp:
1127 case HTTP_MSG_RQURI_SP:
1128 if (likely(!HTTP_IS_LWS(*ptr))) {
1129 msg->sl.rq.v = ptr - msg_buf;
1130 goto http_msg_rqver;
1131 }
1132 if (likely(HTTP_IS_SPHT(*ptr)))
1133 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1134 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1135 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001136
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001137 http_msg_rqver:
1138 case HTTP_MSG_RQVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001139 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001140 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001141
1142 if (likely(HTTP_IS_CRLF(*ptr))) {
1143 msg->sl.rq.v_l = (ptr - msg_buf) - msg->sl.rq.v;
1144 http_msg_rqline_eol:
1145 /* We have seen the end of line. Note that we do not
1146 * necessarily have the \n yet, but at least we know that we
1147 * have EITHER \r OR \n, otherwise the request would not be
1148 * complete. We can then record the request length and return
1149 * to the caller which will be able to register it.
1150 */
1151 msg->sl.rq.l = ptr - msg->sol;
1152 return ptr;
1153 }
1154
1155 /* neither an HTTP_VER token nor a CRLF */
1156 goto http_msg_invalid;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001157
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001158#ifdef DEBUG_FULL
1159 default:
1160 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1161 exit(1);
1162#endif
1163 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001164
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001165 http_msg_ood:
1166 /* out of data */
1167 if (ret_state)
1168 *ret_state = state;
1169 if (ret_ptr)
1170 *ret_ptr = (char *)ptr;
1171 return NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001172
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001173 http_msg_invalid:
1174 /* invalid message */
1175 if (ret_state)
1176 *ret_state = HTTP_MSG_ERROR;
1177 return NULL;
1178}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001179
1180
Willy Tarreau8973c702007-01-21 23:58:29 +01001181/*
1182 * This function parses an HTTP message, either a request or a response,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001183 * depending on the initial msg->msg_state. It can be preempted everywhere
Willy Tarreau8973c702007-01-21 23:58:29 +01001184 * when data are missing and recalled at the exact same location with no
1185 * information loss. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001186 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
1187 * fields.
Willy Tarreau8973c702007-01-21 23:58:29 +01001188 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001189void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx)
1190{
1191 __label__
1192 http_msg_rqbefore,
1193 http_msg_rqbefore_cr,
1194 http_msg_rqmeth,
1195 http_msg_rqline_end,
1196 http_msg_hdr_first,
1197 http_msg_hdr_name,
1198 http_msg_hdr_l1_sp,
1199 http_msg_hdr_l1_lf,
1200 http_msg_hdr_l1_lws,
1201 http_msg_hdr_val,
1202 http_msg_hdr_l2_lf,
1203 http_msg_hdr_l2_lws,
1204 http_msg_complete_header,
1205 http_msg_last_lf,
1206 http_msg_ood, /* out of data */
1207 http_msg_invalid;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001208
Willy Tarreaue69eada2008-01-27 00:34:10 +01001209 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001210 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001211
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001212 state = msg->msg_state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001213 ptr = buf->lr;
1214 end = buf->r;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001215
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001216 if (unlikely(ptr >= end))
1217 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001218
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001219 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001220 /*
1221 * First, states that are specific to the response only.
1222 * We check them first so that request and headers are
1223 * closer to each other (accessed more often).
1224 */
1225 http_msg_rpbefore:
1226 case HTTP_MSG_RPBEFORE:
1227 if (likely(HTTP_IS_TOKEN(*ptr))) {
1228 if (likely(ptr == buf->data)) {
1229 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001230 msg->som = 0;
Willy Tarreau8973c702007-01-21 23:58:29 +01001231 } else {
1232#if PARSE_PRESERVE_EMPTY_LINES
1233 /* only skip empty leading lines, don't remove them */
1234 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001235 msg->som = ptr - buf->data;
Willy Tarreau8973c702007-01-21 23:58:29 +01001236#else
1237 /* Remove empty leading lines, as recommended by
1238 * RFC2616. This takes a lot of time because we
1239 * must move all the buffer backwards, but this
1240 * is rarely needed. The method above will be
1241 * cleaner when we'll be able to start sending
1242 * the request from any place in the buffer.
1243 */
1244 buf->lr = ptr;
1245 buffer_replace2(buf, buf->data, buf->lr, NULL, 0);
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001246 msg->som = 0;
Willy Tarreau8973c702007-01-21 23:58:29 +01001247 msg->sol = buf->data;
1248 ptr = buf->data;
1249 end = buf->r;
1250#endif
1251 }
1252 hdr_idx_init(idx);
1253 state = HTTP_MSG_RPVER;
1254 goto http_msg_rpver;
1255 }
1256
1257 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1258 goto http_msg_invalid;
1259
1260 if (unlikely(*ptr == '\n'))
1261 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1262 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1263 /* stop here */
1264
1265 http_msg_rpbefore_cr:
1266 case HTTP_MSG_RPBEFORE_CR:
1267 EXPECT_LF_HERE(ptr, http_msg_invalid);
1268 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1269 /* stop here */
1270
1271 http_msg_rpver:
1272 case HTTP_MSG_RPVER:
1273 case HTTP_MSG_RPVER_SP:
1274 case HTTP_MSG_RPCODE:
1275 case HTTP_MSG_RPCODE_SP:
1276 case HTTP_MSG_RPREASON:
Willy Tarreaua15645d2007-03-18 16:22:39 +01001277 ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001278 &buf->lr, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001279 if (unlikely(!ptr))
1280 return;
1281
1282 /* we have a full response and we know that we have either a CR
1283 * or an LF at <ptr>.
1284 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001285 //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 +01001286 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1287
1288 msg->sol = ptr;
1289 if (likely(*ptr == '\r'))
1290 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1291 goto http_msg_rpline_end;
1292
1293 http_msg_rpline_end:
1294 case HTTP_MSG_RPLINE_END:
1295 /* msg->sol must point to the first of CR or LF. */
1296 EXPECT_LF_HERE(ptr, http_msg_invalid);
1297 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1298 /* stop here */
1299
1300 /*
1301 * Second, states that are specific to the request only
1302 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001303 http_msg_rqbefore:
1304 case HTTP_MSG_RQBEFORE:
1305 if (likely(HTTP_IS_TOKEN(*ptr))) {
1306 if (likely(ptr == buf->data)) {
1307 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001308 msg->som = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001309 } else {
1310#if PARSE_PRESERVE_EMPTY_LINES
1311 /* only skip empty leading lines, don't remove them */
1312 msg->sol = ptr;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001313 msg->som = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001314#else
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001315 /* Remove empty leading lines, as recommended by
1316 * RFC2616. This takes a lot of time because we
1317 * must move all the buffer backwards, but this
1318 * is rarely needed. The method above will be
1319 * cleaner when we'll be able to start sending
1320 * the request from any place in the buffer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001321 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001322 buf->lr = ptr;
1323 buffer_replace2(buf, buf->data, buf->lr, NULL, 0);
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001324 msg->som = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001325 msg->sol = buf->data;
1326 ptr = buf->data;
1327 end = buf->r;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001328#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001329 }
Willy Tarreauf0d058e2007-01-25 12:03:42 +01001330 /* we will need this when keep-alive will be supported
1331 hdr_idx_init(idx);
1332 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001333 state = HTTP_MSG_RQMETH;
1334 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001335 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001336
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001337 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1338 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001339
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001340 if (unlikely(*ptr == '\n'))
1341 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1342 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001343 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001344
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001345 http_msg_rqbefore_cr:
1346 case HTTP_MSG_RQBEFORE_CR:
1347 EXPECT_LF_HERE(ptr, http_msg_invalid);
1348 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001349 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001350
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001351 http_msg_rqmeth:
1352 case HTTP_MSG_RQMETH:
1353 case HTTP_MSG_RQMETH_SP:
1354 case HTTP_MSG_RQURI:
1355 case HTTP_MSG_RQURI_SP:
1356 case HTTP_MSG_RQVER:
1357 ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001358 &buf->lr, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001359 if (unlikely(!ptr))
1360 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001361
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001362 /* we have a full request and we know that we have either a CR
1363 * or an LF at <ptr>.
1364 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001365 //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 +01001366 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001367
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001368 msg->sol = ptr;
1369 if (likely(*ptr == '\r'))
1370 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001371 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001372
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001373 http_msg_rqline_end:
1374 case HTTP_MSG_RQLINE_END:
1375 /* check for HTTP/0.9 request : no version information available.
1376 * msg->sol must point to the first of CR or LF.
1377 */
1378 if (unlikely(msg->sl.rq.v_l == 0))
1379 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001380
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001381 EXPECT_LF_HERE(ptr, http_msg_invalid);
1382 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001383 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001384
Willy Tarreau8973c702007-01-21 23:58:29 +01001385 /*
1386 * Common states below
1387 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001388 http_msg_hdr_first:
1389 case HTTP_MSG_HDR_FIRST:
1390 msg->sol = ptr;
1391 if (likely(!HTTP_IS_CRLF(*ptr))) {
1392 goto http_msg_hdr_name;
1393 }
1394
1395 if (likely(*ptr == '\r'))
1396 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1397 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001398
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001399 http_msg_hdr_name:
1400 case HTTP_MSG_HDR_NAME:
1401 /* assumes msg->sol points to the first char */
1402 if (likely(HTTP_IS_TOKEN(*ptr)))
1403 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001404
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001405 if (likely(*ptr == ':')) {
1406 msg->col = ptr - buf->data;
1407 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
1408 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001409
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001410 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001411
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001412 http_msg_hdr_l1_sp:
1413 case HTTP_MSG_HDR_L1_SP:
1414 /* assumes msg->sol points to the first char and msg->col to the colon */
1415 if (likely(HTTP_IS_SPHT(*ptr)))
1416 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001417
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001418 /* header value can be basically anything except CR/LF */
1419 msg->sov = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001420
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001421 if (likely(!HTTP_IS_CRLF(*ptr))) {
1422 goto http_msg_hdr_val;
1423 }
1424
1425 if (likely(*ptr == '\r'))
1426 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1427 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001428
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001429 http_msg_hdr_l1_lf:
1430 case HTTP_MSG_HDR_L1_LF:
1431 EXPECT_LF_HERE(ptr, http_msg_invalid);
1432 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001433
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001434 http_msg_hdr_l1_lws:
1435 case HTTP_MSG_HDR_L1_LWS:
1436 if (likely(HTTP_IS_SPHT(*ptr))) {
1437 /* replace HT,CR,LF with spaces */
1438 for (; buf->data+msg->sov < ptr; msg->sov++)
1439 buf->data[msg->sov] = ' ';
1440 goto http_msg_hdr_l1_sp;
1441 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001442 /* we had a header consisting only in spaces ! */
1443 msg->eol = buf->data + msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001444 goto http_msg_complete_header;
1445
1446 http_msg_hdr_val:
1447 case HTTP_MSG_HDR_VAL:
1448 /* assumes msg->sol points to the first char, msg->col to the
1449 * colon, and msg->sov points to the first character of the
1450 * value.
1451 */
1452 if (likely(!HTTP_IS_CRLF(*ptr)))
1453 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001454
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001455 msg->eol = ptr;
1456 /* Note: we could also copy eol into ->eoh so that we have the
1457 * real header end in case it ends with lots of LWS, but is this
1458 * really needed ?
1459 */
1460 if (likely(*ptr == '\r'))
1461 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1462 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001463
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001464 http_msg_hdr_l2_lf:
1465 case HTTP_MSG_HDR_L2_LF:
1466 EXPECT_LF_HERE(ptr, http_msg_invalid);
1467 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001468
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001469 http_msg_hdr_l2_lws:
1470 case HTTP_MSG_HDR_L2_LWS:
1471 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1472 /* LWS: replace HT,CR,LF with spaces */
1473 for (; msg->eol < ptr; msg->eol++)
1474 *msg->eol = ' ';
1475 goto http_msg_hdr_val;
1476 }
1477 http_msg_complete_header:
1478 /*
1479 * It was a new header, so the last one is finished.
1480 * Assumes msg->sol points to the first char, msg->col to the
1481 * colon, msg->sov points to the first character of the value
1482 * and msg->eol to the first CR or LF so we know how the line
1483 * ends. We insert last header into the index.
1484 */
1485 /*
1486 fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol);
1487 write(2, msg->sol, msg->eol-msg->sol);
1488 fprintf(stderr,"\n");
1489 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001490
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001491 if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r',
1492 idx, idx->tail) < 0))
1493 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001494
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001495 msg->sol = ptr;
1496 if (likely(!HTTP_IS_CRLF(*ptr))) {
1497 goto http_msg_hdr_name;
1498 }
1499
1500 if (likely(*ptr == '\r'))
1501 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1502 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001503
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001504 http_msg_last_lf:
1505 case HTTP_MSG_LAST_LF:
1506 /* Assumes msg->sol points to the first of either CR or LF */
1507 EXPECT_LF_HERE(ptr, http_msg_invalid);
1508 ptr++;
1509 buf->lr = ptr;
1510 msg->eoh = msg->sol - buf->data;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001511 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001512 return;
1513#ifdef DEBUG_FULL
1514 default:
1515 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1516 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001517#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001518 }
1519 http_msg_ood:
1520 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001521 msg->msg_state = state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001522 buf->lr = ptr;
1523 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001524
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001525 http_msg_invalid:
1526 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001527 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001528 return;
1529}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001530
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001531/*
1532 * manages the client FSM and its socket. BTW, it also tries to handle the
1533 * cookie. It returns 1 if a state has changed (and a resync may be needed),
1534 * 0 else.
1535 */
1536int process_cli(struct session *t)
1537{
1538 int s = t->srv_state;
1539 int c = t->cli_state;
1540 struct buffer *req = t->req;
1541 struct buffer *rep = t->rep;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001542
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001543 DPRINTF(stderr,"process_cli: c=%s s=%s set(r,w)=%d,%d exp(r,w)=%d.%d,%d.%d\n",
1544 cli_stnames[c], srv_stnames[s],
Willy Tarreauf161a342007-04-08 16:59:42 +02001545 EV_FD_ISSET(t->cli_fd, DIR_RD), EV_FD_ISSET(t->cli_fd, DIR_WR),
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001546 req->rex.tv_sec, req->rex.tv_usec,
1547 rep->wex.tv_sec, rep->wex.tv_usec);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001548
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001549 if (c == CL_STHEADERS) {
1550 /*
1551 * Now parse the partial (or complete) lines.
1552 * We will check the request syntax, and also join multi-line
1553 * headers. An index of all the lines will be elaborated while
1554 * parsing.
1555 *
Willy Tarreau8973c702007-01-21 23:58:29 +01001556 * For the parsing, we use a 28 states FSM.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001557 *
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001558 * Here is the information we currently have :
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001559 * req->data + req->som = beginning of request
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001560 * req->data + req->eoh = end of processed headers / start of current one
1561 * req->data + req->eol = end of current header or line (LF or CRLF)
1562 * req->lr = first non-visited byte
1563 * req->r = end of data
1564 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001565
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001566 int cur_idx;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001567 struct http_txn *txn = &t->txn;
1568 struct http_msg *msg = &txn->req;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001569 struct proxy *cur_proxy;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001570
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001571 if (likely(req->lr < req->r))
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001572 http_msg_analyzer(req, msg, &txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001573
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001574 /* 1: we might have to print this header in debug mode */
1575 if (unlikely((global.mode & MODE_DEBUG) &&
1576 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001577 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001578 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001579
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001580 sol = req->data + msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001581 eol = sol + msg->sl.rq.l;
1582 debug_hdr("clireq", t, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01001583
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001584 sol += hdr_idx_first_pos(&txn->hdr_idx);
1585 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001586
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001587 while (cur_idx) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001588 eol = sol + txn->hdr_idx.v[cur_idx].len;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001589 debug_hdr("clihdr", t, sol, eol);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001590 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
1591 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001592 }
1593 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001594
Willy Tarreau58f10d72006-12-04 02:26:12 +01001595
1596 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001597 * Now we quickly check if we have found a full valid request.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001598 * If not so, we check the FD and buffer states before leaving.
1599 * A full request is indicated by the fact that we have seen
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001600 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
1601 * requests are checked first.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001602 *
1603 */
1604
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001605 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001606 /*
1607 * First, let's catch bad requests.
1608 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001609 if (unlikely(msg->msg_state == HTTP_MSG_ERROR))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001610 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001611
1612 /* 1: Since we are in header mode, if there's no space
1613 * left for headers, we won't be able to free more
1614 * later, so the session will never terminate. We
1615 * must terminate it now.
1616 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001617 if (unlikely(req->l >= req->rlim - req->data)) {
1618 /* FIXME: check if URI is set and return Status
1619 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001620 */
Willy Tarreau06619262006-12-17 08:37:22 +01001621 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001622 }
1623
1624 /* 2: have we encountered a read error or a close ? */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001625 else if (unlikely(req->flags & (BF_READ_ERROR | BF_READ_NULL))) {
1626 /* read error, or last read : give up. */
Willy Tarreaufa645582007-06-03 15:59:52 +02001627 buffer_shutr(req);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001628 fd_delete(t->cli_fd);
1629 t->cli_state = CL_STCLOSE;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01001630 t->fe->failed_req++;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001631 if (!(t->flags & SN_ERR_MASK))
1632 t->flags |= SN_ERR_CLICL;
1633 if (!(t->flags & SN_FINST_MASK))
1634 t->flags |= SN_FINST_R;
1635 return 1;
1636 }
1637
1638 /* 3: has the read timeout expired ? */
Willy Tarreau036fae02008-01-06 13:24:40 +01001639 else if (unlikely(tv_isle(&req->rex, &now) ||
1640 tv_isle(&txn->exp, &now))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01001641 /* read timeout : give up with an error message. */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01001642 txn->status = 408;
Willy Tarreau80587432006-12-24 17:47:20 +01001643 client_retnclose(t, error_message(t, HTTP_ERR_408));
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01001644 t->fe->failed_req++;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001645 if (!(t->flags & SN_ERR_MASK))
1646 t->flags |= SN_ERR_CLITO;
1647 if (!(t->flags & SN_FINST_MASK))
1648 t->flags |= SN_FINST_R;
1649 return 1;
1650 }
1651
1652 /* 4: do we need to re-enable the read socket ? */
Willy Tarreau66319382007-04-08 17:17:37 +02001653 else if (unlikely(EV_FD_COND_S(t->cli_fd, DIR_RD))) {
Willy Tarreauf161a342007-04-08 16:59:42 +02001654 /* fd in DIR_RD was disabled, perhaps because of a previous buffer
Willy Tarreau58f10d72006-12-04 02:26:12 +01001655 * full. We cannot loop here since stream_sock_read will disable it only if
1656 * req->l == rlim-data
1657 */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01001658 if (!tv_add_ifset(&req->rex, &now, &t->fe->timeout.client))
Willy Tarreau58f10d72006-12-04 02:26:12 +01001659 tv_eternity(&req->rex);
1660 }
1661 return t->cli_state != CL_STHEADERS;
1662 }
1663
1664
1665 /****************************************************************
1666 * More interesting part now : we know that we have a complete *
1667 * request which at least looks like HTTP. We have an indicator *
1668 * of each header's length, so we can parse them quickly. *
1669 ****************************************************************/
1670
Willy Tarreau9cdde232007-05-02 20:58:19 +02001671 /* ensure we keep this pointer to the beginning of the message */
1672 msg->sol = req->data + msg->som;
1673
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001674 /*
1675 * 1: identify the method
1676 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001677 txn->meth = find_http_meth(&req->data[msg->som], msg->sl.rq.m_l);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001678
1679 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001680 * 2: check if the URI matches the monitor_uri.
Willy Tarreau06619262006-12-17 08:37:22 +01001681 * We have to do this for every request which gets in, because
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001682 * the monitor-uri is defined by the frontend.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001683 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001684 if (unlikely((t->fe->monitor_uri_len != 0) &&
1685 (t->fe->monitor_uri_len == msg->sl.rq.u_l) &&
1686 !memcmp(&req->data[msg->sl.rq.u],
1687 t->fe->monitor_uri,
1688 t->fe->monitor_uri_len))) {
1689 /*
1690 * We have found the monitor URI
1691 */
Willy Tarreaub80c2302007-11-30 20:51:32 +01001692 struct acl_cond *cond;
1693 cur_proxy = t->fe;
1694
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001695 t->flags |= SN_MONITOR;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001696
1697 /* Check if we want to fail this monitor request or not */
1698 list_for_each_entry(cond, &cur_proxy->mon_fail_cond, list) {
1699 int ret = acl_exec_cond(cond, cur_proxy, t, txn, ACL_DIR_REQ);
1700 if (cond->pol == ACL_COND_UNLESS)
1701 ret = !ret;
1702
1703 if (ret) {
1704 /* we fail this request, let's return 503 service unavail */
1705 txn->status = 503;
1706 client_retnclose(t, error_message(t, HTTP_ERR_503));
1707 goto return_prx_cond;
1708 }
1709 }
1710
1711 /* nothing to fail, let's reply normaly */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01001712 txn->status = 200;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001713 client_retnclose(t, &http_200_chunk);
1714 goto return_prx_cond;
1715 }
1716
1717 /*
1718 * 3: Maybe we have to copy the original REQURI for the logs ?
1719 * Note: we cannot log anymore if the request has been
1720 * classified as invalid.
1721 */
1722 if (unlikely(t->logs.logwait & LW_REQ)) {
1723 /* we have a complete HTTP request that we must log */
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001724 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001725 int urilen = msg->sl.rq.l;
1726
1727 if (urilen >= REQURI_LEN)
1728 urilen = REQURI_LEN - 1;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01001729 memcpy(txn->uri, &req->data[msg->som], urilen);
1730 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001731
1732 if (!(t->logs.logwait &= ~LW_REQ))
Willy Tarreau42250582007-04-01 01:30:43 +02001733 http_sess_log(t);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001734 } else {
1735 Alert("HTTP logging : out of memory.\n");
1736 }
1737 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001738
Willy Tarreau06619262006-12-17 08:37:22 +01001739
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001740 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
1741 if (unlikely(msg->sl.rq.v_l == 0)) {
1742 int delta;
1743 char *cur_end;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001744 msg->sol = req->data + msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001745 cur_end = msg->sol + msg->sl.rq.l;
1746 delta = 0;
Willy Tarreau06619262006-12-17 08:37:22 +01001747
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001748 if (msg->sl.rq.u_l == 0) {
1749 /* if no URI was set, add "/" */
1750 delta = buffer_replace2(req, cur_end, cur_end, " /", 2);
1751 cur_end += delta;
1752 msg->eoh += delta;
Willy Tarreau06619262006-12-17 08:37:22 +01001753 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001754 /* add HTTP version */
1755 delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11);
1756 msg->eoh += delta;
1757 cur_end += delta;
1758 cur_end = (char *)http_parse_reqline(msg, req->data,
1759 HTTP_MSG_RQMETH,
1760 msg->sol, cur_end + 1,
1761 NULL, NULL);
1762 if (unlikely(!cur_end))
1763 goto return_bad_req;
1764
1765 /* we have a full HTTP/1.0 request now and we know that
1766 * we have either a CR or an LF at <ptr>.
1767 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001768 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
Willy Tarreau58f10d72006-12-04 02:26:12 +01001769 }
1770
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001771
1772 /* 5: we may need to capture headers */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001773 if (unlikely((t->logs.logwait & LW_REQHDR) && t->fe->req_cap))
Willy Tarreau117f59e2007-03-04 18:17:17 +01001774 capture_headers(req->data + msg->som, &txn->hdr_idx,
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001775 txn->req.cap, t->fe->req_cap);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001776
1777 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001778 * 6: we will have to evaluate the filters.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001779 * As opposed to version 1.2, now they will be evaluated in the
1780 * filters order and not in the header order. This means that
1781 * each filter has to be validated among all headers.
Willy Tarreau06619262006-12-17 08:37:22 +01001782 *
1783 * We can now check whether we want to switch to another
1784 * backend, in which case we will re-check the backend's
1785 * filters and various options. In order to support 3-level
1786 * switching, here's how we should proceed :
1787 *
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001788 * a) run be.
Willy Tarreau830ff452006-12-17 19:31:23 +01001789 * if (switch) then switch ->be to the new backend.
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001790 * b) run be if (be != fe).
Willy Tarreau06619262006-12-17 08:37:22 +01001791 * There cannot be any switch from there, so ->be cannot be
1792 * changed anymore.
1793 *
Willy Tarreau830ff452006-12-17 19:31:23 +01001794 * => filters always apply to ->be, then ->be may change.
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001795 *
Willy Tarreau830ff452006-12-17 19:31:23 +01001796 * The response path will be able to apply either ->be, or
1797 * ->be then ->fe filters in order to match the reverse of
1798 * the forward sequence.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001799 */
1800
Willy Tarreau06619262006-12-17 08:37:22 +01001801 do {
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02001802 struct acl_cond *cond;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001803 struct proxy *rule_set = t->be;
Willy Tarreau830ff452006-12-17 19:31:23 +01001804 cur_proxy = t->be;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001805
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02001806 /* first check whether we have some ACLs set to block this request */
1807 list_for_each_entry(cond, &cur_proxy->block_cond, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001808 int ret = acl_exec_cond(cond, cur_proxy, t, txn, ACL_DIR_REQ);
Willy Tarreau5c8e3e02007-05-07 00:58:25 +02001809 if (cond->pol == ACL_COND_UNLESS)
1810 ret = !ret;
1811
1812 if (ret) {
1813 txn->status = 403;
1814 /* let's log the request time */
1815 t->logs.t_request = tv_ms_elapsed(&t->logs.tv_accept, &now);
1816 client_retnclose(t, error_message(t, HTTP_ERR_403));
1817 goto return_prx_cond;
1818 }
1819 }
1820
Willy Tarreau06619262006-12-17 08:37:22 +01001821 /* try headers filters */
Willy Tarreau53b6c742006-12-17 13:37:46 +01001822 if (rule_set->req_exp != NULL) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001823 if (apply_filters_to_request(t, req, rule_set->req_exp) < 0)
1824 goto return_bad_req;
Willy Tarreau53b6c742006-12-17 13:37:46 +01001825 }
1826
Willy Tarreauf1221aa2006-12-17 22:14:12 +01001827 if (!(t->flags & SN_BE_ASSIGNED) && (t->be != cur_proxy)) {
1828 /* to ensure correct connection accounting on
1829 * the backend, we count the connection for the
1830 * one managing the queue.
1831 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001832 t->be->beconn++;
1833 if (t->be->beconn > t->be->beconn_max)
1834 t->be->beconn_max = t->be->beconn;
1835 t->be->cum_beconn++;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01001836 t->flags |= SN_BE_ASSIGNED;
1837 }
1838
Willy Tarreau06619262006-12-17 08:37:22 +01001839 /* has the request been denied ? */
Willy Tarreau3d300592007-03-18 18:34:41 +01001840 if (txn->flags & TX_CLDENY) {
Willy Tarreau06619262006-12-17 08:37:22 +01001841 /* no need to go further */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01001842 txn->status = 403;
Willy Tarreau06619262006-12-17 08:37:22 +01001843 /* let's log the request time */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02001844 t->logs.t_request = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreau80587432006-12-24 17:47:20 +01001845 client_retnclose(t, error_message(t, HTTP_ERR_403));
Willy Tarreau06619262006-12-17 08:37:22 +01001846 goto return_prx_cond;
1847 }
1848
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001849 /* We might have to check for "Connection:" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001850 if (((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001851 !(t->flags & SN_CONN_CLOSED)) {
1852 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001853 int cur_idx, old_idx, delta, val;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001854 struct hdr_idx_elem *cur_hdr;
Willy Tarreau06619262006-12-17 08:37:22 +01001855
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001856 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001857 old_idx = 0;
1858
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001859 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
1860 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001861 cur_ptr = cur_next;
1862 cur_end = cur_ptr + cur_hdr->len;
1863 cur_next = cur_end + cur_hdr->cr + 1;
1864
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001865 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
1866 if (val) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001867 /* 3 possibilities :
1868 * - we have already set Connection: close,
1869 * so we remove this line.
1870 * - we have not yet set Connection: close,
1871 * but this line indicates close. We leave
1872 * it untouched and set the flag.
1873 * - we have not yet set Connection: close,
1874 * and this line indicates non-close. We
1875 * replace it.
1876 */
1877 if (t->flags & SN_CONN_CLOSED) {
1878 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001879 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001880 cur_next += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001881 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
1882 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001883 cur_hdr->len = 0;
1884 } else {
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001885 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
1886 delta = buffer_replace2(req, cur_ptr + val, cur_end,
1887 "close", 5);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001888 cur_next += delta;
1889 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001890 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001891 }
1892 t->flags |= SN_CONN_CLOSED;
1893 }
1894 }
1895 old_idx = cur_idx;
1896 }
Willy Tarreauf2f0ee82007-03-30 12:02:43 +02001897 }
1898 /* add request headers from the rule sets in the same order */
1899 for (cur_idx = 0; cur_idx < rule_set->nb_reqadd; cur_idx++) {
1900 if (unlikely(http_header_add_tail(req,
1901 &txn->req,
1902 &txn->hdr_idx,
1903 rule_set->req_add[cur_idx])) < 0)
1904 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01001905 }
Willy Tarreaub2513902006-12-17 14:52:38 +01001906
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001907 /* check if stats URI was requested, and if an auth is needed */
Willy Tarreau0214c3a2007-01-07 13:47:30 +01001908 if (rule_set->uri_auth != NULL &&
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01001909 (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)) {
Willy Tarreaub2513902006-12-17 14:52:38 +01001910 /* we have to check the URI and auth for this request */
1911 if (stats_check_uri_auth(t, rule_set))
1912 return 1;
1913 }
1914
Willy Tarreau55ea7572007-06-17 19:56:27 +02001915 /* now check whether we have some switching rules for this request */
1916 if (!(t->flags & SN_BE_ASSIGNED)) {
1917 struct switching_rule *rule;
1918
1919 list_for_each_entry(rule, &cur_proxy->switching_rules, list) {
1920 int ret;
1921
1922 ret = acl_exec_cond(rule->cond, cur_proxy, t, txn, ACL_DIR_REQ);
1923 if (cond->pol == ACL_COND_UNLESS)
1924 ret = !ret;
1925
1926 if (ret) {
1927 t->be = rule->be.backend;
1928 t->be->beconn++;
1929 if (t->be->beconn > t->be->beconn_max)
1930 t->be->beconn_max = t->be->beconn;
1931 t->be->cum_beconn++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02001932
1933 /* assign new parameters to the session from the new backend */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01001934 t->rep->rto = t->req->wto = t->be->timeout.server;
1935 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02001936 t->conn_retries = t->be->conn_retries;
Willy Tarreau55ea7572007-06-17 19:56:27 +02001937 t->flags |= SN_BE_ASSIGNED;
1938 break;
1939 }
1940 }
1941 }
1942
Willy Tarreau5fdfb912007-01-01 23:11:07 +01001943 if (!(t->flags & SN_BE_ASSIGNED) && cur_proxy->defbe.be) {
1944 /* No backend was set, but there was a default
1945 * backend set in the frontend, so we use it and
1946 * loop again.
1947 */
1948 t->be = cur_proxy->defbe.be;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001949 t->be->beconn++;
1950 if (t->be->beconn > t->be->beconn_max)
1951 t->be->beconn_max = t->be->beconn;
1952 t->be->cum_beconn++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02001953
1954 /* assign new parameters to the session from the new backend */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01001955 t->rep->rto = t->req->wto = t->be->timeout.server;
1956 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02001957 t->conn_retries = t->be->conn_retries;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01001958 t->flags |= SN_BE_ASSIGNED;
1959 }
1960 } while (t->be != cur_proxy); /* we loop only if t->be has changed */
Willy Tarreau2a324282006-12-05 00:05:46 +01001961
Willy Tarreau58f10d72006-12-04 02:26:12 +01001962
Willy Tarreauf1221aa2006-12-17 22:14:12 +01001963 if (!(t->flags & SN_BE_ASSIGNED)) {
1964 /* To ensure correct connection accounting on
1965 * the backend, we count the connection for the
1966 * one managing the queue.
1967 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001968 t->be->beconn++;
1969 if (t->be->beconn > t->be->beconn_max)
1970 t->be->beconn_max = t->be->beconn;
1971 t->be->cum_beconn++;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01001972 t->flags |= SN_BE_ASSIGNED;
1973 }
1974
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001975 /*
1976 * Right now, we know that we have processed the entire headers
Willy Tarreau2a324282006-12-05 00:05:46 +01001977 * and that unwanted requests have been filtered out. We can do
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001978 * whatever we want with the remaining request. Also, now we
Willy Tarreau830ff452006-12-17 19:31:23 +01001979 * may have separate values for ->fe, ->be.
Willy Tarreau2a324282006-12-05 00:05:46 +01001980 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001981
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001982 /*
1983 * If HTTP PROXY is set we simply get remote server address
1984 * parsing incoming request.
1985 */
1986 if ((t->be->options & PR_O_HTTP_PROXY) && !(t->flags & SN_ADDR_SET)) {
1987 url2sa(req->data + msg->sl.rq.u, msg->sl.rq.u_l, &t->srv_addr);
1988 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001989
Willy Tarreau2a324282006-12-05 00:05:46 +01001990 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001991 * 7: the appsession cookie was looked up very early in 1.2,
Willy Tarreau06619262006-12-17 08:37:22 +01001992 * so let's do the same now.
1993 */
1994
1995 /* It needs to look into the URI */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001996 if (t->be->appsession_name) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001997 get_srv_from_appsession(t, &req->data[msg->som], msg->sl.rq.l);
Willy Tarreau06619262006-12-17 08:37:22 +01001998 }
1999
2000
2001 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002002 * 8: Now we can work with the cookies.
Willy Tarreau2a324282006-12-05 00:05:46 +01002003 * Note that doing so might move headers in the request, but
2004 * the fields will stay coherent and the URI will not move.
Willy Tarreau06619262006-12-17 08:37:22 +01002005 * This should only be performed in the backend.
Willy Tarreau2a324282006-12-05 00:05:46 +01002006 */
Willy Tarreau396d2c62007-11-04 19:30:00 +01002007 if ((t->be->cookie_name || t->be->appsession_name || t->be->capture_name)
2008 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
Willy Tarreau2a324282006-12-05 00:05:46 +01002009 manage_client_side_cookies(t, req);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002010
Willy Tarreau58f10d72006-12-04 02:26:12 +01002011
Willy Tarreau2a324282006-12-05 00:05:46 +01002012 /*
Willy Tarreaubb046ac2007-03-03 19:17:03 +01002013 * 9: add X-Forwarded-For if either the frontend or the backend
2014 * asks for it.
Willy Tarreau2a324282006-12-05 00:05:46 +01002015 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002016 if ((t->fe->options | t->be->options) & PR_O_FWDFOR) {
Willy Tarreau2a324282006-12-05 00:05:46 +01002017 if (t->cli_addr.ss_family == AF_INET) {
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002018 /* Add an X-Forwarded-For header unless the source IP is
2019 * in the 'except' network range.
2020 */
2021 if ((!t->fe->except_mask.s_addr ||
2022 (((struct sockaddr_in *)&t->cli_addr)->sin_addr.s_addr & t->fe->except_mask.s_addr)
2023 != t->fe->except_net.s_addr) &&
2024 (!t->be->except_mask.s_addr ||
2025 (((struct sockaddr_in *)&t->cli_addr)->sin_addr.s_addr & t->be->except_mask.s_addr)
2026 != t->be->except_net.s_addr)) {
2027 int len;
2028 unsigned char *pn;
2029 pn = (unsigned char *)&((struct sockaddr_in *)&t->cli_addr)->sin_addr;
Willy Tarreau45e73e32006-12-17 00:05:15 +01002030
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002031 len = sprintf(trash, "X-Forwarded-For: %d.%d.%d.%d",
2032 pn[0], pn[1], pn[2], pn[3]);
2033
2034 if (unlikely(http_header_add_tail2(req, &txn->req,
2035 &txn->hdr_idx, trash, len)) < 0)
2036 goto return_bad_req;
2037 }
Willy Tarreau2a324282006-12-05 00:05:46 +01002038 }
2039 else if (t->cli_addr.ss_family == AF_INET6) {
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002040 /* FIXME: for the sake of completeness, we should also support
2041 * 'except' here, although it is mostly useless in this case.
2042 */
Willy Tarreau2a324282006-12-05 00:05:46 +01002043 int len;
2044 char pn[INET6_ADDRSTRLEN];
2045 inet_ntop(AF_INET6,
2046 (const void *)&((struct sockaddr_in6 *)(&t->cli_addr))->sin6_addr,
2047 pn, sizeof(pn));
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01002048 len = sprintf(trash, "X-Forwarded-For: %s", pn);
2049 if (unlikely(http_header_add_tail2(req, &txn->req,
2050 &txn->hdr_idx, trash, len)) < 0)
Willy Tarreau06619262006-12-17 08:37:22 +01002051 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01002052 }
2053 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002054
Willy Tarreau2a324282006-12-05 00:05:46 +01002055 /*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002056 * 10: add "Connection: close" if needed and not yet set.
Willy Tarreau2807efd2007-03-25 23:47:23 +02002057 * Note that we do not need to add it in case of HTTP/1.0.
Willy Tarreaub2513902006-12-17 14:52:38 +01002058 */
Willy Tarreau2807efd2007-03-25 23:47:23 +02002059 if (!(t->flags & SN_CONN_CLOSED) &&
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002060 ((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
Willy Tarreau2807efd2007-03-25 23:47:23 +02002061 if ((unlikely(msg->sl.rq.v_l != 8) ||
2062 unlikely(req->data[msg->som + msg->sl.rq.v + 7] != '0')) &&
2063 unlikely(http_header_add_tail2(req, &txn->req, &txn->hdr_idx,
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01002064 "Connection: close", 17)) < 0)
Willy Tarreau06619262006-12-17 08:37:22 +01002065 goto return_bad_req;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002066 t->flags |= SN_CONN_CLOSED;
Willy Tarreaue15d9132006-12-14 22:26:42 +01002067 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002068
Willy Tarreau2a324282006-12-05 00:05:46 +01002069 /*************************************************************
2070 * OK, that's finished for the headers. We have done what we *
2071 * could. Let's switch to the DATA state. *
2072 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02002073
Willy Tarreau2a324282006-12-05 00:05:46 +01002074 t->cli_state = CL_STDATA;
2075 req->rlim = req->data + BUFSIZE; /* no more rewrite needed */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002076
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002077 t->logs.t_request = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002078
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002079 if (!tv_isset(&t->fe->timeout.client) ||
2080 (t->srv_state < SV_STDATA && tv_isset(&t->be->timeout.server))) {
Willy Tarreau2a324282006-12-05 00:05:46 +01002081 /* If the client has no timeout, or if the server is not ready yet,
2082 * and we know for sure that it can expire, then it's cleaner to
2083 * disable the timeout on the client side so that too low values
2084 * cannot make the sessions abort too early.
2085 *
2086 * FIXME-20050705: the server needs a way to re-enable this time-out
2087 * when it switches its state, otherwise a client can stay connected
2088 * indefinitely. This now seems to be OK.
2089 */
2090 tv_eternity(&req->rex);
2091 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002092
Willy Tarreau1fa31262007-12-03 00:36:16 +01002093 /* When a connection is tarpitted, we use the tarpit timeout,
2094 * which may be the same as the connect timeout if unspecified.
2095 * If unset, then set it to zero because we really want it to
2096 * eventually expire.
Willy Tarreau2a324282006-12-05 00:05:46 +01002097 */
Willy Tarreau3d300592007-03-18 18:34:41 +01002098 if (txn->flags & TX_CLTARPIT) {
Willy Tarreau2a324282006-12-05 00:05:46 +01002099 t->req->l = 0;
2100 /* flush the request so that we can drop the connection early
2101 * if the client closes first.
2102 */
Willy Tarreau1fa31262007-12-03 00:36:16 +01002103 if (!tv_add_ifset(&req->cex, &now, &t->be->timeout.tarpit))
Willy Tarreaud825eef2007-05-12 22:35:00 +02002104 req->cex = now;
Willy Tarreau2a324282006-12-05 00:05:46 +01002105 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002106
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002107 /* OK let's go on with the BODY now */
Willy Tarreau06619262006-12-17 08:37:22 +01002108 goto process_data;
2109
2110 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01002111 txn->req.msg_state = HTTP_MSG_ERROR;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002112 txn->status = 400;
Willy Tarreau80587432006-12-24 17:47:20 +01002113 client_retnclose(t, error_message(t, HTTP_ERR_400));
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01002114 t->fe->failed_req++;
Willy Tarreau06619262006-12-17 08:37:22 +01002115 return_prx_cond:
2116 if (!(t->flags & SN_ERR_MASK))
2117 t->flags |= SN_ERR_PRXCOND;
2118 if (!(t->flags & SN_FINST_MASK))
2119 t->flags |= SN_FINST_R;
2120 return 1;
2121
Willy Tarreaubaaee002006-06-26 02:48:02 +02002122 }
2123 else if (c == CL_STDATA) {
2124 process_data:
2125 /* FIXME: this error handling is partly buggy because we always report
2126 * a 'DATA' phase while we don't know if the server was in IDLE, CONN
2127 * or HEADER phase. BTW, it's not logical to expire the client while
2128 * we're waiting for the server to connect.
2129 */
2130 /* read or write error */
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002131 if (rep->flags & BF_WRITE_ERROR || req->flags & BF_READ_ERROR) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002132 buffer_shutr(req);
2133 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002134 fd_delete(t->cli_fd);
2135 t->cli_state = CL_STCLOSE;
2136 if (!(t->flags & SN_ERR_MASK))
2137 t->flags |= SN_ERR_CLICL;
2138 if (!(t->flags & SN_FINST_MASK)) {
2139 if (t->pend_pos)
2140 t->flags |= SN_FINST_Q;
2141 else if (s == SV_STCONN)
2142 t->flags |= SN_FINST_C;
2143 else
2144 t->flags |= SN_FINST_D;
2145 }
2146 return 1;
2147 }
2148 /* last read, or end of server write */
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002149 else if (req->flags & BF_READ_NULL || s == SV_STSHUTW || s == SV_STCLOSE) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002150 EV_FD_CLR(t->cli_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02002151 buffer_shutr(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002152 t->cli_state = CL_STSHUTR;
2153 return 1;
2154 }
2155 /* last server read and buffer empty */
2156 else if ((s == SV_STSHUTR || s == SV_STCLOSE) && (rep->l == 0)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002157 EV_FD_CLR(t->cli_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02002158 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002159 shutdown(t->cli_fd, SHUT_WR);
2160 /* We must ensure that the read part is still alive when switching
2161 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02002162 EV_FD_SET(t->cli_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002163 tv_add_ifset(&req->rex, &now, &t->fe->timeout.client);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002164 t->cli_state = CL_STSHUTW;
2165 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
2166 return 1;
2167 }
2168 /* read timeout */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002169 else if (tv_isle(&req->rex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002170 EV_FD_CLR(t->cli_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02002171 buffer_shutr(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002172 t->cli_state = CL_STSHUTR;
2173 if (!(t->flags & SN_ERR_MASK))
2174 t->flags |= SN_ERR_CLITO;
2175 if (!(t->flags & SN_FINST_MASK)) {
2176 if (t->pend_pos)
2177 t->flags |= SN_FINST_Q;
2178 else if (s == SV_STCONN)
2179 t->flags |= SN_FINST_C;
2180 else
2181 t->flags |= SN_FINST_D;
2182 }
2183 return 1;
2184 }
2185 /* write timeout */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002186 else if (tv_isle(&rep->wex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002187 EV_FD_CLR(t->cli_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02002188 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002189 shutdown(t->cli_fd, SHUT_WR);
2190 /* We must ensure that the read part is still alive when switching
2191 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02002192 EV_FD_SET(t->cli_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002193 tv_add_ifset(&req->rex, &now, &t->fe->timeout.client);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002194
2195 t->cli_state = CL_STSHUTW;
2196 if (!(t->flags & SN_ERR_MASK))
2197 t->flags |= SN_ERR_CLITO;
2198 if (!(t->flags & SN_FINST_MASK)) {
2199 if (t->pend_pos)
2200 t->flags |= SN_FINST_Q;
2201 else if (s == SV_STCONN)
2202 t->flags |= SN_FINST_C;
2203 else
2204 t->flags |= SN_FINST_D;
2205 }
2206 return 1;
2207 }
2208
2209 if (req->l >= req->rlim - req->data) {
2210 /* no room to read more data */
Willy Tarreau66319382007-04-08 17:17:37 +02002211 if (EV_FD_COND_C(t->cli_fd, DIR_RD)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002212 /* stop reading until we get some space */
Willy Tarreaud7971282006-07-29 18:36:34 +02002213 tv_eternity(&req->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002214 }
2215 } else {
2216 /* there's still some space in the buffer */
Willy Tarreau66319382007-04-08 17:17:37 +02002217 if (EV_FD_COND_S(t->cli_fd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002218 if (!tv_isset(&t->fe->timeout.client) ||
2219 (t->srv_state < SV_STDATA && tv_isset(&t->be->timeout.server)))
Willy Tarreaubaaee002006-06-26 02:48:02 +02002220 /* If the client has no timeout, or if the server not ready yet, and we
2221 * know for sure that it can expire, then it's cleaner to disable the
2222 * timeout on the client side so that too low values cannot make the
2223 * sessions abort too early.
2224 */
Willy Tarreaud7971282006-07-29 18:36:34 +02002225 tv_eternity(&req->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002226 else
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002227 tv_add(&req->rex, &now, &t->fe->timeout.client);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002228 }
2229 }
2230
2231 if ((rep->l == 0) ||
2232 ((s < SV_STDATA) /* FIXME: this may be optimized && (rep->w == rep->h)*/)) {
Willy Tarreau66319382007-04-08 17:17:37 +02002233 if (EV_FD_COND_C(t->cli_fd, DIR_WR)) {
2234 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02002235 tv_eternity(&rep->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002236 }
2237 } else {
2238 /* buffer not empty */
Willy Tarreau66319382007-04-08 17:17:37 +02002239 if (EV_FD_COND_S(t->cli_fd, DIR_WR)) {
2240 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002241 if (tv_add_ifset(&rep->wex, &now, &t->fe->timeout.client)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002242 /* FIXME: to prevent the client from expiring read timeouts during writes,
2243 * we refresh it. */
Willy Tarreaud7971282006-07-29 18:36:34 +02002244 req->rex = rep->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002245 }
2246 else
Willy Tarreaud7971282006-07-29 18:36:34 +02002247 tv_eternity(&rep->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002248 }
2249 }
2250 return 0; /* other cases change nothing */
2251 }
2252 else if (c == CL_STSHUTR) {
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002253 if (rep->flags & BF_WRITE_ERROR) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002254 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002255 fd_delete(t->cli_fd);
2256 t->cli_state = CL_STCLOSE;
2257 if (!(t->flags & SN_ERR_MASK))
2258 t->flags |= SN_ERR_CLICL;
2259 if (!(t->flags & SN_FINST_MASK)) {
2260 if (t->pend_pos)
2261 t->flags |= SN_FINST_Q;
2262 else if (s == SV_STCONN)
2263 t->flags |= SN_FINST_C;
2264 else
2265 t->flags |= SN_FINST_D;
2266 }
2267 return 1;
2268 }
2269 else if ((s == SV_STSHUTR || s == SV_STCLOSE) && (rep->l == 0)
2270 && !(t->flags & SN_SELF_GEN)) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002271 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002272 fd_delete(t->cli_fd);
2273 t->cli_state = CL_STCLOSE;
2274 return 1;
2275 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002276 else if (tv_isle(&rep->wex, &now)) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002277 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002278 fd_delete(t->cli_fd);
2279 t->cli_state = CL_STCLOSE;
2280 if (!(t->flags & SN_ERR_MASK))
2281 t->flags |= SN_ERR_CLITO;
2282 if (!(t->flags & SN_FINST_MASK)) {
2283 if (t->pend_pos)
2284 t->flags |= SN_FINST_Q;
2285 else if (s == SV_STCONN)
2286 t->flags |= SN_FINST_C;
2287 else
2288 t->flags |= SN_FINST_D;
2289 }
2290 return 1;
2291 }
2292
2293 if (t->flags & SN_SELF_GEN) {
2294 produce_content(t);
2295 if (rep->l == 0) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002296 buffer_shutw(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002297 fd_delete(t->cli_fd);
2298 t->cli_state = CL_STCLOSE;
2299 return 1;
2300 }
2301 }
2302
2303 if ((rep->l == 0)
2304 || ((s == SV_STHEADERS) /* FIXME: this may be optimized && (rep->w == rep->h)*/)) {
Willy Tarreau66319382007-04-08 17:17:37 +02002305 if (EV_FD_COND_C(t->cli_fd, DIR_WR)) {
2306 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02002307 tv_eternity(&rep->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002308 }
2309 } else {
2310 /* buffer not empty */
Willy Tarreau66319382007-04-08 17:17:37 +02002311 if (EV_FD_COND_S(t->cli_fd, DIR_WR)) {
2312 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002313 if (!tv_add_ifset(&rep->wex, &now, &t->fe->timeout.client))
Willy Tarreaud7971282006-07-29 18:36:34 +02002314 tv_eternity(&rep->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002315 }
2316 }
2317 return 0;
2318 }
2319 else if (c == CL_STSHUTW) {
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002320 if (req->flags & BF_READ_ERROR) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002321 buffer_shutr(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002322 fd_delete(t->cli_fd);
2323 t->cli_state = CL_STCLOSE;
2324 if (!(t->flags & SN_ERR_MASK))
2325 t->flags |= SN_ERR_CLICL;
2326 if (!(t->flags & SN_FINST_MASK)) {
2327 if (t->pend_pos)
2328 t->flags |= SN_FINST_Q;
2329 else if (s == SV_STCONN)
2330 t->flags |= SN_FINST_C;
2331 else
2332 t->flags |= SN_FINST_D;
2333 }
2334 return 1;
2335 }
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002336 else if (req->flags & BF_READ_NULL || s == SV_STSHUTW || s == SV_STCLOSE) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002337 buffer_shutr(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002338 fd_delete(t->cli_fd);
2339 t->cli_state = CL_STCLOSE;
2340 return 1;
2341 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002342 else if (tv_isle(&req->rex, &now)) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002343 buffer_shutr(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002344 fd_delete(t->cli_fd);
2345 t->cli_state = CL_STCLOSE;
2346 if (!(t->flags & SN_ERR_MASK))
2347 t->flags |= SN_ERR_CLITO;
2348 if (!(t->flags & SN_FINST_MASK)) {
2349 if (t->pend_pos)
2350 t->flags |= SN_FINST_Q;
2351 else if (s == SV_STCONN)
2352 t->flags |= SN_FINST_C;
2353 else
2354 t->flags |= SN_FINST_D;
2355 }
2356 return 1;
2357 }
2358 else if (req->l >= req->rlim - req->data) {
2359 /* no room to read more data */
2360
2361 /* FIXME-20050705: is it possible for a client to maintain a session
2362 * after the timeout by sending more data after it receives a close ?
2363 */
2364
Willy Tarreau66319382007-04-08 17:17:37 +02002365 if (EV_FD_COND_C(t->cli_fd, DIR_RD)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002366 /* stop reading until we get some space */
Willy Tarreaud7971282006-07-29 18:36:34 +02002367 tv_eternity(&req->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002368 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
2369 }
2370 } else {
2371 /* there's still some space in the buffer */
Willy Tarreau66319382007-04-08 17:17:37 +02002372 if (EV_FD_COND_S(t->cli_fd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002373 if (!tv_add_ifset(&req->rex, &now, &t->fe->timeout.client))
Willy Tarreaud7971282006-07-29 18:36:34 +02002374 tv_eternity(&req->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002375 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
2376 }
2377 }
2378 return 0;
2379 }
2380 else { /* CL_STCLOSE: nothing to do */
2381 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
2382 int len;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002383 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n", t->uniq_id, t->be->id, (unsigned short)t->cli_fd, (unsigned short)t->srv_fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002384 write(1, trash, len);
2385 }
2386 return 0;
2387 }
2388 return 0;
2389}
2390
2391
2392/*
2393 * manages the server FSM and its socket. It returns 1 if a state has changed
2394 * (and a resync may be needed), 0 else.
2395 */
2396int process_srv(struct session *t)
2397{
2398 int s = t->srv_state;
2399 int c = t->cli_state;
Willy Tarreau3d300592007-03-18 18:34:41 +01002400 struct http_txn *txn = &t->txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002401 struct buffer *req = t->req;
2402 struct buffer *rep = t->rep;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002403 int conn_err;
2404
2405#ifdef DEBUG_FULL
2406 fprintf(stderr,"process_srv: c=%s, s=%s\n", cli_stnames[c], srv_stnames[s]);
2407#endif
Willy Tarreauee991362007-05-14 14:37:50 +02002408
2409#if 0
2410 fprintf(stderr,"%s:%d fe->clito=%d.%d, fe->conto=%d.%d, fe->srvto=%d.%d\n",
2411 __FUNCTION__, __LINE__,
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002412 t->fe->timeout.client.tv_sec, t->fe->timeout.client.tv_usec,
2413 t->fe->timeout.connect.tv_sec, t->fe->timeout.connect.tv_usec,
2414 t->fe->timeout.server.tv_sec, t->fe->timeout.server.tv_usec);
Willy Tarreauee991362007-05-14 14:37:50 +02002415 fprintf(stderr,"%s:%d be->clito=%d.%d, be->conto=%d.%d, be->srvto=%d.%d\n",
2416 __FUNCTION__, __LINE__,
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002417 t->be->timeout.client.tv_sec, t->be->timeout.client.tv_usec,
2418 t->be->timeout.connect.tv_sec, t->be->timeout.connect.tv_usec,
2419 t->be->timeout.server.tv_sec, t->be->timeout.server.tv_usec);
Willy Tarreauee991362007-05-14 14:37:50 +02002420
2421 fprintf(stderr,"%s:%d req->cto=%d.%d, req->rto=%d.%d, req->wto=%d.%d\n",
2422 __FUNCTION__, __LINE__,
2423 req->cto.tv_sec, req->cto.tv_usec,
2424 req->rto.tv_sec, req->rto.tv_usec,
2425 req->wto.tv_sec, req->wto.tv_usec);
2426
2427 fprintf(stderr,"%s:%d rep->cto=%d.%d, rep->rto=%d.%d, rep->wto=%d.%d\n",
2428 __FUNCTION__, __LINE__,
2429 rep->cto.tv_sec, rep->cto.tv_usec,
2430 rep->rto.tv_sec, rep->rto.tv_usec,
2431 rep->wto.tv_sec, rep->wto.tv_usec);
2432#endif
2433
Willy Tarreaubaaee002006-06-26 02:48:02 +02002434 //fprintf(stderr,"process_srv: c=%d, s=%d, cr=%d, cw=%d, sr=%d, sw=%d\n", c, s,
Willy Tarreauf161a342007-04-08 16:59:42 +02002435 //EV_FD_ISSET(t->cli_fd, DIR_RD), EV_FD_ISSET(t->cli_fd, DIR_WR),
2436 //EV_FD_ISSET(t->srv_fd, DIR_RD), EV_FD_ISSET(t->srv_fd, DIR_WR)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002437 //);
2438 if (s == SV_STIDLE) {
2439 if (c == CL_STHEADERS)
2440 return 0; /* stay in idle, waiting for data to reach the client side */
2441 else if (c == CL_STCLOSE || c == CL_STSHUTW ||
2442 (c == CL_STSHUTR &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002443 (t->req->l == 0 || t->be->options & PR_O_ABRT_CLOSE))) { /* give up */
Willy Tarreaud7971282006-07-29 18:36:34 +02002444 tv_eternity(&req->cex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002445 if (t->pend_pos)
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002446 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002447 /* note that this must not return any error because it would be able to
2448 * overwrite the client_retnclose() output.
2449 */
Willy Tarreau3d300592007-03-18 18:34:41 +01002450 if (txn->flags & TX_CLTARPIT)
Willy Tarreau0f772532006-12-23 20:51:41 +01002451 srv_close_with_err(t, SN_ERR_CLICL, SN_FINST_T, 0, NULL);
Willy Tarreau08fa2e32006-09-03 10:47:37 +02002452 else
Willy Tarreau0f772532006-12-23 20:51:41 +01002453 srv_close_with_err(t, SN_ERR_CLICL, t->pend_pos ? SN_FINST_Q : SN_FINST_C, 0, NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002454
2455 return 1;
2456 }
2457 else {
Willy Tarreau3d300592007-03-18 18:34:41 +01002458 if (txn->flags & TX_CLTARPIT) {
Willy Tarreaub8750a82006-09-03 09:56:00 +02002459 /* This connection is being tarpitted. The CLIENT side has
2460 * already set the connect expiration date to the right
2461 * timeout. We just have to check that it has not expired.
2462 */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002463 if (!tv_isle(&req->cex, &now))
Willy Tarreaub8750a82006-09-03 09:56:00 +02002464 return 0;
2465
2466 /* We will set the queue timer to the time spent, just for
2467 * logging purposes. We fake a 500 server error, so that the
2468 * attacker will not suspect his connection has been tarpitted.
2469 * It will not cause trouble to the logs because we can exclude
2470 * the tarpitted connections by filtering on the 'PT' status flags.
2471 */
2472 tv_eternity(&req->cex);
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002473 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaub8750a82006-09-03 09:56:00 +02002474 srv_close_with_err(t, SN_ERR_PRXCOND, SN_FINST_T,
Willy Tarreau80587432006-12-24 17:47:20 +01002475 500, error_message(t, HTTP_ERR_500));
Willy Tarreaub8750a82006-09-03 09:56:00 +02002476 return 1;
2477 }
2478
Willy Tarreaubaaee002006-06-26 02:48:02 +02002479 /* Right now, we will need to create a connection to the server.
2480 * We might already have tried, and got a connection pending, in
2481 * which case we will not do anything till it's pending. It's up
2482 * to any other session to release it and wake us up again.
2483 */
2484 if (t->pend_pos) {
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002485 if (!tv_isle(&req->cex, &now))
Willy Tarreaubaaee002006-06-26 02:48:02 +02002486 return 0;
2487 else {
2488 /* we've been waiting too long here */
Willy Tarreaud7971282006-07-29 18:36:34 +02002489 tv_eternity(&req->cex);
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002490 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002491 srv_close_with_err(t, SN_ERR_SRVTO, SN_FINST_Q,
Willy Tarreau80587432006-12-24 17:47:20 +01002492 503, error_message(t, HTTP_ERR_503));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002493 if (t->srv)
2494 t->srv->failed_conns++;
Willy Tarreau50fd1e12007-12-10 15:25:35 +01002495 t->be->failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002496 return 1;
2497 }
2498 }
2499
2500 do {
2501 /* first, get a connection */
Willy Tarreau21d2af32008-02-14 20:25:24 +01002502 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2503 t->flags |= SN_REDIRECTABLE;
2504
Willy Tarreaubaaee002006-06-26 02:48:02 +02002505 if (srv_redispatch_connect(t))
2506 return t->srv_state != SV_STIDLE;
2507
Willy Tarreau21d2af32008-02-14 20:25:24 +01002508 if ((t->flags & SN_REDIRECTABLE) && t->srv && t->srv->rdr_len) {
2509 /* Server supporting redirection and it is possible.
2510 * Invalid requests are reported as such. It concerns all
2511 * the largest ones.
2512 */
2513 struct chunk rdr;
2514 char *path;
2515 int len;
2516
2517 /* 1: create the response header */
2518 rdr.len = strlen(HTTP_302);
2519 rdr.str = trash;
2520 memcpy(rdr.str, HTTP_302, rdr.len);
2521
2522 /* 2: add the server's prefix */
2523 if (rdr.len + t->srv->rdr_len > sizeof(trash))
2524 goto cancel_redir;
2525
2526 memcpy(rdr.str + rdr.len, t->srv->rdr_pfx, t->srv->rdr_len);
2527 rdr.len += t->srv->rdr_len;
2528
2529 /* 3: add the request URI */
2530 path = http_get_path(txn);
2531 if (!path)
2532 goto cancel_redir;
2533 len = txn->req.sl.rq.u_l + (txn->req.sol+txn->req.sl.rq.u) - path;
2534 if (rdr.len + len > sizeof(trash) - 4) /* 4 for CRLF-CRLF */
2535 goto cancel_redir;
2536
2537 memcpy(rdr.str + rdr.len, path, len);
2538 rdr.len += len;
2539 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
2540 rdr.len += 4;
2541
2542 srv_close_with_err(t, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr);
2543 /* FIXME: we should increase a counter of redirects per server and per backend. */
2544 if (t->srv)
2545 t->srv->cum_sess++;
2546 return 1;
2547 cancel_redir:
2548 txn->status = 400;
2549 t->fe->failed_req++;
2550 srv_close_with_err(t, SN_ERR_PRXCOND, SN_FINST_C,
2551 400, error_message(t, HTTP_ERR_400));
2552 return 1;
2553 }
2554
Willy Tarreaubaaee002006-06-26 02:48:02 +02002555 /* try to (re-)connect to the server, and fail if we expire the
2556 * number of retries.
2557 */
2558 if (srv_retryable_connect(t)) {
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002559 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002560 return t->srv_state != SV_STIDLE;
2561 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002562 } while (1);
2563 }
2564 }
2565 else if (s == SV_STCONN) { /* connection in progress */
2566 if (c == CL_STCLOSE || c == CL_STSHUTW ||
2567 (c == CL_STSHUTR &&
Willy Tarreauc9b654b2007-05-08 14:46:53 +02002568 ((t->req->l == 0 && !(req->flags & BF_WRITE_STATUS)) ||
2569 t->be->options & PR_O_ABRT_CLOSE))) { /* give up */
Willy Tarreaud7971282006-07-29 18:36:34 +02002570 tv_eternity(&req->cex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002571 fd_delete(t->srv_fd);
2572 if (t->srv)
2573 t->srv->cur_sess--;
2574
2575 /* note that this must not return any error because it would be able to
2576 * overwrite the client_retnclose() output.
2577 */
Willy Tarreau0f772532006-12-23 20:51:41 +01002578 srv_close_with_err(t, SN_ERR_CLICL, SN_FINST_C, 0, NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002579 return 1;
2580 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002581 if (!(req->flags & BF_WRITE_STATUS) && !tv_isle(&req->cex, &now)) {
Willy Tarreaud7971282006-07-29 18:36:34 +02002582 //fprintf(stderr,"1: c=%d, s=%d, now=%d.%06d, exp=%d.%06d\n", c, s, now.tv_sec, now.tv_usec, req->cex.tv_sec, req->cex.tv_usec);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002583 return 0; /* nothing changed */
2584 }
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002585 else if (!(req->flags & BF_WRITE_STATUS) || (req->flags & BF_WRITE_ERROR)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002586 /* timeout, asynchronous connect error or first write error */
2587 //fprintf(stderr,"2: c=%d, s=%d\n", c, s);
2588
Willy Tarreau541b5c22008-01-06 23:34:21 +01002589 if (t->flags & SN_CONN_TAR) {
2590 /* We are doing a turn-around waiting for a new connection attempt. */
2591 if (!tv_isle(&req->cex, &now))
2592 return 0;
2593 t->flags &= ~SN_CONN_TAR;
2594 }
2595 else {
2596 fd_delete(t->srv_fd);
2597 if (t->srv)
2598 t->srv->cur_sess--;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002599
Willy Tarreau541b5c22008-01-06 23:34:21 +01002600 if (!(req->flags & BF_WRITE_STATUS))
2601 conn_err = SN_ERR_SRVTO; // it was a connect timeout.
2602 else
2603 conn_err = SN_ERR_SRVCL; // it was an asynchronous connect error.
2604
2605 /* ensure that we have enough retries left */
2606 if (srv_count_retry_down(t, conn_err))
2607 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002608
Willy Tarreau541b5c22008-01-06 23:34:21 +01002609 if (req->flags & BF_WRITE_ERROR) {
2610 /* we encountered an immediate connection error, and we
2611 * will have to retry connecting to the same server, most
2612 * likely leading to the same result. To avoid this, we
2613 * fake a connection timeout to retry after a turn-around
2614 * time of 1 second. We will wait in the previous if block.
2615 */
2616 t->flags |= SN_CONN_TAR;
2617 tv_ms_add(&req->cex, &now, 1000);
2618 return 0;
2619 }
2620 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002621
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002622 if (t->srv && t->conn_retries == 0 && t->be->options & PR_O_REDISP) {
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002623 /* We're on our last chance, and the REDISP option was specified.
2624 * We will ignore cookie and force to balance or use the dispatcher.
2625 */
2626 /* let's try to offer this slot to anybody */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002627 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02002628 task_wakeup(t->srv->queue_mgt);
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002629
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01002630 /* it's left to the dispatcher to choose a server */
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002631 t->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002632
2633 /* first, get a connection */
2634 if (srv_redispatch_connect(t))
Willy Tarreau00559e72008-01-06 23:46:19 +01002635 return t->srv_state != SV_STCONN;
Krzysztof Piotr Oledzki626a19b2008-02-04 02:10:09 +01002636 } else {
2637 if (t->srv)
2638 t->srv->retries++;
2639 t->be->retries++;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002640 }
2641
Willy Tarreaubaaee002006-06-26 02:48:02 +02002642 do {
2643 /* Now we will try to either reconnect to the same server or
2644 * connect to another server. If the connection gets queued
2645 * because all servers are saturated, then we will go back to
2646 * the SV_STIDLE state.
2647 */
2648 if (srv_retryable_connect(t)) {
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002649 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002650 return t->srv_state != SV_STCONN;
2651 }
2652
2653 /* we need to redispatch the connection to another server */
2654 if (srv_redispatch_connect(t))
2655 return t->srv_state != SV_STCONN;
2656 } while (1);
2657 }
2658 else { /* no error or write 0 */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002659 t->logs.t_connect = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002660
2661 //fprintf(stderr,"3: c=%d, s=%d\n", c, s);
2662 if (req->l == 0) /* nothing to write */ {
Willy Tarreauf161a342007-04-08 16:59:42 +02002663 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaud7971282006-07-29 18:36:34 +02002664 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002665 } else /* need the right to write */ {
Willy Tarreauf161a342007-04-08 16:59:42 +02002666 EV_FD_SET(t->srv_fd, DIR_WR);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002667 if (tv_add_ifset(&req->wex, &now, &t->be->timeout.server)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002668 /* FIXME: to prevent the server from expiring read timeouts during writes,
2669 * we refresh it. */
Willy Tarreaud7971282006-07-29 18:36:34 +02002670 rep->rex = req->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002671 }
2672 else
Willy Tarreaud7971282006-07-29 18:36:34 +02002673 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002674 }
2675
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002676 if (t->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreauf161a342007-04-08 16:59:42 +02002677 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002678 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02002679 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002680
2681 t->srv_state = SV_STDATA;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002682 rep->rlim = rep->data + BUFSIZE; /* no rewrite needed */
2683
2684 /* if the user wants to log as soon as possible, without counting
2685 bytes from the server, then this is the right moment. */
Willy Tarreau73de9892006-11-30 11:40:23 +01002686 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002687 t->logs.t_close = t->logs.t_connect; /* to get a valid end date */
Willy Tarreau42250582007-04-01 01:30:43 +02002688 tcp_sess_log(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002689 }
Willy Tarreau6d1a9882007-01-07 02:03:04 +01002690#ifdef CONFIG_HAP_TCPSPLICE
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002691 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
Willy Tarreau6d1a9882007-01-07 02:03:04 +01002692 /* TCP splicing supported by both FE and BE */
2693 tcp_splice_splicefd(t->cli_fd, t->srv_fd, 0);
2694 }
2695#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002696 }
2697 else {
2698 t->srv_state = SV_STHEADERS;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002699 rep->rlim = rep->data + BUFSIZE - MAXREWRITE; /* rewrite needed */
Willy Tarreaua15645d2007-03-18 16:22:39 +01002700 t->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
2701 /* reset hdr_idx which was already initialized by the request.
2702 * right now, the http parser does it.
2703 * hdr_idx_init(&t->txn.hdr_idx);
2704 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002705 }
Willy Tarreaud7971282006-07-29 18:36:34 +02002706 tv_eternity(&req->cex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002707 return 1;
2708 }
2709 }
2710 else if (s == SV_STHEADERS) { /* receiving server headers */
Willy Tarreaua15645d2007-03-18 16:22:39 +01002711 /*
2712 * Now parse the partial (or complete) lines.
2713 * We will check the response syntax, and also join multi-line
2714 * headers. An index of all the lines will be elaborated while
2715 * parsing.
2716 *
2717 * For the parsing, we use a 28 states FSM.
2718 *
2719 * Here is the information we currently have :
2720 * rep->data + req->som = beginning of response
2721 * rep->data + req->eoh = end of processed headers / start of current one
2722 * rep->data + req->eol = end of current header or line (LF or CRLF)
2723 * rep->lr = first non-visited byte
2724 * rep->r = end of data
2725 */
2726
2727 int cur_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002728 struct http_msg *msg = &txn->rsp;
2729 struct proxy *cur_proxy;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002730
Willy Tarreaua15645d2007-03-18 16:22:39 +01002731 if (likely(rep->lr < rep->r))
2732 http_msg_analyzer(rep, msg, &txn->hdr_idx);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002733
Willy Tarreaua15645d2007-03-18 16:22:39 +01002734 /* 1: we might have to print this header in debug mode */
2735 if (unlikely((global.mode & MODE_DEBUG) &&
2736 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
2737 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
2738 char *eol, *sol;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002739
Willy Tarreaua15645d2007-03-18 16:22:39 +01002740 sol = rep->data + msg->som;
2741 eol = sol + msg->sl.rq.l;
2742 debug_hdr("srvrep", t, sol, eol);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002743
Willy Tarreaua15645d2007-03-18 16:22:39 +01002744 sol += hdr_idx_first_pos(&txn->hdr_idx);
2745 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002746
Willy Tarreaua15645d2007-03-18 16:22:39 +01002747 while (cur_idx) {
2748 eol = sol + txn->hdr_idx.v[cur_idx].len;
2749 debug_hdr("srvhdr", t, sol, eol);
2750 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2751 cur_idx = txn->hdr_idx.v[cur_idx].next;
2752 }
2753 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002754
Willy Tarreaubaaee002006-06-26 02:48:02 +02002755
Willy Tarreau66319382007-04-08 17:17:37 +02002756 if ((rep->l < rep->rlim - rep->data) && EV_FD_COND_S(t->srv_fd, DIR_RD)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002757 /* fd in DIR_RD was disabled, perhaps because of a previous buffer
Willy Tarreaua15645d2007-03-18 16:22:39 +01002758 * full. We cannot loop here since stream_sock_read will disable it only if
2759 * rep->l == rlim-data
2760 */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002761 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaua15645d2007-03-18 16:22:39 +01002762 tv_eternity(&rep->rex);
2763 }
2764
2765
2766 /*
2767 * Now we quickly check if we have found a full valid response.
2768 * If not so, we check the FD and buffer states before leaving.
2769 * A full response is indicated by the fact that we have seen
2770 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
2771 * responses are checked first.
2772 *
2773 * Depending on whether the client is still there or not, we
2774 * may send an error response back or not. Note that normally
2775 * we should only check for HTTP status there, and check I/O
2776 * errors somewhere else.
2777 */
2778
2779 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
2780
2781 /* Invalid response, or read error or write error */
2782 if (unlikely((msg->msg_state == HTTP_MSG_ERROR) ||
2783 (req->flags & BF_WRITE_ERROR) ||
2784 (rep->flags & BF_READ_ERROR))) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002785 buffer_shutr(rep);
2786 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002787 fd_delete(t->srv_fd);
2788 if (t->srv) {
2789 t->srv->cur_sess--;
2790 t->srv->failed_resp++;
2791 }
2792 t->be->failed_resp++;
2793 t->srv_state = SV_STCLOSE;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002794 txn->status = 502;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002795 client_return(t, error_message(t, HTTP_ERR_502));
2796 if (!(t->flags & SN_ERR_MASK))
2797 t->flags |= SN_ERR_SRVCL;
2798 if (!(t->flags & SN_FINST_MASK))
2799 t->flags |= SN_FINST_H;
2800 /* We used to have a free connection slot. Since we'll never use it,
2801 * we have to inform the server that it may be used by another session.
2802 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002803 if (t->srv && may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02002804 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002805
Willy Tarreaua15645d2007-03-18 16:22:39 +01002806 return 1;
2807 }
2808
2809 /* end of client write or end of server read.
2810 * since we are in header mode, if there's no space left for headers, we
2811 * won't be able to free more later, so the session will never terminate.
2812 */
2813 else if (unlikely(rep->flags & BF_READ_NULL ||
2814 c == CL_STSHUTW || c == CL_STCLOSE ||
2815 rep->l >= rep->rlim - rep->data)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002816 EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02002817 buffer_shutr(rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002818 t->srv_state = SV_STSHUTR;
2819 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
2820 return 1;
2821 }
2822
2823 /* read timeout : return a 504 to the client.
2824 */
Willy Tarreauf161a342007-04-08 16:59:42 +02002825 else if (unlikely(EV_FD_ISSET(t->srv_fd, DIR_RD) &&
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002826 tv_isle(&rep->rex, &now))) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002827 buffer_shutr(rep);
2828 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002829 fd_delete(t->srv_fd);
2830 if (t->srv) {
2831 t->srv->cur_sess--;
2832 t->srv->failed_resp++;
2833 }
2834 t->be->failed_resp++;
2835 t->srv_state = SV_STCLOSE;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002836 txn->status = 504;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002837 client_return(t, error_message(t, HTTP_ERR_504));
2838 if (!(t->flags & SN_ERR_MASK))
2839 t->flags |= SN_ERR_SRVTO;
2840 if (!(t->flags & SN_FINST_MASK))
2841 t->flags |= SN_FINST_H;
2842 /* We used to have a free connection slot. Since we'll never use it,
2843 * we have to inform the server that it may be used by another session.
2844 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002845 if (t->srv && may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02002846 task_wakeup(t->srv->queue_mgt);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002847 return 1;
2848 }
2849
2850 /* last client read and buffer empty */
2851 /* FIXME!!! here, we don't want to switch to SHUTW if the
2852 * client shuts read too early, because we may still have
2853 * some work to do on the headers.
2854 * The side-effect is that if the client completely closes its
2855 * connection during SV_STHEADER, the connection to the server
2856 * is kept until a response comes back or the timeout is reached.
2857 */
2858 else if (unlikely((/*c == CL_STSHUTR ||*/ c == CL_STCLOSE) &&
2859 (req->l == 0))) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002860 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02002861 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002862
2863 /* We must ensure that the read part is still
2864 * alive when switching to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02002865 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002866 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002867
2868 shutdown(t->srv_fd, SHUT_WR);
2869 t->srv_state = SV_STSHUTW;
2870 return 1;
2871 }
2872
2873 /* write timeout */
2874 /* FIXME!!! here, we don't want to switch to SHUTW if the
2875 * client shuts read too early, because we may still have
2876 * some work to do on the headers.
2877 */
Willy Tarreauf161a342007-04-08 16:59:42 +02002878 else if (unlikely(EV_FD_ISSET(t->srv_fd, DIR_WR) &&
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002879 tv_isle(&req->wex, &now))) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002880 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02002881 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002882 shutdown(t->srv_fd, SHUT_WR);
2883 /* We must ensure that the read part is still alive
2884 * when switching to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02002885 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002886 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002887
2888 t->srv_state = SV_STSHUTW;
2889 if (!(t->flags & SN_ERR_MASK))
2890 t->flags |= SN_ERR_SRVTO;
2891 if (!(t->flags & SN_FINST_MASK))
2892 t->flags |= SN_FINST_H;
2893 return 1;
2894 }
2895
2896 /*
2897 * And now the non-error cases.
2898 */
2899
2900 /* Data remaining in the request buffer.
2901 * This happens during the first pass here, and during
2902 * long posts.
2903 */
2904 else if (likely(req->l)) {
Willy Tarreau66319382007-04-08 17:17:37 +02002905 if (EV_FD_COND_S(t->srv_fd, DIR_WR)) {
2906 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002907 if (tv_add_ifset(&req->wex, &now, &t->be->timeout.server)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01002908 /* FIXME: to prevent the server from expiring read timeouts during writes,
2909 * we refresh it. */
2910 rep->rex = req->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002911 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002912 else
2913 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002914 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002915 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002916
Willy Tarreaua15645d2007-03-18 16:22:39 +01002917 /* nothing left in the request buffer */
2918 else {
Willy Tarreau66319382007-04-08 17:17:37 +02002919 if (EV_FD_COND_C(t->srv_fd, DIR_WR)) {
2920 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02002921 tv_eternity(&req->wex);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002922 }
2923 }
2924
2925 return t->srv_state != SV_STHEADERS;
2926 }
2927
2928
2929 /*****************************************************************
2930 * More interesting part now : we know that we have a complete *
2931 * response which at least looks like HTTP. We have an indicator *
2932 * of each header's length, so we can parse them quickly. *
2933 ****************************************************************/
2934
Willy Tarreau9cdde232007-05-02 20:58:19 +02002935 /* ensure we keep this pointer to the beginning of the message */
2936 msg->sol = rep->data + msg->som;
2937
Willy Tarreaua15645d2007-03-18 16:22:39 +01002938 /*
2939 * 1: get the status code and check for cacheability.
2940 */
2941
2942 t->logs.logwait &= ~LW_RESP;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002943 txn->status = strl2ui(rep->data + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002944
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002945 switch (txn->status) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01002946 case 200:
2947 case 203:
2948 case 206:
2949 case 300:
2950 case 301:
2951 case 410:
2952 /* RFC2616 @13.4:
2953 * "A response received with a status code of
2954 * 200, 203, 206, 300, 301 or 410 MAY be stored
2955 * by a cache (...) unless a cache-control
2956 * directive prohibits caching."
2957 *
2958 * RFC2616 @9.5: POST method :
2959 * "Responses to this method are not cacheable,
2960 * unless the response includes appropriate
2961 * Cache-Control or Expires header fields."
2962 */
2963 if (likely(txn->meth != HTTP_METH_POST) &&
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02002964 (t->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
Willy Tarreau3d300592007-03-18 18:34:41 +01002965 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002966 break;
2967 default:
2968 break;
2969 }
2970
2971 /*
2972 * 2: we may need to capture headers
2973 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002974 if (unlikely((t->logs.logwait & LW_RSPHDR) && t->fe->rsp_cap))
Willy Tarreaua15645d2007-03-18 16:22:39 +01002975 capture_headers(rep->data + msg->som, &txn->hdr_idx,
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002976 txn->rsp.cap, t->fe->rsp_cap);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002977
2978 /*
2979 * 3: we will have to evaluate the filters.
2980 * As opposed to version 1.2, now they will be evaluated in the
2981 * filters order and not in the header order. This means that
2982 * each filter has to be validated among all headers.
2983 *
2984 * Filters are tried with ->be first, then with ->fe if it is
2985 * different from ->be.
2986 */
2987
2988 t->flags &= ~SN_CONN_CLOSED; /* prepare for inspection */
2989
2990 cur_proxy = t->be;
2991 while (1) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002992 struct proxy *rule_set = cur_proxy;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002993
2994 /* try headers filters */
2995 if (rule_set->rsp_exp != NULL) {
2996 if (apply_filters_to_response(t, rep, rule_set->rsp_exp) < 0) {
2997 return_bad_resp:
Willy Tarreaubaaee002006-06-26 02:48:02 +02002998 if (t->srv) {
2999 t->srv->cur_sess--;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003000 t->srv->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003001 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003002 cur_proxy->failed_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003003 return_srv_prx_502:
Willy Tarreaufa645582007-06-03 15:59:52 +02003004 buffer_shutr(rep);
3005 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003006 fd_delete(t->srv_fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003007 t->srv_state = SV_STCLOSE;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003008 txn->status = 502;
Willy Tarreau80587432006-12-24 17:47:20 +01003009 client_return(t, error_message(t, HTTP_ERR_502));
Willy Tarreaubaaee002006-06-26 02:48:02 +02003010 if (!(t->flags & SN_ERR_MASK))
3011 t->flags |= SN_ERR_PRXCOND;
3012 if (!(t->flags & SN_FINST_MASK))
3013 t->flags |= SN_FINST_H;
3014 /* We used to have a free connection slot. Since we'll never use it,
3015 * we have to inform the server that it may be used by another session.
3016 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003017 if (t->srv && may_dequeue_tasks(t->srv, cur_proxy))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003018 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003019 return 1;
3020 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003021 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003022
Willy Tarreaua15645d2007-03-18 16:22:39 +01003023 /* has the response been denied ? */
Willy Tarreau3d300592007-03-18 18:34:41 +01003024 if (txn->flags & TX_SVDENY) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003025 if (t->srv) {
3026 t->srv->cur_sess--;
3027 t->srv->failed_secu++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003028 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003029 cur_proxy->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003030 goto return_srv_prx_502;
3031 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003032
Willy Tarreaua15645d2007-03-18 16:22:39 +01003033 /* We might have to check for "Connection:" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003034 if (((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01003035 !(t->flags & SN_CONN_CLOSED)) {
3036 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003037 int cur_idx, old_idx, delta, val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003038 struct hdr_idx_elem *cur_hdr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003039
Willy Tarreaua15645d2007-03-18 16:22:39 +01003040 cur_next = rep->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
3041 old_idx = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003042
Willy Tarreaua15645d2007-03-18 16:22:39 +01003043 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
3044 cur_hdr = &txn->hdr_idx.v[cur_idx];
3045 cur_ptr = cur_next;
3046 cur_end = cur_ptr + cur_hdr->len;
3047 cur_next = cur_end + cur_hdr->cr + 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003048
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003049 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
3050 if (val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003051 /* 3 possibilities :
3052 * - we have already set Connection: close,
3053 * so we remove this line.
3054 * - we have not yet set Connection: close,
3055 * but this line indicates close. We leave
3056 * it untouched and set the flag.
3057 * - we have not yet set Connection: close,
3058 * and this line indicates non-close. We
3059 * replace it.
3060 */
3061 if (t->flags & SN_CONN_CLOSED) {
3062 delta = buffer_replace2(rep, cur_ptr, cur_next, NULL, 0);
3063 txn->rsp.eoh += delta;
3064 cur_next += delta;
3065 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3066 txn->hdr_idx.used--;
3067 cur_hdr->len = 0;
3068 } else {
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003069 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
3070 delta = buffer_replace2(rep, cur_ptr + val, cur_end,
3071 "close", 5);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003072 cur_next += delta;
3073 cur_hdr->len += delta;
3074 txn->rsp.eoh += delta;
3075 }
3076 t->flags |= SN_CONN_CLOSED;
3077 }
3078 }
3079 old_idx = cur_idx;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003080 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003081 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003082
Willy Tarreaua15645d2007-03-18 16:22:39 +01003083 /* add response headers from the rule sets in the same order */
3084 for (cur_idx = 0; cur_idx < rule_set->nb_rspadd; cur_idx++) {
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003085 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx,
3086 rule_set->rsp_add[cur_idx])) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003087 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003088 }
3089
Willy Tarreaua15645d2007-03-18 16:22:39 +01003090 /* check whether we're already working on the frontend */
3091 if (cur_proxy == t->fe)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003092 break;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003093 cur_proxy = t->fe;
3094 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003095
Willy Tarreaua15645d2007-03-18 16:22:39 +01003096 /*
3097 * 4: check for server cookie.
3098 */
Willy Tarreau396d2c62007-11-04 19:30:00 +01003099 if (t->be->cookie_name || t->be->appsession_name || t->be->capture_name
3100 || (t->be->options & PR_O_CHK_CACHE))
3101 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003102
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003103
Willy Tarreaua15645d2007-03-18 16:22:39 +01003104 /*
Willy Tarreau396d2c62007-11-04 19:30:00 +01003105 * 5: check for cache-control or pragma headers if required.
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003106 */
Willy Tarreau396d2c62007-11-04 19:30:00 +01003107 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
3108 check_response_for_cacheability(t, rep);
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003109
3110 /*
3111 * 6: add server cookie in the response if needed
Willy Tarreaua15645d2007-03-18 16:22:39 +01003112 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003113 if ((t->srv) && !(t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_INS) &&
3114 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003115 int len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003116
Willy Tarreaua15645d2007-03-18 16:22:39 +01003117 /* the server is known, it's not the one the client requested, we have to
3118 * insert a set-cookie here, except if we want to insert only on POST
3119 * requests and this one isn't. Note that servers which don't have cookies
3120 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003121 */
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003122 len = sprintf(trash, "Set-Cookie: %s=%s; path=/",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003123 t->be->cookie_name,
Willy Tarreaua15645d2007-03-18 16:22:39 +01003124 t->srv->cookie ? t->srv->cookie : "; Expires=Thu, 01-Jan-1970 00:00:01 GMT");
Willy Tarreaubaaee002006-06-26 02:48:02 +02003125
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003126 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3127 trash, len)) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003128 goto return_bad_resp;
Willy Tarreau3d300592007-03-18 18:34:41 +01003129 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003130
Willy Tarreaua15645d2007-03-18 16:22:39 +01003131 /* Here, we will tell an eventual cache on the client side that we don't
3132 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
3133 * Some caches understand the correct form: 'no-cache="set-cookie"', but
3134 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
3135 */
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003136 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
3137
3138 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3139
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003140 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3141 "Cache-control: private", 22)) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003142 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003143 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003144 }
3145
3146
3147 /*
Willy Tarreaua15645d2007-03-18 16:22:39 +01003148 * 7: check if result will be cacheable with a cookie.
3149 * We'll block the response if security checks have caught
3150 * nasty things such as a cacheable cookie.
3151 */
Willy Tarreau3d300592007-03-18 18:34:41 +01003152 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) ==
3153 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003154 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003155
Willy Tarreaua15645d2007-03-18 16:22:39 +01003156 /* we're in presence of a cacheable response containing
3157 * a set-cookie header. We'll block it as requested by
3158 * the 'checkcache' option, and send an alert.
3159 */
3160 if (t->srv) {
3161 t->srv->cur_sess--;
3162 t->srv->failed_secu++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003163 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003164 t->be->denied_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003165
Willy Tarreaua15645d2007-03-18 16:22:39 +01003166 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003167 t->be->id, t->srv?t->srv->id:"<dispatch>");
Willy Tarreaua15645d2007-03-18 16:22:39 +01003168 send_log(t->be, LOG_ALERT,
3169 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003170 t->be->id, t->srv?t->srv->id:"<dispatch>");
Willy Tarreaua15645d2007-03-18 16:22:39 +01003171 goto return_srv_prx_502;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003172 }
3173
Willy Tarreaua15645d2007-03-18 16:22:39 +01003174 /*
3175 * 8: add "Connection: close" if needed and not yet set.
Willy Tarreau2807efd2007-03-25 23:47:23 +02003176 * Note that we do not need to add it in case of HTTP/1.0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003177 */
Willy Tarreau2807efd2007-03-25 23:47:23 +02003178 if (!(t->flags & SN_CONN_CLOSED) &&
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003179 ((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
Willy Tarreau2807efd2007-03-25 23:47:23 +02003180 if ((unlikely(msg->sl.st.v_l != 8) ||
3181 unlikely(req->data[msg->som + 7] != '0')) &&
3182 unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003183 "Connection: close", 17)) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003184 goto return_bad_resp;
3185 t->flags |= SN_CONN_CLOSED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003186 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003187
Willy Tarreaubaaee002006-06-26 02:48:02 +02003188
Willy Tarreaua15645d2007-03-18 16:22:39 +01003189 /*************************************************************
3190 * OK, that's finished for the headers. We have done what we *
3191 * could. Let's switch to the DATA state. *
3192 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02003193
Willy Tarreaua15645d2007-03-18 16:22:39 +01003194 t->srv_state = SV_STDATA;
3195 rep->rlim = rep->data + BUFSIZE; /* no more rewrite needed */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02003196 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003197
3198 /* client connection already closed or option 'forceclose' required :
3199 * we close the server's outgoing connection right now.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003200 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003201 if ((req->l == 0) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003202 (c == CL_STSHUTR || c == CL_STCLOSE || t->be->options & PR_O_FORCE_CLO)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003203 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003204 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003205
3206 /* We must ensure that the read part is still alive when switching
3207 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02003208 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003209 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003210
Willy Tarreaua15645d2007-03-18 16:22:39 +01003211 shutdown(t->srv_fd, SHUT_WR);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003212 t->srv_state = SV_STSHUTW;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003213 }
3214
Willy Tarreaua15645d2007-03-18 16:22:39 +01003215#ifdef CONFIG_HAP_TCPSPLICE
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003216 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003217 /* TCP splicing supported by both FE and BE */
3218 tcp_splice_splicefd(t->cli_fd, t->srv_fd, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003219 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003220#endif
3221 /* if the user wants to log as soon as possible, without counting
Krzysztof Piotr Oledzkif1e1cb42008-01-20 23:27:02 +01003222 * bytes from the server, then this is the right moment. We have
3223 * to temporarily assign bytes_out to log what we currently have.
3224 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003225 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
3226 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
Willy Tarreau8b3977f2008-01-18 11:16:32 +01003227 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreau42250582007-04-01 01:30:43 +02003228 if (t->fe->to_log & LW_REQ)
3229 http_sess_log(t);
3230 else
3231 tcp_sess_log(t);
Krzysztof Piotr Oledzkif1e1cb42008-01-20 23:27:02 +01003232 t->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003233 }
3234
Willy Tarreaua15645d2007-03-18 16:22:39 +01003235 /* Note: we must not try to cheat by jumping directly to DATA,
3236 * otherwise we would not let the client side wake up.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003237 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003238
3239 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003240 }
3241 else if (s == SV_STDATA) {
3242 /* read or write error */
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003243 if (req->flags & BF_WRITE_ERROR || rep->flags & BF_READ_ERROR) {
Willy Tarreaufa645582007-06-03 15:59:52 +02003244 buffer_shutr(rep);
3245 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003246 fd_delete(t->srv_fd);
3247 if (t->srv) {
3248 t->srv->cur_sess--;
3249 t->srv->failed_resp++;
3250 }
Willy Tarreau73de9892006-11-30 11:40:23 +01003251 t->be->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003252 t->srv_state = SV_STCLOSE;
3253 if (!(t->flags & SN_ERR_MASK))
3254 t->flags |= SN_ERR_SRVCL;
3255 if (!(t->flags & SN_FINST_MASK))
3256 t->flags |= SN_FINST_D;
3257 /* We used to have a free connection slot. Since we'll never use it,
3258 * we have to inform the server that it may be used by another session.
3259 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003260 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003261 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003262
3263 return 1;
3264 }
3265 /* last read, or end of client write */
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003266 else if (rep->flags & BF_READ_NULL || c == CL_STSHUTW || c == CL_STCLOSE) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003267 EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003268 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003269 t->srv_state = SV_STSHUTR;
3270 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
3271 return 1;
3272 }
3273 /* end of client read and no more data to send */
3274 else if ((c == CL_STSHUTR || c == CL_STCLOSE) && (req->l == 0)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003275 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003276 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003277 shutdown(t->srv_fd, SHUT_WR);
3278 /* We must ensure that the read part is still alive when switching
3279 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02003280 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003281 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003282
3283 t->srv_state = SV_STSHUTW;
3284 return 1;
3285 }
3286 /* read timeout */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003287 else if (tv_isle(&rep->rex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003288 EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003289 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003290 t->srv_state = SV_STSHUTR;
3291 if (!(t->flags & SN_ERR_MASK))
3292 t->flags |= SN_ERR_SRVTO;
3293 if (!(t->flags & SN_FINST_MASK))
3294 t->flags |= SN_FINST_D;
3295 return 1;
3296 }
3297 /* write timeout */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003298 else if (tv_isle(&req->wex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003299 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003300 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003301 shutdown(t->srv_fd, SHUT_WR);
3302 /* We must ensure that the read part is still alive when switching
3303 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02003304 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003305 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003306 t->srv_state = SV_STSHUTW;
3307 if (!(t->flags & SN_ERR_MASK))
3308 t->flags |= SN_ERR_SRVTO;
3309 if (!(t->flags & SN_FINST_MASK))
3310 t->flags |= SN_FINST_D;
3311 return 1;
3312 }
3313
3314 /* recompute request time-outs */
3315 if (req->l == 0) {
Willy Tarreau66319382007-04-08 17:17:37 +02003316 if (EV_FD_COND_C(t->srv_fd, DIR_WR)) {
3317 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02003318 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003319 }
3320 }
3321 else { /* buffer not empty, there are still data to be transferred */
Willy Tarreau66319382007-04-08 17:17:37 +02003322 if (EV_FD_COND_S(t->srv_fd, DIR_WR)) {
3323 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003324 if (tv_add_ifset(&req->wex, &now, &t->be->timeout.server)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003325 /* FIXME: to prevent the server from expiring read timeouts during writes,
3326 * we refresh it. */
Willy Tarreaud7971282006-07-29 18:36:34 +02003327 rep->rex = req->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003328 }
3329 else
Willy Tarreaud7971282006-07-29 18:36:34 +02003330 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003331 }
3332 }
3333
3334 /* recompute response time-outs */
3335 if (rep->l == BUFSIZE) { /* no room to read more data */
Willy Tarreau66319382007-04-08 17:17:37 +02003336 if (EV_FD_COND_C(t->srv_fd, DIR_RD)) {
Willy Tarreaud7971282006-07-29 18:36:34 +02003337 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003338 }
3339 }
3340 else {
Willy Tarreau66319382007-04-08 17:17:37 +02003341 if (EV_FD_COND_S(t->srv_fd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003342 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02003343 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003344 }
3345 }
3346
3347 return 0; /* other cases change nothing */
3348 }
3349 else if (s == SV_STSHUTR) {
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003350 if (req->flags & BF_WRITE_ERROR) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003351 //EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003352 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003353 fd_delete(t->srv_fd);
3354 if (t->srv) {
3355 t->srv->cur_sess--;
3356 t->srv->failed_resp++;
3357 }
Willy Tarreau73de9892006-11-30 11:40:23 +01003358 t->be->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003359 //close(t->srv_fd);
3360 t->srv_state = SV_STCLOSE;
3361 if (!(t->flags & SN_ERR_MASK))
3362 t->flags |= SN_ERR_SRVCL;
3363 if (!(t->flags & SN_FINST_MASK))
3364 t->flags |= SN_FINST_D;
3365 /* We used to have a free connection slot. Since we'll never use it,
3366 * we have to inform the server that it may be used by another session.
3367 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003368 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003369 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003370
3371 return 1;
3372 }
3373 else if ((c == CL_STSHUTR || c == CL_STCLOSE) && (req->l == 0)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003374 //EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003375 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003376 fd_delete(t->srv_fd);
3377 if (t->srv)
3378 t->srv->cur_sess--;
3379 //close(t->srv_fd);
3380 t->srv_state = SV_STCLOSE;
3381 /* We used to have a free connection slot. Since we'll never use it,
3382 * we have to inform the server that it may be used by another session.
3383 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003384 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003385 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003386
3387 return 1;
3388 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003389 else if (tv_isle(&req->wex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003390 //EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003391 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003392 fd_delete(t->srv_fd);
3393 if (t->srv)
3394 t->srv->cur_sess--;
3395 //close(t->srv_fd);
3396 t->srv_state = SV_STCLOSE;
3397 if (!(t->flags & SN_ERR_MASK))
3398 t->flags |= SN_ERR_SRVTO;
3399 if (!(t->flags & SN_FINST_MASK))
3400 t->flags |= SN_FINST_D;
3401 /* We used to have a free connection slot. Since we'll never use it,
3402 * we have to inform the server that it may be used by another session.
3403 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003404 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003405 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003406
3407 return 1;
3408 }
3409 else if (req->l == 0) {
Willy Tarreau66319382007-04-08 17:17:37 +02003410 if (EV_FD_COND_C(t->srv_fd, DIR_WR)) {
3411 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02003412 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003413 }
3414 }
3415 else { /* buffer not empty */
Willy Tarreau66319382007-04-08 17:17:37 +02003416 if (EV_FD_COND_S(t->srv_fd, DIR_WR)) {
3417 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003418 if (!tv_add_ifset(&req->wex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02003419 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003420 }
3421 }
3422 return 0;
3423 }
3424 else if (s == SV_STSHUTW) {
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003425 if (rep->flags & BF_READ_ERROR) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003426 //EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003427 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003428 fd_delete(t->srv_fd);
3429 if (t->srv) {
3430 t->srv->cur_sess--;
3431 t->srv->failed_resp++;
3432 }
Willy Tarreau73de9892006-11-30 11:40:23 +01003433 t->be->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003434 //close(t->srv_fd);
3435 t->srv_state = SV_STCLOSE;
3436 if (!(t->flags & SN_ERR_MASK))
3437 t->flags |= SN_ERR_SRVCL;
3438 if (!(t->flags & SN_FINST_MASK))
3439 t->flags |= SN_FINST_D;
3440 /* We used to have a free connection slot. Since we'll never use it,
3441 * we have to inform the server that it may be used by another session.
3442 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003443 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003444 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003445
3446 return 1;
3447 }
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003448 else if (rep->flags & BF_READ_NULL || c == CL_STSHUTW || c == CL_STCLOSE) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003449 //EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003450 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003451 fd_delete(t->srv_fd);
3452 if (t->srv)
3453 t->srv->cur_sess--;
3454 //close(t->srv_fd);
3455 t->srv_state = SV_STCLOSE;
3456 /* We used to have a free connection slot. Since we'll never use it,
3457 * we have to inform the server that it may be used by another session.
3458 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003459 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003460 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003461
3462 return 1;
3463 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003464 else if (tv_isle(&rep->rex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003465 //EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003466 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003467 fd_delete(t->srv_fd);
3468 if (t->srv)
3469 t->srv->cur_sess--;
3470 //close(t->srv_fd);
3471 t->srv_state = SV_STCLOSE;
3472 if (!(t->flags & SN_ERR_MASK))
3473 t->flags |= SN_ERR_SRVTO;
3474 if (!(t->flags & SN_FINST_MASK))
3475 t->flags |= SN_FINST_D;
3476 /* We used to have a free connection slot. Since we'll never use it,
3477 * we have to inform the server that it may be used by another session.
3478 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003479 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003480 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003481
3482 return 1;
3483 }
3484 else if (rep->l == BUFSIZE) { /* no room to read more data */
Willy Tarreau66319382007-04-08 17:17:37 +02003485 if (EV_FD_COND_C(t->srv_fd, DIR_RD)) {
Willy Tarreaud7971282006-07-29 18:36:34 +02003486 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003487 }
3488 }
3489 else {
Willy Tarreau66319382007-04-08 17:17:37 +02003490 if (EV_FD_COND_S(t->srv_fd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003491 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02003492 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003493 }
3494 }
3495 return 0;
3496 }
3497 else { /* SV_STCLOSE : nothing to do */
3498 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
3499 int len;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003500 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003501 t->uniq_id, t->be->id, (unsigned short)t->cli_fd, (unsigned short)t->srv_fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003502 write(1, trash, len);
3503 }
3504 return 0;
3505 }
3506 return 0;
3507}
3508
3509
3510/*
3511 * Produces data for the session <s> depending on its source. Expects to be
3512 * called with s->cli_state == CL_STSHUTR. Right now, only statistics can be
3513 * produced. It stops by itself by unsetting the SN_SELF_GEN flag from the
3514 * session, which it uses to keep on being called when there is free space in
3515 * the buffer, of simply by letting an empty buffer upon return. It returns 1
3516 * if it changes the session state from CL_STSHUTR, otherwise 0.
3517 */
3518int produce_content(struct session *s)
3519{
Willy Tarreaubaaee002006-06-26 02:48:02 +02003520 if (s->data_source == DATA_SRC_NONE) {
3521 s->flags &= ~SN_SELF_GEN;
3522 return 1;
3523 }
3524 else if (s->data_source == DATA_SRC_STATS) {
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01003525 /* dump server statistics */
Willy Tarreau55bb8452007-10-17 18:44:57 +02003526 int ret = stats_dump_http(s, s->be->uri_auth,
3527 (s->flags & SN_STAT_FMTCSV) ? 0 : STAT_FMT_HTML);
Willy Tarreau91861262007-10-17 17:06:05 +02003528 if (ret >= 0)
3529 return ret;
3530 /* -1 indicates an error */
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01003531 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003532
Willy Tarreau91861262007-10-17 17:06:05 +02003533 /* unknown data source or internal error */
3534 s->txn.status = 500;
3535 client_retnclose(s, error_message(s, HTTP_ERR_500));
3536 if (!(s->flags & SN_ERR_MASK))
3537 s->flags |= SN_ERR_PRXCOND;
3538 if (!(s->flags & SN_FINST_MASK))
3539 s->flags |= SN_FINST_R;
3540 s->flags &= ~SN_SELF_GEN;
3541 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003542}
3543
3544
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003545/* Iterate the same filter through all request headers.
3546 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003547 * Since it can manage the switch to another backend, it updates the per-proxy
3548 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003549 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003550int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01003551{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003552 char term;
3553 char *cur_ptr, *cur_end, *cur_next;
3554 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003555 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003556 struct hdr_idx_elem *cur_hdr;
3557 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01003558
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003559 last_hdr = 0;
3560
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003561 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003562 old_idx = 0;
3563
3564 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01003565 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003566 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003567 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003568 (exp->action == ACT_ALLOW ||
3569 exp->action == ACT_DENY ||
3570 exp->action == ACT_TARPIT))
3571 return 0;
3572
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003573 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003574 if (!cur_idx)
3575 break;
3576
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003577 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003578 cur_ptr = cur_next;
3579 cur_end = cur_ptr + cur_hdr->len;
3580 cur_next = cur_end + cur_hdr->cr + 1;
3581
3582 /* Now we have one header between cur_ptr and cur_end,
3583 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003584 */
3585
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003586 /* The annoying part is that pattern matching needs
3587 * that we modify the contents to null-terminate all
3588 * strings before testing them.
3589 */
3590
3591 term = *cur_end;
3592 *cur_end = '\0';
3593
3594 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3595 switch (exp->action) {
3596 case ACT_SETBE:
3597 /* It is not possible to jump a second time.
3598 * FIXME: should we return an HTTP/500 here so that
3599 * the admin knows there's a problem ?
3600 */
3601 if (t->be != t->fe)
3602 break;
3603
3604 /* Swithing Proxy */
3605 t->be = (struct proxy *) exp->replace;
3606
3607 /* right now, the backend switch is not too much complicated
3608 * because we have associated req_cap and rsp_cap to the
3609 * frontend, and the beconn will be updated later.
3610 */
3611
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003612 t->rep->rto = t->req->wto = t->be->timeout.server;
3613 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003614 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003615 last_hdr = 1;
3616 break;
3617
3618 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003619 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003620 last_hdr = 1;
3621 break;
3622
3623 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003624 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003625 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003626 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003627 break;
3628
3629 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01003630 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003631 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003632 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003633 break;
3634
3635 case ACT_REPLACE:
3636 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3637 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
3638 /* FIXME: if the user adds a newline in the replacement, the
3639 * index will not be recalculated for now, and the new line
3640 * will not be counted as a new header.
3641 */
3642
3643 cur_end += delta;
3644 cur_next += delta;
3645 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003646 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003647 break;
3648
3649 case ACT_REMOVE:
3650 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
3651 cur_next += delta;
3652
3653 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003654 txn->req.eoh += delta;
3655 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3656 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003657 cur_hdr->len = 0;
3658 cur_end = NULL; /* null-term has been rewritten */
3659 break;
3660
3661 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003662 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003663 if (cur_end)
3664 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003665
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003666 /* keep the link from this header to next one in case of later
3667 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003668 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003669 old_idx = cur_idx;
3670 }
3671 return 0;
3672}
3673
3674
3675/* Apply the filter to the request line.
3676 * Returns 0 if nothing has been done, 1 if the filter has been applied,
3677 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003678 * Since it can manage the switch to another backend, it updates the per-proxy
3679 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003680 */
3681int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
3682{
3683 char term;
3684 char *cur_ptr, *cur_end;
3685 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003686 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003687 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003688
Willy Tarreau58f10d72006-12-04 02:26:12 +01003689
Willy Tarreau3d300592007-03-18 18:34:41 +01003690 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003691 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003692 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003693 (exp->action == ACT_ALLOW ||
3694 exp->action == ACT_DENY ||
3695 exp->action == ACT_TARPIT))
3696 return 0;
3697 else if (exp->action == ACT_REMOVE)
3698 return 0;
3699
3700 done = 0;
3701
Willy Tarreau9cdde232007-05-02 20:58:19 +02003702 cur_ptr = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003703 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003704
3705 /* Now we have the request line between cur_ptr and cur_end */
3706
3707 /* The annoying part is that pattern matching needs
3708 * that we modify the contents to null-terminate all
3709 * strings before testing them.
3710 */
3711
3712 term = *cur_end;
3713 *cur_end = '\0';
3714
3715 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3716 switch (exp->action) {
3717 case ACT_SETBE:
3718 /* It is not possible to jump a second time.
3719 * FIXME: should we return an HTTP/500 here so that
3720 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01003721 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003722 if (t->be != t->fe)
3723 break;
3724
3725 /* Swithing Proxy */
3726 t->be = (struct proxy *) exp->replace;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003727
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003728 /* right now, the backend switch is not too much complicated
3729 * because we have associated req_cap and rsp_cap to the
3730 * frontend, and the beconn will be updated later.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003731 */
3732
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003733 t->rep->rto = t->req->wto = t->be->timeout.server;
3734 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003735 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003736 done = 1;
3737 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003738
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003739 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003740 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003741 done = 1;
3742 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003743
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003744 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003745 txn->flags |= TX_CLDENY;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003746 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003747 done = 1;
3748 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003749
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003750 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01003751 txn->flags |= TX_CLTARPIT;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003752 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003753 done = 1;
3754 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003755
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003756 case ACT_REPLACE:
3757 *cur_end = term; /* restore the string terminator */
3758 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3759 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
3760 /* FIXME: if the user adds a newline in the replacement, the
3761 * index will not be recalculated for now, and the new line
3762 * will not be counted as a new header.
3763 */
Willy Tarreaua496b602006-12-17 23:15:24 +01003764
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003765 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003766 cur_end += delta;
Willy Tarreaua496b602006-12-17 23:15:24 +01003767
Willy Tarreau9cdde232007-05-02 20:58:19 +02003768 txn->req.sol = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003769 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003770 HTTP_MSG_RQMETH,
3771 cur_ptr, cur_end + 1,
3772 NULL, NULL);
3773 if (unlikely(!cur_end))
3774 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01003775
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003776 /* we have a full request and we know that we have either a CR
3777 * or an LF at <ptr>.
3778 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003779 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
3780 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003781 /* there is no point trying this regex on headers */
3782 return 1;
3783 }
3784 }
3785 *cur_end = term; /* restore the string terminator */
3786 return done;
3787}
Willy Tarreau97de6242006-12-27 17:18:38 +01003788
Willy Tarreau58f10d72006-12-04 02:26:12 +01003789
Willy Tarreau58f10d72006-12-04 02:26:12 +01003790
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003791/*
3792 * Apply all the req filters <exp> to all headers in buffer <req> of session <t>.
3793 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01003794 * unparsable request. Since it can manage the switch to another backend, it
3795 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003796 */
3797int apply_filters_to_request(struct session *t, struct buffer *req, struct hdr_exp *exp)
3798{
Willy Tarreau3d300592007-03-18 18:34:41 +01003799 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003800 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01003801 while (exp && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003802 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003803
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003804 /*
3805 * The interleaving of transformations and verdicts
3806 * makes it difficult to decide to continue or stop
3807 * the evaluation.
3808 */
3809
Willy Tarreau3d300592007-03-18 18:34:41 +01003810 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003811 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
3812 exp->action == ACT_TARPIT || exp->action == ACT_PASS)) {
3813 exp = exp->next;
3814 continue;
3815 }
3816
3817 /* Apply the filter to the request line. */
3818 ret = apply_filter_to_req_line(t, req, exp);
3819 if (unlikely(ret < 0))
3820 return -1;
3821
3822 if (likely(ret == 0)) {
3823 /* The filter did not match the request, it can be
3824 * iterated through all headers.
3825 */
3826 apply_filter_to_req_headers(t, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003827 }
3828 exp = exp->next;
3829 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003830 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003831}
3832
3833
Willy Tarreaua15645d2007-03-18 16:22:39 +01003834
Willy Tarreau58f10d72006-12-04 02:26:12 +01003835/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01003836 * Manage client-side cookie. It can impact performance by about 2% so it is
3837 * desirable to call it only when needed.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003838 */
3839void manage_client_side_cookies(struct session *t, struct buffer *req)
3840{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003841 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003842 char *p1, *p2, *p3, *p4;
3843 char *del_colon, *del_cookie, *colon;
3844 int app_cookies;
3845
3846 appsess *asession_temp = NULL;
3847 appsess local_asession;
3848
3849 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003850 int cur_idx, old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003851
Willy Tarreau2a324282006-12-05 00:05:46 +01003852 /* Iterate through the headers.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003853 * we start with the start line.
3854 */
Willy Tarreau83969f42007-01-22 08:55:47 +01003855 old_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003856 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003857
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003858 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003859 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003860 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003861
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003862 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau58f10d72006-12-04 02:26:12 +01003863 cur_ptr = cur_next;
3864 cur_end = cur_ptr + cur_hdr->len;
3865 cur_next = cur_end + cur_hdr->cr + 1;
3866
3867 /* We have one full header between cur_ptr and cur_end, and the
3868 * next header starts at cur_next. We're only interested in
3869 * "Cookie:" headers.
3870 */
3871
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003872 val = http_header_match2(cur_ptr, cur_end, "Cookie", 6);
3873 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003874 old_idx = cur_idx;
3875 continue;
3876 }
3877
3878 /* Now look for cookies. Conforming to RFC2109, we have to support
3879 * attributes whose name begin with a '$', and associate them with
3880 * the right cookie, if we want to delete this cookie.
3881 * So there are 3 cases for each cookie read :
3882 * 1) it's a special attribute, beginning with a '$' : ignore it.
3883 * 2) it's a server id cookie that we *MAY* want to delete : save
3884 * some pointers on it (last semi-colon, beginning of cookie...)
3885 * 3) it's an application cookie : we *MAY* have to delete a previous
3886 * "special" cookie.
3887 * At the end of loop, if a "special" cookie remains, we may have to
3888 * remove it. If no application cookie persists in the header, we
3889 * *MUST* delete it
3890 */
3891
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003892 colon = p1 = cur_ptr + val; /* first non-space char after 'Cookie:' */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003893
Willy Tarreau58f10d72006-12-04 02:26:12 +01003894 /* del_cookie == NULL => nothing to be deleted */
3895 del_colon = del_cookie = NULL;
3896 app_cookies = 0;
3897
3898 while (p1 < cur_end) {
3899 /* skip spaces and colons, but keep an eye on these ones */
3900 while (p1 < cur_end) {
3901 if (*p1 == ';' || *p1 == ',')
3902 colon = p1;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003903 else if (!isspace((unsigned char)*p1))
Willy Tarreau58f10d72006-12-04 02:26:12 +01003904 break;
3905 p1++;
3906 }
3907
3908 if (p1 == cur_end)
3909 break;
3910
3911 /* p1 is at the beginning of the cookie name */
3912 p2 = p1;
3913 while (p2 < cur_end && *p2 != '=')
3914 p2++;
3915
3916 if (p2 == cur_end)
3917 break;
3918
3919 p3 = p2 + 1; /* skips the '=' sign */
3920 if (p3 == cur_end)
3921 break;
3922
3923 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003924 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';' && *p4 != ',')
Willy Tarreau58f10d72006-12-04 02:26:12 +01003925 p4++;
3926
3927 /* here, we have the cookie name between p1 and p2,
3928 * and its value between p3 and p4.
3929 * we can process it :
3930 *
3931 * Cookie: NAME=VALUE;
3932 * | || || |
3933 * | || || +--> p4
3934 * | || |+-------> p3
3935 * | || +--------> p2
3936 * | |+------------> p1
3937 * | +-------------> colon
3938 * +--------------------> cur_ptr
3939 */
3940
3941 if (*p1 == '$') {
3942 /* skip this one */
3943 }
3944 else {
3945 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003946 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003947 txn->cli_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003948 (p4 - p1 >= t->fe->capture_namelen) &&
3949 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003950 int log_len = p4 - p1;
3951
Willy Tarreau086b3b42007-05-13 21:45:51 +02003952 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003953 Alert("HTTP logging : out of memory.\n");
3954 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003955 if (log_len > t->fe->capture_len)
3956 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003957 memcpy(txn->cli_cookie, p1, log_len);
3958 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003959 }
3960 }
3961
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003962 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
3963 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003964 /* Cool... it's the right one */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003965 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003966 char *delim;
3967
3968 /* if we're in cookie prefix mode, we'll search the delimitor so that we
3969 * have the server ID betweek p3 and delim, and the original cookie between
3970 * delim+1 and p4. Otherwise, delim==p4 :
3971 *
3972 * Cookie: NAME=SRV~VALUE;
3973 * | || || | |
3974 * | || || | +--> p4
3975 * | || || +--------> delim
3976 * | || |+-----------> p3
3977 * | || +------------> p2
3978 * | |+----------------> p1
3979 * | +-----------------> colon
3980 * +------------------------> cur_ptr
3981 */
3982
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003983 if (t->be->options & PR_O_COOK_PFX) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003984 for (delim = p3; delim < p4; delim++)
3985 if (*delim == COOKIE_DELIM)
3986 break;
3987 }
3988 else
3989 delim = p4;
3990
3991
3992 /* Here, we'll look for the first running server which supports the cookie.
3993 * This allows to share a same cookie between several servers, for example
3994 * to dedicate backup servers to specific servers only.
3995 * However, to prevent clients from sticking to cookie-less backup server
3996 * when they have incidentely learned an empty cookie, we simply ignore
3997 * empty cookies and mark them as invalid.
3998 */
3999 if (delim == p3)
4000 srv = NULL;
4001
4002 while (srv) {
Willy Tarreau92f2ab12007-02-02 22:14:47 +01004003 if (srv->cookie && (srv->cklen == delim - p3) &&
4004 !memcmp(p3, srv->cookie, delim - p3)) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004005 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004006 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004007 txn->flags &= ~TX_CK_MASK;
4008 txn->flags |= TX_CK_VALID;
4009 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004010 t->srv = srv;
4011 break;
4012 } else {
4013 /* we found a server, but it's down */
Willy Tarreau3d300592007-03-18 18:34:41 +01004014 txn->flags &= ~TX_CK_MASK;
4015 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004016 }
4017 }
4018 srv = srv->next;
4019 }
4020
Willy Tarreau3d300592007-03-18 18:34:41 +01004021 if (!srv && !(txn->flags & TX_CK_DOWN)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004022 /* no server matched this cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +01004023 txn->flags &= ~TX_CK_MASK;
4024 txn->flags |= TX_CK_INVALID;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004025 }
4026
4027 /* depending on the cookie mode, we may have to either :
4028 * - delete the complete cookie if we're in insert+indirect mode, so that
4029 * the server never sees it ;
4030 * - remove the server id from the cookie value, and tag the cookie as an
4031 * application cookie so that it does not get accidentely removed later,
4032 * if we're in cookie prefix mode
4033 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004034 if ((t->be->options & PR_O_COOK_PFX) && (delim != p4)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004035 int delta; /* negative */
4036
4037 delta = buffer_replace2(req, p3, delim + 1, NULL, 0);
4038 p4 += delta;
4039 cur_end += delta;
4040 cur_next += delta;
4041 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004042 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004043
4044 del_cookie = del_colon = NULL;
4045 app_cookies++; /* protect the header from deletion */
4046 }
4047 else if (del_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004048 (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 +01004049 del_cookie = p1;
4050 del_colon = colon;
4051 }
4052 } else {
4053 /* now we know that we must keep this cookie since it's
4054 * not ours. But if we wanted to delete our cookie
4055 * earlier, we cannot remove the complete header, but we
4056 * can remove the previous block itself.
4057 */
4058 app_cookies++;
4059
4060 if (del_cookie != NULL) {
4061 int delta; /* negative */
4062
4063 delta = buffer_replace2(req, del_cookie, p1, NULL, 0);
4064 p4 += delta;
4065 cur_end += delta;
4066 cur_next += delta;
4067 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004068 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004069 del_cookie = del_colon = NULL;
4070 }
4071 }
4072
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004073 if ((t->be->appsession_name != NULL) &&
4074 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004075 /* first, let's see if the cookie is our appcookie*/
4076
4077 /* Cool... it's the right one */
4078
4079 asession_temp = &local_asession;
4080
Willy Tarreau63963c62007-05-13 21:29:55 +02004081 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004082 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
4083 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
4084 return;
4085 }
4086
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004087 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
4088 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004089 asession_temp->serverid = NULL;
Willy Tarreau51041c72007-09-09 21:56:53 +02004090
Willy Tarreau58f10d72006-12-04 02:26:12 +01004091 /* only do insert, if lookup fails */
Willy Tarreau51041c72007-09-09 21:56:53 +02004092 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4093 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004094 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004095 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004096 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004097 Alert("Not enough memory process_cli():asession:calloc().\n");
4098 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
4099 return;
4100 }
4101
4102 asession_temp->sessid = local_asession.sessid;
4103 asession_temp->serverid = local_asession.serverid;
Willy Tarreau51041c72007-09-09 21:56:53 +02004104 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004105 } else {
4106 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004107 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004108 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004109 if (asession_temp->serverid == NULL) {
4110 Alert("Found Application Session without matching server.\n");
4111 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004112 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004113 while (srv) {
4114 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004115 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004116 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004117 txn->flags &= ~TX_CK_MASK;
4118 txn->flags |= TX_CK_VALID;
4119 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004120 t->srv = srv;
4121 break;
4122 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01004123 txn->flags &= ~TX_CK_MASK;
4124 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004125 }
4126 }
4127 srv = srv->next;
4128 }/* end while(srv) */
4129 }/* end else if server == NULL */
4130
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004131 tv_add(&asession_temp->expire, &now, &t->be->timeout.appsession);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004132 }/* end if ((t->proxy->appsession_name != NULL) ... */
4133 }
4134
4135 /* we'll have to look for another cookie ... */
4136 p1 = p4;
4137 } /* while (p1 < cur_end) */
4138
4139 /* There's no more cookie on this line.
4140 * We may have marked the last one(s) for deletion.
4141 * We must do this now in two ways :
4142 * - if there is no app cookie, we simply delete the header ;
4143 * - if there are app cookies, we must delete the end of the
4144 * string properly, including the colon/semi-colon before
4145 * the cookie name.
4146 */
4147 if (del_cookie != NULL) {
4148 int delta;
4149 if (app_cookies) {
4150 delta = buffer_replace2(req, del_colon, cur_end, NULL, 0);
4151 cur_end = del_colon;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004152 cur_hdr->len += delta;
4153 } else {
4154 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004155
4156 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004157 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4158 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004159 cur_hdr->len = 0;
4160 }
Willy Tarreau45e73e32006-12-17 00:05:15 +01004161 cur_next += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004162 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004163 }
4164
4165 /* keep the link from this header to next one */
4166 old_idx = cur_idx;
4167 } /* end of cookie processing on this header */
4168}
4169
4170
Willy Tarreaua15645d2007-03-18 16:22:39 +01004171/* Iterate the same filter through all response headers contained in <rtr>.
4172 * Returns 1 if this filter can be stopped upon return, otherwise 0.
4173 */
4174int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4175{
4176 char term;
4177 char *cur_ptr, *cur_end, *cur_next;
4178 int cur_idx, old_idx, last_hdr;
4179 struct http_txn *txn = &t->txn;
4180 struct hdr_idx_elem *cur_hdr;
4181 int len, delta;
4182
4183 last_hdr = 0;
4184
4185 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4186 old_idx = 0;
4187
4188 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004189 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004190 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004191 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004192 (exp->action == ACT_ALLOW ||
4193 exp->action == ACT_DENY))
4194 return 0;
4195
4196 cur_idx = txn->hdr_idx.v[old_idx].next;
4197 if (!cur_idx)
4198 break;
4199
4200 cur_hdr = &txn->hdr_idx.v[cur_idx];
4201 cur_ptr = cur_next;
4202 cur_end = cur_ptr + cur_hdr->len;
4203 cur_next = cur_end + cur_hdr->cr + 1;
4204
4205 /* Now we have one header between cur_ptr and cur_end,
4206 * and the next header starts at cur_next.
4207 */
4208
4209 /* The annoying part is that pattern matching needs
4210 * that we modify the contents to null-terminate all
4211 * strings before testing them.
4212 */
4213
4214 term = *cur_end;
4215 *cur_end = '\0';
4216
4217 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4218 switch (exp->action) {
4219 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004220 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004221 last_hdr = 1;
4222 break;
4223
4224 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004225 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004226 last_hdr = 1;
4227 break;
4228
4229 case ACT_REPLACE:
4230 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4231 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
4232 /* FIXME: if the user adds a newline in the replacement, the
4233 * index will not be recalculated for now, and the new line
4234 * will not be counted as a new header.
4235 */
4236
4237 cur_end += delta;
4238 cur_next += delta;
4239 cur_hdr->len += delta;
4240 txn->rsp.eoh += delta;
4241 break;
4242
4243 case ACT_REMOVE:
4244 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
4245 cur_next += delta;
4246
4247 /* FIXME: this should be a separate function */
4248 txn->rsp.eoh += delta;
4249 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4250 txn->hdr_idx.used--;
4251 cur_hdr->len = 0;
4252 cur_end = NULL; /* null-term has been rewritten */
4253 break;
4254
4255 }
4256 }
4257 if (cur_end)
4258 *cur_end = term; /* restore the string terminator */
4259
4260 /* keep the link from this header to next one in case of later
4261 * removal of next header.
4262 */
4263 old_idx = cur_idx;
4264 }
4265 return 0;
4266}
4267
4268
4269/* Apply the filter to the status line in the response buffer <rtr>.
4270 * Returns 0 if nothing has been done, 1 if the filter has been applied,
4271 * or -1 if a replacement resulted in an invalid status line.
4272 */
4273int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4274{
4275 char term;
4276 char *cur_ptr, *cur_end;
4277 int done;
4278 struct http_txn *txn = &t->txn;
4279 int len, delta;
4280
4281
Willy Tarreau3d300592007-03-18 18:34:41 +01004282 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004283 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004284 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004285 (exp->action == ACT_ALLOW ||
4286 exp->action == ACT_DENY))
4287 return 0;
4288 else if (exp->action == ACT_REMOVE)
4289 return 0;
4290
4291 done = 0;
4292
Willy Tarreau9cdde232007-05-02 20:58:19 +02004293 cur_ptr = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004294 cur_end = cur_ptr + txn->rsp.sl.rq.l;
4295
4296 /* Now we have the status line between cur_ptr and cur_end */
4297
4298 /* The annoying part is that pattern matching needs
4299 * that we modify the contents to null-terminate all
4300 * strings before testing them.
4301 */
4302
4303 term = *cur_end;
4304 *cur_end = '\0';
4305
4306 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4307 switch (exp->action) {
4308 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004309 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004310 done = 1;
4311 break;
4312
4313 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004314 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004315 done = 1;
4316 break;
4317
4318 case ACT_REPLACE:
4319 *cur_end = term; /* restore the string terminator */
4320 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4321 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
4322 /* FIXME: if the user adds a newline in the replacement, the
4323 * index will not be recalculated for now, and the new line
4324 * will not be counted as a new header.
4325 */
4326
4327 txn->rsp.eoh += delta;
4328 cur_end += delta;
4329
Willy Tarreau9cdde232007-05-02 20:58:19 +02004330 txn->rsp.sol = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004331 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02004332 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01004333 cur_ptr, cur_end + 1,
4334 NULL, NULL);
4335 if (unlikely(!cur_end))
4336 return -1;
4337
4338 /* we have a full respnse and we know that we have either a CR
4339 * or an LF at <ptr>.
4340 */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004341 txn->status = strl2ui(rtr->data + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004342 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.rq.l, *cur_end == '\r');
4343 /* there is no point trying this regex on headers */
4344 return 1;
4345 }
4346 }
4347 *cur_end = term; /* restore the string terminator */
4348 return done;
4349}
4350
4351
4352
4353/*
4354 * Apply all the resp filters <exp> to all headers in buffer <rtr> of session <t>.
4355 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
4356 * unparsable response.
4357 */
4358int apply_filters_to_response(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4359{
Willy Tarreau3d300592007-03-18 18:34:41 +01004360 struct http_txn *txn = &t->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004361 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01004362 while (exp && !(txn->flags & TX_SVDENY)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004363 int ret;
4364
4365 /*
4366 * The interleaving of transformations and verdicts
4367 * makes it difficult to decide to continue or stop
4368 * the evaluation.
4369 */
4370
Willy Tarreau3d300592007-03-18 18:34:41 +01004371 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004372 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
4373 exp->action == ACT_PASS)) {
4374 exp = exp->next;
4375 continue;
4376 }
4377
4378 /* Apply the filter to the status line. */
4379 ret = apply_filter_to_sts_line(t, rtr, exp);
4380 if (unlikely(ret < 0))
4381 return -1;
4382
4383 if (likely(ret == 0)) {
4384 /* The filter did not match the response, it can be
4385 * iterated through all headers.
4386 */
4387 apply_filter_to_resp_headers(t, rtr, exp);
4388 }
4389 exp = exp->next;
4390 }
4391 return 0;
4392}
4393
4394
4395
4396/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01004397 * Manage server-side cookies. It can impact performance by about 2% so it is
4398 * desirable to call it only when needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004399 */
4400void manage_server_side_cookies(struct session *t, struct buffer *rtr)
4401{
4402 struct http_txn *txn = &t->txn;
4403 char *p1, *p2, *p3, *p4;
4404
4405 appsess *asession_temp = NULL;
4406 appsess local_asession;
4407
4408 char *cur_ptr, *cur_end, *cur_next;
4409 int cur_idx, old_idx, delta;
4410
Willy Tarreaua15645d2007-03-18 16:22:39 +01004411 /* Iterate through the headers.
4412 * we start with the start line.
4413 */
4414 old_idx = 0;
4415 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4416
4417 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
4418 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004419 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004420
4421 cur_hdr = &txn->hdr_idx.v[cur_idx];
4422 cur_ptr = cur_next;
4423 cur_end = cur_ptr + cur_hdr->len;
4424 cur_next = cur_end + cur_hdr->cr + 1;
4425
4426 /* We have one full header between cur_ptr and cur_end, and the
4427 * next header starts at cur_next. We're only interested in
4428 * "Cookie:" headers.
4429 */
4430
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004431 val = http_header_match2(cur_ptr, cur_end, "Set-Cookie", 10);
4432 if (!val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004433 old_idx = cur_idx;
4434 continue;
4435 }
4436
4437 /* OK, right now we know we have a set-cookie at cur_ptr */
Willy Tarreau3d300592007-03-18 18:34:41 +01004438 txn->flags |= TX_SCK_ANY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004439
4440
4441 /* maybe we only wanted to see if there was a set-cookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004442 if (t->be->cookie_name == NULL &&
4443 t->be->appsession_name == NULL &&
4444 t->be->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01004445 return;
4446
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004447 p1 = cur_ptr + val; /* first non-space char after 'Set-Cookie:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004448
4449 while (p1 < cur_end) { /* in fact, we'll break after the first cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004450 if (p1 == cur_end || *p1 == ';') /* end of cookie */
4451 break;
4452
4453 /* p1 is at the beginning of the cookie name */
4454 p2 = p1;
4455
4456 while (p2 < cur_end && *p2 != '=' && *p2 != ';')
4457 p2++;
4458
4459 if (p2 == cur_end || *p2 == ';') /* next cookie */
4460 break;
4461
4462 p3 = p2 + 1; /* skip the '=' sign */
4463 if (p3 == cur_end)
4464 break;
4465
4466 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004467 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';')
Willy Tarreaua15645d2007-03-18 16:22:39 +01004468 p4++;
4469
4470 /* here, we have the cookie name between p1 and p2,
4471 * and its value between p3 and p4.
4472 * we can process it.
4473 */
4474
4475 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004476 if (t->be->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004477 txn->srv_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004478 (p4 - p1 >= t->be->capture_namelen) &&
4479 memcmp(p1, t->be->capture_name, t->be->capture_namelen) == 0) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004480 int log_len = p4 - p1;
4481
Willy Tarreau086b3b42007-05-13 21:45:51 +02004482 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004483 Alert("HTTP logging : out of memory.\n");
4484 }
4485
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004486 if (log_len > t->be->capture_len)
4487 log_len = t->be->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004488 memcpy(txn->srv_cookie, p1, log_len);
4489 txn->srv_cookie[log_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004490 }
4491
4492 /* now check if we need to process it for persistence */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004493 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
4494 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004495 /* Cool... it's the right one */
Willy Tarreau3d300592007-03-18 18:34:41 +01004496 txn->flags |= TX_SCK_SEEN;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004497
4498 /* If the cookie is in insert mode on a known server, we'll delete
4499 * this occurrence because we'll insert another one later.
4500 * We'll delete it too if the "indirect" option is set and we're in
4501 * a direct access. */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004502 if (((t->srv) && (t->be->options & PR_O_COOK_INS)) ||
4503 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004504 /* this header must be deleted */
4505 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
4506 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4507 txn->hdr_idx.used--;
4508 cur_hdr->len = 0;
4509 cur_next += delta;
4510 txn->rsp.eoh += delta;
4511
Willy Tarreau3d300592007-03-18 18:34:41 +01004512 txn->flags |= TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004513 }
4514 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004515 (t->be->options & PR_O_COOK_RW)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004516 /* replace bytes p3->p4 with the cookie name associated
4517 * with this server since we know it.
4518 */
4519 delta = buffer_replace2(rtr, p3, p4, t->srv->cookie, t->srv->cklen);
4520 cur_hdr->len += delta;
4521 cur_next += delta;
4522 txn->rsp.eoh += delta;
4523
Willy Tarreau3d300592007-03-18 18:34:41 +01004524 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004525 }
4526 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004527 (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004528 /* insert the cookie name associated with this server
4529 * before existing cookie, and insert a delimitor between them..
4530 */
4531 delta = buffer_replace2(rtr, p3, p3, t->srv->cookie, t->srv->cklen + 1);
4532 cur_hdr->len += delta;
4533 cur_next += delta;
4534 txn->rsp.eoh += delta;
4535
4536 p3[t->srv->cklen] = COOKIE_DELIM;
Willy Tarreau3d300592007-03-18 18:34:41 +01004537 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004538 }
4539 }
4540 /* next, let's see if the cookie is our appcookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004541 else if ((t->be->appsession_name != NULL) &&
4542 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004543
4544 /* Cool... it's the right one */
4545
4546 size_t server_id_len = strlen(t->srv->id) + 1;
4547 asession_temp = &local_asession;
4548
Willy Tarreau63963c62007-05-13 21:29:55 +02004549 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004550 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
4551 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
4552 return;
4553 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004554 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
4555 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004556 asession_temp->serverid = NULL;
4557
4558 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01004559 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4560 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004561 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004562 Alert("Not enough Memory process_srv():asession:calloc().\n");
4563 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
4564 return;
4565 }
4566 asession_temp->sessid = local_asession.sessid;
4567 asession_temp->serverid = local_asession.serverid;
Willy Tarreau51041c72007-09-09 21:56:53 +02004568 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
4569 } else {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004570 /* free wasted memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004571 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau51041c72007-09-09 21:56:53 +02004572 }
4573
Willy Tarreaua15645d2007-03-18 16:22:39 +01004574 if (asession_temp->serverid == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004575 if ((asession_temp->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004576 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
4577 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
4578 return;
4579 }
4580 asession_temp->serverid[0] = '\0';
4581 }
4582
4583 if (asession_temp->serverid[0] == '\0')
4584 memcpy(asession_temp->serverid, t->srv->id, server_id_len);
4585
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004586 tv_add(&asession_temp->expire, &now, &t->be->timeout.appsession);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004587
4588#if defined(DEBUG_HASH)
Willy Tarreau51041c72007-09-09 21:56:53 +02004589 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreaua15645d2007-03-18 16:22:39 +01004590#endif
4591 }/* end if ((t->proxy->appsession_name != NULL) ... */
4592 break; /* we don't want to loop again since there cannot be another cookie on the same line */
4593 } /* we're now at the end of the cookie value */
4594
4595 /* keep the link from this header to next one */
4596 old_idx = cur_idx;
4597 } /* end of cookie processing on this header */
4598}
4599
4600
4601
4602/*
4603 * Check if response is cacheable or not. Updates t->flags.
4604 */
4605void check_response_for_cacheability(struct session *t, struct buffer *rtr)
4606{
4607 struct http_txn *txn = &t->txn;
4608 char *p1, *p2;
4609
4610 char *cur_ptr, *cur_end, *cur_next;
4611 int cur_idx;
4612
Willy Tarreau5df51872007-11-25 16:20:08 +01004613 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004614 return;
4615
4616 /* Iterate through the headers.
4617 * we start with the start line.
4618 */
4619 cur_idx = 0;
4620 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4621
4622 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
4623 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004624 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004625
4626 cur_hdr = &txn->hdr_idx.v[cur_idx];
4627 cur_ptr = cur_next;
4628 cur_end = cur_ptr + cur_hdr->len;
4629 cur_next = cur_end + cur_hdr->cr + 1;
4630
4631 /* We have one full header between cur_ptr and cur_end, and the
4632 * next header starts at cur_next. We're only interested in
4633 * "Cookie:" headers.
4634 */
4635
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004636 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
4637 if (val) {
4638 if ((cur_end - (cur_ptr + val) >= 8) &&
4639 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
4640 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4641 return;
4642 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01004643 }
4644
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004645 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
4646 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01004647 continue;
4648
4649 /* OK, right now we know we have a cache-control header at cur_ptr */
4650
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004651 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004652
4653 if (p1 >= cur_end) /* no more info */
4654 continue;
4655
4656 /* p1 is at the beginning of the value */
4657 p2 = p1;
4658
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004659 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004660 p2++;
4661
4662 /* we have a complete value between p1 and p2 */
4663 if (p2 < cur_end && *p2 == '=') {
4664 /* we have something of the form no-cache="set-cookie" */
4665 if ((cur_end - p1 >= 21) &&
4666 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
4667 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01004668 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004669 continue;
4670 }
4671
4672 /* OK, so we know that either p2 points to the end of string or to a comma */
4673 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
4674 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
4675 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
4676 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004677 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004678 return;
4679 }
4680
4681 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004682 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004683 continue;
4684 }
4685 }
4686}
4687
4688
Willy Tarreau58f10d72006-12-04 02:26:12 +01004689/*
4690 * Try to retrieve a known appsession in the URI, then the associated server.
4691 * If the server is found, it's assigned to the session.
4692 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004693void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004694{
Willy Tarreau3d300592007-03-18 18:34:41 +01004695 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004696 appsess *asession_temp = NULL;
4697 appsess local_asession;
4698 char *request_line;
4699
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004700 if (t->be->appsession_name == NULL ||
Willy Tarreaub326fcc2007-03-03 13:54:32 +01004701 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST) ||
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004702 (request_line = memchr(begin, ';', len)) == NULL ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004703 ((1 + t->be->appsession_name_len + 1 + t->be->appsession_len) > (begin + len - request_line)))
Willy Tarreau58f10d72006-12-04 02:26:12 +01004704 return;
4705
4706 /* skip ';' */
4707 request_line++;
4708
4709 /* look if we have a jsessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004710 if (strncasecmp(request_line, t->be->appsession_name, t->be->appsession_name_len) != 0)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004711 return;
4712
4713 /* skip jsessionid= */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004714 request_line += t->be->appsession_name_len + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004715
4716 /* First try if we already have an appsession */
4717 asession_temp = &local_asession;
4718
Willy Tarreau63963c62007-05-13 21:29:55 +02004719 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004720 Alert("Not enough memory process_cli():asession_temp->sessid:calloc().\n");
4721 send_log(t->be, LOG_ALERT, "Not enough Memory process_cli():asession_temp->sessid:calloc().\n");
4722 return;
4723 }
4724
4725 /* Copy the sessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004726 memcpy(asession_temp->sessid, request_line, t->be->appsession_len);
4727 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004728 asession_temp->serverid = NULL;
4729
4730 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01004731 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4732 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004733 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004734 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004735 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004736 Alert("Not enough memory process_cli():asession:calloc().\n");
4737 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
4738 return;
4739 }
4740 asession_temp->sessid = local_asession.sessid;
4741 asession_temp->serverid = local_asession.serverid;
Willy Tarreau51041c72007-09-09 21:56:53 +02004742 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004743 }
4744 else {
4745 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004746 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004747 }
Willy Tarreau51041c72007-09-09 21:56:53 +02004748
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004749 tv_add(&asession_temp->expire, &now, &t->be->timeout.appsession);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004750 asession_temp->request_count++;
Willy Tarreau51041c72007-09-09 21:56:53 +02004751
Willy Tarreau58f10d72006-12-04 02:26:12 +01004752#if defined(DEBUG_HASH)
Willy Tarreau51041c72007-09-09 21:56:53 +02004753 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01004754#endif
4755 if (asession_temp->serverid == NULL) {
4756 Alert("Found Application Session without matching server.\n");
4757 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004758 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004759 while (srv) {
4760 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004761 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004762 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004763 txn->flags &= ~TX_CK_MASK;
4764 txn->flags |= TX_CK_VALID;
4765 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004766 t->srv = srv;
4767 break;
4768 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01004769 txn->flags &= ~TX_CK_MASK;
4770 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004771 }
4772 }
4773 srv = srv->next;
4774 }
4775 }
4776}
4777
4778
Willy Tarreaub2513902006-12-17 14:52:38 +01004779/*
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004780 * In a GET or HEAD request, check if the requested URI matches the stats uri
4781 * for the current backend, and if an authorization has been passed and is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01004782 *
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004783 * It is assumed that the request is either a HEAD or GET and that the
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004784 * t->be->uri_auth field is valid. An HTTP/401 response may be sent, or
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004785 * produce_content() can be called to start sending data.
Willy Tarreaub2513902006-12-17 14:52:38 +01004786 *
4787 * Returns 1 if the session's state changes, otherwise 0.
4788 */
4789int stats_check_uri_auth(struct session *t, struct proxy *backend)
4790{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004791 struct http_txn *txn = &t->txn;
Willy Tarreaub2513902006-12-17 14:52:38 +01004792 struct uri_auth *uri_auth = backend->uri_auth;
4793 struct user_auth *user;
4794 int authenticated, cur_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004795 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01004796
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004797 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004798 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01004799 return 0;
4800
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004801 h = t->req->data + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004802
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004803 /* the URI is in h */
4804 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01004805 return 0;
4806
Willy Tarreaue7150cd2007-07-25 14:43:32 +02004807 h += uri_auth->uri_len;
4808 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
4809 if (memcmp(h, ";up", 3) == 0) {
4810 t->flags |= SN_STAT_HIDEDWN;
4811 break;
4812 }
4813 h++;
4814 }
4815
4816 if (uri_auth->refresh) {
4817 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
4818 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
4819 if (memcmp(h, ";norefresh", 10) == 0) {
4820 t->flags |= SN_STAT_NORFRSH;
4821 break;
4822 }
4823 h++;
4824 }
4825 }
4826
Willy Tarreau55bb8452007-10-17 18:44:57 +02004827 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
4828 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
4829 if (memcmp(h, ";csv", 4) == 0) {
4830 t->flags |= SN_STAT_FMTCSV;
4831 break;
4832 }
4833 h++;
4834 }
4835
Willy Tarreaub2513902006-12-17 14:52:38 +01004836 /* we are in front of a interceptable URI. Let's check
4837 * if there's an authentication and if it's valid.
4838 */
4839 user = uri_auth->users;
4840 if (!user) {
4841 /* no user auth required, it's OK */
4842 authenticated = 1;
4843 } else {
4844 authenticated = 0;
4845
4846 /* a user list is defined, we have to check.
4847 * skip 21 chars for "Authorization: Basic ".
4848 */
4849
4850 /* FIXME: this should move to an earlier place */
4851 cur_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004852 h = t->req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
4853 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
4854 int len = txn->hdr_idx.v[cur_idx].len;
Willy Tarreaub2513902006-12-17 14:52:38 +01004855 if (len > 14 &&
4856 !strncasecmp("Authorization:", h, 14)) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004857 txn->auth_hdr.str = h;
4858 txn->auth_hdr.len = len;
Willy Tarreaub2513902006-12-17 14:52:38 +01004859 break;
4860 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004861 h += len + txn->hdr_idx.v[cur_idx].cr + 1;
Willy Tarreaub2513902006-12-17 14:52:38 +01004862 }
4863
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004864 if (txn->auth_hdr.len < 21 ||
4865 memcmp(txn->auth_hdr.str + 14, " Basic ", 7))
Willy Tarreaub2513902006-12-17 14:52:38 +01004866 user = NULL;
4867
4868 while (user) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004869 if ((txn->auth_hdr.len == user->user_len + 14 + 7)
4870 && !memcmp(txn->auth_hdr.str + 14 + 7,
Willy Tarreaub2513902006-12-17 14:52:38 +01004871 user->user_pwd, user->user_len)) {
4872 authenticated = 1;
4873 break;
4874 }
4875 user = user->next;
4876 }
4877 }
4878
4879 if (!authenticated) {
Willy Tarreau0f772532006-12-23 20:51:41 +01004880 struct chunk msg;
Willy Tarreaub2513902006-12-17 14:52:38 +01004881
4882 /* no need to go further */
Willy Tarreau0f772532006-12-23 20:51:41 +01004883 msg.str = trash;
4884 msg.len = sprintf(trash, HTTP_401_fmt, uri_auth->auth_realm);
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004885 txn->status = 401;
Willy Tarreau0f772532006-12-23 20:51:41 +01004886 client_retnclose(t, &msg);
Willy Tarreaub2513902006-12-17 14:52:38 +01004887 if (!(t->flags & SN_ERR_MASK))
4888 t->flags |= SN_ERR_PRXCOND;
4889 if (!(t->flags & SN_FINST_MASK))
4890 t->flags |= SN_FINST_R;
4891 return 1;
4892 }
4893
4894 /* The request is valid, the user is authenticate. Let's start sending
4895 * data.
4896 */
4897 t->cli_state = CL_STSHUTR;
4898 t->req->rlim = t->req->data + BUFSIZE; /* no more rewrite needed */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02004899 t->logs.t_request = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaub2513902006-12-17 14:52:38 +01004900 t->data_source = DATA_SRC_STATS;
4901 t->data_state = DATA_ST_INIT;
4902 produce_content(t);
4903 return 1;
4904}
4905
4906
Willy Tarreaubaaee002006-06-26 02:48:02 +02004907/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01004908 * Print a debug line with a header
4909 */
4910void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
4911{
4912 int len, max;
4913 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
4914 dir, (unsigned short)t->cli_fd, (unsigned short)t->srv_fd);
4915 max = end - start;
4916 UBOUND(max, sizeof(trash) - len - 1);
4917 len += strlcpy2(trash + len, start, max + 1);
4918 trash[len++] = '\n';
4919 write(1, trash, len);
4920}
4921
4922
Willy Tarreau8797c062007-05-07 00:55:35 +02004923/************************************************************************/
4924/* The code below is dedicated to ACL parsing and matching */
4925/************************************************************************/
4926
4927
4928
4929
4930/* 1. Check on METHOD
4931 * We use the pre-parsed method if it is known, and store its number as an
4932 * integer. If it is unknown, we use the pointer and the length.
4933 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02004934static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02004935{
4936 int len, meth;
4937
Willy Tarreauae8b7962007-06-09 23:10:04 +02004938 len = strlen(*text);
4939 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02004940
4941 pattern->val.i = meth;
4942 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02004943 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02004944 if (!pattern->ptr.str)
4945 return 0;
4946 pattern->len = len;
4947 }
4948 return 1;
4949}
4950
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004951static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004952acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
4953 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004954{
4955 int meth;
4956 struct http_txn *txn = l7;
4957
Willy Tarreauc11416f2007-06-17 16:58:38 +02004958 if (txn->req.msg_state != HTTP_MSG_BODY)
4959 return 0;
4960
Willy Tarreau8797c062007-05-07 00:55:35 +02004961 meth = txn->meth;
4962 test->i = meth;
4963 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02004964 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4965 /* ensure the indexes are not affected */
4966 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02004967 test->len = txn->req.sl.rq.m_l;
4968 test->ptr = txn->req.sol;
4969 }
4970 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
4971 return 1;
4972}
4973
4974static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
4975{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02004976 int icase;
4977
Willy Tarreau8797c062007-05-07 00:55:35 +02004978 if (test->i != pattern->val.i)
4979 return 0;
4980
4981 if (test->i != HTTP_METH_OTHER)
4982 return 1;
4983
4984 /* Other method, we must compare the strings */
4985 if (pattern->len != test->len)
4986 return 0;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02004987
4988 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
4989 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
4990 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau8797c062007-05-07 00:55:35 +02004991 return 0;
4992 return 1;
4993}
4994
4995/* 2. Check on Request/Status Version
4996 * We simply compare strings here.
4997 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02004998static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02004999{
Willy Tarreauae8b7962007-06-09 23:10:04 +02005000 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005001 if (!pattern->ptr.str)
5002 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02005003 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005004 return 1;
5005}
5006
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005007static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005008acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
5009 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005010{
5011 struct http_txn *txn = l7;
5012 char *ptr;
5013 int len;
5014
Willy Tarreauc11416f2007-06-17 16:58:38 +02005015 if (txn->req.msg_state != HTTP_MSG_BODY)
5016 return 0;
5017
Willy Tarreau8797c062007-05-07 00:55:35 +02005018 len = txn->req.sl.rq.v_l;
5019 ptr = txn->req.sol + txn->req.sl.rq.v - txn->req.som;
5020
5021 while ((len-- > 0) && (*ptr++ != '/'));
5022 if (len <= 0)
5023 return 0;
5024
5025 test->ptr = ptr;
5026 test->len = len;
5027
5028 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5029 return 1;
5030}
5031
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005032static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005033acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
5034 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005035{
5036 struct http_txn *txn = l7;
5037 char *ptr;
5038 int len;
5039
Willy Tarreauc11416f2007-06-17 16:58:38 +02005040 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5041 return 0;
5042
Willy Tarreau8797c062007-05-07 00:55:35 +02005043 len = txn->rsp.sl.st.v_l;
5044 ptr = txn->rsp.sol;
5045
5046 while ((len-- > 0) && (*ptr++ != '/'));
5047 if (len <= 0)
5048 return 0;
5049
5050 test->ptr = ptr;
5051 test->len = len;
5052
5053 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5054 return 1;
5055}
5056
5057/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005058static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005059acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
5060 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005061{
5062 struct http_txn *txn = l7;
5063 char *ptr;
5064 int len;
5065
Willy Tarreauc11416f2007-06-17 16:58:38 +02005066 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5067 return 0;
5068
Willy Tarreau8797c062007-05-07 00:55:35 +02005069 len = txn->rsp.sl.st.c_l;
5070 ptr = txn->rsp.sol + txn->rsp.sl.st.c - txn->rsp.som;
5071
5072 test->i = __strl2ui(ptr, len);
5073 test->flags = ACL_TEST_F_VOL_1ST;
5074 return 1;
5075}
5076
5077/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005078static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005079acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
5080 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005081{
5082 struct http_txn *txn = l7;
5083
Willy Tarreauc11416f2007-06-17 16:58:38 +02005084 if (txn->req.msg_state != HTTP_MSG_BODY)
5085 return 0;
5086 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5087 /* ensure the indexes are not affected */
5088 return 0;
5089
Willy Tarreau8797c062007-05-07 00:55:35 +02005090 test->len = txn->req.sl.rq.u_l;
5091 test->ptr = txn->req.sol + txn->req.sl.rq.u;
5092
Willy Tarreauf3d25982007-05-08 22:45:09 +02005093 /* we do not need to set READ_ONLY because the data is in a buffer */
5094 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02005095 return 1;
5096}
5097
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005098static int
5099acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
5100 struct acl_expr *expr, struct acl_test *test)
5101{
5102 struct http_txn *txn = l7;
5103
5104 if (txn->req.msg_state != HTTP_MSG_BODY)
5105 return 0;
5106 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5107 /* ensure the indexes are not affected */
5108 return 0;
5109
5110 /* Parse HTTP request */
5111 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
5112 test->ptr = (void *)&((struct sockaddr_in *)&l4->srv_addr)->sin_addr;
5113 test->i = AF_INET;
5114
5115 /*
5116 * If we are parsing url in frontend space, we prepare backend stage
5117 * to not parse again the same url ! optimization lazyness...
5118 */
5119 if (px->options & PR_O_HTTP_PROXY)
5120 l4->flags |= SN_ADDR_SET;
5121
5122 test->flags = ACL_TEST_F_READ_ONLY;
5123 return 1;
5124}
5125
5126static int
5127acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
5128 struct acl_expr *expr, struct acl_test *test)
5129{
5130 struct http_txn *txn = l7;
5131
5132 if (txn->req.msg_state != HTTP_MSG_BODY)
5133 return 0;
5134 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5135 /* ensure the indexes are not affected */
5136 return 0;
5137
5138 /* Same optimization as url_ip */
5139 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
5140 test->i = ntohs(((struct sockaddr_in *)&l4->srv_addr)->sin_port);
5141
5142 if (px->options & PR_O_HTTP_PROXY)
5143 l4->flags |= SN_ADDR_SET;
5144
5145 test->flags = ACL_TEST_F_READ_ONLY;
5146 return 1;
5147}
5148
Willy Tarreauc11416f2007-06-17 16:58:38 +02005149/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
5150 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
5151 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02005152static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005153acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005154 struct acl_expr *expr, struct acl_test *test)
5155{
5156 struct http_txn *txn = l7;
5157 struct hdr_idx *idx = &txn->hdr_idx;
5158 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005159
5160 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
5161 /* search for header from the beginning */
5162 ctx->idx = 0;
5163
Willy Tarreau33a7e692007-06-10 19:45:56 +02005164 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
5165 test->flags |= ACL_TEST_F_FETCH_MORE;
5166 test->flags |= ACL_TEST_F_VOL_HDR;
5167 test->len = ctx->vlen;
5168 test->ptr = (char *)ctx->line + ctx->val;
5169 return 1;
5170 }
5171
5172 test->flags &= ~ACL_TEST_F_FETCH_MORE;
5173 test->flags |= ACL_TEST_F_VOL_HDR;
5174 return 0;
5175}
5176
Willy Tarreau33a7e692007-06-10 19:45:56 +02005177static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005178acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
5179 struct acl_expr *expr, struct acl_test *test)
5180{
5181 struct http_txn *txn = l7;
5182
5183 if (txn->req.msg_state != HTTP_MSG_BODY)
5184 return 0;
5185 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5186 /* ensure the indexes are not affected */
5187 return 0;
5188
5189 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
5190}
5191
5192static int
5193acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
5194 struct acl_expr *expr, struct acl_test *test)
5195{
5196 struct http_txn *txn = l7;
5197
5198 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5199 return 0;
5200
5201 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
5202}
5203
5204/* 6. Check on HTTP header count. The number of occurrences is returned.
5205 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
5206 */
5207static int
5208acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005209 struct acl_expr *expr, struct acl_test *test)
5210{
5211 struct http_txn *txn = l7;
5212 struct hdr_idx *idx = &txn->hdr_idx;
5213 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005214 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02005215
Willy Tarreau33a7e692007-06-10 19:45:56 +02005216 ctx.idx = 0;
5217 cnt = 0;
5218 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
5219 cnt++;
5220
5221 test->i = cnt;
5222 test->flags = ACL_TEST_F_VOL_HDR;
5223 return 1;
5224}
5225
Willy Tarreauc11416f2007-06-17 16:58:38 +02005226static int
5227acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
5228 struct acl_expr *expr, struct acl_test *test)
5229{
5230 struct http_txn *txn = l7;
5231
5232 if (txn->req.msg_state != HTTP_MSG_BODY)
5233 return 0;
5234 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5235 /* ensure the indexes are not affected */
5236 return 0;
5237
5238 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
5239}
5240
5241static int
5242acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
5243 struct acl_expr *expr, struct acl_test *test)
5244{
5245 struct http_txn *txn = l7;
5246
5247 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5248 return 0;
5249
5250 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
5251}
5252
Willy Tarreau33a7e692007-06-10 19:45:56 +02005253/* 7. Check on HTTP header's integer value. The integer value is returned.
5254 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02005255 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02005256 */
5257static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005258acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005259 struct acl_expr *expr, struct acl_test *test)
5260{
5261 struct http_txn *txn = l7;
5262 struct hdr_idx *idx = &txn->hdr_idx;
5263 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005264
5265 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
5266 /* search for header from the beginning */
5267 ctx->idx = 0;
5268
Willy Tarreau33a7e692007-06-10 19:45:56 +02005269 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
5270 test->flags |= ACL_TEST_F_FETCH_MORE;
5271 test->flags |= ACL_TEST_F_VOL_HDR;
5272 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
5273 return 1;
5274 }
5275
5276 test->flags &= ~ACL_TEST_F_FETCH_MORE;
5277 test->flags |= ACL_TEST_F_VOL_HDR;
5278 return 0;
5279}
5280
Willy Tarreauc11416f2007-06-17 16:58:38 +02005281static int
5282acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
5283 struct acl_expr *expr, struct acl_test *test)
5284{
5285 struct http_txn *txn = l7;
5286
5287 if (txn->req.msg_state != HTTP_MSG_BODY)
5288 return 0;
5289 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5290 /* ensure the indexes are not affected */
5291 return 0;
5292
5293 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
5294}
5295
5296static int
5297acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
5298 struct acl_expr *expr, struct acl_test *test)
5299{
5300 struct http_txn *txn = l7;
5301
5302 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5303 return 0;
5304
5305 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
5306}
5307
Willy Tarreau737b0c12007-06-10 21:28:46 +02005308/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
5309 * the first '/' after the possible hostname, and ends before the possible '?'.
5310 */
5311static int
5312acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
5313 struct acl_expr *expr, struct acl_test *test)
5314{
5315 struct http_txn *txn = l7;
5316 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005317
Willy Tarreauc11416f2007-06-17 16:58:38 +02005318 if (txn->req.msg_state != HTTP_MSG_BODY)
5319 return 0;
5320 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5321 /* ensure the indexes are not affected */
5322 return 0;
5323
Willy Tarreau21d2af32008-02-14 20:25:24 +01005324 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
5325 ptr = http_get_path(txn);
5326 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02005327 return 0;
5328
5329 /* OK, we got the '/' ! */
5330 test->ptr = ptr;
5331
5332 while (ptr < end && *ptr != '?')
5333 ptr++;
5334
5335 test->len = ptr - test->ptr;
5336
5337 /* we do not need to set READ_ONLY because the data is in a buffer */
5338 test->flags = ACL_TEST_F_VOL_1ST;
5339 return 1;
5340}
5341
5342
Willy Tarreau8797c062007-05-07 00:55:35 +02005343
5344/************************************************************************/
5345/* All supported keywords must be declared here. */
5346/************************************************************************/
5347
5348/* Note: must not be declared <const> as its list will be overwritten */
5349static struct acl_kw_list acl_kws = {{ },{
5350 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth },
5351 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str },
5352 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str },
Willy Tarreauae8b7962007-06-09 23:10:04 +02005353 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +02005354
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005355 { "url", acl_parse_str, acl_fetch_url, acl_match_str },
5356 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg },
5357 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end },
5358 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub },
5359 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir },
5360 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom },
5361 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg },
5362 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip },
5363 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +02005364
Willy Tarreauc11416f2007-06-17 16:58:38 +02005365 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str },
5366 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg },
5367 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg },
5368 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end },
5369 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub },
5370 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir },
5371 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom },
5372 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int },
5373 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int },
5374
5375 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str },
5376 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg },
5377 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg },
5378 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end },
5379 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub },
5380 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir },
5381 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom },
5382 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int },
5383 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int },
Willy Tarreau737b0c12007-06-10 21:28:46 +02005384
5385 { "path", acl_parse_str, acl_fetch_path, acl_match_str },
5386 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg },
5387 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg },
5388 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end },
5389 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub },
5390 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir },
5391 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom },
5392
Willy Tarreauf3d25982007-05-08 22:45:09 +02005393 { NULL, NULL, NULL, NULL },
5394
5395#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02005396 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
5397 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
5398 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
5399 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
5400 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
5401 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
5402 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
5403
Willy Tarreau8797c062007-05-07 00:55:35 +02005404 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
5405 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
5406 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
5407 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
5408 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
5409 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
5410 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
5411 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
5412
5413 { "auth_user", acl_parse_str, acl_fetch_user, acl_match_str },
5414 { "auth_regex", acl_parse_reg, acl_fetch_user, acl_match_reg },
5415 { "auth_clear", acl_parse_str, acl_fetch_auth, acl_match_str },
5416 { "auth_md5", acl_parse_str, acl_fetch_auth, acl_match_md5 },
5417 { NULL, NULL, NULL, NULL },
5418#endif
5419}};
5420
5421
5422__attribute__((constructor))
5423static void __http_protocol_init(void)
5424{
5425 acl_register_keywords(&acl_kws);
5426}
5427
5428
Willy Tarreau58f10d72006-12-04 02:26:12 +01005429/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005430 * Local variables:
5431 * c-indent-level: 8
5432 * c-basic-offset: 8
5433 * End:
5434 */