blob: d83e601c8cddc7e2d919953b9d047ae6669e4ab8 [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);
Willy Tarreau51406232008-03-10 22:04:20 +01002572 if (t->srv) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002573 t->srv->cur_sess--;
Willy Tarreau51406232008-03-10 22:04:20 +01002574 if (t->srv->proxy->lbprm.server_drop_conn)
2575 t->srv->proxy->lbprm.server_drop_conn(t->srv);
2576 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002577
2578 /* note that this must not return any error because it would be able to
2579 * overwrite the client_retnclose() output.
2580 */
Willy Tarreau0f772532006-12-23 20:51:41 +01002581 srv_close_with_err(t, SN_ERR_CLICL, SN_FINST_C, 0, NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002582 return 1;
2583 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002584 if (!(req->flags & BF_WRITE_STATUS) && !tv_isle(&req->cex, &now)) {
Willy Tarreaud7971282006-07-29 18:36:34 +02002585 //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 +02002586 return 0; /* nothing changed */
2587 }
Willy Tarreau0f9f5052006-07-29 17:39:25 +02002588 else if (!(req->flags & BF_WRITE_STATUS) || (req->flags & BF_WRITE_ERROR)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002589 /* timeout, asynchronous connect error or first write error */
2590 //fprintf(stderr,"2: c=%d, s=%d\n", c, s);
2591
Willy Tarreau541b5c22008-01-06 23:34:21 +01002592 if (t->flags & SN_CONN_TAR) {
2593 /* We are doing a turn-around waiting for a new connection attempt. */
2594 if (!tv_isle(&req->cex, &now))
2595 return 0;
2596 t->flags &= ~SN_CONN_TAR;
2597 }
2598 else {
2599 fd_delete(t->srv_fd);
Willy Tarreau51406232008-03-10 22:04:20 +01002600 if (t->srv) {
Willy Tarreau541b5c22008-01-06 23:34:21 +01002601 t->srv->cur_sess--;
Willy Tarreau51406232008-03-10 22:04:20 +01002602 if (t->srv->proxy->lbprm.server_drop_conn)
2603 t->srv->proxy->lbprm.server_drop_conn(t->srv);
2604 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002605
Willy Tarreau541b5c22008-01-06 23:34:21 +01002606 if (!(req->flags & BF_WRITE_STATUS))
2607 conn_err = SN_ERR_SRVTO; // it was a connect timeout.
2608 else
2609 conn_err = SN_ERR_SRVCL; // it was an asynchronous connect error.
2610
2611 /* ensure that we have enough retries left */
2612 if (srv_count_retry_down(t, conn_err))
2613 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002614
Willy Tarreau541b5c22008-01-06 23:34:21 +01002615 if (req->flags & BF_WRITE_ERROR) {
2616 /* we encountered an immediate connection error, and we
2617 * will have to retry connecting to the same server, most
2618 * likely leading to the same result. To avoid this, we
2619 * fake a connection timeout to retry after a turn-around
2620 * time of 1 second. We will wait in the previous if block.
2621 */
2622 t->flags |= SN_CONN_TAR;
2623 tv_ms_add(&req->cex, &now, 1000);
2624 return 0;
2625 }
2626 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002627
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002628 if (t->srv && t->conn_retries == 0 && t->be->options & PR_O_REDISP) {
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002629 /* We're on our last chance, and the REDISP option was specified.
2630 * We will ignore cookie and force to balance or use the dispatcher.
2631 */
2632 /* let's try to offer this slot to anybody */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002633 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02002634 task_wakeup(t->srv->queue_mgt);
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002635
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01002636 /* it's left to the dispatcher to choose a server */
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002637 t->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002638
2639 /* first, get a connection */
2640 if (srv_redispatch_connect(t))
Willy Tarreau00559e72008-01-06 23:46:19 +01002641 return t->srv_state != SV_STCONN;
Krzysztof Piotr Oledzki626a19b2008-02-04 02:10:09 +01002642 } else {
2643 if (t->srv)
2644 t->srv->retries++;
2645 t->be->retries++;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02002646 }
2647
Willy Tarreaubaaee002006-06-26 02:48:02 +02002648 do {
2649 /* Now we will try to either reconnect to the same server or
2650 * connect to another server. If the connection gets queued
2651 * because all servers are saturated, then we will go back to
2652 * the SV_STIDLE state.
2653 */
2654 if (srv_retryable_connect(t)) {
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002655 t->logs.t_queue = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002656 return t->srv_state != SV_STCONN;
2657 }
2658
2659 /* we need to redispatch the connection to another server */
2660 if (srv_redispatch_connect(t))
2661 return t->srv_state != SV_STCONN;
2662 } while (1);
2663 }
2664 else { /* no error or write 0 */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02002665 t->logs.t_connect = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002666
2667 //fprintf(stderr,"3: c=%d, s=%d\n", c, s);
2668 if (req->l == 0) /* nothing to write */ {
Willy Tarreauf161a342007-04-08 16:59:42 +02002669 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaud7971282006-07-29 18:36:34 +02002670 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002671 } else /* need the right to write */ {
Willy Tarreauf161a342007-04-08 16:59:42 +02002672 EV_FD_SET(t->srv_fd, DIR_WR);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002673 if (tv_add_ifset(&req->wex, &now, &t->be->timeout.server)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002674 /* FIXME: to prevent the server from expiring read timeouts during writes,
2675 * we refresh it. */
Willy Tarreaud7971282006-07-29 18:36:34 +02002676 rep->rex = req->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002677 }
2678 else
Willy Tarreaud7971282006-07-29 18:36:34 +02002679 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002680 }
2681
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002682 if (t->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreauf161a342007-04-08 16:59:42 +02002683 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002684 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02002685 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002686
2687 t->srv_state = SV_STDATA;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002688 rep->rlim = rep->data + BUFSIZE; /* no rewrite needed */
2689
2690 /* if the user wants to log as soon as possible, without counting
2691 bytes from the server, then this is the right moment. */
Willy Tarreau73de9892006-11-30 11:40:23 +01002692 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002693 t->logs.t_close = t->logs.t_connect; /* to get a valid end date */
Willy Tarreau42250582007-04-01 01:30:43 +02002694 tcp_sess_log(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002695 }
Willy Tarreau6d1a9882007-01-07 02:03:04 +01002696#ifdef CONFIG_HAP_TCPSPLICE
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002697 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
Willy Tarreau6d1a9882007-01-07 02:03:04 +01002698 /* TCP splicing supported by both FE and BE */
2699 tcp_splice_splicefd(t->cli_fd, t->srv_fd, 0);
2700 }
2701#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002702 }
2703 else {
2704 t->srv_state = SV_STHEADERS;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002705 rep->rlim = rep->data + BUFSIZE - MAXREWRITE; /* rewrite needed */
Willy Tarreaua15645d2007-03-18 16:22:39 +01002706 t->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
2707 /* reset hdr_idx which was already initialized by the request.
2708 * right now, the http parser does it.
2709 * hdr_idx_init(&t->txn.hdr_idx);
2710 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002711 }
Willy Tarreaud7971282006-07-29 18:36:34 +02002712 tv_eternity(&req->cex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002713 return 1;
2714 }
2715 }
2716 else if (s == SV_STHEADERS) { /* receiving server headers */
Willy Tarreaua15645d2007-03-18 16:22:39 +01002717 /*
2718 * Now parse the partial (or complete) lines.
2719 * We will check the response syntax, and also join multi-line
2720 * headers. An index of all the lines will be elaborated while
2721 * parsing.
2722 *
2723 * For the parsing, we use a 28 states FSM.
2724 *
2725 * Here is the information we currently have :
2726 * rep->data + req->som = beginning of response
2727 * rep->data + req->eoh = end of processed headers / start of current one
2728 * rep->data + req->eol = end of current header or line (LF or CRLF)
2729 * rep->lr = first non-visited byte
2730 * rep->r = end of data
2731 */
2732
2733 int cur_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002734 struct http_msg *msg = &txn->rsp;
2735 struct proxy *cur_proxy;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002736
Willy Tarreaua15645d2007-03-18 16:22:39 +01002737 if (likely(rep->lr < rep->r))
2738 http_msg_analyzer(rep, msg, &txn->hdr_idx);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002739
Willy Tarreaua15645d2007-03-18 16:22:39 +01002740 /* 1: we might have to print this header in debug mode */
2741 if (unlikely((global.mode & MODE_DEBUG) &&
2742 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
2743 (msg->msg_state == HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
2744 char *eol, *sol;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002745
Willy Tarreaua15645d2007-03-18 16:22:39 +01002746 sol = rep->data + msg->som;
2747 eol = sol + msg->sl.rq.l;
2748 debug_hdr("srvrep", t, sol, eol);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002749
Willy Tarreaua15645d2007-03-18 16:22:39 +01002750 sol += hdr_idx_first_pos(&txn->hdr_idx);
2751 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002752
Willy Tarreaua15645d2007-03-18 16:22:39 +01002753 while (cur_idx) {
2754 eol = sol + txn->hdr_idx.v[cur_idx].len;
2755 debug_hdr("srvhdr", t, sol, eol);
2756 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2757 cur_idx = txn->hdr_idx.v[cur_idx].next;
2758 }
2759 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002760
Willy Tarreaubaaee002006-06-26 02:48:02 +02002761
Willy Tarreau66319382007-04-08 17:17:37 +02002762 if ((rep->l < rep->rlim - rep->data) && EV_FD_COND_S(t->srv_fd, DIR_RD)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002763 /* fd in DIR_RD was disabled, perhaps because of a previous buffer
Willy Tarreaua15645d2007-03-18 16:22:39 +01002764 * full. We cannot loop here since stream_sock_read will disable it only if
2765 * rep->l == rlim-data
2766 */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002767 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaua15645d2007-03-18 16:22:39 +01002768 tv_eternity(&rep->rex);
2769 }
2770
2771
2772 /*
2773 * Now we quickly check if we have found a full valid response.
2774 * If not so, we check the FD and buffer states before leaving.
2775 * A full response is indicated by the fact that we have seen
2776 * the double LF/CRLF, so the state is HTTP_MSG_BODY. Invalid
2777 * responses are checked first.
2778 *
2779 * Depending on whether the client is still there or not, we
2780 * may send an error response back or not. Note that normally
2781 * we should only check for HTTP status there, and check I/O
2782 * errors somewhere else.
2783 */
2784
2785 if (unlikely(msg->msg_state != HTTP_MSG_BODY)) {
2786
2787 /* Invalid response, or read error or write error */
2788 if (unlikely((msg->msg_state == HTTP_MSG_ERROR) ||
2789 (req->flags & BF_WRITE_ERROR) ||
2790 (rep->flags & BF_READ_ERROR))) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002791 buffer_shutr(rep);
2792 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002793 fd_delete(t->srv_fd);
2794 if (t->srv) {
2795 t->srv->cur_sess--;
2796 t->srv->failed_resp++;
Willy Tarreau51406232008-03-10 22:04:20 +01002797 if (t->srv->proxy->lbprm.server_drop_conn)
2798 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002799 }
2800 t->be->failed_resp++;
2801 t->srv_state = SV_STCLOSE;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002802 txn->status = 502;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002803 client_return(t, error_message(t, HTTP_ERR_502));
2804 if (!(t->flags & SN_ERR_MASK))
2805 t->flags |= SN_ERR_SRVCL;
2806 if (!(t->flags & SN_FINST_MASK))
2807 t->flags |= SN_FINST_H;
2808 /* We used to have a free connection slot. Since we'll never use it,
2809 * we have to inform the server that it may be used by another session.
2810 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002811 if (t->srv && may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02002812 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002813
Willy Tarreaua15645d2007-03-18 16:22:39 +01002814 return 1;
2815 }
2816
2817 /* end of client write or end of server read.
2818 * since we are in header mode, if there's no space left for headers, we
2819 * won't be able to free more later, so the session will never terminate.
2820 */
2821 else if (unlikely(rep->flags & BF_READ_NULL ||
2822 c == CL_STSHUTW || c == CL_STCLOSE ||
2823 rep->l >= rep->rlim - rep->data)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002824 EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02002825 buffer_shutr(rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002826 t->srv_state = SV_STSHUTR;
2827 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
2828 return 1;
2829 }
2830
2831 /* read timeout : return a 504 to the client.
2832 */
Willy Tarreauf161a342007-04-08 16:59:42 +02002833 else if (unlikely(EV_FD_ISSET(t->srv_fd, DIR_RD) &&
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002834 tv_isle(&rep->rex, &now))) {
Willy Tarreaufa645582007-06-03 15:59:52 +02002835 buffer_shutr(rep);
2836 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002837 fd_delete(t->srv_fd);
2838 if (t->srv) {
2839 t->srv->cur_sess--;
2840 t->srv->failed_resp++;
Willy Tarreau51406232008-03-10 22:04:20 +01002841 if (t->srv->proxy->lbprm.server_drop_conn)
2842 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002843 }
2844 t->be->failed_resp++;
2845 t->srv_state = SV_STCLOSE;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002846 txn->status = 504;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002847 client_return(t, error_message(t, HTTP_ERR_504));
2848 if (!(t->flags & SN_ERR_MASK))
2849 t->flags |= SN_ERR_SRVTO;
2850 if (!(t->flags & SN_FINST_MASK))
2851 t->flags |= SN_FINST_H;
2852 /* We used to have a free connection slot. Since we'll never use it,
2853 * we have to inform the server that it may be used by another session.
2854 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002855 if (t->srv && may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02002856 task_wakeup(t->srv->queue_mgt);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002857 return 1;
2858 }
2859
2860 /* last client read and buffer empty */
2861 /* FIXME!!! here, we don't want to switch to SHUTW if the
2862 * client shuts read too early, because we may still have
2863 * some work to do on the headers.
2864 * The side-effect is that if the client completely closes its
2865 * connection during SV_STHEADER, the connection to the server
2866 * is kept until a response comes back or the timeout is reached.
2867 */
2868 else if (unlikely((/*c == CL_STSHUTR ||*/ c == CL_STCLOSE) &&
2869 (req->l == 0))) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002870 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02002871 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002872
2873 /* We must ensure that the read part is still
2874 * alive when switching to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02002875 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002876 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002877
2878 shutdown(t->srv_fd, SHUT_WR);
2879 t->srv_state = SV_STSHUTW;
2880 return 1;
2881 }
2882
2883 /* write timeout */
2884 /* FIXME!!! here, we don't want to switch to SHUTW if the
2885 * client shuts read too early, because we may still have
2886 * some work to do on the headers.
2887 */
Willy Tarreauf161a342007-04-08 16:59:42 +02002888 else if (unlikely(EV_FD_ISSET(t->srv_fd, DIR_WR) &&
Willy Tarreaua8b55e32007-05-13 16:08:19 +02002889 tv_isle(&req->wex, &now))) {
Willy Tarreauf161a342007-04-08 16:59:42 +02002890 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02002891 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002892 shutdown(t->srv_fd, SHUT_WR);
2893 /* We must ensure that the read part is still alive
2894 * when switching to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02002895 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002896 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002897
2898 t->srv_state = SV_STSHUTW;
2899 if (!(t->flags & SN_ERR_MASK))
2900 t->flags |= SN_ERR_SRVTO;
2901 if (!(t->flags & SN_FINST_MASK))
2902 t->flags |= SN_FINST_H;
2903 return 1;
2904 }
2905
2906 /*
2907 * And now the non-error cases.
2908 */
2909
2910 /* Data remaining in the request buffer.
2911 * This happens during the first pass here, and during
2912 * long posts.
2913 */
2914 else if (likely(req->l)) {
Willy Tarreau66319382007-04-08 17:17:37 +02002915 if (EV_FD_COND_S(t->srv_fd, DIR_WR)) {
2916 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002917 if (tv_add_ifset(&req->wex, &now, &t->be->timeout.server)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01002918 /* FIXME: to prevent the server from expiring read timeouts during writes,
2919 * we refresh it. */
2920 rep->rex = req->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002921 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002922 else
2923 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002924 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01002925 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002926
Willy Tarreaua15645d2007-03-18 16:22:39 +01002927 /* nothing left in the request buffer */
2928 else {
Willy Tarreau66319382007-04-08 17:17:37 +02002929 if (EV_FD_COND_C(t->srv_fd, DIR_WR)) {
2930 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02002931 tv_eternity(&req->wex);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002932 }
2933 }
2934
2935 return t->srv_state != SV_STHEADERS;
2936 }
2937
2938
2939 /*****************************************************************
2940 * More interesting part now : we know that we have a complete *
2941 * response which at least looks like HTTP. We have an indicator *
2942 * of each header's length, so we can parse them quickly. *
2943 ****************************************************************/
2944
Willy Tarreau9cdde232007-05-02 20:58:19 +02002945 /* ensure we keep this pointer to the beginning of the message */
2946 msg->sol = rep->data + msg->som;
2947
Willy Tarreaua15645d2007-03-18 16:22:39 +01002948 /*
2949 * 1: get the status code and check for cacheability.
2950 */
2951
2952 t->logs.logwait &= ~LW_RESP;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002953 txn->status = strl2ui(rep->data + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002954
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01002955 switch (txn->status) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01002956 case 200:
2957 case 203:
2958 case 206:
2959 case 300:
2960 case 301:
2961 case 410:
2962 /* RFC2616 @13.4:
2963 * "A response received with a status code of
2964 * 200, 203, 206, 300, 301 or 410 MAY be stored
2965 * by a cache (...) unless a cache-control
2966 * directive prohibits caching."
2967 *
2968 * RFC2616 @9.5: POST method :
2969 * "Responses to this method are not cacheable,
2970 * unless the response includes appropriate
2971 * Cache-Control or Expires header fields."
2972 */
2973 if (likely(txn->meth != HTTP_METH_POST) &&
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02002974 (t->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
Willy Tarreau3d300592007-03-18 18:34:41 +01002975 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01002976 break;
2977 default:
2978 break;
2979 }
2980
2981 /*
2982 * 2: we may need to capture headers
2983 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002984 if (unlikely((t->logs.logwait & LW_RSPHDR) && t->fe->rsp_cap))
Willy Tarreaua15645d2007-03-18 16:22:39 +01002985 capture_headers(rep->data + msg->som, &txn->hdr_idx,
Willy Tarreaue2e27a52007-04-01 00:01:37 +02002986 txn->rsp.cap, t->fe->rsp_cap);
Willy Tarreaua15645d2007-03-18 16:22:39 +01002987
2988 /*
2989 * 3: we will have to evaluate the filters.
2990 * As opposed to version 1.2, now they will be evaluated in the
2991 * filters order and not in the header order. This means that
2992 * each filter has to be validated among all headers.
2993 *
2994 * Filters are tried with ->be first, then with ->fe if it is
2995 * different from ->be.
2996 */
2997
2998 t->flags &= ~SN_CONN_CLOSED; /* prepare for inspection */
2999
3000 cur_proxy = t->be;
3001 while (1) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003002 struct proxy *rule_set = cur_proxy;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003003
3004 /* try headers filters */
3005 if (rule_set->rsp_exp != NULL) {
3006 if (apply_filters_to_response(t, rep, rule_set->rsp_exp) < 0) {
3007 return_bad_resp:
Willy Tarreaubaaee002006-06-26 02:48:02 +02003008 if (t->srv) {
3009 t->srv->cur_sess--;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003010 t->srv->failed_resp++;
Willy Tarreau51406232008-03-10 22:04:20 +01003011 if (t->srv->proxy->lbprm.server_drop_conn)
3012 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003013 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003014 cur_proxy->failed_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003015 return_srv_prx_502:
Willy Tarreaufa645582007-06-03 15:59:52 +02003016 buffer_shutr(rep);
3017 buffer_shutw(req);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003018 fd_delete(t->srv_fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003019 t->srv_state = SV_STCLOSE;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003020 txn->status = 502;
Willy Tarreau80587432006-12-24 17:47:20 +01003021 client_return(t, error_message(t, HTTP_ERR_502));
Willy Tarreaubaaee002006-06-26 02:48:02 +02003022 if (!(t->flags & SN_ERR_MASK))
3023 t->flags |= SN_ERR_PRXCOND;
3024 if (!(t->flags & SN_FINST_MASK))
3025 t->flags |= SN_FINST_H;
3026 /* We used to have a free connection slot. Since we'll never use it,
3027 * we have to inform the server that it may be used by another session.
3028 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003029 if (t->srv && may_dequeue_tasks(t->srv, cur_proxy))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003030 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003031 return 1;
3032 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003033 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003034
Willy Tarreaua15645d2007-03-18 16:22:39 +01003035 /* has the response been denied ? */
Willy Tarreau3d300592007-03-18 18:34:41 +01003036 if (txn->flags & TX_SVDENY) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003037 if (t->srv) {
3038 t->srv->cur_sess--;
3039 t->srv->failed_secu++;
Willy Tarreau51406232008-03-10 22:04:20 +01003040 if (t->srv->proxy->lbprm.server_drop_conn)
3041 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003042 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003043 cur_proxy->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003044 goto return_srv_prx_502;
3045 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003046
Willy Tarreaua15645d2007-03-18 16:22:39 +01003047 /* We might have to check for "Connection:" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003048 if (((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01003049 !(t->flags & SN_CONN_CLOSED)) {
3050 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003051 int cur_idx, old_idx, delta, val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003052 struct hdr_idx_elem *cur_hdr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003053
Willy Tarreaua15645d2007-03-18 16:22:39 +01003054 cur_next = rep->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
3055 old_idx = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003056
Willy Tarreaua15645d2007-03-18 16:22:39 +01003057 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
3058 cur_hdr = &txn->hdr_idx.v[cur_idx];
3059 cur_ptr = cur_next;
3060 cur_end = cur_ptr + cur_hdr->len;
3061 cur_next = cur_end + cur_hdr->cr + 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003062
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003063 val = http_header_match2(cur_ptr, cur_end, "Connection", 10);
3064 if (val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003065 /* 3 possibilities :
3066 * - we have already set Connection: close,
3067 * so we remove this line.
3068 * - we have not yet set Connection: close,
3069 * but this line indicates close. We leave
3070 * it untouched and set the flag.
3071 * - we have not yet set Connection: close,
3072 * and this line indicates non-close. We
3073 * replace it.
3074 */
3075 if (t->flags & SN_CONN_CLOSED) {
3076 delta = buffer_replace2(rep, cur_ptr, cur_next, NULL, 0);
3077 txn->rsp.eoh += delta;
3078 cur_next += delta;
3079 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3080 txn->hdr_idx.used--;
3081 cur_hdr->len = 0;
3082 } else {
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003083 if (strncasecmp(cur_ptr + val, "close", 5) != 0) {
3084 delta = buffer_replace2(rep, cur_ptr + val, cur_end,
3085 "close", 5);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003086 cur_next += delta;
3087 cur_hdr->len += delta;
3088 txn->rsp.eoh += delta;
3089 }
3090 t->flags |= SN_CONN_CLOSED;
3091 }
3092 }
3093 old_idx = cur_idx;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003094 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003095 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003096
Willy Tarreaua15645d2007-03-18 16:22:39 +01003097 /* add response headers from the rule sets in the same order */
3098 for (cur_idx = 0; cur_idx < rule_set->nb_rspadd; cur_idx++) {
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003099 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx,
3100 rule_set->rsp_add[cur_idx])) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003101 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003102 }
3103
Willy Tarreaua15645d2007-03-18 16:22:39 +01003104 /* check whether we're already working on the frontend */
3105 if (cur_proxy == t->fe)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003106 break;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003107 cur_proxy = t->fe;
3108 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003109
Willy Tarreaua15645d2007-03-18 16:22:39 +01003110 /*
3111 * 4: check for server cookie.
3112 */
Willy Tarreau396d2c62007-11-04 19:30:00 +01003113 if (t->be->cookie_name || t->be->appsession_name || t->be->capture_name
3114 || (t->be->options & PR_O_CHK_CACHE))
3115 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003116
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003117
Willy Tarreaua15645d2007-03-18 16:22:39 +01003118 /*
Willy Tarreau396d2c62007-11-04 19:30:00 +01003119 * 5: check for cache-control or pragma headers if required.
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003120 */
Willy Tarreau396d2c62007-11-04 19:30:00 +01003121 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
3122 check_response_for_cacheability(t, rep);
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003123
3124 /*
3125 * 6: add server cookie in the response if needed
Willy Tarreaua15645d2007-03-18 16:22:39 +01003126 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003127 if ((t->srv) && !(t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_INS) &&
3128 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003129 int len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003130
Willy Tarreaua15645d2007-03-18 16:22:39 +01003131 /* the server is known, it's not the one the client requested, we have to
3132 * insert a set-cookie here, except if we want to insert only on POST
3133 * requests and this one isn't. Note that servers which don't have cookies
3134 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003135 */
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003136 len = sprintf(trash, "Set-Cookie: %s=%s; path=/",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003137 t->be->cookie_name,
Willy Tarreaua15645d2007-03-18 16:22:39 +01003138 t->srv->cookie ? t->srv->cookie : "; Expires=Thu, 01-Jan-1970 00:00:01 GMT");
Willy Tarreaubaaee002006-06-26 02:48:02 +02003139
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003140 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3141 trash, len)) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003142 goto return_bad_resp;
Willy Tarreau3d300592007-03-18 18:34:41 +01003143 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003144
Willy Tarreaua15645d2007-03-18 16:22:39 +01003145 /* Here, we will tell an eventual cache on the client side that we don't
3146 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
3147 * Some caches understand the correct form: 'no-cache="set-cookie"', but
3148 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
3149 */
Krzysztof Oledzki9198ab52007-10-11 18:56:27 +02003150 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
3151
3152 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3153
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003154 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
3155 "Cache-control: private", 22)) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003156 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003157 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003158 }
3159
3160
3161 /*
Willy Tarreaua15645d2007-03-18 16:22:39 +01003162 * 7: check if result will be cacheable with a cookie.
3163 * We'll block the response if security checks have caught
3164 * nasty things such as a cacheable cookie.
3165 */
Willy Tarreau3d300592007-03-18 18:34:41 +01003166 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) ==
3167 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003168 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003169
Willy Tarreaua15645d2007-03-18 16:22:39 +01003170 /* we're in presence of a cacheable response containing
3171 * a set-cookie header. We'll block it as requested by
3172 * the 'checkcache' option, and send an alert.
3173 */
3174 if (t->srv) {
3175 t->srv->cur_sess--;
3176 t->srv->failed_secu++;
Willy Tarreau51406232008-03-10 22:04:20 +01003177 if (t->srv->proxy->lbprm.server_drop_conn)
3178 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003179 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003180 t->be->denied_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003181
Willy Tarreaua15645d2007-03-18 16:22:39 +01003182 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003183 t->be->id, t->srv?t->srv->id:"<dispatch>");
Willy Tarreaua15645d2007-03-18 16:22:39 +01003184 send_log(t->be, LOG_ALERT,
3185 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003186 t->be->id, t->srv?t->srv->id:"<dispatch>");
Willy Tarreaua15645d2007-03-18 16:22:39 +01003187 goto return_srv_prx_502;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003188 }
3189
Willy Tarreaua15645d2007-03-18 16:22:39 +01003190 /*
3191 * 8: add "Connection: close" if needed and not yet set.
Willy Tarreau2807efd2007-03-25 23:47:23 +02003192 * Note that we do not need to add it in case of HTTP/1.0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003193 */
Willy Tarreau2807efd2007-03-25 23:47:23 +02003194 if (!(t->flags & SN_CONN_CLOSED) &&
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003195 ((t->fe->options | t->be->options) & (PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) {
Willy Tarreau2807efd2007-03-25 23:47:23 +02003196 if ((unlikely(msg->sl.st.v_l != 8) ||
3197 unlikely(req->data[msg->som + 7] != '0')) &&
3198 unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003199 "Connection: close", 17)) < 0)
Willy Tarreaua15645d2007-03-18 16:22:39 +01003200 goto return_bad_resp;
3201 t->flags |= SN_CONN_CLOSED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003202 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003203
Willy Tarreaubaaee002006-06-26 02:48:02 +02003204
Willy Tarreaua15645d2007-03-18 16:22:39 +01003205 /*************************************************************
3206 * OK, that's finished for the headers. We have done what we *
3207 * could. Let's switch to the DATA state. *
3208 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02003209
Willy Tarreaua15645d2007-03-18 16:22:39 +01003210 t->srv_state = SV_STDATA;
3211 rep->rlim = rep->data + BUFSIZE; /* no more rewrite needed */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02003212 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01003213
3214 /* client connection already closed or option 'forceclose' required :
3215 * we close the server's outgoing connection right now.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003216 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003217 if ((req->l == 0) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003218 (c == CL_STSHUTR || c == CL_STCLOSE || t->be->options & PR_O_FORCE_CLO)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003219 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003220 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003221
3222 /* We must ensure that the read part is still alive when switching
3223 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02003224 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003225 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003226
Willy Tarreaua15645d2007-03-18 16:22:39 +01003227 shutdown(t->srv_fd, SHUT_WR);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003228 t->srv_state = SV_STSHUTW;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003229 }
3230
Willy Tarreaua15645d2007-03-18 16:22:39 +01003231#ifdef CONFIG_HAP_TCPSPLICE
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003232 if ((t->fe->options & t->be->options) & PR_O_TCPSPLICE) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01003233 /* TCP splicing supported by both FE and BE */
3234 tcp_splice_splicefd(t->cli_fd, t->srv_fd, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003235 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01003236#endif
3237 /* if the user wants to log as soon as possible, without counting
Krzysztof Piotr Oledzkif1e1cb42008-01-20 23:27:02 +01003238 * bytes from the server, then this is the right moment. We have
3239 * to temporarily assign bytes_out to log what we currently have.
3240 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003241 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
3242 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
Willy Tarreau8b3977f2008-01-18 11:16:32 +01003243 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreau42250582007-04-01 01:30:43 +02003244 if (t->fe->to_log & LW_REQ)
3245 http_sess_log(t);
3246 else
3247 tcp_sess_log(t);
Krzysztof Piotr Oledzkif1e1cb42008-01-20 23:27:02 +01003248 t->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003249 }
3250
Willy Tarreaua15645d2007-03-18 16:22:39 +01003251 /* Note: we must not try to cheat by jumping directly to DATA,
3252 * otherwise we would not let the client side wake up.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003253 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01003254
3255 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003256 }
3257 else if (s == SV_STDATA) {
3258 /* read or write error */
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003259 if (req->flags & BF_WRITE_ERROR || rep->flags & BF_READ_ERROR) {
Willy Tarreaufa645582007-06-03 15:59:52 +02003260 buffer_shutr(rep);
3261 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003262 fd_delete(t->srv_fd);
3263 if (t->srv) {
3264 t->srv->cur_sess--;
3265 t->srv->failed_resp++;
Willy Tarreau51406232008-03-10 22:04:20 +01003266 if (t->srv->proxy->lbprm.server_drop_conn)
3267 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003268 }
Willy Tarreau73de9892006-11-30 11:40:23 +01003269 t->be->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003270 t->srv_state = SV_STCLOSE;
3271 if (!(t->flags & SN_ERR_MASK))
3272 t->flags |= SN_ERR_SRVCL;
3273 if (!(t->flags & SN_FINST_MASK))
3274 t->flags |= SN_FINST_D;
3275 /* We used to have a free connection slot. Since we'll never use it,
3276 * we have to inform the server that it may be used by another session.
3277 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003278 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003279 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003280
3281 return 1;
3282 }
3283 /* last read, or end of client write */
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003284 else if (rep->flags & BF_READ_NULL || c == CL_STSHUTW || c == CL_STCLOSE) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003285 EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003286 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003287 t->srv_state = SV_STSHUTR;
3288 //fprintf(stderr,"%p:%s(%d), c=%d, s=%d\n", t, __FUNCTION__, __LINE__, t->cli_state, t->cli_state);
3289 return 1;
3290 }
3291 /* end of client read and no more data to send */
3292 else if ((c == CL_STSHUTR || c == CL_STCLOSE) && (req->l == 0)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003293 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003294 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003295 shutdown(t->srv_fd, SHUT_WR);
3296 /* We must ensure that the read part is still alive when switching
3297 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02003298 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003299 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003300
3301 t->srv_state = SV_STSHUTW;
3302 return 1;
3303 }
3304 /* read timeout */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003305 else if (tv_isle(&rep->rex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003306 EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003307 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003308 t->srv_state = SV_STSHUTR;
3309 if (!(t->flags & SN_ERR_MASK))
3310 t->flags |= SN_ERR_SRVTO;
3311 if (!(t->flags & SN_FINST_MASK))
3312 t->flags |= SN_FINST_D;
3313 return 1;
3314 }
3315 /* write timeout */
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003316 else if (tv_isle(&req->wex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003317 EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003318 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003319 shutdown(t->srv_fd, SHUT_WR);
3320 /* We must ensure that the read part is still alive when switching
3321 * to shutw */
Willy Tarreauf161a342007-04-08 16:59:42 +02003322 EV_FD_SET(t->srv_fd, DIR_RD);
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003323 tv_add_ifset(&rep->rex, &now, &t->be->timeout.server);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003324 t->srv_state = SV_STSHUTW;
3325 if (!(t->flags & SN_ERR_MASK))
3326 t->flags |= SN_ERR_SRVTO;
3327 if (!(t->flags & SN_FINST_MASK))
3328 t->flags |= SN_FINST_D;
3329 return 1;
3330 }
3331
3332 /* recompute request time-outs */
3333 if (req->l == 0) {
Willy Tarreau66319382007-04-08 17:17:37 +02003334 if (EV_FD_COND_C(t->srv_fd, DIR_WR)) {
3335 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02003336 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003337 }
3338 }
3339 else { /* buffer not empty, there are still data to be transferred */
Willy Tarreau66319382007-04-08 17:17:37 +02003340 if (EV_FD_COND_S(t->srv_fd, DIR_WR)) {
3341 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003342 if (tv_add_ifset(&req->wex, &now, &t->be->timeout.server)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003343 /* FIXME: to prevent the server from expiring read timeouts during writes,
3344 * we refresh it. */
Willy Tarreaud7971282006-07-29 18:36:34 +02003345 rep->rex = req->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003346 }
3347 else
Willy Tarreaud7971282006-07-29 18:36:34 +02003348 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003349 }
3350 }
3351
3352 /* recompute response time-outs */
3353 if (rep->l == BUFSIZE) { /* no room to read more data */
Willy Tarreau66319382007-04-08 17:17:37 +02003354 if (EV_FD_COND_C(t->srv_fd, DIR_RD)) {
Willy Tarreaud7971282006-07-29 18:36:34 +02003355 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003356 }
3357 }
3358 else {
Willy Tarreau66319382007-04-08 17:17:37 +02003359 if (EV_FD_COND_S(t->srv_fd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003360 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02003361 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003362 }
3363 }
3364
3365 return 0; /* other cases change nothing */
3366 }
3367 else if (s == SV_STSHUTR) {
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003368 if (req->flags & BF_WRITE_ERROR) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003369 //EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003370 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003371 fd_delete(t->srv_fd);
3372 if (t->srv) {
3373 t->srv->cur_sess--;
3374 t->srv->failed_resp++;
Willy Tarreau51406232008-03-10 22:04:20 +01003375 if (t->srv->proxy->lbprm.server_drop_conn)
3376 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003377 }
Willy Tarreau73de9892006-11-30 11:40:23 +01003378 t->be->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003379 //close(t->srv_fd);
3380 t->srv_state = SV_STCLOSE;
3381 if (!(t->flags & SN_ERR_MASK))
3382 t->flags |= SN_ERR_SRVCL;
3383 if (!(t->flags & SN_FINST_MASK))
3384 t->flags |= SN_FINST_D;
3385 /* We used to have a free connection slot. Since we'll never use it,
3386 * we have to inform the server that it may be used by another session.
3387 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003388 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003389 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003390
3391 return 1;
3392 }
3393 else if ((c == CL_STSHUTR || c == CL_STCLOSE) && (req->l == 0)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003394 //EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003395 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003396 fd_delete(t->srv_fd);
Willy Tarreau51406232008-03-10 22:04:20 +01003397 if (t->srv) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003398 t->srv->cur_sess--;
Willy Tarreau51406232008-03-10 22:04:20 +01003399 if (t->srv->proxy->lbprm.server_drop_conn)
3400 t->srv->proxy->lbprm.server_drop_conn(t->srv);
3401 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003402 //close(t->srv_fd);
3403 t->srv_state = SV_STCLOSE;
3404 /* We used to have a free connection slot. Since we'll never use it,
3405 * we have to inform the server that it may be used by another session.
3406 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003407 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003408 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003409
3410 return 1;
3411 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003412 else if (tv_isle(&req->wex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003413 //EV_FD_CLR(t->srv_fd, DIR_WR);
Willy Tarreaufa645582007-06-03 15:59:52 +02003414 buffer_shutw(req);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003415 fd_delete(t->srv_fd);
Willy Tarreau51406232008-03-10 22:04:20 +01003416 if (t->srv) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003417 t->srv->cur_sess--;
Willy Tarreau51406232008-03-10 22:04:20 +01003418 if (t->srv->proxy->lbprm.server_drop_conn)
3419 t->srv->proxy->lbprm.server_drop_conn(t->srv);
3420 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003421 //close(t->srv_fd);
3422 t->srv_state = SV_STCLOSE;
3423 if (!(t->flags & SN_ERR_MASK))
3424 t->flags |= SN_ERR_SRVTO;
3425 if (!(t->flags & SN_FINST_MASK))
3426 t->flags |= SN_FINST_D;
3427 /* We used to have a free connection slot. Since we'll never use it,
3428 * we have to inform the server that it may be used by another session.
3429 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003430 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003431 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003432
3433 return 1;
3434 }
3435 else if (req->l == 0) {
Willy Tarreau66319382007-04-08 17:17:37 +02003436 if (EV_FD_COND_C(t->srv_fd, DIR_WR)) {
3437 /* stop writing */
Willy Tarreaud7971282006-07-29 18:36:34 +02003438 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003439 }
3440 }
3441 else { /* buffer not empty */
Willy Tarreau66319382007-04-08 17:17:37 +02003442 if (EV_FD_COND_S(t->srv_fd, DIR_WR)) {
3443 /* restart writing */
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003444 if (!tv_add_ifset(&req->wex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02003445 tv_eternity(&req->wex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003446 }
3447 }
3448 return 0;
3449 }
3450 else if (s == SV_STSHUTW) {
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003451 if (rep->flags & BF_READ_ERROR) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003452 //EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003453 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003454 fd_delete(t->srv_fd);
3455 if (t->srv) {
3456 t->srv->cur_sess--;
3457 t->srv->failed_resp++;
Willy Tarreau51406232008-03-10 22:04:20 +01003458 if (t->srv->proxy->lbprm.server_drop_conn)
3459 t->srv->proxy->lbprm.server_drop_conn(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003460 }
Willy Tarreau73de9892006-11-30 11:40:23 +01003461 t->be->failed_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003462 //close(t->srv_fd);
3463 t->srv_state = SV_STCLOSE;
3464 if (!(t->flags & SN_ERR_MASK))
3465 t->flags |= SN_ERR_SRVCL;
3466 if (!(t->flags & SN_FINST_MASK))
3467 t->flags |= SN_FINST_D;
3468 /* We used to have a free connection slot. Since we'll never use it,
3469 * we have to inform the server that it may be used by another session.
3470 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003471 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003472 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003473
3474 return 1;
3475 }
Willy Tarreau0f9f5052006-07-29 17:39:25 +02003476 else if (rep->flags & BF_READ_NULL || c == CL_STSHUTW || c == CL_STCLOSE) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003477 //EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003478 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003479 fd_delete(t->srv_fd);
Willy Tarreau51406232008-03-10 22:04:20 +01003480 if (t->srv) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003481 t->srv->cur_sess--;
Willy Tarreau51406232008-03-10 22:04:20 +01003482 if (t->srv->proxy->lbprm.server_drop_conn)
3483 t->srv->proxy->lbprm.server_drop_conn(t->srv);
3484 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003485 //close(t->srv_fd);
3486 t->srv_state = SV_STCLOSE;
3487 /* We used to have a free connection slot. Since we'll never use it,
3488 * we have to inform the server that it may be used by another session.
3489 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003490 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003491 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003492
3493 return 1;
3494 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +02003495 else if (tv_isle(&rep->rex, &now)) {
Willy Tarreauf161a342007-04-08 16:59:42 +02003496 //EV_FD_CLR(t->srv_fd, DIR_RD);
Willy Tarreaufa645582007-06-03 15:59:52 +02003497 buffer_shutr(rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003498 fd_delete(t->srv_fd);
Willy Tarreau51406232008-03-10 22:04:20 +01003499 if (t->srv) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003500 t->srv->cur_sess--;
Willy Tarreau51406232008-03-10 22:04:20 +01003501 if (t->srv->proxy->lbprm.server_drop_conn)
3502 t->srv->proxy->lbprm.server_drop_conn(t->srv);
3503 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003504 //close(t->srv_fd);
3505 t->srv_state = SV_STCLOSE;
3506 if (!(t->flags & SN_ERR_MASK))
3507 t->flags |= SN_ERR_SRVTO;
3508 if (!(t->flags & SN_FINST_MASK))
3509 t->flags |= SN_FINST_D;
3510 /* We used to have a free connection slot. Since we'll never use it,
3511 * we have to inform the server that it may be used by another session.
3512 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003513 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau96bcfd72007-04-29 10:41:56 +02003514 task_wakeup(t->srv->queue_mgt);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003515
3516 return 1;
3517 }
3518 else if (rep->l == BUFSIZE) { /* no room to read more data */
Willy Tarreau66319382007-04-08 17:17:37 +02003519 if (EV_FD_COND_C(t->srv_fd, DIR_RD)) {
Willy Tarreaud7971282006-07-29 18:36:34 +02003520 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003521 }
3522 }
3523 else {
Willy Tarreau66319382007-04-08 17:17:37 +02003524 if (EV_FD_COND_S(t->srv_fd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003525 if (!tv_add_ifset(&rep->rex, &now, &t->be->timeout.server))
Willy Tarreaud7971282006-07-29 18:36:34 +02003526 tv_eternity(&rep->rex);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003527 }
3528 }
3529 return 0;
3530 }
3531 else { /* SV_STCLOSE : nothing to do */
3532 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
3533 int len;
Willy Tarreaua15645d2007-03-18 16:22:39 +01003534 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003535 t->uniq_id, t->be->id, (unsigned short)t->cli_fd, (unsigned short)t->srv_fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003536 write(1, trash, len);
3537 }
3538 return 0;
3539 }
3540 return 0;
3541}
3542
3543
3544/*
3545 * Produces data for the session <s> depending on its source. Expects to be
3546 * called with s->cli_state == CL_STSHUTR. Right now, only statistics can be
3547 * produced. It stops by itself by unsetting the SN_SELF_GEN flag from the
3548 * session, which it uses to keep on being called when there is free space in
3549 * the buffer, of simply by letting an empty buffer upon return. It returns 1
3550 * if it changes the session state from CL_STSHUTR, otherwise 0.
3551 */
3552int produce_content(struct session *s)
3553{
Willy Tarreaubaaee002006-06-26 02:48:02 +02003554 if (s->data_source == DATA_SRC_NONE) {
3555 s->flags &= ~SN_SELF_GEN;
3556 return 1;
3557 }
3558 else if (s->data_source == DATA_SRC_STATS) {
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01003559 /* dump server statistics */
Willy Tarreau55bb8452007-10-17 18:44:57 +02003560 int ret = stats_dump_http(s, s->be->uri_auth,
3561 (s->flags & SN_STAT_FMTCSV) ? 0 : STAT_FMT_HTML);
Willy Tarreau91861262007-10-17 17:06:05 +02003562 if (ret >= 0)
3563 return ret;
3564 /* -1 indicates an error */
Willy Tarreauc0dde7a2007-01-01 21:38:07 +01003565 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003566
Willy Tarreau91861262007-10-17 17:06:05 +02003567 /* unknown data source or internal error */
3568 s->txn.status = 500;
3569 client_retnclose(s, error_message(s, HTTP_ERR_500));
3570 if (!(s->flags & SN_ERR_MASK))
3571 s->flags |= SN_ERR_PRXCOND;
3572 if (!(s->flags & SN_FINST_MASK))
3573 s->flags |= SN_FINST_R;
3574 s->flags &= ~SN_SELF_GEN;
3575 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003576}
3577
3578
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003579/* Iterate the same filter through all request headers.
3580 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003581 * Since it can manage the switch to another backend, it updates the per-proxy
3582 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003583 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003584int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01003585{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003586 char term;
3587 char *cur_ptr, *cur_end, *cur_next;
3588 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003589 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003590 struct hdr_idx_elem *cur_hdr;
3591 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01003592
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003593 last_hdr = 0;
3594
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003595 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003596 old_idx = 0;
3597
3598 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01003599 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003600 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003601 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003602 (exp->action == ACT_ALLOW ||
3603 exp->action == ACT_DENY ||
3604 exp->action == ACT_TARPIT))
3605 return 0;
3606
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003607 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003608 if (!cur_idx)
3609 break;
3610
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003611 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003612 cur_ptr = cur_next;
3613 cur_end = cur_ptr + cur_hdr->len;
3614 cur_next = cur_end + cur_hdr->cr + 1;
3615
3616 /* Now we have one header between cur_ptr and cur_end,
3617 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003618 */
3619
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003620 /* The annoying part is that pattern matching needs
3621 * that we modify the contents to null-terminate all
3622 * strings before testing them.
3623 */
3624
3625 term = *cur_end;
3626 *cur_end = '\0';
3627
3628 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3629 switch (exp->action) {
3630 case ACT_SETBE:
3631 /* It is not possible to jump a second time.
3632 * FIXME: should we return an HTTP/500 here so that
3633 * the admin knows there's a problem ?
3634 */
3635 if (t->be != t->fe)
3636 break;
3637
3638 /* Swithing Proxy */
3639 t->be = (struct proxy *) exp->replace;
3640
3641 /* right now, the backend switch is not too much complicated
3642 * because we have associated req_cap and rsp_cap to the
3643 * frontend, and the beconn will be updated later.
3644 */
3645
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003646 t->rep->rto = t->req->wto = t->be->timeout.server;
3647 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003648 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003649 last_hdr = 1;
3650 break;
3651
3652 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003653 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003654 last_hdr = 1;
3655 break;
3656
3657 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003658 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003659 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003660 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003661 break;
3662
3663 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01003664 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003665 last_hdr = 1;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003666 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003667 break;
3668
3669 case ACT_REPLACE:
3670 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3671 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
3672 /* FIXME: if the user adds a newline in the replacement, the
3673 * index will not be recalculated for now, and the new line
3674 * will not be counted as a new header.
3675 */
3676
3677 cur_end += delta;
3678 cur_next += delta;
3679 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003680 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003681 break;
3682
3683 case ACT_REMOVE:
3684 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
3685 cur_next += delta;
3686
3687 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003688 txn->req.eoh += delta;
3689 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
3690 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003691 cur_hdr->len = 0;
3692 cur_end = NULL; /* null-term has been rewritten */
3693 break;
3694
3695 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003696 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003697 if (cur_end)
3698 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003699
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003700 /* keep the link from this header to next one in case of later
3701 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003702 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003703 old_idx = cur_idx;
3704 }
3705 return 0;
3706}
3707
3708
3709/* Apply the filter to the request line.
3710 * Returns 0 if nothing has been done, 1 if the filter has been applied,
3711 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01003712 * Since it can manage the switch to another backend, it updates the per-proxy
3713 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003714 */
3715int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
3716{
3717 char term;
3718 char *cur_ptr, *cur_end;
3719 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003720 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003721 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003722
Willy Tarreau58f10d72006-12-04 02:26:12 +01003723
Willy Tarreau3d300592007-03-18 18:34:41 +01003724 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003725 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01003726 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003727 (exp->action == ACT_ALLOW ||
3728 exp->action == ACT_DENY ||
3729 exp->action == ACT_TARPIT))
3730 return 0;
3731 else if (exp->action == ACT_REMOVE)
3732 return 0;
3733
3734 done = 0;
3735
Willy Tarreau9cdde232007-05-02 20:58:19 +02003736 cur_ptr = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003737 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003738
3739 /* Now we have the request line between cur_ptr and cur_end */
3740
3741 /* The annoying part is that pattern matching needs
3742 * that we modify the contents to null-terminate all
3743 * strings before testing them.
3744 */
3745
3746 term = *cur_end;
3747 *cur_end = '\0';
3748
3749 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
3750 switch (exp->action) {
3751 case ACT_SETBE:
3752 /* It is not possible to jump a second time.
3753 * FIXME: should we return an HTTP/500 here so that
3754 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01003755 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003756 if (t->be != t->fe)
3757 break;
3758
3759 /* Swithing Proxy */
3760 t->be = (struct proxy *) exp->replace;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003761
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003762 /* right now, the backend switch is not too much complicated
3763 * because we have associated req_cap and rsp_cap to the
3764 * frontend, and the beconn will be updated later.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003765 */
3766
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003767 t->rep->rto = t->req->wto = t->be->timeout.server;
3768 t->req->cto = t->be->timeout.connect;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003769 t->conn_retries = t->be->conn_retries;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003770 done = 1;
3771 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003772
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003773 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01003774 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003775 done = 1;
3776 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003777
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003778 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01003779 txn->flags |= TX_CLDENY;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003780 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003781 done = 1;
3782 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003783
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003784 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01003785 txn->flags |= TX_CLTARPIT;
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003786 t->be->denied_req++;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003787 done = 1;
3788 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01003789
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003790 case ACT_REPLACE:
3791 *cur_end = term; /* restore the string terminator */
3792 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
3793 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
3794 /* FIXME: if the user adds a newline in the replacement, the
3795 * index will not be recalculated for now, and the new line
3796 * will not be counted as a new header.
3797 */
Willy Tarreaua496b602006-12-17 23:15:24 +01003798
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003799 txn->req.eoh += delta;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003800 cur_end += delta;
Willy Tarreaua496b602006-12-17 23:15:24 +01003801
Willy Tarreau9cdde232007-05-02 20:58:19 +02003802 txn->req.sol = req->data + txn->req.som; /* should be equal to txn->sol */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003803 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003804 HTTP_MSG_RQMETH,
3805 cur_ptr, cur_end + 1,
3806 NULL, NULL);
3807 if (unlikely(!cur_end))
3808 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01003809
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003810 /* we have a full request and we know that we have either a CR
3811 * or an LF at <ptr>.
3812 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003813 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
3814 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003815 /* there is no point trying this regex on headers */
3816 return 1;
3817 }
3818 }
3819 *cur_end = term; /* restore the string terminator */
3820 return done;
3821}
Willy Tarreau97de6242006-12-27 17:18:38 +01003822
Willy Tarreau58f10d72006-12-04 02:26:12 +01003823
Willy Tarreau58f10d72006-12-04 02:26:12 +01003824
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003825/*
3826 * Apply all the req filters <exp> to all headers in buffer <req> of session <t>.
3827 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01003828 * unparsable request. Since it can manage the switch to another backend, it
3829 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003830 */
3831int apply_filters_to_request(struct session *t, struct buffer *req, struct hdr_exp *exp)
3832{
Willy Tarreau3d300592007-03-18 18:34:41 +01003833 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003834 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01003835 while (exp && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003836 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003837
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003838 /*
3839 * The interleaving of transformations and verdicts
3840 * makes it difficult to decide to continue or stop
3841 * the evaluation.
3842 */
3843
Willy Tarreau3d300592007-03-18 18:34:41 +01003844 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003845 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
3846 exp->action == ACT_TARPIT || exp->action == ACT_PASS)) {
3847 exp = exp->next;
3848 continue;
3849 }
3850
3851 /* Apply the filter to the request line. */
3852 ret = apply_filter_to_req_line(t, req, exp);
3853 if (unlikely(ret < 0))
3854 return -1;
3855
3856 if (likely(ret == 0)) {
3857 /* The filter did not match the request, it can be
3858 * iterated through all headers.
3859 */
3860 apply_filter_to_req_headers(t, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003861 }
3862 exp = exp->next;
3863 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003864 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003865}
3866
3867
Willy Tarreaua15645d2007-03-18 16:22:39 +01003868
Willy Tarreau58f10d72006-12-04 02:26:12 +01003869/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01003870 * Manage client-side cookie. It can impact performance by about 2% so it is
3871 * desirable to call it only when needed.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003872 */
3873void manage_client_side_cookies(struct session *t, struct buffer *req)
3874{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003875 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003876 char *p1, *p2, *p3, *p4;
3877 char *del_colon, *del_cookie, *colon;
3878 int app_cookies;
3879
3880 appsess *asession_temp = NULL;
3881 appsess local_asession;
3882
3883 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01003884 int cur_idx, old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003885
Willy Tarreau2a324282006-12-05 00:05:46 +01003886 /* Iterate through the headers.
Willy Tarreau58f10d72006-12-04 02:26:12 +01003887 * we start with the start line.
3888 */
Willy Tarreau83969f42007-01-22 08:55:47 +01003889 old_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003890 cur_next = req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003891
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003892 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003893 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003894 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003895
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01003896 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau58f10d72006-12-04 02:26:12 +01003897 cur_ptr = cur_next;
3898 cur_end = cur_ptr + cur_hdr->len;
3899 cur_next = cur_end + cur_hdr->cr + 1;
3900
3901 /* We have one full header between cur_ptr and cur_end, and the
3902 * next header starts at cur_next. We're only interested in
3903 * "Cookie:" headers.
3904 */
3905
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003906 val = http_header_match2(cur_ptr, cur_end, "Cookie", 6);
3907 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003908 old_idx = cur_idx;
3909 continue;
3910 }
3911
3912 /* Now look for cookies. Conforming to RFC2109, we have to support
3913 * attributes whose name begin with a '$', and associate them with
3914 * the right cookie, if we want to delete this cookie.
3915 * So there are 3 cases for each cookie read :
3916 * 1) it's a special attribute, beginning with a '$' : ignore it.
3917 * 2) it's a server id cookie that we *MAY* want to delete : save
3918 * some pointers on it (last semi-colon, beginning of cookie...)
3919 * 3) it's an application cookie : we *MAY* have to delete a previous
3920 * "special" cookie.
3921 * At the end of loop, if a "special" cookie remains, we may have to
3922 * remove it. If no application cookie persists in the header, we
3923 * *MUST* delete it
3924 */
3925
Willy Tarreauaa9dce32007-03-18 23:50:16 +01003926 colon = p1 = cur_ptr + val; /* first non-space char after 'Cookie:' */
Willy Tarreau58f10d72006-12-04 02:26:12 +01003927
Willy Tarreau58f10d72006-12-04 02:26:12 +01003928 /* del_cookie == NULL => nothing to be deleted */
3929 del_colon = del_cookie = NULL;
3930 app_cookies = 0;
3931
3932 while (p1 < cur_end) {
3933 /* skip spaces and colons, but keep an eye on these ones */
3934 while (p1 < cur_end) {
3935 if (*p1 == ';' || *p1 == ',')
3936 colon = p1;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003937 else if (!isspace((unsigned char)*p1))
Willy Tarreau58f10d72006-12-04 02:26:12 +01003938 break;
3939 p1++;
3940 }
3941
3942 if (p1 == cur_end)
3943 break;
3944
3945 /* p1 is at the beginning of the cookie name */
3946 p2 = p1;
3947 while (p2 < cur_end && *p2 != '=')
3948 p2++;
3949
3950 if (p2 == cur_end)
3951 break;
3952
3953 p3 = p2 + 1; /* skips the '=' sign */
3954 if (p3 == cur_end)
3955 break;
3956
3957 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02003958 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';' && *p4 != ',')
Willy Tarreau58f10d72006-12-04 02:26:12 +01003959 p4++;
3960
3961 /* here, we have the cookie name between p1 and p2,
3962 * and its value between p3 and p4.
3963 * we can process it :
3964 *
3965 * Cookie: NAME=VALUE;
3966 * | || || |
3967 * | || || +--> p4
3968 * | || |+-------> p3
3969 * | || +--------> p2
3970 * | |+------------> p1
3971 * | +-------------> colon
3972 * +--------------------> cur_ptr
3973 */
3974
3975 if (*p1 == '$') {
3976 /* skip this one */
3977 }
3978 else {
3979 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003980 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003981 txn->cli_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003982 (p4 - p1 >= t->fe->capture_namelen) &&
3983 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003984 int log_len = p4 - p1;
3985
Willy Tarreau086b3b42007-05-13 21:45:51 +02003986 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003987 Alert("HTTP logging : out of memory.\n");
3988 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003989 if (log_len > t->fe->capture_len)
3990 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01003991 memcpy(txn->cli_cookie, p1, log_len);
3992 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003993 }
3994 }
3995
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003996 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
3997 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01003998 /* Cool... it's the right one */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02003999 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004000 char *delim;
4001
4002 /* if we're in cookie prefix mode, we'll search the delimitor so that we
4003 * have the server ID betweek p3 and delim, and the original cookie between
4004 * delim+1 and p4. Otherwise, delim==p4 :
4005 *
4006 * Cookie: NAME=SRV~VALUE;
4007 * | || || | |
4008 * | || || | +--> p4
4009 * | || || +--------> delim
4010 * | || |+-----------> p3
4011 * | || +------------> p2
4012 * | |+----------------> p1
4013 * | +-----------------> colon
4014 * +------------------------> cur_ptr
4015 */
4016
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004017 if (t->be->options & PR_O_COOK_PFX) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004018 for (delim = p3; delim < p4; delim++)
4019 if (*delim == COOKIE_DELIM)
4020 break;
4021 }
4022 else
4023 delim = p4;
4024
4025
4026 /* Here, we'll look for the first running server which supports the cookie.
4027 * This allows to share a same cookie between several servers, for example
4028 * to dedicate backup servers to specific servers only.
4029 * However, to prevent clients from sticking to cookie-less backup server
4030 * when they have incidentely learned an empty cookie, we simply ignore
4031 * empty cookies and mark them as invalid.
4032 */
4033 if (delim == p3)
4034 srv = NULL;
4035
4036 while (srv) {
Willy Tarreau92f2ab12007-02-02 22:14:47 +01004037 if (srv->cookie && (srv->cklen == delim - p3) &&
4038 !memcmp(p3, srv->cookie, delim - p3)) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004039 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004040 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004041 txn->flags &= ~TX_CK_MASK;
4042 txn->flags |= TX_CK_VALID;
4043 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004044 t->srv = srv;
4045 break;
4046 } else {
4047 /* we found a server, but it's down */
Willy Tarreau3d300592007-03-18 18:34:41 +01004048 txn->flags &= ~TX_CK_MASK;
4049 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004050 }
4051 }
4052 srv = srv->next;
4053 }
4054
Willy Tarreau3d300592007-03-18 18:34:41 +01004055 if (!srv && !(txn->flags & TX_CK_DOWN)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004056 /* no server matched this cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +01004057 txn->flags &= ~TX_CK_MASK;
4058 txn->flags |= TX_CK_INVALID;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004059 }
4060
4061 /* depending on the cookie mode, we may have to either :
4062 * - delete the complete cookie if we're in insert+indirect mode, so that
4063 * the server never sees it ;
4064 * - remove the server id from the cookie value, and tag the cookie as an
4065 * application cookie so that it does not get accidentely removed later,
4066 * if we're in cookie prefix mode
4067 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004068 if ((t->be->options & PR_O_COOK_PFX) && (delim != p4)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004069 int delta; /* negative */
4070
4071 delta = buffer_replace2(req, p3, delim + 1, NULL, 0);
4072 p4 += delta;
4073 cur_end += delta;
4074 cur_next += delta;
4075 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004076 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004077
4078 del_cookie = del_colon = NULL;
4079 app_cookies++; /* protect the header from deletion */
4080 }
4081 else if (del_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004082 (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 +01004083 del_cookie = p1;
4084 del_colon = colon;
4085 }
4086 } else {
4087 /* now we know that we must keep this cookie since it's
4088 * not ours. But if we wanted to delete our cookie
4089 * earlier, we cannot remove the complete header, but we
4090 * can remove the previous block itself.
4091 */
4092 app_cookies++;
4093
4094 if (del_cookie != NULL) {
4095 int delta; /* negative */
4096
4097 delta = buffer_replace2(req, del_cookie, p1, NULL, 0);
4098 p4 += delta;
4099 cur_end += delta;
4100 cur_next += delta;
4101 cur_hdr->len += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004102 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004103 del_cookie = del_colon = NULL;
4104 }
4105 }
4106
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004107 if ((t->be->appsession_name != NULL) &&
4108 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004109 /* first, let's see if the cookie is our appcookie*/
4110
4111 /* Cool... it's the right one */
4112
4113 asession_temp = &local_asession;
4114
Willy Tarreau63963c62007-05-13 21:29:55 +02004115 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004116 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
4117 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
4118 return;
4119 }
4120
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004121 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
4122 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004123 asession_temp->serverid = NULL;
Willy Tarreau51041c72007-09-09 21:56:53 +02004124
Willy Tarreau58f10d72006-12-04 02:26:12 +01004125 /* only do insert, if lookup fails */
Willy Tarreau51041c72007-09-09 21:56:53 +02004126 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4127 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004128 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004129 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004130 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004131 Alert("Not enough memory process_cli():asession:calloc().\n");
4132 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
4133 return;
4134 }
4135
4136 asession_temp->sessid = local_asession.sessid;
4137 asession_temp->serverid = local_asession.serverid;
Willy Tarreau51041c72007-09-09 21:56:53 +02004138 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004139 } else {
4140 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004141 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004142 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004143 if (asession_temp->serverid == NULL) {
4144 Alert("Found Application Session without matching server.\n");
4145 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004146 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004147 while (srv) {
4148 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004149 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004150 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004151 txn->flags &= ~TX_CK_MASK;
4152 txn->flags |= TX_CK_VALID;
4153 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004154 t->srv = srv;
4155 break;
4156 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01004157 txn->flags &= ~TX_CK_MASK;
4158 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004159 }
4160 }
4161 srv = srv->next;
4162 }/* end while(srv) */
4163 }/* end else if server == NULL */
4164
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004165 tv_add(&asession_temp->expire, &now, &t->be->timeout.appsession);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004166 }/* end if ((t->proxy->appsession_name != NULL) ... */
4167 }
4168
4169 /* we'll have to look for another cookie ... */
4170 p1 = p4;
4171 } /* while (p1 < cur_end) */
4172
4173 /* There's no more cookie on this line.
4174 * We may have marked the last one(s) for deletion.
4175 * We must do this now in two ways :
4176 * - if there is no app cookie, we simply delete the header ;
4177 * - if there are app cookies, we must delete the end of the
4178 * string properly, including the colon/semi-colon before
4179 * the cookie name.
4180 */
4181 if (del_cookie != NULL) {
4182 int delta;
4183 if (app_cookies) {
4184 delta = buffer_replace2(req, del_colon, cur_end, NULL, 0);
4185 cur_end = del_colon;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004186 cur_hdr->len += delta;
4187 } else {
4188 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004189
4190 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004191 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4192 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004193 cur_hdr->len = 0;
4194 }
Willy Tarreau45e73e32006-12-17 00:05:15 +01004195 cur_next += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004196 txn->req.eoh += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004197 }
4198
4199 /* keep the link from this header to next one */
4200 old_idx = cur_idx;
4201 } /* end of cookie processing on this header */
4202}
4203
4204
Willy Tarreaua15645d2007-03-18 16:22:39 +01004205/* Iterate the same filter through all response headers contained in <rtr>.
4206 * Returns 1 if this filter can be stopped upon return, otherwise 0.
4207 */
4208int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4209{
4210 char term;
4211 char *cur_ptr, *cur_end, *cur_next;
4212 int cur_idx, old_idx, last_hdr;
4213 struct http_txn *txn = &t->txn;
4214 struct hdr_idx_elem *cur_hdr;
4215 int len, delta;
4216
4217 last_hdr = 0;
4218
4219 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4220 old_idx = 0;
4221
4222 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004223 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004224 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004225 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004226 (exp->action == ACT_ALLOW ||
4227 exp->action == ACT_DENY))
4228 return 0;
4229
4230 cur_idx = txn->hdr_idx.v[old_idx].next;
4231 if (!cur_idx)
4232 break;
4233
4234 cur_hdr = &txn->hdr_idx.v[cur_idx];
4235 cur_ptr = cur_next;
4236 cur_end = cur_ptr + cur_hdr->len;
4237 cur_next = cur_end + cur_hdr->cr + 1;
4238
4239 /* Now we have one header between cur_ptr and cur_end,
4240 * and the next header starts at cur_next.
4241 */
4242
4243 /* The annoying part is that pattern matching needs
4244 * that we modify the contents to null-terminate all
4245 * strings before testing them.
4246 */
4247
4248 term = *cur_end;
4249 *cur_end = '\0';
4250
4251 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4252 switch (exp->action) {
4253 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004254 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004255 last_hdr = 1;
4256 break;
4257
4258 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004259 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004260 last_hdr = 1;
4261 break;
4262
4263 case ACT_REPLACE:
4264 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4265 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
4266 /* FIXME: if the user adds a newline in the replacement, the
4267 * index will not be recalculated for now, and the new line
4268 * will not be counted as a new header.
4269 */
4270
4271 cur_end += delta;
4272 cur_next += delta;
4273 cur_hdr->len += delta;
4274 txn->rsp.eoh += delta;
4275 break;
4276
4277 case ACT_REMOVE:
4278 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
4279 cur_next += delta;
4280
4281 /* FIXME: this should be a separate function */
4282 txn->rsp.eoh += delta;
4283 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4284 txn->hdr_idx.used--;
4285 cur_hdr->len = 0;
4286 cur_end = NULL; /* null-term has been rewritten */
4287 break;
4288
4289 }
4290 }
4291 if (cur_end)
4292 *cur_end = term; /* restore the string terminator */
4293
4294 /* keep the link from this header to next one in case of later
4295 * removal of next header.
4296 */
4297 old_idx = cur_idx;
4298 }
4299 return 0;
4300}
4301
4302
4303/* Apply the filter to the status line in the response buffer <rtr>.
4304 * Returns 0 if nothing has been done, 1 if the filter has been applied,
4305 * or -1 if a replacement resulted in an invalid status line.
4306 */
4307int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4308{
4309 char term;
4310 char *cur_ptr, *cur_end;
4311 int done;
4312 struct http_txn *txn = &t->txn;
4313 int len, delta;
4314
4315
Willy Tarreau3d300592007-03-18 18:34:41 +01004316 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004317 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01004318 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004319 (exp->action == ACT_ALLOW ||
4320 exp->action == ACT_DENY))
4321 return 0;
4322 else if (exp->action == ACT_REMOVE)
4323 return 0;
4324
4325 done = 0;
4326
Willy Tarreau9cdde232007-05-02 20:58:19 +02004327 cur_ptr = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004328 cur_end = cur_ptr + txn->rsp.sl.rq.l;
4329
4330 /* Now we have the status line between cur_ptr and cur_end */
4331
4332 /* The annoying part is that pattern matching needs
4333 * that we modify the contents to null-terminate all
4334 * strings before testing them.
4335 */
4336
4337 term = *cur_end;
4338 *cur_end = '\0';
4339
4340 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
4341 switch (exp->action) {
4342 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01004343 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004344 done = 1;
4345 break;
4346
4347 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01004348 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004349 done = 1;
4350 break;
4351
4352 case ACT_REPLACE:
4353 *cur_end = term; /* restore the string terminator */
4354 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
4355 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
4356 /* FIXME: if the user adds a newline in the replacement, the
4357 * index will not be recalculated for now, and the new line
4358 * will not be counted as a new header.
4359 */
4360
4361 txn->rsp.eoh += delta;
4362 cur_end += delta;
4363
Willy Tarreau9cdde232007-05-02 20:58:19 +02004364 txn->rsp.sol = rtr->data + txn->rsp.som; /* should be equal to txn->sol */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004365 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02004366 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01004367 cur_ptr, cur_end + 1,
4368 NULL, NULL);
4369 if (unlikely(!cur_end))
4370 return -1;
4371
4372 /* we have a full respnse and we know that we have either a CR
4373 * or an LF at <ptr>.
4374 */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004375 txn->status = strl2ui(rtr->data + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004376 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.rq.l, *cur_end == '\r');
4377 /* there is no point trying this regex on headers */
4378 return 1;
4379 }
4380 }
4381 *cur_end = term; /* restore the string terminator */
4382 return done;
4383}
4384
4385
4386
4387/*
4388 * Apply all the resp filters <exp> to all headers in buffer <rtr> of session <t>.
4389 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
4390 * unparsable response.
4391 */
4392int apply_filters_to_response(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
4393{
Willy Tarreau3d300592007-03-18 18:34:41 +01004394 struct http_txn *txn = &t->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004395 /* iterate through the filters in the outer loop */
Willy Tarreau3d300592007-03-18 18:34:41 +01004396 while (exp && !(txn->flags & TX_SVDENY)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004397 int ret;
4398
4399 /*
4400 * The interleaving of transformations and verdicts
4401 * makes it difficult to decide to continue or stop
4402 * the evaluation.
4403 */
4404
Willy Tarreau3d300592007-03-18 18:34:41 +01004405 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01004406 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
4407 exp->action == ACT_PASS)) {
4408 exp = exp->next;
4409 continue;
4410 }
4411
4412 /* Apply the filter to the status line. */
4413 ret = apply_filter_to_sts_line(t, rtr, exp);
4414 if (unlikely(ret < 0))
4415 return -1;
4416
4417 if (likely(ret == 0)) {
4418 /* The filter did not match the response, it can be
4419 * iterated through all headers.
4420 */
4421 apply_filter_to_resp_headers(t, rtr, exp);
4422 }
4423 exp = exp->next;
4424 }
4425 return 0;
4426}
4427
4428
4429
4430/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01004431 * Manage server-side cookies. It can impact performance by about 2% so it is
4432 * desirable to call it only when needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004433 */
4434void manage_server_side_cookies(struct session *t, struct buffer *rtr)
4435{
4436 struct http_txn *txn = &t->txn;
4437 char *p1, *p2, *p3, *p4;
4438
4439 appsess *asession_temp = NULL;
4440 appsess local_asession;
4441
4442 char *cur_ptr, *cur_end, *cur_next;
4443 int cur_idx, old_idx, delta;
4444
Willy Tarreaua15645d2007-03-18 16:22:39 +01004445 /* Iterate through the headers.
4446 * we start with the start line.
4447 */
4448 old_idx = 0;
4449 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4450
4451 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
4452 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004453 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004454
4455 cur_hdr = &txn->hdr_idx.v[cur_idx];
4456 cur_ptr = cur_next;
4457 cur_end = cur_ptr + cur_hdr->len;
4458 cur_next = cur_end + cur_hdr->cr + 1;
4459
4460 /* We have one full header between cur_ptr and cur_end, and the
4461 * next header starts at cur_next. We're only interested in
4462 * "Cookie:" headers.
4463 */
4464
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004465 val = http_header_match2(cur_ptr, cur_end, "Set-Cookie", 10);
4466 if (!val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004467 old_idx = cur_idx;
4468 continue;
4469 }
4470
4471 /* OK, right now we know we have a set-cookie at cur_ptr */
Willy Tarreau3d300592007-03-18 18:34:41 +01004472 txn->flags |= TX_SCK_ANY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004473
4474
4475 /* maybe we only wanted to see if there was a set-cookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004476 if (t->be->cookie_name == NULL &&
4477 t->be->appsession_name == NULL &&
4478 t->be->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01004479 return;
4480
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004481 p1 = cur_ptr + val; /* first non-space char after 'Set-Cookie:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004482
4483 while (p1 < cur_end) { /* in fact, we'll break after the first cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004484 if (p1 == cur_end || *p1 == ';') /* end of cookie */
4485 break;
4486
4487 /* p1 is at the beginning of the cookie name */
4488 p2 = p1;
4489
4490 while (p2 < cur_end && *p2 != '=' && *p2 != ';')
4491 p2++;
4492
4493 if (p2 == cur_end || *p2 == ';') /* next cookie */
4494 break;
4495
4496 p3 = p2 + 1; /* skip the '=' sign */
4497 if (p3 == cur_end)
4498 break;
4499
4500 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004501 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';')
Willy Tarreaua15645d2007-03-18 16:22:39 +01004502 p4++;
4503
4504 /* here, we have the cookie name between p1 and p2,
4505 * and its value between p3 and p4.
4506 * we can process it.
4507 */
4508
4509 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004510 if (t->be->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004511 txn->srv_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004512 (p4 - p1 >= t->be->capture_namelen) &&
4513 memcmp(p1, t->be->capture_name, t->be->capture_namelen) == 0) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004514 int log_len = p4 - p1;
4515
Willy Tarreau086b3b42007-05-13 21:45:51 +02004516 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004517 Alert("HTTP logging : out of memory.\n");
4518 }
4519
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004520 if (log_len > t->be->capture_len)
4521 log_len = t->be->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004522 memcpy(txn->srv_cookie, p1, log_len);
4523 txn->srv_cookie[log_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004524 }
4525
4526 /* now check if we need to process it for persistence */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004527 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
4528 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004529 /* Cool... it's the right one */
Willy Tarreau3d300592007-03-18 18:34:41 +01004530 txn->flags |= TX_SCK_SEEN;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004531
4532 /* If the cookie is in insert mode on a known server, we'll delete
4533 * this occurrence because we'll insert another one later.
4534 * We'll delete it too if the "indirect" option is set and we're in
4535 * a direct access. */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004536 if (((t->srv) && (t->be->options & PR_O_COOK_INS)) ||
4537 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004538 /* this header must be deleted */
4539 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
4540 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
4541 txn->hdr_idx.used--;
4542 cur_hdr->len = 0;
4543 cur_next += delta;
4544 txn->rsp.eoh += delta;
4545
Willy Tarreau3d300592007-03-18 18:34:41 +01004546 txn->flags |= TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004547 }
4548 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004549 (t->be->options & PR_O_COOK_RW)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004550 /* replace bytes p3->p4 with the cookie name associated
4551 * with this server since we know it.
4552 */
4553 delta = buffer_replace2(rtr, p3, p4, t->srv->cookie, t->srv->cklen);
4554 cur_hdr->len += delta;
4555 cur_next += delta;
4556 txn->rsp.eoh += delta;
4557
Willy Tarreau3d300592007-03-18 18:34:41 +01004558 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004559 }
4560 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004561 (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004562 /* insert the cookie name associated with this server
4563 * before existing cookie, and insert a delimitor between them..
4564 */
4565 delta = buffer_replace2(rtr, p3, p3, t->srv->cookie, t->srv->cklen + 1);
4566 cur_hdr->len += delta;
4567 cur_next += delta;
4568 txn->rsp.eoh += delta;
4569
4570 p3[t->srv->cklen] = COOKIE_DELIM;
Willy Tarreau3d300592007-03-18 18:34:41 +01004571 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004572 }
4573 }
4574 /* next, let's see if the cookie is our appcookie */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004575 else if ((t->be->appsession_name != NULL) &&
4576 (memcmp(p1, t->be->appsession_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004577
4578 /* Cool... it's the right one */
4579
4580 size_t server_id_len = strlen(t->srv->id) + 1;
4581 asession_temp = &local_asession;
4582
Willy Tarreau63963c62007-05-13 21:29:55 +02004583 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004584 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
4585 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
4586 return;
4587 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004588 memcpy(asession_temp->sessid, p3, t->be->appsession_len);
4589 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004590 asession_temp->serverid = NULL;
4591
4592 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01004593 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4594 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004595 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004596 Alert("Not enough Memory process_srv():asession:calloc().\n");
4597 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
4598 return;
4599 }
4600 asession_temp->sessid = local_asession.sessid;
4601 asession_temp->serverid = local_asession.serverid;
Willy Tarreau51041c72007-09-09 21:56:53 +02004602 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
4603 } else {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004604 /* free wasted memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004605 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau51041c72007-09-09 21:56:53 +02004606 }
4607
Willy Tarreaua15645d2007-03-18 16:22:39 +01004608 if (asession_temp->serverid == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004609 if ((asession_temp->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01004610 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
4611 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
4612 return;
4613 }
4614 asession_temp->serverid[0] = '\0';
4615 }
4616
4617 if (asession_temp->serverid[0] == '\0')
4618 memcpy(asession_temp->serverid, t->srv->id, server_id_len);
4619
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004620 tv_add(&asession_temp->expire, &now, &t->be->timeout.appsession);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004621
4622#if defined(DEBUG_HASH)
Willy Tarreau51041c72007-09-09 21:56:53 +02004623 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreaua15645d2007-03-18 16:22:39 +01004624#endif
4625 }/* end if ((t->proxy->appsession_name != NULL) ... */
4626 break; /* we don't want to loop again since there cannot be another cookie on the same line */
4627 } /* we're now at the end of the cookie value */
4628
4629 /* keep the link from this header to next one */
4630 old_idx = cur_idx;
4631 } /* end of cookie processing on this header */
4632}
4633
4634
4635
4636/*
4637 * Check if response is cacheable or not. Updates t->flags.
4638 */
4639void check_response_for_cacheability(struct session *t, struct buffer *rtr)
4640{
4641 struct http_txn *txn = &t->txn;
4642 char *p1, *p2;
4643
4644 char *cur_ptr, *cur_end, *cur_next;
4645 int cur_idx;
4646
Willy Tarreau5df51872007-11-25 16:20:08 +01004647 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004648 return;
4649
4650 /* Iterate through the headers.
4651 * we start with the start line.
4652 */
4653 cur_idx = 0;
4654 cur_next = rtr->data + txn->rsp.som + hdr_idx_first_pos(&txn->hdr_idx);
4655
4656 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
4657 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004658 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004659
4660 cur_hdr = &txn->hdr_idx.v[cur_idx];
4661 cur_ptr = cur_next;
4662 cur_end = cur_ptr + cur_hdr->len;
4663 cur_next = cur_end + cur_hdr->cr + 1;
4664
4665 /* We have one full header between cur_ptr and cur_end, and the
4666 * next header starts at cur_next. We're only interested in
4667 * "Cookie:" headers.
4668 */
4669
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004670 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
4671 if (val) {
4672 if ((cur_end - (cur_ptr + val) >= 8) &&
4673 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
4674 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4675 return;
4676 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01004677 }
4678
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004679 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
4680 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01004681 continue;
4682
4683 /* OK, right now we know we have a cache-control header at cur_ptr */
4684
Willy Tarreauaa9dce32007-03-18 23:50:16 +01004685 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004686
4687 if (p1 >= cur_end) /* no more info */
4688 continue;
4689
4690 /* p1 is at the beginning of the value */
4691 p2 = p1;
4692
Willy Tarreau8f8e6452007-06-17 21:51:38 +02004693 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01004694 p2++;
4695
4696 /* we have a complete value between p1 and p2 */
4697 if (p2 < cur_end && *p2 == '=') {
4698 /* we have something of the form no-cache="set-cookie" */
4699 if ((cur_end - p1 >= 21) &&
4700 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
4701 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01004702 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004703 continue;
4704 }
4705
4706 /* OK, so we know that either p2 points to the end of string or to a comma */
4707 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
4708 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
4709 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
4710 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004711 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004712 return;
4713 }
4714
4715 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01004716 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004717 continue;
4718 }
4719 }
4720}
4721
4722
Willy Tarreau58f10d72006-12-04 02:26:12 +01004723/*
4724 * Try to retrieve a known appsession in the URI, then the associated server.
4725 * If the server is found, it's assigned to the session.
4726 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004727void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004728{
Willy Tarreau3d300592007-03-18 18:34:41 +01004729 struct http_txn *txn = &t->txn;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004730 appsess *asession_temp = NULL;
4731 appsess local_asession;
4732 char *request_line;
4733
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004734 if (t->be->appsession_name == NULL ||
Willy Tarreaub326fcc2007-03-03 13:54:32 +01004735 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST) ||
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004736 (request_line = memchr(begin, ';', len)) == NULL ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004737 ((1 + t->be->appsession_name_len + 1 + t->be->appsession_len) > (begin + len - request_line)))
Willy Tarreau58f10d72006-12-04 02:26:12 +01004738 return;
4739
4740 /* skip ';' */
4741 request_line++;
4742
4743 /* look if we have a jsessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004744 if (strncasecmp(request_line, t->be->appsession_name, t->be->appsession_name_len) != 0)
Willy Tarreau58f10d72006-12-04 02:26:12 +01004745 return;
4746
4747 /* skip jsessionid= */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004748 request_line += t->be->appsession_name_len + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004749
4750 /* First try if we already have an appsession */
4751 asession_temp = &local_asession;
4752
Willy Tarreau63963c62007-05-13 21:29:55 +02004753 if ((asession_temp->sessid = pool_alloc2(apools.sessid)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004754 Alert("Not enough memory process_cli():asession_temp->sessid:calloc().\n");
4755 send_log(t->be, LOG_ALERT, "Not enough Memory process_cli():asession_temp->sessid:calloc().\n");
4756 return;
4757 }
4758
4759 /* Copy the sessionid */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004760 memcpy(asession_temp->sessid, request_line, t->be->appsession_len);
4761 asession_temp->sessid[t->be->appsession_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004762 asession_temp->serverid = NULL;
4763
4764 /* only do insert, if lookup fails */
Ryan Warnick6d0b1fa2008-02-17 11:24:35 +01004765 asession_temp = appsession_hash_lookup(&(t->be->htbl_proxy), asession_temp->sessid);
4766 if (asession_temp == NULL) {
Willy Tarreau63963c62007-05-13 21:29:55 +02004767 if ((asession_temp = pool_alloc2(pool2_appsess)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004768 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004769 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004770 Alert("Not enough memory process_cli():asession:calloc().\n");
4771 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession:calloc().\n");
4772 return;
4773 }
4774 asession_temp->sessid = local_asession.sessid;
4775 asession_temp->serverid = local_asession.serverid;
Willy Tarreau51041c72007-09-09 21:56:53 +02004776 appsession_hash_insert(&(t->be->htbl_proxy), asession_temp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004777 }
4778 else {
4779 /* free previously allocated memory */
Willy Tarreau63963c62007-05-13 21:29:55 +02004780 pool_free2(apools.sessid, local_asession.sessid);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004781 }
Willy Tarreau51041c72007-09-09 21:56:53 +02004782
Willy Tarreaud7c30f92007-12-03 01:38:36 +01004783 tv_add(&asession_temp->expire, &now, &t->be->timeout.appsession);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004784 asession_temp->request_count++;
Willy Tarreau51041c72007-09-09 21:56:53 +02004785
Willy Tarreau58f10d72006-12-04 02:26:12 +01004786#if defined(DEBUG_HASH)
Willy Tarreau51041c72007-09-09 21:56:53 +02004787 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01004788#endif
4789 if (asession_temp->serverid == NULL) {
4790 Alert("Found Application Session without matching server.\n");
4791 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004792 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004793 while (srv) {
4794 if (strcmp(srv->id, asession_temp->serverid) == 0) {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004795 if (srv->state & SRV_RUNNING || t->be->options & PR_O_PERSIST) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01004796 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01004797 txn->flags &= ~TX_CK_MASK;
4798 txn->flags |= TX_CK_VALID;
4799 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004800 t->srv = srv;
4801 break;
4802 } else {
Willy Tarreau3d300592007-03-18 18:34:41 +01004803 txn->flags &= ~TX_CK_MASK;
4804 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01004805 }
4806 }
4807 srv = srv->next;
4808 }
4809 }
4810}
4811
4812
Willy Tarreaub2513902006-12-17 14:52:38 +01004813/*
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004814 * In a GET or HEAD request, check if the requested URI matches the stats uri
4815 * for the current backend, and if an authorization has been passed and is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01004816 *
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004817 * It is assumed that the request is either a HEAD or GET and that the
Willy Tarreaue2e27a52007-04-01 00:01:37 +02004818 * t->be->uri_auth field is valid. An HTTP/401 response may be sent, or
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004819 * produce_content() can be called to start sending data.
Willy Tarreaub2513902006-12-17 14:52:38 +01004820 *
4821 * Returns 1 if the session's state changes, otherwise 0.
4822 */
4823int stats_check_uri_auth(struct session *t, struct proxy *backend)
4824{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004825 struct http_txn *txn = &t->txn;
Willy Tarreaub2513902006-12-17 14:52:38 +01004826 struct uri_auth *uri_auth = backend->uri_auth;
4827 struct user_auth *user;
4828 int authenticated, cur_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004829 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01004830
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004831 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004832 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01004833 return 0;
4834
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004835 h = t->req->data + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01004836
Willy Tarreau0214c3a2007-01-07 13:47:30 +01004837 /* the URI is in h */
4838 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01004839 return 0;
4840
Willy Tarreaue7150cd2007-07-25 14:43:32 +02004841 h += uri_auth->uri_len;
4842 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
4843 if (memcmp(h, ";up", 3) == 0) {
4844 t->flags |= SN_STAT_HIDEDWN;
4845 break;
4846 }
4847 h++;
4848 }
4849
4850 if (uri_auth->refresh) {
4851 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
4852 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
4853 if (memcmp(h, ";norefresh", 10) == 0) {
4854 t->flags |= SN_STAT_NORFRSH;
4855 break;
4856 }
4857 h++;
4858 }
4859 }
4860
Willy Tarreau55bb8452007-10-17 18:44:57 +02004861 h = t->req->data + txn->req.sl.rq.u + uri_auth->uri_len;
4862 while (h <= t->req->data + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
4863 if (memcmp(h, ";csv", 4) == 0) {
4864 t->flags |= SN_STAT_FMTCSV;
4865 break;
4866 }
4867 h++;
4868 }
4869
Willy Tarreaub2513902006-12-17 14:52:38 +01004870 /* we are in front of a interceptable URI. Let's check
4871 * if there's an authentication and if it's valid.
4872 */
4873 user = uri_auth->users;
4874 if (!user) {
4875 /* no user auth required, it's OK */
4876 authenticated = 1;
4877 } else {
4878 authenticated = 0;
4879
4880 /* a user list is defined, we have to check.
4881 * skip 21 chars for "Authorization: Basic ".
4882 */
4883
4884 /* FIXME: this should move to an earlier place */
4885 cur_idx = 0;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004886 h = t->req->data + txn->req.som + hdr_idx_first_pos(&txn->hdr_idx);
4887 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
4888 int len = txn->hdr_idx.v[cur_idx].len;
Willy Tarreaub2513902006-12-17 14:52:38 +01004889 if (len > 14 &&
4890 !strncasecmp("Authorization:", h, 14)) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004891 txn->auth_hdr.str = h;
4892 txn->auth_hdr.len = len;
Willy Tarreaub2513902006-12-17 14:52:38 +01004893 break;
4894 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004895 h += len + txn->hdr_idx.v[cur_idx].cr + 1;
Willy Tarreaub2513902006-12-17 14:52:38 +01004896 }
4897
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004898 if (txn->auth_hdr.len < 21 ||
4899 memcmp(txn->auth_hdr.str + 14, " Basic ", 7))
Willy Tarreaub2513902006-12-17 14:52:38 +01004900 user = NULL;
4901
4902 while (user) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01004903 if ((txn->auth_hdr.len == user->user_len + 14 + 7)
4904 && !memcmp(txn->auth_hdr.str + 14 + 7,
Willy Tarreaub2513902006-12-17 14:52:38 +01004905 user->user_pwd, user->user_len)) {
4906 authenticated = 1;
4907 break;
4908 }
4909 user = user->next;
4910 }
4911 }
4912
4913 if (!authenticated) {
Willy Tarreau0f772532006-12-23 20:51:41 +01004914 struct chunk msg;
Willy Tarreaub2513902006-12-17 14:52:38 +01004915
4916 /* no need to go further */
Willy Tarreau0f772532006-12-23 20:51:41 +01004917 msg.str = trash;
4918 msg.len = sprintf(trash, HTTP_401_fmt, uri_auth->auth_realm);
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01004919 txn->status = 401;
Willy Tarreau0f772532006-12-23 20:51:41 +01004920 client_retnclose(t, &msg);
Willy Tarreaub2513902006-12-17 14:52:38 +01004921 if (!(t->flags & SN_ERR_MASK))
4922 t->flags |= SN_ERR_PRXCOND;
4923 if (!(t->flags & SN_FINST_MASK))
4924 t->flags |= SN_FINST_R;
4925 return 1;
4926 }
4927
4928 /* The request is valid, the user is authenticate. Let's start sending
4929 * data.
4930 */
4931 t->cli_state = CL_STSHUTR;
4932 t->req->rlim = t->req->data + BUFSIZE; /* no more rewrite needed */
Willy Tarreau42aae5c2007-04-29 17:43:56 +02004933 t->logs.t_request = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaub2513902006-12-17 14:52:38 +01004934 t->data_source = DATA_SRC_STATS;
4935 t->data_state = DATA_ST_INIT;
4936 produce_content(t);
4937 return 1;
4938}
4939
4940
Willy Tarreaubaaee002006-06-26 02:48:02 +02004941/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01004942 * Print a debug line with a header
4943 */
4944void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
4945{
4946 int len, max;
4947 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
4948 dir, (unsigned short)t->cli_fd, (unsigned short)t->srv_fd);
4949 max = end - start;
4950 UBOUND(max, sizeof(trash) - len - 1);
4951 len += strlcpy2(trash + len, start, max + 1);
4952 trash[len++] = '\n';
4953 write(1, trash, len);
4954}
4955
4956
Willy Tarreau8797c062007-05-07 00:55:35 +02004957/************************************************************************/
4958/* The code below is dedicated to ACL parsing and matching */
4959/************************************************************************/
4960
4961
4962
4963
4964/* 1. Check on METHOD
4965 * We use the pre-parsed method if it is known, and store its number as an
4966 * integer. If it is unknown, we use the pointer and the length.
4967 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02004968static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02004969{
4970 int len, meth;
4971
Willy Tarreauae8b7962007-06-09 23:10:04 +02004972 len = strlen(*text);
4973 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02004974
4975 pattern->val.i = meth;
4976 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02004977 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02004978 if (!pattern->ptr.str)
4979 return 0;
4980 pattern->len = len;
4981 }
4982 return 1;
4983}
4984
Willy Tarreaud41f8d82007-06-10 10:06:18 +02004985static int
Willy Tarreau97be1452007-06-10 11:47:14 +02004986acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
4987 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02004988{
4989 int meth;
4990 struct http_txn *txn = l7;
4991
Willy Tarreauc11416f2007-06-17 16:58:38 +02004992 if (txn->req.msg_state != HTTP_MSG_BODY)
4993 return 0;
4994
Willy Tarreau8797c062007-05-07 00:55:35 +02004995 meth = txn->meth;
4996 test->i = meth;
4997 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02004998 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
4999 /* ensure the indexes are not affected */
5000 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02005001 test->len = txn->req.sl.rq.m_l;
5002 test->ptr = txn->req.sol;
5003 }
5004 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5005 return 1;
5006}
5007
5008static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
5009{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02005010 int icase;
5011
Willy Tarreau8797c062007-05-07 00:55:35 +02005012 if (test->i != pattern->val.i)
5013 return 0;
5014
5015 if (test->i != HTTP_METH_OTHER)
5016 return 1;
5017
5018 /* Other method, we must compare the strings */
5019 if (pattern->len != test->len)
5020 return 0;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02005021
5022 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
5023 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
5024 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau8797c062007-05-07 00:55:35 +02005025 return 0;
5026 return 1;
5027}
5028
5029/* 2. Check on Request/Status Version
5030 * We simply compare strings here.
5031 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02005032static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02005033{
Willy Tarreauae8b7962007-06-09 23:10:04 +02005034 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005035 if (!pattern->ptr.str)
5036 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02005037 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02005038 return 1;
5039}
5040
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005041static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005042acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
5043 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005044{
5045 struct http_txn *txn = l7;
5046 char *ptr;
5047 int len;
5048
Willy Tarreauc11416f2007-06-17 16:58:38 +02005049 if (txn->req.msg_state != HTTP_MSG_BODY)
5050 return 0;
5051
Willy Tarreau8797c062007-05-07 00:55:35 +02005052 len = txn->req.sl.rq.v_l;
5053 ptr = txn->req.sol + txn->req.sl.rq.v - txn->req.som;
5054
5055 while ((len-- > 0) && (*ptr++ != '/'));
5056 if (len <= 0)
5057 return 0;
5058
5059 test->ptr = ptr;
5060 test->len = len;
5061
5062 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5063 return 1;
5064}
5065
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005066static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005067acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
5068 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005069{
5070 struct http_txn *txn = l7;
5071 char *ptr;
5072 int len;
5073
Willy Tarreauc11416f2007-06-17 16:58:38 +02005074 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5075 return 0;
5076
Willy Tarreau8797c062007-05-07 00:55:35 +02005077 len = txn->rsp.sl.st.v_l;
5078 ptr = txn->rsp.sol;
5079
5080 while ((len-- > 0) && (*ptr++ != '/'));
5081 if (len <= 0)
5082 return 0;
5083
5084 test->ptr = ptr;
5085 test->len = len;
5086
5087 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
5088 return 1;
5089}
5090
5091/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005092static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005093acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
5094 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005095{
5096 struct http_txn *txn = l7;
5097 char *ptr;
5098 int len;
5099
Willy Tarreauc11416f2007-06-17 16:58:38 +02005100 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5101 return 0;
5102
Willy Tarreau8797c062007-05-07 00:55:35 +02005103 len = txn->rsp.sl.st.c_l;
5104 ptr = txn->rsp.sol + txn->rsp.sl.st.c - txn->rsp.som;
5105
5106 test->i = __strl2ui(ptr, len);
5107 test->flags = ACL_TEST_F_VOL_1ST;
5108 return 1;
5109}
5110
5111/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02005112static int
Willy Tarreau97be1452007-06-10 11:47:14 +02005113acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
5114 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02005115{
5116 struct http_txn *txn = l7;
5117
Willy Tarreauc11416f2007-06-17 16:58:38 +02005118 if (txn->req.msg_state != HTTP_MSG_BODY)
5119 return 0;
5120 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5121 /* ensure the indexes are not affected */
5122 return 0;
5123
Willy Tarreau8797c062007-05-07 00:55:35 +02005124 test->len = txn->req.sl.rq.u_l;
5125 test->ptr = txn->req.sol + txn->req.sl.rq.u;
5126
Willy Tarreauf3d25982007-05-08 22:45:09 +02005127 /* we do not need to set READ_ONLY because the data is in a buffer */
5128 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02005129 return 1;
5130}
5131
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005132static int
5133acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
5134 struct acl_expr *expr, struct acl_test *test)
5135{
5136 struct http_txn *txn = l7;
5137
5138 if (txn->req.msg_state != HTTP_MSG_BODY)
5139 return 0;
5140 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5141 /* ensure the indexes are not affected */
5142 return 0;
5143
5144 /* Parse HTTP request */
5145 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
5146 test->ptr = (void *)&((struct sockaddr_in *)&l4->srv_addr)->sin_addr;
5147 test->i = AF_INET;
5148
5149 /*
5150 * If we are parsing url in frontend space, we prepare backend stage
5151 * to not parse again the same url ! optimization lazyness...
5152 */
5153 if (px->options & PR_O_HTTP_PROXY)
5154 l4->flags |= SN_ADDR_SET;
5155
5156 test->flags = ACL_TEST_F_READ_ONLY;
5157 return 1;
5158}
5159
5160static int
5161acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
5162 struct acl_expr *expr, struct acl_test *test)
5163{
5164 struct http_txn *txn = l7;
5165
5166 if (txn->req.msg_state != HTTP_MSG_BODY)
5167 return 0;
5168 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5169 /* ensure the indexes are not affected */
5170 return 0;
5171
5172 /* Same optimization as url_ip */
5173 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
5174 test->i = ntohs(((struct sockaddr_in *)&l4->srv_addr)->sin_port);
5175
5176 if (px->options & PR_O_HTTP_PROXY)
5177 l4->flags |= SN_ADDR_SET;
5178
5179 test->flags = ACL_TEST_F_READ_ONLY;
5180 return 1;
5181}
5182
Willy Tarreauc11416f2007-06-17 16:58:38 +02005183/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
5184 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
5185 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02005186static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005187acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005188 struct acl_expr *expr, struct acl_test *test)
5189{
5190 struct http_txn *txn = l7;
5191 struct hdr_idx *idx = &txn->hdr_idx;
5192 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005193
5194 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
5195 /* search for header from the beginning */
5196 ctx->idx = 0;
5197
Willy Tarreau33a7e692007-06-10 19:45:56 +02005198 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
5199 test->flags |= ACL_TEST_F_FETCH_MORE;
5200 test->flags |= ACL_TEST_F_VOL_HDR;
5201 test->len = ctx->vlen;
5202 test->ptr = (char *)ctx->line + ctx->val;
5203 return 1;
5204 }
5205
5206 test->flags &= ~ACL_TEST_F_FETCH_MORE;
5207 test->flags |= ACL_TEST_F_VOL_HDR;
5208 return 0;
5209}
5210
Willy Tarreau33a7e692007-06-10 19:45:56 +02005211static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005212acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
5213 struct acl_expr *expr, struct acl_test *test)
5214{
5215 struct http_txn *txn = l7;
5216
5217 if (txn->req.msg_state != HTTP_MSG_BODY)
5218 return 0;
5219 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5220 /* ensure the indexes are not affected */
5221 return 0;
5222
5223 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
5224}
5225
5226static int
5227acl_fetch_shdr(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->rsp.msg_state != HTTP_MSG_BODY)
5233 return 0;
5234
5235 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
5236}
5237
5238/* 6. Check on HTTP header count. The number of occurrences is returned.
5239 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
5240 */
5241static int
5242acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005243 struct acl_expr *expr, struct acl_test *test)
5244{
5245 struct http_txn *txn = l7;
5246 struct hdr_idx *idx = &txn->hdr_idx;
5247 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005248 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02005249
Willy Tarreau33a7e692007-06-10 19:45:56 +02005250 ctx.idx = 0;
5251 cnt = 0;
5252 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
5253 cnt++;
5254
5255 test->i = cnt;
5256 test->flags = ACL_TEST_F_VOL_HDR;
5257 return 1;
5258}
5259
Willy Tarreauc11416f2007-06-17 16:58:38 +02005260static int
5261acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
5262 struct acl_expr *expr, struct acl_test *test)
5263{
5264 struct http_txn *txn = l7;
5265
5266 if (txn->req.msg_state != HTTP_MSG_BODY)
5267 return 0;
5268 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5269 /* ensure the indexes are not affected */
5270 return 0;
5271
5272 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
5273}
5274
5275static int
5276acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
5277 struct acl_expr *expr, struct acl_test *test)
5278{
5279 struct http_txn *txn = l7;
5280
5281 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5282 return 0;
5283
5284 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
5285}
5286
Willy Tarreau33a7e692007-06-10 19:45:56 +02005287/* 7. Check on HTTP header's integer value. The integer value is returned.
5288 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02005289 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02005290 */
5291static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02005292acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02005293 struct acl_expr *expr, struct acl_test *test)
5294{
5295 struct http_txn *txn = l7;
5296 struct hdr_idx *idx = &txn->hdr_idx;
5297 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005298
5299 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
5300 /* search for header from the beginning */
5301 ctx->idx = 0;
5302
Willy Tarreau33a7e692007-06-10 19:45:56 +02005303 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
5304 test->flags |= ACL_TEST_F_FETCH_MORE;
5305 test->flags |= ACL_TEST_F_VOL_HDR;
5306 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
5307 return 1;
5308 }
5309
5310 test->flags &= ~ACL_TEST_F_FETCH_MORE;
5311 test->flags |= ACL_TEST_F_VOL_HDR;
5312 return 0;
5313}
5314
Willy Tarreauc11416f2007-06-17 16:58:38 +02005315static int
5316acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
5317 struct acl_expr *expr, struct acl_test *test)
5318{
5319 struct http_txn *txn = l7;
5320
5321 if (txn->req.msg_state != HTTP_MSG_BODY)
5322 return 0;
5323 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5324 /* ensure the indexes are not affected */
5325 return 0;
5326
5327 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
5328}
5329
5330static int
5331acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
5332 struct acl_expr *expr, struct acl_test *test)
5333{
5334 struct http_txn *txn = l7;
5335
5336 if (txn->rsp.msg_state != HTTP_MSG_BODY)
5337 return 0;
5338
5339 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
5340}
5341
Willy Tarreau737b0c12007-06-10 21:28:46 +02005342/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
5343 * the first '/' after the possible hostname, and ends before the possible '?'.
5344 */
5345static int
5346acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
5347 struct acl_expr *expr, struct acl_test *test)
5348{
5349 struct http_txn *txn = l7;
5350 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02005351
Willy Tarreauc11416f2007-06-17 16:58:38 +02005352 if (txn->req.msg_state != HTTP_MSG_BODY)
5353 return 0;
5354 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
5355 /* ensure the indexes are not affected */
5356 return 0;
5357
Willy Tarreau21d2af32008-02-14 20:25:24 +01005358 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
5359 ptr = http_get_path(txn);
5360 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02005361 return 0;
5362
5363 /* OK, we got the '/' ! */
5364 test->ptr = ptr;
5365
5366 while (ptr < end && *ptr != '?')
5367 ptr++;
5368
5369 test->len = ptr - test->ptr;
5370
5371 /* we do not need to set READ_ONLY because the data is in a buffer */
5372 test->flags = ACL_TEST_F_VOL_1ST;
5373 return 1;
5374}
5375
5376
Willy Tarreau8797c062007-05-07 00:55:35 +02005377
5378/************************************************************************/
5379/* All supported keywords must be declared here. */
5380/************************************************************************/
5381
5382/* Note: must not be declared <const> as its list will be overwritten */
5383static struct acl_kw_list acl_kws = {{ },{
5384 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth },
5385 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str },
5386 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str },
Willy Tarreauae8b7962007-06-09 23:10:04 +02005387 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +02005388
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01005389 { "url", acl_parse_str, acl_fetch_url, acl_match_str },
5390 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg },
5391 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end },
5392 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub },
5393 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir },
5394 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom },
5395 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg },
5396 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip },
5397 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +02005398
Willy Tarreauc11416f2007-06-17 16:58:38 +02005399 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str },
5400 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg },
5401 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg },
5402 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end },
5403 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub },
5404 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir },
5405 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom },
5406 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int },
5407 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int },
5408
5409 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str },
5410 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg },
5411 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg },
5412 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end },
5413 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub },
5414 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir },
5415 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom },
5416 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int },
5417 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int },
Willy Tarreau737b0c12007-06-10 21:28:46 +02005418
5419 { "path", acl_parse_str, acl_fetch_path, acl_match_str },
5420 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg },
5421 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg },
5422 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end },
5423 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub },
5424 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir },
5425 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom },
5426
Willy Tarreauf3d25982007-05-08 22:45:09 +02005427 { NULL, NULL, NULL, NULL },
5428
5429#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02005430 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
5431 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
5432 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
5433 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
5434 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
5435 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
5436 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
5437
Willy Tarreau8797c062007-05-07 00:55:35 +02005438 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
5439 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
5440 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
5441 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
5442 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
5443 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
5444 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
5445 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
5446
5447 { "auth_user", acl_parse_str, acl_fetch_user, acl_match_str },
5448 { "auth_regex", acl_parse_reg, acl_fetch_user, acl_match_reg },
5449 { "auth_clear", acl_parse_str, acl_fetch_auth, acl_match_str },
5450 { "auth_md5", acl_parse_str, acl_fetch_auth, acl_match_md5 },
5451 { NULL, NULL, NULL, NULL },
5452#endif
5453}};
5454
5455
5456__attribute__((constructor))
5457static void __http_protocol_init(void)
5458{
5459 acl_register_keywords(&acl_kws);
5460}
5461
5462
Willy Tarreau58f10d72006-12-04 02:26:12 +01005463/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005464 * Local variables:
5465 * c-indent-level: 8
5466 * c-basic-offset: 8
5467 * End:
5468 */