blob: c39fb94624902f936dfed9642802622dbd89e7f2 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
Willy Tarreau42250582007-04-01 01:30:43 +020020#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/appsession.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010027#include <common/base64.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/compat.h>
29#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010030#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020031#include <common/memory.h>
32#include <common/mini-clist.h>
33#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020034#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020035#include <common/time.h>
36#include <common/uri_auth.h>
37#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
39#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
Willy Tarreau8797c062007-05-07 00:55:35 +020042#include <proto/acl.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010043#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <proto/backend.h>
45#include <proto/buffers.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010046#include <proto/checks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020047#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020049#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010051#include <proto/hdr_idx.h>
Willy Tarreau4a568972010-05-12 08:08:50 +020052#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020053#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010055#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010057#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010059#include <proto/stream_interface.h>
Willy Tarreau2d212792008-08-27 21:41:35 +020060#include <proto/stream_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/task.h>
62
Willy Tarreau522d6c02009-12-06 18:49:18 +010063const char HTTP_100[] =
64 "HTTP/1.1 100 Continue\r\n\r\n";
65
66const struct chunk http_100_chunk = {
67 .str = (char *)&HTTP_100,
68 .len = sizeof(HTTP_100)-1
69};
70
Willy Tarreaua9679ac2010-01-03 17:32:57 +010071/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020072const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010073 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020074 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010075 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020076 "Location: "; /* not terminated since it will be concatenated with the URL */
77
Willy Tarreau0f772532006-12-23 20:51:41 +010078const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010080 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010081 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010082 "Location: "; /* not terminated since it will be concatenated with the URL */
83
84/* same as 302 except that the browser MUST retry with the GET method */
85const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010087 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010088 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010089 "Location: "; /* not terminated since it will be concatenated with the URL */
90
Willy Tarreaubaaee002006-06-26 02:48:02 +020091/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
92const char *HTTP_401_fmt =
93 "HTTP/1.0 401 Unauthorized\r\n"
94 "Cache-Control: no-cache\r\n"
95 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +020096 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +020097 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
98 "\r\n"
99 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
100
Willy Tarreau844a7e72010-01-31 21:46:18 +0100101const char *HTTP_407_fmt =
102 "HTTP/1.0 407 Unauthorized\r\n"
103 "Cache-Control: no-cache\r\n"
104 "Connection: close\r\n"
105 "Content-Type: text/html\r\n"
106 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
107 "\r\n"
108 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
109
Willy Tarreau0f772532006-12-23 20:51:41 +0100110
111const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200112 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100113 [HTTP_ERR_400] = 400,
114 [HTTP_ERR_403] = 403,
115 [HTTP_ERR_408] = 408,
116 [HTTP_ERR_500] = 500,
117 [HTTP_ERR_502] = 502,
118 [HTTP_ERR_503] = 503,
119 [HTTP_ERR_504] = 504,
120};
121
Willy Tarreau80587432006-12-24 17:47:20 +0100122static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200123 [HTTP_ERR_200] =
124 "HTTP/1.0 200 OK\r\n"
125 "Cache-Control: no-cache\r\n"
126 "Connection: close\r\n"
127 "Content-Type: text/html\r\n"
128 "\r\n"
129 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
130
Willy Tarreau0f772532006-12-23 20:51:41 +0100131 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100132 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100133 "Cache-Control: no-cache\r\n"
134 "Connection: close\r\n"
135 "Content-Type: text/html\r\n"
136 "\r\n"
137 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
138
139 [HTTP_ERR_403] =
140 "HTTP/1.0 403 Forbidden\r\n"
141 "Cache-Control: no-cache\r\n"
142 "Connection: close\r\n"
143 "Content-Type: text/html\r\n"
144 "\r\n"
145 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
146
147 [HTTP_ERR_408] =
148 "HTTP/1.0 408 Request Time-out\r\n"
149 "Cache-Control: no-cache\r\n"
150 "Connection: close\r\n"
151 "Content-Type: text/html\r\n"
152 "\r\n"
153 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
154
155 [HTTP_ERR_500] =
156 "HTTP/1.0 500 Server Error\r\n"
157 "Cache-Control: no-cache\r\n"
158 "Connection: close\r\n"
159 "Content-Type: text/html\r\n"
160 "\r\n"
161 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
162
163 [HTTP_ERR_502] =
164 "HTTP/1.0 502 Bad Gateway\r\n"
165 "Cache-Control: no-cache\r\n"
166 "Connection: close\r\n"
167 "Content-Type: text/html\r\n"
168 "\r\n"
169 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
170
171 [HTTP_ERR_503] =
172 "HTTP/1.0 503 Service Unavailable\r\n"
173 "Cache-Control: no-cache\r\n"
174 "Connection: close\r\n"
175 "Content-Type: text/html\r\n"
176 "\r\n"
177 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
178
179 [HTTP_ERR_504] =
180 "HTTP/1.0 504 Gateway Time-out\r\n"
181 "Cache-Control: no-cache\r\n"
182 "Connection: close\r\n"
183 "Content-Type: text/html\r\n"
184 "\r\n"
185 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
186
187};
188
Willy Tarreau80587432006-12-24 17:47:20 +0100189/* We must put the messages here since GCC cannot initialize consts depending
190 * on strlen().
191 */
192struct chunk http_err_chunks[HTTP_ERR_SIZE];
193
Willy Tarreau42250582007-04-01 01:30:43 +0200194#define FD_SETS_ARE_BITFIELDS
195#ifdef FD_SETS_ARE_BITFIELDS
196/*
197 * This map is used with all the FD_* macros to check whether a particular bit
198 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
199 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
200 * byte should be encoded. Be careful to always pass bytes from 0 to 255
201 * exclusively to the macros.
202 */
203fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
204fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
205
206#else
207#error "Check if your OS uses bitfields for fd_sets"
208#endif
209
Willy Tarreau80587432006-12-24 17:47:20 +0100210void init_proto_http()
211{
Willy Tarreau42250582007-04-01 01:30:43 +0200212 int i;
213 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100214 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200215
Willy Tarreau80587432006-12-24 17:47:20 +0100216 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
217 if (!http_err_msgs[msg]) {
218 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
219 abort();
220 }
221
222 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
223 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
224 }
Willy Tarreau42250582007-04-01 01:30:43 +0200225
226 /* initialize the log header encoding map : '{|}"#' should be encoded with
227 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
228 * URL encoding only requires '"', '#' to be encoded as well as non-
229 * printable characters above.
230 */
231 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
232 memset(url_encode_map, 0, sizeof(url_encode_map));
233 for (i = 0; i < 32; i++) {
234 FD_SET(i, hdr_encode_map);
235 FD_SET(i, url_encode_map);
236 }
237 for (i = 127; i < 256; i++) {
238 FD_SET(i, hdr_encode_map);
239 FD_SET(i, url_encode_map);
240 }
241
242 tmp = "\"#{|}";
243 while (*tmp) {
244 FD_SET(*tmp, hdr_encode_map);
245 tmp++;
246 }
247
248 tmp = "\"#";
249 while (*tmp) {
250 FD_SET(*tmp, url_encode_map);
251 tmp++;
252 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200253
254 /* memory allocations */
255 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200256 pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100257}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200258
Willy Tarreau53b6c742006-12-17 13:37:46 +0100259/*
260 * We have 26 list of methods (1 per first letter), each of which can have
261 * up to 3 entries (2 valid, 1 null).
262 */
263struct http_method_desc {
264 http_meth_t meth;
265 int len;
266 const char text[8];
267};
268
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100269const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100270 ['C' - 'A'] = {
271 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
272 },
273 ['D' - 'A'] = {
274 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
275 },
276 ['G' - 'A'] = {
277 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
278 },
279 ['H' - 'A'] = {
280 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
281 },
282 ['P' - 'A'] = {
283 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
284 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
285 },
286 ['T' - 'A'] = {
287 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
288 },
289 /* rest is empty like this :
290 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
291 */
292};
293
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100294/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200295 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100296 * RFC2616 for those chars.
297 */
298
299const char http_is_spht[256] = {
300 [' '] = 1, ['\t'] = 1,
301};
302
303const char http_is_crlf[256] = {
304 ['\r'] = 1, ['\n'] = 1,
305};
306
307const char http_is_lws[256] = {
308 [' '] = 1, ['\t'] = 1,
309 ['\r'] = 1, ['\n'] = 1,
310};
311
312const char http_is_sep[256] = {
313 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
314 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
315 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
316 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
317 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
318};
319
320const char http_is_ctl[256] = {
321 [0 ... 31] = 1,
322 [127] = 1,
323};
324
325/*
326 * A token is any ASCII char that is neither a separator nor a CTL char.
327 * Do not overwrite values in assignment since gcc-2.95 will not handle
328 * them correctly. Instead, define every non-CTL char's status.
329 */
330const char http_is_token[256] = {
331 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
332 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
333 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
334 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
335 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
336 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
337 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
338 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
339 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
340 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
341 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
342 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
343 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
344 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
345 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
346 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
347 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
348 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
349 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
350 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
351 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
352 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
353 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
354 ['|'] = 1, ['}'] = 0, ['~'] = 1,
355};
356
357
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100358/*
359 * An http ver_token is any ASCII which can be found in an HTTP version,
360 * which includes 'H', 'T', 'P', '/', '.' and any digit.
361 */
362const char http_is_ver_token[256] = {
363 ['.'] = 1, ['/'] = 1,
364 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
365 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
366 ['H'] = 1, ['P'] = 1, ['T'] = 1,
367};
368
369
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100370/*
Willy Tarreaue988a792010-01-04 21:13:14 +0100371 * Silent debug that outputs only in strace, using fd #-1. Trash is modified.
372 */
373#if defined(DEBUG_FSM)
374static void http_silent_debug(int line, struct session *s)
375{
376 int size = 0;
377 size += snprintf(trash + size, sizeof(trash) - size,
378 "[%04d] req: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p lr=%p sm=%d fw=%ld tf=%08x\n",
379 line,
380 s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers,
381 s->req->data, s->req->size, s->req->l, s->req->w, s->req->r, s->req->lr, s->req->send_max, s->req->to_forward, s->txn.flags);
382 write(-1, trash, size);
383 size = 0;
384 size += snprintf(trash + size, sizeof(trash) - size,
385 " %04d rep: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p lr=%p sm=%d fw=%ld\n",
386 line,
387 s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers,
388 s->rep->data, s->rep->size, s->rep->l, s->rep->w, s->rep->r, s->rep->lr, s->rep->send_max, s->rep->to_forward);
389
390 write(-1, trash, size);
391}
392#else
393#define http_silent_debug(l,s) do { } while (0)
394#endif
395
396/*
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100397 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
398 * CRLF. Text length is measured first, so it cannot be NULL.
399 * The header is also automatically added to the index <hdr_idx>, and the end
400 * of headers is automatically adjusted. The number of bytes added is returned
401 * on success, otherwise <0 is returned indicating an error.
402 */
403int http_header_add_tail(struct buffer *b, struct http_msg *msg,
404 struct hdr_idx *hdr_idx, const char *text)
405{
406 int bytes, len;
407
408 len = strlen(text);
409 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
410 if (!bytes)
411 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100412 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100413 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
414}
415
416/*
417 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
418 * CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
419 * the buffer is only opened and the space reserved, but nothing is copied.
420 * The header is also automatically added to the index <hdr_idx>, and the end
421 * of headers is automatically adjusted. The number of bytes added is returned
422 * on success, otherwise <0 is returned indicating an error.
423 */
424int http_header_add_tail2(struct buffer *b, struct http_msg *msg,
425 struct hdr_idx *hdr_idx, const char *text, int len)
426{
427 int bytes;
428
429 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
430 if (!bytes)
431 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100432 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100433 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
434}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435
436/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100437 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
438 * If so, returns the position of the first non-space character relative to
439 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
440 * to return a pointer to the place after the first space. Returns 0 if the
441 * header name does not match. Checks are case-insensitive.
442 */
443int http_header_match2(const char *hdr, const char *end,
444 const char *name, int len)
445{
446 const char *val;
447
448 if (hdr + len >= end)
449 return 0;
450 if (hdr[len] != ':')
451 return 0;
452 if (strncasecmp(hdr, name, len) != 0)
453 return 0;
454 val = hdr + len + 1;
455 while (val < end && HTTP_IS_SPHT(*val))
456 val++;
457 if ((val >= end) && (len + 2 <= end - hdr))
458 return len + 2; /* we may replace starting from second space */
459 return val - hdr;
460}
461
Willy Tarreau68085d82010-01-18 14:54:04 +0100462/* Find the end of the header value contained between <s> and <e>. See RFC2616,
463 * par 2.2 for more information. Note that it requires a valid header to return
464 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200465 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100466char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200467{
468 int quoted, qdpair;
469
470 quoted = qdpair = 0;
471 for (; s < e; s++) {
472 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200473 else if (quoted) {
474 if (*s == '\\') qdpair = 1;
475 else if (*s == '"') quoted = 0;
476 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200477 else if (*s == '"') quoted = 1;
478 else if (*s == ',') return s;
479 }
480 return s;
481}
482
483/* Find the first or next occurrence of header <name> in message buffer <sol>
484 * using headers index <idx>, and return it in the <ctx> structure. This
485 * structure holds everything necessary to use the header and find next
486 * occurrence. If its <idx> member is 0, the header is searched from the
487 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100488 * 1 when it finds a value, and 0 when there is no more. It is designed to work
489 * with headers defined as comma-separated lists. As a special case, if ctx->val
490 * is NULL when searching for a new values of a header, the current header is
491 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200492 */
493int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100494 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200495 struct hdr_ctx *ctx)
496{
Willy Tarreau68085d82010-01-18 14:54:04 +0100497 char *eol, *sov;
498 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200499
Willy Tarreau68085d82010-01-18 14:54:04 +0100500 cur_idx = ctx->idx;
501 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200502 /* We have previously returned a value, let's search
503 * another one on the same line.
504 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200505 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200506 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100507 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200508 eol = sol + idx->v[cur_idx].len;
509
510 if (sov >= eol)
511 /* no more values in this header */
512 goto next_hdr;
513
Willy Tarreau68085d82010-01-18 14:54:04 +0100514 /* values remaining for this header, skip the comma but save it
515 * for later use (eg: for header deletion).
516 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200517 sov++;
518 while (sov < eol && http_is_lws[(unsigned char)*sov])
519 sov++;
520
521 goto return_hdr;
522 }
523
524 /* first request for this header */
525 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100526 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200527 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200528 while (cur_idx) {
529 eol = sol + idx->v[cur_idx].len;
530
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200531 if (len == 0) {
532 /* No argument was passed, we want any header.
533 * To achieve this, we simply build a fake request. */
534 while (sol + len < eol && sol[len] != ':')
535 len++;
536 name = sol;
537 }
538
Willy Tarreau33a7e692007-06-10 19:45:56 +0200539 if ((len < eol - sol) &&
540 (sol[len] == ':') &&
541 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100542 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200543 sov = sol + len + 1;
544 while (sov < eol && http_is_lws[(unsigned char)*sov])
545 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100546
Willy Tarreau33a7e692007-06-10 19:45:56 +0200547 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100548 ctx->prev = old_idx;
549 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200550 ctx->idx = cur_idx;
551 ctx->val = sov - sol;
552
553 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200554 ctx->tws = 0;
Willy Tarreau275600b2011-09-16 08:11:26 +0200555 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200556 eol--;
557 ctx->tws++;
558 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200559 ctx->vlen = eol - sov;
560 return 1;
561 }
562 next_hdr:
563 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100564 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200565 cur_idx = idx->v[cur_idx].next;
566 }
567 return 0;
568}
569
570int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100571 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200572 struct hdr_ctx *ctx)
573{
574 return http_find_header2(name, strlen(name), sol, idx, ctx);
575}
576
Willy Tarreau68085d82010-01-18 14:54:04 +0100577/* Remove one value of a header. This only works on a <ctx> returned by one of
578 * the http_find_header functions. The value is removed, as well as surrounding
579 * commas if any. If the removed value was alone, the whole header is removed.
580 * The ctx is always updated accordingly, as well as buffer <buf> and HTTP
581 * message <msg>. The new index is returned. If it is zero, it means there is
582 * no more header, so any processing may stop. The ctx is always left in a form
583 * that can be handled by http_find_header2() to find next occurrence.
584 */
585int http_remove_header2(struct http_msg *msg, struct buffer *buf,
586 struct hdr_idx *idx, struct hdr_ctx *ctx)
587{
588 int cur_idx = ctx->idx;
589 char *sol = ctx->line;
590 struct hdr_idx_elem *hdr;
591 int delta, skip_comma;
592
593 if (!cur_idx)
594 return 0;
595
596 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200597 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100598 /* This was the only value of the header, we must now remove it entirely. */
599 delta = buffer_replace2(buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
600 http_msg_move_end(msg, delta);
601 idx->used--;
602 hdr->len = 0; /* unused entry */
603 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100604 if (idx->tail == ctx->idx)
605 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100606 ctx->idx = ctx->prev; /* walk back to the end of previous header */
607 ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1;
608 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200609 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100610 return ctx->idx;
611 }
612
613 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200614 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
615 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100616 */
617
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200618 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100619 delta = buffer_replace2(buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200620 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100621 NULL, 0);
622 hdr->len += delta;
623 http_msg_move_end(msg, delta);
624 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200625 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100626 return ctx->idx;
627}
628
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100629/* This function handles a server error at the stream interface level. The
630 * stream interface is assumed to be already in a closed state. An optional
631 * message is copied into the input buffer, and an HTTP status code stored.
632 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100633 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100635static void http_server_error(struct session *t, struct stream_interface *si,
636 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637{
Willy Tarreaud5fd51c2010-01-22 14:17:47 +0100638 buffer_auto_read(si->ob);
639 buffer_abort(si->ob);
640 buffer_auto_close(si->ob);
641 buffer_erase(si->ob);
Willy Tarreau520d95e2009-09-19 21:04:57 +0200642 buffer_auto_close(si->ib);
Willy Tarreau90deb182010-01-07 00:20:41 +0100643 buffer_auto_read(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100644 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100645 t->txn.status = status;
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100646 buffer_write(si->ib, msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200647 }
648 if (!(t->flags & SN_ERR_MASK))
649 t->flags |= err;
650 if (!(t->flags & SN_FINST_MASK))
651 t->flags |= finst;
652}
653
Willy Tarreau80587432006-12-24 17:47:20 +0100654/* This function returns the appropriate error location for the given session
655 * and message.
656 */
657
658struct chunk *error_message(struct session *s, int msgnum)
659{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200660 if (s->be->errmsg[msgnum].str)
661 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100662 else if (s->fe->errmsg[msgnum].str)
663 return &s->fe->errmsg[msgnum];
664 else
665 return &http_err_chunks[msgnum];
666}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667
Willy Tarreau53b6c742006-12-17 13:37:46 +0100668/*
669 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
670 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
671 */
672static http_meth_t find_http_meth(const char *str, const int len)
673{
674 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100675 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100676
677 m = ((unsigned)*str - 'A');
678
679 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100680 for (h = http_methods[m]; h->len > 0; h++) {
681 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100682 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100683 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100684 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100685 };
686 return HTTP_METH_OTHER;
687 }
688 return HTTP_METH_NONE;
689
690}
691
Willy Tarreau21d2af32008-02-14 20:25:24 +0100692/* Parse the URI from the given transaction (which is assumed to be in request
693 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
694 * It is returned otherwise.
695 */
696static char *
697http_get_path(struct http_txn *txn)
698{
699 char *ptr, *end;
700
Willy Tarreau962c3f42010-01-10 00:15:35 +0100701 ptr = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100702 end = ptr + txn->req.sl.rq.u_l;
703
704 if (ptr >= end)
705 return NULL;
706
707 /* RFC2616, par. 5.1.2 :
708 * Request-URI = "*" | absuri | abspath | authority
709 */
710
711 if (*ptr == '*')
712 return NULL;
713
714 if (isalpha((unsigned char)*ptr)) {
715 /* this is a scheme as described by RFC3986, par. 3.1 */
716 ptr++;
717 while (ptr < end &&
718 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
719 ptr++;
720 /* skip '://' */
721 if (ptr == end || *ptr++ != ':')
722 return NULL;
723 if (ptr == end || *ptr++ != '/')
724 return NULL;
725 if (ptr == end || *ptr++ != '/')
726 return NULL;
727 }
728 /* skip [user[:passwd]@]host[:[port]] */
729
730 while (ptr < end && *ptr != '/')
731 ptr++;
732
733 if (ptr == end)
734 return NULL;
735
736 /* OK, we got the '/' ! */
737 return ptr;
738}
739
Willy Tarreauefb453c2008-10-26 20:49:47 +0100740/* Returns a 302 for a redirectable request. This may only be called just after
741 * the stream interface has moved to SI_ST_ASS. Unprocessable requests are
742 * left unchanged and will follow normal proxy processing.
743 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100744void perform_http_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100745{
746 struct http_txn *txn;
747 struct chunk rdr;
Willy Tarreau827aee92011-03-10 16:55:02 +0100748 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100749 char *path;
750 int len;
751
752 /* 1: create the response header */
753 rdr.len = strlen(HTTP_302);
754 rdr.str = trash;
Willy Tarreau59e0b0f2010-01-09 21:29:23 +0100755 rdr.size = sizeof(trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100756 memcpy(rdr.str, HTTP_302, rdr.len);
757
Willy Tarreau827aee92011-03-10 16:55:02 +0100758 srv = target_srv(&s->target);
759
Willy Tarreauefb453c2008-10-26 20:49:47 +0100760 /* 2: add the server's prefix */
Willy Tarreau827aee92011-03-10 16:55:02 +0100761 if (rdr.len + srv->rdr_len > rdr.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100762 return;
763
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100764 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100765 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
766 memcpy(rdr.str + rdr.len, srv->rdr_pfx, srv->rdr_len);
767 rdr.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100768 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100769
770 /* 3: add the request URI */
771 txn = &s->txn;
772 path = http_get_path(txn);
773 if (!path)
774 return;
775
Willy Tarreau962c3f42010-01-10 00:15:35 +0100776 len = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200777 if (rdr.len + len > rdr.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100778 return;
779
780 memcpy(rdr.str + rdr.len, path, len);
781 rdr.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100782
783 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
784 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
785 rdr.len += 29;
786 } else {
787 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
788 rdr.len += 23;
789 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100790
791 /* prepare to return without error. */
Willy Tarreau99126c32008-11-27 10:30:51 +0100792 si->shutr(si);
793 si->shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100794 si->err_type = SI_ET_NONE;
795 si->err_loc = NULL;
796 si->state = SI_ST_CLO;
797
798 /* send the message */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100799 http_server_error(s, si, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100800
801 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau827aee92011-03-10 16:55:02 +0100802 if (srv)
803 srv_inc_sess_ctr(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100804}
805
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100806/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100807 * that the server side is closed. Note that err_type is actually a
808 * bitmask, where almost only aborts may be cumulated with other
809 * values. We consider that aborted operations are more important
810 * than timeouts or errors due to the fact that nobody else in the
811 * logs might explain incomplete retries. All others should avoid
812 * being cumulated. It should normally not be possible to have multiple
813 * aborts at once, but just in case, the first one in sequence is reported.
814 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100815void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100816{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100817 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100818
819 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100820 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
821 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100822 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100823 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
824 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100825 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100826 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
827 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100828 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100829 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
830 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100831 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100832 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
833 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100834 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100835 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
836 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100837 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100838 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
839 500, error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100840}
841
Willy Tarreau42250582007-04-01 01:30:43 +0200842extern const char sess_term_cond[8];
843extern const char sess_fin_state[8];
844extern const char *monthname[12];
Willy Tarreauf1348312010-10-07 15:54:11 +0200845const char sess_cookie[8] = "NIDVEO67"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie, Expired cookie, Old cookie, unknown */
846const char sess_set_cookie[8] = "NPDIRU67"; /* No set-cookie, Set-cookie found and left unchanged (passive),
847 Set-cookie Deleted, Set-Cookie Inserted, Set-cookie Rewritten,
848 Set-cookie Updated, unknown, unknown */
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200849struct pool_head *pool2_requri;
Willy Tarreau086b3b42007-05-13 21:45:51 +0200850struct pool_head *pool2_capture;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100851
Emeric Brun3a058f32009-06-30 18:26:00 +0200852void http_sess_clflog(struct session *s)
853{
Cyril Bontéacd7d632010-11-01 19:26:02 +0100854 char pn[INET6_ADDRSTRLEN];
Emeric Brun3a058f32009-06-30 18:26:00 +0200855 struct proxy *fe = s->fe;
856 struct proxy *be = s->be;
857 struct proxy *prx_log;
858 struct http_txn *txn = &s->txn;
859 int tolog, level, err;
860 char *uri, *h;
Willy Tarreau71904a42011-02-13 14:30:26 +0100861 const char *svid;
Emeric Brun3a058f32009-06-30 18:26:00 +0200862 struct tm tm;
863 static char tmpline[MAX_SYSLOG_LEN];
864 int hdr;
865 size_t w;
866 int t_request;
867
868 prx_log = fe;
869 err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
Willy Tarreauee28de02010-06-01 09:51:00 +0200870 (s->req->cons->conn_retries != be->conn_retries) ||
Emeric Brun3a058f32009-06-30 18:26:00 +0200871 txn->status >= 500;
872
Willy Tarreau631f01c2011-09-05 00:36:48 +0200873 if (addr_to_str(&s->req->prod->addr.c.from, pn, sizeof(pn)) == AF_UNIX)
Emeric Brun5bd86a82010-10-22 17:23:04 +0200874 snprintf(pn, sizeof(pn), "unix:%d", s->listener->luid);
Emeric Brun3a058f32009-06-30 18:26:00 +0200875
876 get_gmtime(s->logs.accept_date.tv_sec, &tm);
877
878 /* FIXME: let's limit ourselves to frontend logging for now. */
879 tolog = fe->to_log;
880
881 h = tmpline;
882
883 w = snprintf(h, sizeof(tmpline),
884 "%s - - [%02d/%s/%04d:%02d:%02d:%02d +0000]",
885 pn,
886 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
887 tm.tm_hour, tm.tm_min, tm.tm_sec);
888 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
889 goto trunc;
890 h += w;
891
892 if (h >= tmpline + sizeof(tmpline) - 4)
893 goto trunc;
894
895 *(h++) = ' ';
896 *(h++) = '\"';
897 uri = txn->uri ? txn->uri : "<BADREQ>";
898 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
899 '#', url_encode_map, uri);
900 *(h++) = '\"';
901
902 w = snprintf(h, sizeof(tmpline) - (h - tmpline), " %d %lld", txn->status, s->logs.bytes_out);
903 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
904 goto trunc;
905 h += w;
906
907 if (h >= tmpline + sizeof(tmpline) - 9)
908 goto trunc;
909 memcpy(h, " \"-\" \"-\"", 8);
910 h += 8;
911
912 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
913 " %d %03d",
Willy Tarreau957c0a52011-03-03 17:42:23 +0100914 s->req->prod->addr.c.from.ss_family == AF_UNIX ? s->listener->luid :
Willy Tarreau86ad42c2011-08-27 12:29:07 +0200915 get_host_port(&s->req->prod->addr.c.from),
Emeric Brun3a058f32009-06-30 18:26:00 +0200916 (int)s->logs.accept_date.tv_usec/1000);
917 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
918 goto trunc;
919 h += w;
920
921 w = strlen(fe->id);
922 if (h >= tmpline + sizeof(tmpline) - 4 - w)
923 goto trunc;
924 *(h++) = ' ';
925 *(h++) = '\"';
926 memcpy(h, fe->id, w);
927 h += w;
928 *(h++) = '\"';
929
930 w = strlen(be->id);
931 if (h >= tmpline + sizeof(tmpline) - 4 - w)
932 goto trunc;
933 *(h++) = ' ';
934 *(h++) = '\"';
935 memcpy(h, be->id, w);
936 h += w;
937 *(h++) = '\"';
938
Willy Tarreau71904a42011-02-13 14:30:26 +0100939 if (!(tolog & LW_SVID))
940 svid = "-";
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200941 else switch (s->target.type) {
Willy Tarreau71904a42011-02-13 14:30:26 +0100942 case TARG_TYPE_SERVER:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200943 svid = s->target.ptr.s->id;
Willy Tarreau71904a42011-02-13 14:30:26 +0100944 break;
945 case TARG_TYPE_APPLET:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200946 svid = s->target.ptr.a->name;
Willy Tarreau71904a42011-02-13 14:30:26 +0100947 break;
948 default:
949 svid = "<NOSRV>";
950 break;
951 }
Emeric Brun3a058f32009-06-30 18:26:00 +0200952
953 w = strlen(svid);
954 if (h >= tmpline + sizeof(tmpline) - 4 - w)
955 goto trunc;
956 *(h++) = ' ';
957 *(h++) = '\"';
958 memcpy(h, svid, w);
959 h += w;
960 *(h++) = '\"';
961
962 t_request = -1;
963 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
964 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
965 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
966 " %d %ld %ld %ld %ld",
967 t_request,
968 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
969 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
970 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
971 s->logs.t_close);
972 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
973 goto trunc;
974 h += w;
975
976 if (h >= tmpline + sizeof(tmpline) - 8)
977 goto trunc;
978 *(h++) = ' ';
979 *(h++) = '\"';
980 *(h++) = sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT];
981 *(h++) = sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT];
982 *(h++) = (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
983 *(h++) = (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-';
984 *(h++) = '\"';
985
986 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
987 " %d %d %d %d %d %ld %ld",
Willy Tarreau827aee92011-03-10 16:55:02 +0100988 actconn, fe->feconn, be->beconn, target_srv(&s->target) ? target_srv(&s->target)->cur_sess : 0,
Willy Tarreauee28de02010-06-01 09:51:00 +0200989 (s->req->cons->conn_retries > 0) ? (be->conn_retries - s->req->cons->conn_retries) : be->conn_retries,
Emeric Brun3a058f32009-06-30 18:26:00 +0200990 s->logs.srv_queue_size, s->logs.prx_queue_size);
991
992 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
993 goto trunc;
994 h += w;
995
996 if (txn->cli_cookie) {
997 w = strlen(txn->cli_cookie);
998 if (h >= tmpline + sizeof(tmpline) - 4 - w)
999 goto trunc;
1000 *(h++) = ' ';
1001 *(h++) = '\"';
1002 memcpy(h, txn->cli_cookie, w);
1003 h += w;
1004 *(h++) = '\"';
1005 } else {
1006 if (h >= tmpline + sizeof(tmpline) - 5)
1007 goto trunc;
1008 memcpy(h, " \"-\"", 4);
1009 h += 4;
1010 }
1011
1012 if (txn->srv_cookie) {
1013 w = strlen(txn->srv_cookie);
1014 if (h >= tmpline + sizeof(tmpline) - 4 - w)
1015 goto trunc;
1016 *(h++) = ' ';
1017 *(h++) = '\"';
1018 memcpy(h, txn->srv_cookie, w);
1019 h += w;
1020 *(h++) = '\"';
1021 } else {
1022 if (h >= tmpline + sizeof(tmpline) - 5)
1023 goto trunc;
1024 memcpy(h, " \"-\"", 4);
1025 h += 4;
1026 }
1027
1028 if ((fe->to_log & LW_REQHDR) && txn->req.cap) {
1029 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1030 if (h >= sizeof (tmpline) + tmpline - 4)
1031 goto trunc;
Cyril Bonté7f2c5392010-03-13 15:15:07 +01001032 if (txn->req.cap[hdr] != NULL) {
1033 *(h++) = ' ';
1034 *(h++) = '\"';
1035 h = encode_string(h, tmpline + sizeof(tmpline) - 2,
1036 '#', hdr_encode_map, txn->req.cap[hdr]);
1037 *(h++) = '\"';
1038 } else {
1039 memcpy(h, " \"-\"", 4);
1040 h += 4;
1041 }
Emeric Brun3a058f32009-06-30 18:26:00 +02001042 }
1043 }
1044
1045 if ((fe->to_log & LW_RSPHDR) && txn->rsp.cap) {
1046 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1047 if (h >= sizeof (tmpline) + tmpline - 4)
1048 goto trunc;
Cyril Bonté7f2c5392010-03-13 15:15:07 +01001049 if (txn->rsp.cap[hdr] != NULL) {
1050 *(h++) = ' ';
1051 *(h++) = '\"';
1052 h = encode_string(h, tmpline + sizeof(tmpline) - 2,
1053 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1054 *(h++) = '\"';
1055 } else {
1056 memcpy(h, " \"-\"", 4);
1057 h += 4;
1058 }
Emeric Brun3a058f32009-06-30 18:26:00 +02001059 }
1060 }
1061
1062trunc:
1063 *h = '\0';
1064
1065 level = LOG_INFO;
1066 if (err && (fe->options2 & PR_O2_LOGERRORS))
1067 level = LOG_ERR;
1068
1069 send_log(prx_log, level, "%s\n", tmpline);
1070
1071 s->logs.logwait = 0;
1072}
1073
Willy Tarreau42250582007-04-01 01:30:43 +02001074/*
1075 * send a log for the session when we have enough info about it.
1076 * Will not log if the frontend has no log defined.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001077 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001078void http_sess_log(struct session *s)
Willy Tarreau42250582007-04-01 01:30:43 +02001079{
Cyril Bontéacd7d632010-11-01 19:26:02 +01001080 char pn[INET6_ADDRSTRLEN];
Willy Tarreau42250582007-04-01 01:30:43 +02001081 struct proxy *fe = s->fe;
1082 struct proxy *be = s->be;
1083 struct proxy *prx_log;
1084 struct http_txn *txn = &s->txn;
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001085 int tolog, level, err;
Willy Tarreau42250582007-04-01 01:30:43 +02001086 char *uri, *h;
Willy Tarreau71904a42011-02-13 14:30:26 +01001087 const char *svid;
Willy Tarreaufe944602007-10-25 10:34:16 +02001088 struct tm tm;
Willy Tarreau42250582007-04-01 01:30:43 +02001089 static char tmpline[MAX_SYSLOG_LEN];
Willy Tarreau70089872008-06-13 21:12:51 +02001090 int t_request;
Willy Tarreau42250582007-04-01 01:30:43 +02001091 int hdr;
1092
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001093 /* if we don't want to log normal traffic, return now */
1094 err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
Willy Tarreauee28de02010-06-01 09:51:00 +02001095 (s->req->cons->conn_retries != be->conn_retries) ||
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001096 txn->status >= 500;
1097 if (!err && (fe->options2 & PR_O2_NOLOGNORM))
1098 return;
1099
Willy Tarreau42250582007-04-01 01:30:43 +02001100 if (fe->logfac1 < 0 && fe->logfac2 < 0)
1101 return;
1102 prx_log = fe;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001103
Emeric Brun3a058f32009-06-30 18:26:00 +02001104 if (prx_log->options2 & PR_O2_CLFLOG)
1105 return http_sess_clflog(s);
1106
Willy Tarreau631f01c2011-09-05 00:36:48 +02001107 if (addr_to_str(&s->req->prod->addr.c.from, pn, sizeof(pn)) == AF_UNIX)
1108 snprintf(pn, sizeof(pn), "unix:%d", s->listener->luid);
Willy Tarreau42250582007-04-01 01:30:43 +02001109
Willy Tarreaub7f694f2008-06-22 17:18:02 +02001110 get_localtime(s->logs.accept_date.tv_sec, &tm);
Willy Tarreau42250582007-04-01 01:30:43 +02001111
1112 /* FIXME: let's limit ourselves to frontend logging for now. */
1113 tolog = fe->to_log;
1114
1115 h = tmpline;
1116 if (fe->to_log & LW_REQHDR &&
1117 txn->req.cap &&
1118 (h < tmpline + sizeof(tmpline) - 10)) {
1119 *(h++) = ' ';
1120 *(h++) = '{';
1121 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1122 if (hdr)
1123 *(h++) = '|';
1124 if (txn->req.cap[hdr] != NULL)
1125 h = encode_string(h, tmpline + sizeof(tmpline) - 7,
1126 '#', hdr_encode_map, txn->req.cap[hdr]);
1127 }
1128 *(h++) = '}';
1129 }
1130
1131 if (fe->to_log & LW_RSPHDR &&
1132 txn->rsp.cap &&
1133 (h < tmpline + sizeof(tmpline) - 7)) {
1134 *(h++) = ' ';
1135 *(h++) = '{';
1136 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1137 if (hdr)
1138 *(h++) = '|';
1139 if (txn->rsp.cap[hdr] != NULL)
1140 h = encode_string(h, tmpline + sizeof(tmpline) - 4,
1141 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1142 }
1143 *(h++) = '}';
1144 }
1145
1146 if (h < tmpline + sizeof(tmpline) - 4) {
1147 *(h++) = ' ';
1148 *(h++) = '"';
1149 uri = txn->uri ? txn->uri : "<BADREQ>";
1150 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
1151 '#', url_encode_map, uri);
1152 *(h++) = '"';
1153 }
1154 *h = '\0';
1155
Willy Tarreau71904a42011-02-13 14:30:26 +01001156 if (!(tolog & LW_SVID))
1157 svid = "-";
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02001158 else switch (s->target.type) {
Willy Tarreau71904a42011-02-13 14:30:26 +01001159 case TARG_TYPE_SERVER:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02001160 svid = s->target.ptr.s->id;
Willy Tarreau71904a42011-02-13 14:30:26 +01001161 break;
1162 case TARG_TYPE_APPLET:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02001163 svid = s->target.ptr.a->name;
Willy Tarreau71904a42011-02-13 14:30:26 +01001164 break;
1165 default:
1166 svid = "<NOSRV>";
1167 break;
1168 }
Willy Tarreau42250582007-04-01 01:30:43 +02001169
Willy Tarreau70089872008-06-13 21:12:51 +02001170 t_request = -1;
1171 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
1172 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
1173
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001174 level = LOG_INFO;
1175 if (err && (fe->options2 & PR_O2_LOGERRORS))
1176 level = LOG_ERR;
1177
1178 send_log(prx_log, level,
Willy Tarreau42250582007-04-01 01:30:43 +02001179 "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]"
Willy Tarreau1772ece2009-04-03 14:49:12 +02001180 " %s %s/%s %d/%ld/%ld/%ld/%s%ld %d %s%lld"
1181 " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %ld/%ld%s\n",
Willy Tarreau957c0a52011-03-03 17:42:23 +01001182 (s->req->prod->addr.c.from.ss_family == AF_UNIX) ? "unix" : pn,
1183 (s->req->prod->addr.c.from.ss_family == AF_UNIX) ? s->listener->luid :
Willy Tarreau86ad42c2011-08-27 12:29:07 +02001184 get_host_port(&s->req->prod->addr.c.from),
Willy Tarreaufe944602007-10-25 10:34:16 +02001185 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001186 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)s->logs.accept_date.tv_usec/1000,
Willy Tarreau42250582007-04-01 01:30:43 +02001187 fe->id, be->id, svid,
Willy Tarreau70089872008-06-13 21:12:51 +02001188 t_request,
1189 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
Willy Tarreau42250582007-04-01 01:30:43 +02001190 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
1191 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
1192 (tolog & LW_BYTES) ? "" : "+", s->logs.t_close,
1193 txn->status,
Willy Tarreau8b3977f2008-01-18 11:16:32 +01001194 (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out,
Willy Tarreau42250582007-04-01 01:30:43 +02001195 txn->cli_cookie ? txn->cli_cookie : "-",
1196 txn->srv_cookie ? txn->srv_cookie : "-",
1197 sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT],
1198 sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT],
1199 (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
1200 (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-',
Willy Tarreau827aee92011-03-10 16:55:02 +01001201 actconn, fe->feconn, be->beconn, target_srv(&s->target) ? target_srv(&s->target)->cur_sess : 0,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001202 (s->flags & SN_REDISP)?"+":"",
Willy Tarreauee28de02010-06-01 09:51:00 +02001203 (s->req->cons->conn_retries>0)?(be->conn_retries - s->req->cons->conn_retries):be->conn_retries,
Willy Tarreau42250582007-04-01 01:30:43 +02001204 s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline);
1205
1206 s->logs.logwait = 0;
1207}
1208
Willy Tarreau117f59e2007-03-04 18:17:17 +01001209
1210/*
1211 * Capture headers from message starting at <som> according to header list
1212 * <cap_hdr>, and fill the <idx> structure appropriately.
1213 */
1214void capture_headers(char *som, struct hdr_idx *idx,
1215 char **cap, struct cap_hdr *cap_hdr)
1216{
1217 char *eol, *sol, *col, *sov;
1218 int cur_idx;
1219 struct cap_hdr *h;
1220 int len;
1221
1222 sol = som + hdr_idx_first_pos(idx);
1223 cur_idx = hdr_idx_first_idx(idx);
1224
1225 while (cur_idx) {
1226 eol = sol + idx->v[cur_idx].len;
1227
1228 col = sol;
1229 while (col < eol && *col != ':')
1230 col++;
1231
1232 sov = col + 1;
1233 while (sov < eol && http_is_lws[(unsigned char)*sov])
1234 sov++;
1235
1236 for (h = cap_hdr; h; h = h->next) {
1237 if ((h->namelen == col - sol) &&
1238 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1239 if (cap[h->index] == NULL)
1240 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001241 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001242
1243 if (cap[h->index] == NULL) {
1244 Alert("HTTP capture : out of memory.\n");
1245 continue;
1246 }
1247
1248 len = eol - sov;
1249 if (len > h->len)
1250 len = h->len;
1251
1252 memcpy(cap[h->index], sov, len);
1253 cap[h->index][len]=0;
1254 }
1255 }
1256 sol = eol + idx->v[cur_idx].cr + 1;
1257 cur_idx = idx->v[cur_idx].next;
1258 }
1259}
1260
1261
Willy Tarreau42250582007-04-01 01:30:43 +02001262/* either we find an LF at <ptr> or we jump to <bad>.
1263 */
1264#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1265
1266/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1267 * otherwise to <http_msg_ood> with <state> set to <st>.
1268 */
1269#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1270 ptr++; \
1271 if (likely(ptr < end)) \
1272 goto good; \
1273 else { \
1274 state = (st); \
1275 goto http_msg_ood; \
1276 } \
1277 } while (0)
1278
1279
Willy Tarreaubaaee002006-06-26 02:48:02 +02001280/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001281 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001282 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1283 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1284 * will give undefined results.
1285 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1286 * and that msg->sol points to the beginning of the response.
1287 * If a complete line is found (which implies that at least one CR or LF is
1288 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1289 * returned indicating an incomplete line (which does not mean that parts have
1290 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1291 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1292 * upon next call.
1293 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001294 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001295 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1296 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001297 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001298 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001299const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf,
1300 unsigned int state, const char *ptr, const char *end,
1301 char **ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001302{
Willy Tarreau8973c702007-01-21 23:58:29 +01001303 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001304 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001305 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001306 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001307 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1308
1309 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001310 msg->sl.st.v_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001311 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1312 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001313 state = HTTP_MSG_ERROR;
1314 break;
1315
Willy Tarreau8973c702007-01-21 23:58:29 +01001316 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001317 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001318 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001319 msg->sl.st.c = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001320 goto http_msg_rpcode;
1321 }
1322 if (likely(HTTP_IS_SPHT(*ptr)))
1323 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1324 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001325 state = HTTP_MSG_ERROR;
1326 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001327
Willy Tarreau8973c702007-01-21 23:58:29 +01001328 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001329 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001330 if (likely(!HTTP_IS_LWS(*ptr)))
1331 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1332
1333 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001334 msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001335 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1336 }
1337
1338 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreau962c3f42010-01-10 00:15:35 +01001339 msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001340 http_msg_rsp_reason:
1341 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreau962c3f42010-01-10 00:15:35 +01001342 msg->sl.st.r = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001343 msg->sl.st.r_l = 0;
1344 goto http_msg_rpline_eol;
1345
Willy Tarreau8973c702007-01-21 23:58:29 +01001346 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001347 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001348 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001349 msg->sl.st.r = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001350 goto http_msg_rpreason;
1351 }
1352 if (likely(HTTP_IS_SPHT(*ptr)))
1353 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1354 /* so it's a CR/LF, so there is no reason phrase */
1355 goto http_msg_rsp_reason;
1356
Willy Tarreau8973c702007-01-21 23:58:29 +01001357 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001358 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001359 if (likely(!HTTP_IS_CRLF(*ptr)))
1360 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreau962c3f42010-01-10 00:15:35 +01001361 msg->sl.st.r_l = (ptr - msg_buf) - msg->som - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001362 http_msg_rpline_eol:
1363 /* We have seen the end of line. Note that we do not
1364 * necessarily have the \n yet, but at least we know that we
1365 * have EITHER \r OR \n, otherwise the response would not be
1366 * complete. We can then record the response length and return
1367 * to the caller which will be able to register it.
1368 */
1369 msg->sl.st.l = ptr - msg->sol;
1370 return ptr;
1371
1372#ifdef DEBUG_FULL
1373 default:
1374 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1375 exit(1);
1376#endif
1377 }
1378
1379 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001380 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001381 if (ret_state)
1382 *ret_state = state;
1383 if (ret_ptr)
1384 *ret_ptr = (char *)ptr;
1385 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001386}
1387
Willy Tarreau8973c702007-01-21 23:58:29 +01001388/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001389 * This function parses a request line between <ptr> and <end>, starting with
1390 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1391 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1392 * will give undefined results.
1393 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1394 * and that msg->sol points to the beginning of the request.
1395 * If a complete line is found (which implies that at least one CR or LF is
1396 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1397 * returned indicating an incomplete line (which does not mean that parts have
1398 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1399 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1400 * upon next call.
1401 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001402 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001403 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1404 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001405 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001406 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001407const char *http_parse_reqline(struct http_msg *msg, const char *msg_buf,
1408 unsigned int state, const char *ptr, const char *end,
1409 char **ret_ptr, unsigned int *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001410{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001411 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001412 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001413 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001414 if (likely(HTTP_IS_TOKEN(*ptr)))
1415 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001416
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001417 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001418 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001419 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1420 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001421
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001422 if (likely(HTTP_IS_CRLF(*ptr))) {
1423 /* HTTP 0.9 request */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001424 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001425 http_msg_req09_uri:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001426 msg->sl.rq.u = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001427 http_msg_req09_uri_e:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001428 msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001429 http_msg_req09_ver:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001430 msg->sl.rq.v = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001431 msg->sl.rq.v_l = 0;
1432 goto http_msg_rqline_eol;
1433 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001434 state = HTTP_MSG_ERROR;
1435 break;
1436
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001437 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001438 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001439 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001440 msg->sl.rq.u = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001441 goto http_msg_rquri;
1442 }
1443 if (likely(HTTP_IS_SPHT(*ptr)))
1444 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1445 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1446 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001447
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001448 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001449 http_msg_rquri:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001450 if (likely(!HTTP_IS_LWS(*ptr)))
1451 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001452
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001453 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001454 msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001455 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1456 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001457
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001458 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1459 goto http_msg_req09_uri_e;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001460
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001461 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001462 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001463 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001464 msg->sl.rq.v = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001465 goto http_msg_rqver;
1466 }
1467 if (likely(HTTP_IS_SPHT(*ptr)))
1468 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1469 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1470 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001471
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001472 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001473 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001474 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001475 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001476
1477 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001478 msg->sl.rq.v_l = (ptr - msg_buf) - msg->som - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001479 http_msg_rqline_eol:
1480 /* We have seen the end of line. Note that we do not
1481 * necessarily have the \n yet, but at least we know that we
1482 * have EITHER \r OR \n, otherwise the request would not be
1483 * complete. We can then record the request length and return
1484 * to the caller which will be able to register it.
1485 */
1486 msg->sl.rq.l = ptr - msg->sol;
1487 return ptr;
1488 }
1489
1490 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001491 state = HTTP_MSG_ERROR;
1492 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001493
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001494#ifdef DEBUG_FULL
1495 default:
1496 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1497 exit(1);
1498#endif
1499 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001500
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001501 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001502 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001503 if (ret_state)
1504 *ret_state = state;
1505 if (ret_ptr)
1506 *ret_ptr = (char *)ptr;
1507 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001508}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001509
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001510/*
1511 * Returns the data from Authorization header. Function may be called more
1512 * than once so data is stored in txn->auth_data. When no header is found
1513 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
1514 * searching again for something we are unable to find anyway.
1515 */
1516
1517char get_http_auth_buff[BUFSIZE];
1518
1519int
1520get_http_auth(struct session *s)
1521{
1522
1523 struct http_txn *txn = &s->txn;
1524 struct chunk auth_method;
1525 struct hdr_ctx ctx;
1526 char *h, *p;
1527 int len;
1528
1529#ifdef DEBUG_AUTH
1530 printf("Auth for session %p: %d\n", s, txn->auth.method);
1531#endif
1532
1533 if (txn->auth.method == HTTP_AUTH_WRONG)
1534 return 0;
1535
1536 if (txn->auth.method)
1537 return 1;
1538
1539 txn->auth.method = HTTP_AUTH_WRONG;
1540
1541 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001542
1543 if (txn->flags & TX_USE_PX_CONN) {
1544 h = "Proxy-Authorization";
1545 len = strlen(h);
1546 } else {
1547 h = "Authorization";
1548 len = strlen(h);
1549 }
1550
1551 if (!http_find_header2(h, len, txn->req.sol, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001552 return 0;
1553
1554 h = ctx.line + ctx.val;
1555
1556 p = memchr(h, ' ', ctx.vlen);
1557 if (!p || p == h)
1558 return 0;
1559
1560 chunk_initlen(&auth_method, h, 0, p-h);
1561 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1562
1563 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1564
1565 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
1566 get_http_auth_buff, BUFSIZE - 1);
1567
1568 if (len < 0)
1569 return 0;
1570
1571
1572 get_http_auth_buff[len] = '\0';
1573
1574 p = strchr(get_http_auth_buff, ':');
1575
1576 if (!p)
1577 return 0;
1578
1579 txn->auth.user = get_http_auth_buff;
1580 *p = '\0';
1581 txn->auth.pass = p+1;
1582
1583 txn->auth.method = HTTP_AUTH_BASIC;
1584 return 1;
1585 }
1586
1587 return 0;
1588}
1589
Willy Tarreau58f10d72006-12-04 02:26:12 +01001590
Willy Tarreau8973c702007-01-21 23:58:29 +01001591/*
1592 * This function parses an HTTP message, either a request or a response,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001593 * depending on the initial msg->msg_state. It can be preempted everywhere
Willy Tarreau8973c702007-01-21 23:58:29 +01001594 * when data are missing and recalled at the exact same location with no
1595 * information loss. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001596 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau15de77e2010-01-02 21:59:16 +01001597 * fields. Note that msg->som and msg->sol will be initialized after completing
1598 * the first state, so that none of the msg pointers has to be initialized
1599 * prior to the first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001600 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001601void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx)
1602{
Willy Tarreaue69eada2008-01-27 00:34:10 +01001603 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001604 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001605
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001606 state = msg->msg_state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001607 ptr = buf->lr;
1608 end = buf->r;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001609
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001610 if (unlikely(ptr >= end))
1611 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001612
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001613 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001614 /*
1615 * First, states that are specific to the response only.
1616 * We check them first so that request and headers are
1617 * closer to each other (accessed more often).
1618 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001619 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001620 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001621 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001622 /* we have a start of message, but we have to check
1623 * first if we need to remove some CRLF. We can only
1624 * do this when send_max=0.
1625 */
1626 char *beg = buf->w + buf->send_max;
1627 if (beg >= buf->data + buf->size)
1628 beg -= buf->size;
1629 if (unlikely(ptr != beg)) {
1630 if (buf->send_max)
1631 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001632 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreau15de77e2010-01-02 21:59:16 +01001633 buffer_ignore(buf, ptr - beg);
Willy Tarreau8973c702007-01-21 23:58:29 +01001634 }
Willy Tarreau15de77e2010-01-02 21:59:16 +01001635 msg->som = ptr - buf->data;
Willy Tarreau816b9792009-09-15 21:25:21 +02001636 msg->sol = ptr;
Willy Tarreau8973c702007-01-21 23:58:29 +01001637 hdr_idx_init(idx);
1638 state = HTTP_MSG_RPVER;
1639 goto http_msg_rpver;
1640 }
1641
1642 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1643 goto http_msg_invalid;
1644
1645 if (unlikely(*ptr == '\n'))
1646 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1647 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1648 /* stop here */
1649
Willy Tarreau8973c702007-01-21 23:58:29 +01001650 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001651 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001652 EXPECT_LF_HERE(ptr, http_msg_invalid);
1653 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1654 /* stop here */
1655
Willy Tarreau8973c702007-01-21 23:58:29 +01001656 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001657 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001658 case HTTP_MSG_RPVER_SP:
1659 case HTTP_MSG_RPCODE:
1660 case HTTP_MSG_RPCODE_SP:
1661 case HTTP_MSG_RPREASON:
Willy Tarreaua15645d2007-03-18 16:22:39 +01001662 ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001663 &buf->lr, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001664 if (unlikely(!ptr))
1665 return;
1666
1667 /* we have a full response and we know that we have either a CR
1668 * or an LF at <ptr>.
1669 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001670 //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 +01001671 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1672
1673 msg->sol = ptr;
1674 if (likely(*ptr == '\r'))
1675 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1676 goto http_msg_rpline_end;
1677
Willy Tarreau8973c702007-01-21 23:58:29 +01001678 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001679 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001680 /* msg->sol must point to the first of CR or LF. */
1681 EXPECT_LF_HERE(ptr, http_msg_invalid);
1682 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1683 /* stop here */
1684
1685 /*
1686 * Second, states that are specific to the request only
1687 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001688 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001689 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001690 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001691 /* we have a start of message, but we have to check
1692 * first if we need to remove some CRLF. We can only
1693 * do this when send_max=0.
1694 */
1695 char *beg = buf->w + buf->send_max;
1696 if (beg >= buf->data + buf->size)
1697 beg -= buf->size;
1698 if (likely(ptr != beg)) {
1699 if (buf->send_max)
1700 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001701 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreau15de77e2010-01-02 21:59:16 +01001702 buffer_ignore(buf, ptr - beg);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001703 }
Willy Tarreau15de77e2010-01-02 21:59:16 +01001704 msg->som = ptr - buf->data;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001705 msg->sol = ptr;
Willy Tarreauf0d058e2007-01-25 12:03:42 +01001706 /* we will need this when keep-alive will be supported
1707 hdr_idx_init(idx);
1708 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001709 state = HTTP_MSG_RQMETH;
1710 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001711 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001712
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001713 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1714 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001715
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001716 if (unlikely(*ptr == '\n'))
1717 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1718 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001719 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001720
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001721 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001722 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001723 EXPECT_LF_HERE(ptr, http_msg_invalid);
1724 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001725 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001726
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001727 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001728 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001729 case HTTP_MSG_RQMETH_SP:
1730 case HTTP_MSG_RQURI:
1731 case HTTP_MSG_RQURI_SP:
1732 case HTTP_MSG_RQVER:
1733 ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001734 &buf->lr, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001735 if (unlikely(!ptr))
1736 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001737
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001738 /* we have a full request and we know that we have either a CR
1739 * or an LF at <ptr>.
1740 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001741 //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 +01001742 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001743
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001744 msg->sol = ptr;
1745 if (likely(*ptr == '\r'))
1746 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001747 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001748
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001749 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001750 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001751 /* check for HTTP/0.9 request : no version information available.
1752 * msg->sol must point to the first of CR or LF.
1753 */
1754 if (unlikely(msg->sl.rq.v_l == 0))
1755 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001756
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001757 EXPECT_LF_HERE(ptr, http_msg_invalid);
1758 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001759 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001760
Willy Tarreau8973c702007-01-21 23:58:29 +01001761 /*
1762 * Common states below
1763 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001764 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001765 http_msg_hdr_first:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001766 msg->sol = ptr;
1767 if (likely(!HTTP_IS_CRLF(*ptr))) {
1768 goto http_msg_hdr_name;
1769 }
1770
1771 if (likely(*ptr == '\r'))
1772 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1773 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001774
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001775 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001776 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001777 /* assumes msg->sol points to the first char */
1778 if (likely(HTTP_IS_TOKEN(*ptr)))
1779 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001780
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001781 if (likely(*ptr == ':')) {
1782 msg->col = ptr - buf->data;
1783 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
1784 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001785
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001786 if (likely(msg->err_pos < -1) || *ptr == '\n')
1787 goto http_msg_invalid;
1788
1789 if (msg->err_pos == -1) /* capture error pointer */
1790 msg->err_pos = ptr - buf->data; /* >= 0 now */
1791
1792 /* and we still accept this non-token character */
1793 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001794
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001795 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001796 http_msg_hdr_l1_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001797 /* assumes msg->sol points to the first char and msg->col to the colon */
1798 if (likely(HTTP_IS_SPHT(*ptr)))
1799 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001800
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001801 /* header value can be basically anything except CR/LF */
1802 msg->sov = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001803
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001804 if (likely(!HTTP_IS_CRLF(*ptr))) {
1805 goto http_msg_hdr_val;
1806 }
1807
1808 if (likely(*ptr == '\r'))
1809 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1810 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001811
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001812 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001813 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001814 EXPECT_LF_HERE(ptr, http_msg_invalid);
1815 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001816
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001817 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001818 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001819 if (likely(HTTP_IS_SPHT(*ptr))) {
1820 /* replace HT,CR,LF with spaces */
1821 for (; buf->data+msg->sov < ptr; msg->sov++)
1822 buf->data[msg->sov] = ' ';
1823 goto http_msg_hdr_l1_sp;
1824 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001825 /* we had a header consisting only in spaces ! */
1826 msg->eol = buf->data + msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001827 goto http_msg_complete_header;
1828
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001829 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001830 http_msg_hdr_val:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001831 /* assumes msg->sol points to the first char, msg->col to the
1832 * colon, and msg->sov points to the first character of the
1833 * value.
1834 */
1835 if (likely(!HTTP_IS_CRLF(*ptr)))
1836 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001837
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001838 msg->eol = ptr;
1839 /* Note: we could also copy eol into ->eoh so that we have the
1840 * real header end in case it ends with lots of LWS, but is this
1841 * really needed ?
1842 */
1843 if (likely(*ptr == '\r'))
1844 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1845 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001846
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001847 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001848 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001849 EXPECT_LF_HERE(ptr, http_msg_invalid);
1850 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001851
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001852 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001853 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001854 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1855 /* LWS: replace HT,CR,LF with spaces */
1856 for (; msg->eol < ptr; msg->eol++)
1857 *msg->eol = ' ';
1858 goto http_msg_hdr_val;
1859 }
1860 http_msg_complete_header:
1861 /*
1862 * It was a new header, so the last one is finished.
1863 * Assumes msg->sol points to the first char, msg->col to the
1864 * colon, msg->sov points to the first character of the value
1865 * and msg->eol to the first CR or LF so we know how the line
1866 * ends. We insert last header into the index.
1867 */
1868 /*
1869 fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol);
1870 write(2, msg->sol, msg->eol-msg->sol);
1871 fprintf(stderr,"\n");
1872 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001873
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001874 if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r',
1875 idx, idx->tail) < 0))
1876 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001877
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001878 msg->sol = ptr;
1879 if (likely(!HTTP_IS_CRLF(*ptr))) {
1880 goto http_msg_hdr_name;
1881 }
1882
1883 if (likely(*ptr == '\r'))
1884 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1885 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001886
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001887 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001888 http_msg_last_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001889 /* Assumes msg->sol points to the first of either CR or LF */
1890 EXPECT_LF_HERE(ptr, http_msg_invalid);
1891 ptr++;
1892 buf->lr = ptr;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001893 msg->col = msg->sov = buf->lr - buf->data;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001894 msg->eoh = msg->sol - buf->data;
Willy Tarreau962c3f42010-01-10 00:15:35 +01001895 msg->sol = buf->data + msg->som;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001896 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001897 return;
1898#ifdef DEBUG_FULL
1899 default:
1900 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1901 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001902#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001903 }
1904 http_msg_ood:
1905 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001906 msg->msg_state = state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001907 buf->lr = ptr;
1908 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001909
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001910 http_msg_invalid:
1911 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001912 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau7552c032009-03-01 11:10:40 +01001913 buf->lr = ptr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001914 return;
1915}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001916
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001917/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1918 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1919 * nothing is done and 1 is returned.
1920 */
1921static int http_upgrade_v09_to_v10(struct buffer *req, struct http_msg *msg, struct http_txn *txn)
1922{
1923 int delta;
1924 char *cur_end;
1925
1926 if (msg->sl.rq.v_l != 0)
1927 return 1;
1928
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001929 cur_end = msg->sol + msg->sl.rq.l;
1930 delta = 0;
1931
1932 if (msg->sl.rq.u_l == 0) {
1933 /* if no URI was set, add "/" */
1934 delta = buffer_replace2(req, cur_end, cur_end, " /", 2);
1935 cur_end += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001936 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001937 }
1938 /* add HTTP version */
1939 delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001940 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001941 cur_end += delta;
1942 cur_end = (char *)http_parse_reqline(msg, req->data,
1943 HTTP_MSG_RQMETH,
1944 msg->sol, cur_end + 1,
1945 NULL, NULL);
1946 if (unlikely(!cur_end))
1947 return 0;
1948
1949 /* we have a full HTTP/1.0 request now and we know that
1950 * we have either a CR or an LF at <ptr>.
1951 */
1952 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1953 return 1;
1954}
1955
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001956/* Parse the Connection: header of an HTTP request, looking for both "close"
1957 * and "keep-alive" values. If a buffer is provided and we already know that
1958 * some headers may safely be removed, we remove them now. The <to_del> flags
1959 * are used for that :
1960 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1961 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
1962 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1963 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1964 * harmless combinations may be removed. Do not call that after changes have
1965 * been processed. If unused, the buffer can be NULL, and no data will be
1966 * changed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001967 */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001968void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001969{
Willy Tarreau5b154472009-12-21 20:11:07 +01001970 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001971 const char *hdr_val = "Connection";
1972 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001973
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001974 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001975 return;
1976
Willy Tarreau88d349d2010-01-25 12:15:43 +01001977 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1978 hdr_val = "Proxy-Connection";
1979 hdr_len = 16;
1980 }
1981
Willy Tarreau5b154472009-12-21 20:11:07 +01001982 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001983 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau88d349d2010-01-25 12:15:43 +01001984 while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001985 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1986 txn->flags |= TX_HDR_CONN_KAL;
1987 if ((to_del & 2) && buf)
1988 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
1989 else
1990 txn->flags |= TX_CON_KAL_SET;
1991 }
1992 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1993 txn->flags |= TX_HDR_CONN_CLO;
1994 if ((to_del & 1) && buf)
1995 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
1996 else
1997 txn->flags |= TX_CON_CLO_SET;
1998 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001999 }
2000
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002001 txn->flags |= TX_HDR_CONN_PRS;
2002 return;
2003}
Willy Tarreau5b154472009-12-21 20:11:07 +01002004
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002005/* Apply desired changes on the Connection: header. Values may be removed and/or
2006 * added depending on the <wanted> flags, which are exclusively composed of
2007 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
2008 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
2009 */
2010void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int wanted)
2011{
2012 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002013 const char *hdr_val = "Connection";
2014 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002015
2016 ctx.idx = 0;
2017
Willy Tarreau88d349d2010-01-25 12:15:43 +01002018
2019 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2020 hdr_val = "Proxy-Connection";
2021 hdr_len = 16;
2022 }
2023
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002024 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau88d349d2010-01-25 12:15:43 +01002025 while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002026 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
2027 if (wanted & TX_CON_KAL_SET)
2028 txn->flags |= TX_CON_KAL_SET;
2029 else
2030 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01002031 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002032 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
2033 if (wanted & TX_CON_CLO_SET)
2034 txn->flags |= TX_CON_CLO_SET;
2035 else
2036 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002037 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002038 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002039
2040 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
2041 return;
2042
2043 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
2044 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002045 hdr_val = "Connection: close";
2046 hdr_len = 17;
2047 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2048 hdr_val = "Proxy-Connection: close";
2049 hdr_len = 23;
2050 }
2051 http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002052 }
2053
2054 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
2055 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002056 hdr_val = "Connection: keep-alive";
2057 hdr_len = 22;
2058 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2059 hdr_val = "Proxy-Connection: keep-alive";
2060 hdr_len = 28;
2061 }
2062 http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002063 }
2064 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01002065}
2066
Willy Tarreaud98cf932009-12-27 22:54:55 +01002067/* Parse the chunk size at buf->lr. Once done, it adjusts ->lr to point to the
2068 * first byte of body, and increments msg->sov by the number of bytes parsed,
2069 * so that we know we can forward between ->som and ->sov. Note that due to
2070 * possible wrapping at the end of the buffer, it is possible that msg->sov is
2071 * lower than msg->som.
Willy Tarreau115acb92009-12-26 13:56:06 +01002072 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002073 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01002074 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002075int http_parse_chunk_size(struct buffer *buf, struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01002076{
Willy Tarreaud98cf932009-12-27 22:54:55 +01002077 char *ptr = buf->lr;
2078 char *end = buf->data + buf->size;
Willy Tarreau115acb92009-12-26 13:56:06 +01002079 unsigned int chunk = 0;
2080
2081 /* The chunk size is in the following form, though we are only
2082 * interested in the size and CRLF :
2083 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
2084 */
2085 while (1) {
2086 int c;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002087 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002088 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002089 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01002090 if (c < 0) /* not a hex digit anymore */
2091 break;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002092 if (++ptr >= end)
2093 ptr = buf->data;
Willy Tarreau115acb92009-12-26 13:56:06 +01002094 if (chunk & 0xF000000) /* overflow will occur */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002095 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002096 chunk = (chunk << 4) + c;
2097 }
2098
Willy Tarreaud98cf932009-12-27 22:54:55 +01002099 /* empty size not allowed */
2100 if (ptr == buf->lr)
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002101 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002102
2103 while (http_is_spht[(unsigned char)*ptr]) {
2104 if (++ptr >= end)
2105 ptr = buf->data;
2106 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002107 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01002108 }
2109
Willy Tarreaud98cf932009-12-27 22:54:55 +01002110 /* Up to there, we know that at least one byte is present at *ptr. Check
2111 * for the end of chunk size.
2112 */
2113 while (1) {
2114 if (likely(HTTP_IS_CRLF(*ptr))) {
2115 /* we now have a CR or an LF at ptr */
2116 if (likely(*ptr == '\r')) {
2117 if (++ptr >= end)
2118 ptr = buf->data;
2119 if (ptr == buf->r)
2120 return 0;
2121 }
Willy Tarreau115acb92009-12-26 13:56:06 +01002122
Willy Tarreaud98cf932009-12-27 22:54:55 +01002123 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002124 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002125 if (++ptr >= end)
2126 ptr = buf->data;
2127 /* done */
2128 break;
2129 }
2130 else if (*ptr == ';') {
2131 /* chunk extension, ends at next CRLF */
2132 if (++ptr >= end)
2133 ptr = buf->data;
2134 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002135 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002136
2137 while (!HTTP_IS_CRLF(*ptr)) {
2138 if (++ptr >= end)
2139 ptr = buf->data;
2140 if (ptr == buf->r)
2141 return 0;
2142 }
2143 /* we have a CRLF now, loop above */
2144 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01002145 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002146 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002147 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002148 }
2149
Willy Tarreaud98cf932009-12-27 22:54:55 +01002150 /* OK we found our CRLF and now <ptr> points to the next byte,
2151 * which may or may not be present. We save that into ->lr and
2152 * ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01002153 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002154 msg->sov += ptr - buf->lr;
2155 buf->lr = ptr;
Willy Tarreau124d9912011-03-01 20:30:48 +01002156 msg->chunk_len = chunk;
2157 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002158 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002159 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002160 error:
2161 msg->err_pos = ptr - buf->data;
2162 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002163}
2164
Willy Tarreaud98cf932009-12-27 22:54:55 +01002165/* This function skips trailers in the buffer <buf> associated with HTTP
2166 * message <msg>. The first visited position is buf->lr. If the end of
2167 * the trailers is found, it is automatically scheduled to be forwarded,
2168 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2169 * If not enough data are available, the function does not change anything
Willy Tarreau638cd022010-01-03 07:42:04 +01002170 * except maybe buf->lr and msg->sov if it could parse some lines, and returns
2171 * zero. If a parse error is encountered, the function returns < 0 and does not
2172 * change anything except maybe buf->lr and msg->sov. Note that the message
2173 * must already be in HTTP_MSG_TRAILERS state before calling this function,
2174 * which implies that all non-trailers data have already been scheduled for
2175 * forwarding, and that the difference between msg->som and msg->sov exactly
2176 * matches the length of trailers already parsed and not forwarded. It is also
2177 * important to note that this function is designed to be able to parse wrapped
2178 * headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002179 */
2180int http_forward_trailers(struct buffer *buf, struct http_msg *msg)
2181{
2182 /* we have buf->lr which points to next line. Look for CRLF. */
2183 while (1) {
2184 char *p1 = NULL, *p2 = NULL;
2185 char *ptr = buf->lr;
Willy Tarreau638cd022010-01-03 07:42:04 +01002186 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002187
2188 /* scan current line and stop at LF or CRLF */
2189 while (1) {
2190 if (ptr == buf->r)
2191 return 0;
2192
2193 if (*ptr == '\n') {
2194 if (!p1)
2195 p1 = ptr;
2196 p2 = ptr;
2197 break;
2198 }
2199
2200 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002201 if (p1) {
2202 msg->err_pos = ptr - buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002203 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002204 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002205 p1 = ptr;
2206 }
2207
2208 ptr++;
2209 if (ptr >= buf->data + buf->size)
2210 ptr = buf->data;
2211 }
2212
2213 /* after LF; point to beginning of next line */
2214 p2++;
2215 if (p2 >= buf->data + buf->size)
2216 p2 = buf->data;
2217
Willy Tarreau638cd022010-01-03 07:42:04 +01002218 bytes = p2 - buf->lr;
2219 if (bytes < 0)
2220 bytes += buf->size;
2221
2222 /* schedule this line for forwarding */
2223 msg->sov += bytes;
2224 if (msg->sov >= buf->size)
2225 msg->sov -= buf->size;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002226
Willy Tarreau638cd022010-01-03 07:42:04 +01002227 if (p1 == buf->lr) {
2228 /* LF/CRLF at beginning of line => end of trailers at p2.
2229 * Everything was scheduled for forwarding, there's nothing
2230 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002231 */
Willy Tarreau638cd022010-01-03 07:42:04 +01002232 buf->lr = p2;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002233 msg->msg_state = HTTP_MSG_DONE;
2234 return 1;
2235 }
2236 /* OK, next line then */
2237 buf->lr = p2;
2238 }
2239}
2240
2241/* This function may be called only in HTTP_MSG_DATA_CRLF. It reads the CRLF or
2242 * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov,
2243 * ->som, buf->lr in order to include this part into the next forwarding phase.
2244 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2245 * not enough data are available, the function does not change anything and
2246 * returns zero. If a parse error is encountered, the function returns < 0 and
2247 * does not change anything. Note: this function is designed to parse wrapped
2248 * CRLF at the end of the buffer.
2249 */
2250int http_skip_chunk_crlf(struct buffer *buf, struct http_msg *msg)
2251{
2252 char *ptr;
2253 int bytes;
2254
2255 /* NB: we'll check data availabilty at the end. It's not a
2256 * problem because whatever we match first will be checked
2257 * against the correct length.
2258 */
2259 bytes = 1;
2260 ptr = buf->lr;
2261 if (*ptr == '\r') {
2262 bytes++;
2263 ptr++;
2264 if (ptr >= buf->data + buf->size)
2265 ptr = buf->data;
2266 }
2267
Willy Tarreaubf3f1de2010-03-17 15:54:24 +01002268 if (bytes > buf->l - buf->send_max)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002269 return 0;
2270
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002271 if (*ptr != '\n') {
2272 msg->err_pos = ptr - buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002273 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002274 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002275
2276 ptr++;
2277 if (ptr >= buf->data + buf->size)
2278 ptr = buf->data;
2279 buf->lr = ptr;
2280 /* prepare the CRLF to be forwarded. msg->som may be before data but we don't care */
2281 msg->sov = ptr - buf->data;
2282 msg->som = msg->sov - bytes;
2283 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2284 return 1;
2285}
Willy Tarreau5b154472009-12-21 20:11:07 +01002286
Willy Tarreau83e3af02009-12-28 17:39:57 +01002287void http_buffer_heavy_realign(struct buffer *buf, struct http_msg *msg)
2288{
2289 char *end = buf->data + buf->size;
2290 int off = buf->data + buf->size - buf->w;
2291
2292 /* two possible cases :
2293 * - the buffer is in one contiguous block, we move it in-place
Willy Tarreau8096de92010-02-26 11:12:27 +01002294 * - the buffer is in two blocks, we move it via the swap_buffer
Willy Tarreau83e3af02009-12-28 17:39:57 +01002295 */
2296 if (buf->l) {
Willy Tarreau8096de92010-02-26 11:12:27 +01002297 int block1 = buf->l;
2298 int block2 = 0;
2299 if (buf->r <= buf->w) {
Willy Tarreau83e3af02009-12-28 17:39:57 +01002300 /* non-contiguous block */
Willy Tarreau8096de92010-02-26 11:12:27 +01002301 block1 = buf->data + buf->size - buf->w;
2302 block2 = buf->r - buf->data;
2303 }
2304 if (block2)
2305 memcpy(swap_buffer, buf->data, block2);
2306 memmove(buf->data, buf->w, block1);
2307 if (block2)
2308 memcpy(buf->data + block1, swap_buffer, block2);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002309 }
2310
2311 /* adjust all known pointers */
2312 buf->w = buf->data;
2313 buf->lr += off; if (buf->lr >= end) buf->lr -= buf->size;
2314 buf->r += off; if (buf->r >= end) buf->r -= buf->size;
2315 msg->sol += off; if (msg->sol >= end) msg->sol -= buf->size;
2316 msg->eol += off; if (msg->eol >= end) msg->eol -= buf->size;
2317
2318 /* adjust relative pointers */
2319 msg->som = 0;
2320 msg->eoh += off; if (msg->eoh >= buf->size) msg->eoh -= buf->size;
2321 msg->col += off; if (msg->col >= buf->size) msg->col -= buf->size;
2322 msg->sov += off; if (msg->sov >= buf->size) msg->sov -= buf->size;
2323
Willy Tarreau83e3af02009-12-28 17:39:57 +01002324 if (msg->err_pos >= 0) {
2325 msg->err_pos += off;
2326 if (msg->err_pos >= buf->size)
2327 msg->err_pos -= buf->size;
2328 }
2329
2330 buf->flags &= ~BF_FULL;
2331 if (buf->l >= buffer_max_len(buf))
2332 buf->flags |= BF_FULL;
2333}
2334
Willy Tarreaud787e662009-07-07 10:14:51 +02002335/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2336 * processing can continue on next analysers, or zero if it either needs more
2337 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2338 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2339 * when it has nothing left to do, and may remove any analyser when it wants to
2340 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002341 */
Willy Tarreau3a816292009-07-07 10:55:49 +02002342int http_wait_for_request(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002343{
Willy Tarreau59234e92008-11-30 23:51:27 +01002344 /*
2345 * We will parse the partial (or complete) lines.
2346 * We will check the request syntax, and also join multi-line
2347 * headers. An index of all the lines will be elaborated while
2348 * parsing.
2349 *
2350 * For the parsing, we use a 28 states FSM.
2351 *
2352 * Here is the information we currently have :
Willy Tarreauf073a832009-03-01 23:21:47 +01002353 * req->data + msg->som = beginning of request
Willy Tarreau83e3af02009-12-28 17:39:57 +01002354 * req->data + msg->eoh = end of processed headers / start of current one
2355 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreau59234e92008-11-30 23:51:27 +01002356 * req->lr = first non-visited byte
2357 * req->r = end of data
Willy Tarreaud787e662009-07-07 10:14:51 +02002358 *
2359 * At end of parsing, we may perform a capture of the error (if any), and
2360 * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE).
2361 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2362 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002363 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002364
Willy Tarreau59234e92008-11-30 23:51:27 +01002365 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002366 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002367 struct http_txn *txn = &s->txn;
2368 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002369 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002370
Willy Tarreau6bf17362009-02-24 10:48:35 +01002371 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
2372 now_ms, __FUNCTION__,
2373 s,
2374 req,
2375 req->rex, req->wex,
2376 req->flags,
2377 req->l,
2378 req->analysers);
2379
Willy Tarreau52a0c602009-08-16 22:45:38 +02002380 /* we're speaking HTTP here, so let's speak HTTP to the client */
2381 s->srv_error = http_return_srv_error;
2382
Willy Tarreau83e3af02009-12-28 17:39:57 +01002383 /* There's a protected area at the end of the buffer for rewriting
2384 * purposes. We don't want to start to parse the request if the
2385 * protected area is affected, because we may have to move processed
2386 * data later, which is much more complicated.
2387 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002388 if (req->l && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau065e8332010-01-08 00:30:20 +01002389 if ((txn->flags & TX_NOT_FIRST) &&
2390 unlikely((req->flags & BF_FULL) ||
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002391 req->r < req->lr ||
2392 req->r > req->data + req->size - global.tune.maxrewrite)) {
2393 if (req->send_max) {
Willy Tarreau64648412010-03-05 10:41:54 +01002394 if (req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
2395 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002396 /* some data has still not left the buffer, wake us once that's done */
2397 buffer_dont_connect(req);
2398 req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
2399 return 0;
2400 }
Willy Tarreau0499e352010-12-17 07:13:42 +01002401 if (req->r < req->lr || req->r > req->data + req->size - global.tune.maxrewrite)
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002402 http_buffer_heavy_realign(req, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002403 }
2404
Willy Tarreau065e8332010-01-08 00:30:20 +01002405 /* Note that we have the same problem with the response ; we
2406 * may want to send a redirect, error or anything which requires
2407 * some spare space. So we'll ensure that we have at least
2408 * maxrewrite bytes available in the response buffer before
2409 * processing that one. This will only affect pipelined
2410 * keep-alive requests.
2411 */
2412 if ((txn->flags & TX_NOT_FIRST) &&
2413 unlikely((s->rep->flags & BF_FULL) ||
2414 s->rep->r < s->rep->lr ||
2415 s->rep->r > s->rep->data + s->rep->size - global.tune.maxrewrite)) {
2416 if (s->rep->send_max) {
Willy Tarreau64648412010-03-05 10:41:54 +01002417 if (s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
2418 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002419 /* don't let a connection request be initiated */
2420 buffer_dont_connect(req);
Willy Tarreauff7b5882010-01-22 14:41:29 +01002421 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau0499e352010-12-17 07:13:42 +01002422 s->rep->analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002423 return 0;
2424 }
2425 }
2426
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002427 if (likely(req->lr < req->r))
2428 http_msg_analyzer(req, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002429 }
2430
Willy Tarreau59234e92008-11-30 23:51:27 +01002431 /* 1: we might have to print this header in debug mode */
2432 if (unlikely((global.mode & MODE_DEBUG) &&
2433 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreauc3bfeeb2010-04-16 09:14:45 +02002434 msg->sol &&
Willy Tarreau655dce92009-11-08 13:10:58 +01002435 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002436 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002437
Willy Tarreau663308b2010-06-07 14:06:08 +02002438 sol = req->data + msg->som;
Willy Tarreau59234e92008-11-30 23:51:27 +01002439 eol = sol + msg->sl.rq.l;
2440 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002441
Willy Tarreau59234e92008-11-30 23:51:27 +01002442 sol += hdr_idx_first_pos(&txn->hdr_idx);
2443 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002444
Willy Tarreau59234e92008-11-30 23:51:27 +01002445 while (cur_idx) {
2446 eol = sol + txn->hdr_idx.v[cur_idx].len;
2447 debug_hdr("clihdr", s, sol, eol);
2448 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2449 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002450 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002451 }
2452
Willy Tarreau58f10d72006-12-04 02:26:12 +01002453
Willy Tarreau59234e92008-11-30 23:51:27 +01002454 /*
2455 * Now we quickly check if we have found a full valid request.
2456 * If not so, we check the FD and buffer states before leaving.
2457 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002458 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002459 * requests are checked first. When waiting for a second request
2460 * on a keep-alive session, if we encounter and error, close, t/o,
2461 * we note the error in the session flags but don't set any state.
2462 * Since the error will be noted there, it will not be counted by
2463 * process_session() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002464 * Last, we may increase some tracked counters' http request errors on
2465 * the cases that are deliberately the client's fault. For instance,
2466 * a timeout or connection reset is not counted as an error. However
2467 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002468 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002469
Willy Tarreau655dce92009-11-08 13:10:58 +01002470 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002471 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002472 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002473 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002474 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02002475 session_inc_http_req_ctr(s);
2476 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002477 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002478 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002479 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002480
Willy Tarreau59234e92008-11-30 23:51:27 +01002481 /* 1: Since we are in header mode, if there's no space
2482 * left for headers, we won't be able to free more
2483 * later, so the session will never terminate. We
2484 * must terminate it now.
2485 */
2486 if (unlikely(req->flags & BF_FULL)) {
2487 /* FIXME: check if URI is set and return Status
2488 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002489 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002490 session_inc_http_req_ctr(s);
2491 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002492 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002493 if (msg->err_pos < 0)
2494 msg->err_pos = req->l;
Willy Tarreau59234e92008-11-30 23:51:27 +01002495 goto return_bad_req;
2496 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002497
Willy Tarreau59234e92008-11-30 23:51:27 +01002498 /* 2: have we encountered a read error ? */
2499 else if (req->flags & BF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002500 if (!(s->flags & SN_ERR_MASK))
2501 s->flags |= SN_ERR_CLICL;
2502
Willy Tarreaufcffa692010-01-10 14:21:19 +01002503 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002504 goto failed_keep_alive;
2505
Willy Tarreau59234e92008-11-30 23:51:27 +01002506 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002507 if (msg->err_pos >= 0) {
Willy Tarreau078272e2010-12-12 12:46:33 +01002508 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002509 session_inc_http_err_ctr(s);
2510 }
2511
Willy Tarreau59234e92008-11-30 23:51:27 +01002512 msg->msg_state = HTTP_MSG_ERROR;
2513 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002514
Willy Tarreauda7ff642010-06-23 11:44:09 +02002515 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002516 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002517 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002518 if (s->listener->counters)
2519 s->listener->counters->failed_req++;
2520
Willy Tarreau59234e92008-11-30 23:51:27 +01002521 if (!(s->flags & SN_FINST_MASK))
2522 s->flags |= SN_FINST_R;
2523 return 0;
2524 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002525
Willy Tarreau59234e92008-11-30 23:51:27 +01002526 /* 3: has the read timeout expired ? */
2527 else if (req->flags & BF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002528 if (!(s->flags & SN_ERR_MASK))
2529 s->flags |= SN_ERR_CLITO;
2530
Willy Tarreaufcffa692010-01-10 14:21:19 +01002531 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002532 goto failed_keep_alive;
2533
Willy Tarreau59234e92008-11-30 23:51:27 +01002534 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002535 if (msg->err_pos >= 0) {
Willy Tarreau078272e2010-12-12 12:46:33 +01002536 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002537 session_inc_http_err_ctr(s);
2538 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002539 txn->status = 408;
2540 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
2541 msg->msg_state = HTTP_MSG_ERROR;
2542 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002543
Willy Tarreauda7ff642010-06-23 11:44:09 +02002544 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002545 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002546 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002547 if (s->listener->counters)
2548 s->listener->counters->failed_req++;
2549
Willy Tarreau59234e92008-11-30 23:51:27 +01002550 if (!(s->flags & SN_FINST_MASK))
2551 s->flags |= SN_FINST_R;
2552 return 0;
2553 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002554
Willy Tarreau59234e92008-11-30 23:51:27 +01002555 /* 4: have we encountered a close ? */
2556 else if (req->flags & BF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002557 if (!(s->flags & SN_ERR_MASK))
2558 s->flags |= SN_ERR_CLICL;
2559
Willy Tarreaufcffa692010-01-10 14:21:19 +01002560 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002561 goto failed_keep_alive;
2562
Willy Tarreau4076a152009-04-02 15:18:36 +02002563 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01002564 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002565 txn->status = 400;
2566 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
2567 msg->msg_state = HTTP_MSG_ERROR;
2568 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002569
Willy Tarreauda7ff642010-06-23 11:44:09 +02002570 session_inc_http_err_ctr(s);
2571 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002572 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002573 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002574 if (s->listener->counters)
2575 s->listener->counters->failed_req++;
2576
Willy Tarreau59234e92008-11-30 23:51:27 +01002577 if (!(s->flags & SN_FINST_MASK))
2578 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002579 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002580 }
2581
Willy Tarreau520d95e2009-09-19 21:04:57 +02002582 buffer_dont_connect(req);
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002583 req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreauff7b5882010-01-22 14:41:29 +01002584 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002585
Willy Tarreaufcffa692010-01-10 14:21:19 +01002586 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2587 /* If the client starts to talk, let's fall back to
2588 * request timeout processing.
2589 */
2590 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002591 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002592 }
2593
Willy Tarreau59234e92008-11-30 23:51:27 +01002594 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002595 if (!tick_isset(req->analyse_exp)) {
2596 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2597 (txn->flags & TX_WAIT_NEXT_RQ) &&
2598 tick_isset(s->be->timeout.httpka))
2599 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2600 else
2601 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2602 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002603
Willy Tarreau59234e92008-11-30 23:51:27 +01002604 /* we're not ready yet */
2605 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002606
2607 failed_keep_alive:
2608 /* Here we process low-level errors for keep-alive requests. In
2609 * short, if the request is not the first one and it experiences
2610 * a timeout, read error or shutdown, we just silently close so
2611 * that the client can try again.
2612 */
2613 txn->status = 0;
2614 msg->msg_state = HTTP_MSG_RQBEFORE;
2615 req->analysers = 0;
2616 s->logs.logwait = 0;
Willy Tarreauff7b5882010-01-22 14:41:29 +01002617 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002618 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002619 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002620 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002621
Willy Tarreaud787e662009-07-07 10:14:51 +02002622 /* OK now we have a complete HTTP request with indexed headers. Let's
2623 * complete the request parsing by setting a few fields we will need
Willy Tarreaufa355d42009-11-29 18:12:29 +01002624 * later. At this point, we have the last CRLF at req->data + msg->eoh.
2625 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
2626 * points to the CRLF of the request line. req->lr points to the first
2627 * byte after the last LF. msg->col and msg->sov point to the first
2628 * byte of data. msg->eol cannot be trusted because it may have been
2629 * left uninitialized (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002630 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002631
Willy Tarreauda7ff642010-06-23 11:44:09 +02002632 session_inc_http_req_ctr(s);
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002633 proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */
2634
Willy Tarreaub16a5742010-01-10 14:46:16 +01002635 if (txn->flags & TX_WAIT_NEXT_RQ) {
2636 /* kill the pending keep-alive timeout */
2637 txn->flags &= ~TX_WAIT_NEXT_RQ;
2638 req->analyse_exp = TICK_ETERNITY;
2639 }
2640
2641
Willy Tarreaud787e662009-07-07 10:14:51 +02002642 /* Maybe we found in invalid header name while we were configured not
2643 * to block on that, so we have to capture it now.
2644 */
2645 if (unlikely(msg->err_pos >= 0))
Willy Tarreau078272e2010-12-12 12:46:33 +01002646 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002647
Willy Tarreau59234e92008-11-30 23:51:27 +01002648 /*
2649 * 1: identify the method
2650 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01002651 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002652
2653 /* we can make use of server redirect on GET and HEAD */
2654 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2655 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002656
Willy Tarreau59234e92008-11-30 23:51:27 +01002657 /*
2658 * 2: check if the URI matches the monitor_uri.
2659 * We have to do this for every request which gets in, because
2660 * the monitor-uri is defined by the frontend.
2661 */
2662 if (unlikely((s->fe->monitor_uri_len != 0) &&
2663 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002664 !memcmp(msg->sol + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002665 s->fe->monitor_uri,
2666 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002667 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002668 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002669 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002670 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002671
Willy Tarreau59234e92008-11-30 23:51:27 +01002672 s->flags |= SN_MONITOR;
Willy Tarreaueabea072011-09-10 23:29:44 +02002673 s->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002674
Willy Tarreau59234e92008-11-30 23:51:27 +01002675 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002676 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
2677 int ret = acl_exec_cond(cond, s->fe, s, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002678
Willy Tarreau59234e92008-11-30 23:51:27 +01002679 ret = acl_pass(ret);
2680 if (cond->pol == ACL_COND_UNLESS)
2681 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002682
Willy Tarreau59234e92008-11-30 23:51:27 +01002683 if (ret) {
2684 /* we fail this request, let's return 503 service unavail */
2685 txn->status = 503;
2686 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_503));
2687 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002688 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002689 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002690
Willy Tarreau59234e92008-11-30 23:51:27 +01002691 /* nothing to fail, let's reply normaly */
2692 txn->status = 200;
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002693 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_200));
Willy Tarreau59234e92008-11-30 23:51:27 +01002694 goto return_prx_cond;
2695 }
2696
2697 /*
2698 * 3: Maybe we have to copy the original REQURI for the logs ?
2699 * Note: we cannot log anymore if the request has been
2700 * classified as invalid.
2701 */
2702 if (unlikely(s->logs.logwait & LW_REQ)) {
2703 /* we have a complete HTTP request that we must log */
2704 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2705 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002706
Willy Tarreau59234e92008-11-30 23:51:27 +01002707 if (urilen >= REQURI_LEN)
2708 urilen = REQURI_LEN - 1;
2709 memcpy(txn->uri, &req->data[msg->som], urilen);
2710 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002711
Willy Tarreau59234e92008-11-30 23:51:27 +01002712 if (!(s->logs.logwait &= ~LW_REQ))
2713 s->do_log(s);
2714 } else {
2715 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002716 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002717 }
Willy Tarreau06619262006-12-17 08:37:22 +01002718
Willy Tarreau59234e92008-11-30 23:51:27 +01002719 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002720 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn))
2721 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002722
Willy Tarreau5b154472009-12-21 20:11:07 +01002723 /* ... and check if the request is HTTP/1.1 or above */
2724 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002725 ((msg->sol[msg->sl.rq.v + 5] > '1') ||
2726 ((msg->sol[msg->sl.rq.v + 5] == '1') &&
2727 (msg->sol[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01002728 txn->flags |= TX_REQ_VER_11;
2729
2730 /* "connection" has not been parsed yet */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002731 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL);
Willy Tarreau5b154472009-12-21 20:11:07 +01002732
Willy Tarreau88d349d2010-01-25 12:15:43 +01002733 /* if the frontend has "option http-use-proxy-header", we'll check if
2734 * we have what looks like a proxied connection instead of a connection,
2735 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2736 * Note that this is *not* RFC-compliant, however browsers and proxies
2737 * happen to do that despite being non-standard :-(
2738 * We consider that a request not beginning with either '/' or '*' is
2739 * a proxied connection, which covers both "scheme://location" and
2740 * CONNECT ip:port.
2741 */
2742 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
2743 msg->sol[msg->sl.rq.u] != '/' && msg->sol[msg->sl.rq.u] != '*')
2744 txn->flags |= TX_USE_PX_CONN;
2745
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002746 /* transfer length unknown*/
2747 txn->flags &= ~TX_REQ_XFER_LEN;
2748
Willy Tarreau59234e92008-11-30 23:51:27 +01002749 /* 5: we may need to capture headers */
2750 if (unlikely((s->logs.logwait & LW_REQHDR) && s->fe->req_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01002751 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002752 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002753
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002754 /* 6: determine the transfer-length.
2755 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2756 * the presence of a message-body in a REQUEST and its transfer length
2757 * must be determined that way (in order of precedence) :
2758 * 1. The presence of a message-body in a request is signaled by the
2759 * inclusion of a Content-Length or Transfer-Encoding header field
2760 * in the request's header fields. When a request message contains
2761 * both a message-body of non-zero length and a method that does
2762 * not define any semantics for that request message-body, then an
2763 * origin server SHOULD either ignore the message-body or respond
2764 * with an appropriate error message (e.g., 413). A proxy or
2765 * gateway, when presented the same request, SHOULD either forward
2766 * the request inbound with the message- body or ignore the
2767 * message-body when determining a response.
2768 *
2769 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2770 * and the "chunked" transfer-coding (Section 6.2) is used, the
2771 * transfer-length is defined by the use of this transfer-coding.
2772 * If a Transfer-Encoding header field is present and the "chunked"
2773 * transfer-coding is not present, the transfer-length is defined
2774 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002775 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002776 * 3. If a Content-Length header field is present, its decimal value in
2777 * OCTETs represents both the entity-length and the transfer-length.
2778 * If a message is received with both a Transfer-Encoding header
2779 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002780 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002781 * 4. By the server closing the connection. (Closing the connection
2782 * cannot be used to indicate the end of a request body, since that
2783 * would leave no possibility for the server to send back a response.)
2784 *
2785 * Whenever a transfer-coding is applied to a message-body, the set of
2786 * transfer-codings MUST include "chunked", unless the message indicates
2787 * it is terminated by closing the connection. When the "chunked"
2788 * transfer-coding is used, it MUST be the last transfer-coding applied
2789 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002790 */
2791
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002792 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002793 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002794 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01002795 while ((txn->flags & TX_REQ_VER_11) &&
2796 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002797 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
2798 txn->flags |= (TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2799 else if (txn->flags & TX_REQ_TE_CHNK) {
2800 /* bad transfer-encoding (chunked followed by something else) */
2801 use_close_only = 1;
2802 txn->flags &= ~(TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2803 break;
2804 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002805 }
2806
Willy Tarreau32b47f42009-10-18 20:55:02 +02002807 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002808 while (!(txn->flags & TX_REQ_TE_CHNK) && !use_close_only &&
Willy Tarreau32b47f42009-10-18 20:55:02 +02002809 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
2810 signed long long cl;
2811
Willy Tarreauad14f752011-09-02 20:33:27 +02002812 if (!ctx.vlen) {
2813 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002814 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002815 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002816
Willy Tarreauad14f752011-09-02 20:33:27 +02002817 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
2818 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002819 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002820 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002821
Willy Tarreauad14f752011-09-02 20:33:27 +02002822 if (cl < 0) {
2823 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002824 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002825 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002826
Willy Tarreauad14f752011-09-02 20:33:27 +02002827 if ((txn->flags & TX_REQ_CNT_LEN) && (msg->chunk_len != cl)) {
2828 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002829 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002830 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002831
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002832 txn->flags |= TX_REQ_CNT_LEN | TX_REQ_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002833 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002834 }
2835
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002836 /* bodyless requests have a known length */
2837 if (!use_close_only)
2838 txn->flags |= TX_REQ_XFER_LEN;
2839
Willy Tarreaud787e662009-07-07 10:14:51 +02002840 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002841 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002842 req->analyse_exp = TICK_ETERNITY;
2843 return 1;
2844
2845 return_bad_req:
2846 /* We centralize bad requests processing here */
2847 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2848 /* we detected a parsing error. We want to archive this request
2849 * in the dedicated proxy area for later troubleshooting.
2850 */
Willy Tarreau078272e2010-12-12 12:46:33 +01002851 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002852 }
2853
2854 txn->req.msg_state = HTTP_MSG_ERROR;
2855 txn->status = 400;
2856 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002857
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002858 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002859 if (s->listener->counters)
2860 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02002861
2862 return_prx_cond:
2863 if (!(s->flags & SN_ERR_MASK))
2864 s->flags |= SN_ERR_PRXCOND;
2865 if (!(s->flags & SN_FINST_MASK))
2866 s->flags |= SN_FINST_R;
2867
2868 req->analysers = 0;
2869 req->analyse_exp = TICK_ETERNITY;
2870 return 0;
2871}
2872
Cyril Bonté70be45d2010-10-12 00:14:35 +02002873/* We reached the stats page through a POST request.
2874 * Parse the posted data and enable/disable servers if necessary.
Cyril Bonté23b39d92011-02-10 22:54:44 +01002875 * Returns 1 if request was parsed or zero if it needs more data.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002876 */
Willy Tarreau295a8372011-03-10 11:25:07 +01002877int http_process_req_stat_post(struct stream_interface *si, struct http_txn *txn, struct buffer *req)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002878{
Cyril Bonté70be45d2010-10-12 00:14:35 +02002879 struct proxy *px;
2880 struct server *sv;
2881
2882 char *backend = NULL;
2883 int action = 0;
2884
2885 char *first_param, *cur_param, *next_param, *end_params;
2886
2887 first_param = req->data + txn->req.eoh + 2;
Willy Tarreau124d9912011-03-01 20:30:48 +01002888 end_params = first_param + txn->req.body_len;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002889
2890 cur_param = next_param = end_params;
2891
Cyril Bonté23b39d92011-02-10 22:54:44 +01002892 if (end_params >= req->data + req->size - global.tune.maxrewrite) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002893 /* Prevent buffer overflow */
Willy Tarreau295a8372011-03-10 11:25:07 +01002894 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002895 return 1;
2896 }
2897 else if (end_params > req->data + req->l) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01002898 /* we need more data */
Willy Tarreau295a8372011-03-10 11:25:07 +01002899 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté23b39d92011-02-10 22:54:44 +01002900 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002901 }
2902
2903 *end_params = '\0';
2904
Willy Tarreau295a8372011-03-10 11:25:07 +01002905 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002906
2907 /*
2908 * Parse the parameters in reverse order to only store the last value.
2909 * From the html form, the backend and the action are at the end.
2910 */
2911 while (cur_param > first_param) {
2912 char *key, *value;
2913
2914 cur_param--;
2915 if ((*cur_param == '&') || (cur_param == first_param)) {
2916 /* Parse the key */
2917 key = cur_param;
2918 if (cur_param != first_param) {
2919 /* delimit the string for the next loop */
2920 *key++ = '\0';
2921 }
2922
2923 /* Parse the value */
2924 value = key;
2925 while (*value != '\0' && *value != '=') {
2926 value++;
2927 }
2928 if (*value == '=') {
2929 /* Ok, a value is found, we can mark the end of the key */
2930 *value++ = '\0';
2931 }
2932
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02002933 if (!url_decode(key) || !url_decode(value))
2934 break;
2935
Cyril Bonté70be45d2010-10-12 00:14:35 +02002936 /* Now we can check the key to see what to do */
2937 if (!backend && strcmp(key, "b") == 0) {
2938 backend = value;
2939 }
2940 else if (!action && strcmp(key, "action") == 0) {
2941 if (strcmp(value, "disable") == 0) {
2942 action = 1;
2943 }
2944 else if (strcmp(value, "enable") == 0) {
2945 action = 2;
2946 } else {
2947 /* unknown action, no need to continue */
2948 break;
2949 }
2950 }
2951 else if (strcmp(key, "s") == 0) {
2952 if (backend && action && get_backend_server(backend, value, &px, &sv)) {
2953 switch (action) {
2954 case 1:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002955 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002956 /* Not already in maintenance, we can change the server state */
2957 sv->state |= SRV_MAINTAIN;
2958 set_server_down(sv);
Willy Tarreau295a8372011-03-10 11:25:07 +01002959 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002960 }
2961 break;
2962 case 2:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002963 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002964 /* Already in maintenance, we can change the server state */
2965 set_server_up(sv);
Willy Tarreau70461302010-10-22 14:39:02 +02002966 sv->health = sv->rise; /* up, but will fall down at first failure */
Willy Tarreau295a8372011-03-10 11:25:07 +01002967 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002968 }
2969 break;
2970 }
2971 }
2972 }
2973 next_param = cur_param;
2974 }
2975 }
Cyril Bonté23b39d92011-02-10 22:54:44 +01002976 return 1;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002977}
2978
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002979/* returns a pointer to the first rule which forbids access (deny or http_auth),
2980 * or NULL if everything's OK.
2981 */
Willy Tarreauff011f22011-01-06 17:51:27 +01002982static inline struct http_req_rule *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002983http_check_access_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
2984{
Willy Tarreauff011f22011-01-06 17:51:27 +01002985 struct http_req_rule *rule;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002986
Willy Tarreauff011f22011-01-06 17:51:27 +01002987 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002988 int ret = 1;
2989
Willy Tarreauff011f22011-01-06 17:51:27 +01002990 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002991 continue;
2992
2993 /* check condition, but only if attached */
Willy Tarreauff011f22011-01-06 17:51:27 +01002994 if (rule->cond) {
2995 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002996 ret = acl_pass(ret);
2997
Willy Tarreauff011f22011-01-06 17:51:27 +01002998 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002999 ret = !ret;
3000 }
3001
3002 if (ret) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003003 if (rule->action == HTTP_REQ_ACT_ALLOW)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003004 return NULL; /* no problem */
3005 else
Willy Tarreauff011f22011-01-06 17:51:27 +01003006 return rule; /* most likely a deny or auth rule */
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003007 }
3008 }
3009 return NULL;
3010}
3011
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003012/* This stream analyser runs all HTTP request processing which is common to
3013 * frontends and backends, which means blocking ACLs, filters, connection-close,
3014 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003015 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003016 * either needs more data or wants to immediately abort the request (eg: deny,
3017 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003018 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003019int http_process_req_common(struct session *s, struct buffer *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003020{
Willy Tarreaud787e662009-07-07 10:14:51 +02003021 struct http_txn *txn = &s->txn;
3022 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003023 struct acl_cond *cond;
Willy Tarreauff011f22011-01-06 17:51:27 +01003024 struct http_req_rule *http_req_last_rule = NULL;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003025 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003026 struct cond_wordlist *wl;
Simon Horman70735c92011-06-07 11:07:50 +09003027 int do_stats;
Willy Tarreaud787e662009-07-07 10:14:51 +02003028
Willy Tarreau655dce92009-11-08 13:10:58 +01003029 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003030 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003031 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003032 return 0;
3033 }
3034
Willy Tarreau3a816292009-07-07 10:55:49 +02003035 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003036 req->analyse_exp = TICK_ETERNITY;
3037
3038 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3039 now_ms, __FUNCTION__,
3040 s,
3041 req,
3042 req->rex, req->wex,
3043 req->flags,
3044 req->l,
3045 req->analysers);
3046
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003047 /* first check whether we have some ACLs set to block this request */
3048 list_for_each_entry(cond, &px->block_cond, list) {
3049 int ret = acl_exec_cond(cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02003050
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003051 ret = acl_pass(ret);
3052 if (cond->pol == ACL_COND_UNLESS)
3053 ret = !ret;
Willy Tarreau53b6c742006-12-17 13:37:46 +01003054
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003055 if (ret) {
3056 txn->status = 403;
3057 /* let's log the request time */
3058 s->logs.tv_request = now;
3059 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003060 session_inc_http_err_ctr(s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003061 goto return_prx_cond;
Willy Tarreau59234e92008-11-30 23:51:27 +01003062 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003063 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003064
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003065 /* evaluate http-request rules */
Willy Tarreauff011f22011-01-06 17:51:27 +01003066 http_req_last_rule = http_check_access_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01003067
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003068 /* evaluate stats http-request rules only if http-request is OK */
Willy Tarreauff011f22011-01-06 17:51:27 +01003069 if (!http_req_last_rule) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003070 do_stats = stats_check_uri(s->rep->prod, txn, px);
3071 if (do_stats)
Willy Tarreauff011f22011-01-06 17:51:27 +01003072 http_req_last_rule = http_check_access_rule(px, &px->uri_auth->http_req_rules, s, txn);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003073 }
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003074 else
3075 do_stats = 0;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003076
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003077 /* return a 403 if either rule has blocked */
Willy Tarreauff011f22011-01-06 17:51:27 +01003078 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_DENY) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003079 txn->status = 403;
3080 s->logs.tv_request = now;
3081 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003082 session_inc_http_err_ctr(s);
Willy Tarreau6da0f6d2011-01-06 18:19:50 +01003083 s->fe->fe_counters.denied_req++;
3084 if (an_bit == AN_REQ_HTTP_PROCESS_BE)
3085 s->be->be_counters.denied_req++;
3086 if (s->listener->counters)
3087 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003088 goto return_prx_cond;
3089 }
3090
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003091 /* try headers filters */
3092 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003093 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003094 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01003095
Willy Tarreau59234e92008-11-30 23:51:27 +01003096 /* has the request been denied ? */
3097 if (txn->flags & TX_CLDENY) {
3098 /* no need to go further */
3099 txn->status = 403;
3100 /* let's log the request time */
3101 s->logs.tv_request = now;
3102 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003103 session_inc_http_err_ctr(s);
Willy Tarreau59234e92008-11-30 23:51:27 +01003104 goto return_prx_cond;
3105 }
Willy Tarreauc465fd72009-08-31 00:17:18 +02003106
3107 /* When a connection is tarpitted, we use the tarpit timeout,
3108 * which may be the same as the connect timeout if unspecified.
3109 * If unset, then set it to zero because we really want it to
3110 * eventually expire. We build the tarpit as an analyser.
3111 */
3112 if (txn->flags & TX_CLTARPIT) {
3113 buffer_erase(s->req);
3114 /* wipe the request out so that we can drop the connection early
3115 * if the client closes first.
3116 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003117 buffer_dont_connect(req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003118 req->analysers = 0; /* remove switching rules etc... */
3119 req->analysers |= AN_REQ_HTTP_TARPIT;
3120 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3121 if (!req->analyse_exp)
3122 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003123 session_inc_http_err_ctr(s);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003124 return 1;
3125 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003126 }
Willy Tarreau06619262006-12-17 08:37:22 +01003127
Willy Tarreau5b154472009-12-21 20:11:07 +01003128 /* Until set to anything else, the connection mode is set as TUNNEL. It will
3129 * only change if both the request and the config reference something else.
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003130 * Option httpclose by itself does not set a mode, it remains a tunnel mode
3131 * in which headers are mangled. However, if another mode is set, it will
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003132 * affect it (eg: server-close/keep-alive + httpclose = close). Note that we
3133 * avoid to redo the same work if FE and BE have the same settings (common).
3134 * The method consists in checking if options changed between the two calls
3135 * (implying that either one is non-null, or one of them is non-null and we
3136 * are there for the first time.
Willy Tarreau42736642009-10-18 21:04:35 +02003137 */
Willy Tarreau5b154472009-12-21 20:11:07 +01003138
Willy Tarreaudc008c52010-02-01 16:20:08 +01003139 if ((!(txn->flags & TX_HDR_CONN_PRS) &&
3140 (s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) ||
3141 ((s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) !=
3142 (s->be->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)))) {
Willy Tarreau5b154472009-12-21 20:11:07 +01003143 int tmp = TX_CON_WANT_TUN;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003144
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003145 if ((s->fe->options|s->be->options) & PR_O_KEEPALIVE ||
3146 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreau5b154472009-12-21 20:11:07 +01003147 tmp = TX_CON_WANT_KAL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01003148 if ((s->fe->options|s->be->options) & PR_O_SERVER_CLO)
3149 tmp = TX_CON_WANT_SCL;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003150 if ((s->fe->options|s->be->options) & PR_O_FORCE_CLO)
Willy Tarreau5b154472009-12-21 20:11:07 +01003151 tmp = TX_CON_WANT_CLO;
3152
Willy Tarreau5b154472009-12-21 20:11:07 +01003153 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
3154 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003155
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003156 if (!(txn->flags & TX_HDR_CONN_PRS)) {
3157 /* parse the Connection header and possibly clean it */
3158 int to_del = 0;
3159 if ((txn->flags & TX_REQ_VER_11) ||
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003160 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
3161 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003162 to_del |= 2; /* remove "keep-alive" */
3163 if (!(txn->flags & TX_REQ_VER_11))
3164 to_del |= 1; /* remove "close" */
3165 http_parse_connection_header(txn, msg, req, to_del);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003166 }
Willy Tarreau5b154472009-12-21 20:11:07 +01003167
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003168 /* check if client or config asks for explicit close in KAL/SCL */
3169 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
3170 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
3171 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
3172 (txn->flags & (TX_REQ_VER_11|TX_HDR_CONN_KAL)) == 0 || /* no "connection: k-a" in 1.0 */
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003173 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE) || /* httpclose+any = forceclose */
Willy Tarreauc3e8b252010-01-28 15:01:20 +01003174 !(txn->flags & TX_REQ_XFER_LEN) || /* no length known => close */
3175 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003176 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
3177 }
Willy Tarreau78599912009-10-17 20:12:21 +02003178
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003179 /* we can be blocked here because the request needs to be authenticated,
3180 * either to pass or to access stats.
3181 */
Willy Tarreauff011f22011-01-06 17:51:27 +01003182 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_HTTP_AUTH) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003183 struct chunk msg;
Willy Tarreauff011f22011-01-06 17:51:27 +01003184 char *realm = http_req_last_rule->http_auth.realm;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003185
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003186 if (!realm)
3187 realm = do_stats?STATS_DEFAULT_REALM:px->id;
3188
Willy Tarreau844a7e72010-01-31 21:46:18 +01003189 sprintf(trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003190 chunk_initlen(&msg, trash, sizeof(trash), strlen(trash));
3191 txn->status = 401;
3192 stream_int_retnclose(req->prod, &msg);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003193 /* on 401 we still count one error, because normal browsing
3194 * won't significantly increase the counter but brute force
3195 * attempts will.
3196 */
3197 session_inc_http_err_ctr(s);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003198 goto return_prx_cond;
3199 }
3200
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003201 /* add request headers from the rule sets in the same order */
3202 list_for_each_entry(wl, &px->req_add, list) {
3203 if (wl->cond) {
3204 int ret = acl_exec_cond(wl->cond, px, s, txn, ACL_DIR_REQ);
3205 ret = acl_pass(ret);
3206 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3207 ret = !ret;
3208 if (!ret)
3209 continue;
3210 }
3211
3212 if (unlikely(http_header_add_tail(req, &txn->req, &txn->hdr_idx, wl->s) < 0))
3213 goto return_bad_req;
3214 }
3215
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003216 if (do_stats) {
Cyril Bonté474be412010-10-12 00:14:36 +02003217 struct stats_admin_rule *stats_admin_rule;
3218
3219 /* We need to provide stats for this request.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003220 * FIXME!!! that one is rather dangerous, we want to
3221 * make it follow standard rules (eg: clear req->analysers).
3222 */
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003223
Cyril Bonté474be412010-10-12 00:14:36 +02003224 /* now check whether we have some admin rules for this request */
3225 list_for_each_entry(stats_admin_rule, &s->be->uri_auth->admin_rules, list) {
3226 int ret = 1;
3227
3228 if (stats_admin_rule->cond) {
3229 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
3230 ret = acl_pass(ret);
3231 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3232 ret = !ret;
3233 }
3234
3235 if (ret) {
3236 /* no rule, or the rule matches */
Willy Tarreau295a8372011-03-10 11:25:07 +01003237 s->rep->prod->applet.ctx.stats.flags |= STAT_ADMIN;
Cyril Bonté474be412010-10-12 00:14:36 +02003238 break;
3239 }
3240 }
3241
Cyril Bonté70be45d2010-10-12 00:14:35 +02003242 /* Was the status page requested with a POST ? */
3243 if (txn->meth == HTTP_METH_POST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003244 if (s->rep->prod->applet.ctx.stats.flags & STAT_ADMIN) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01003245 if (msg->msg_state < HTTP_MSG_100_SENT) {
3246 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3247 * send an HTTP/1.1 100 Continue intermediate response.
3248 */
3249 if (txn->flags & TX_REQ_VER_11) {
3250 struct hdr_ctx ctx;
3251 ctx.idx = 0;
3252 /* Expect is allowed in 1.1, look for it */
3253 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3254 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3255 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3256 }
3257 }
3258 msg->msg_state = HTTP_MSG_100_SENT;
3259 s->logs.tv_request = now; /* update the request timer to reflect full request */
3260 }
Willy Tarreau295a8372011-03-10 11:25:07 +01003261 if (!http_process_req_stat_post(s->rep->prod, txn, req)) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01003262 /* we need more data */
3263 req->analysers |= an_bit;
3264 buffer_dont_connect(req);
3265 return 0;
3266 }
Cyril Bonté474be412010-10-12 00:14:36 +02003267 } else {
Willy Tarreau295a8372011-03-10 11:25:07 +01003268 s->rep->prod->applet.ctx.stats.st_code = STAT_STATUS_DENY;
Cyril Bonté474be412010-10-12 00:14:36 +02003269 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02003270 }
3271
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003272 s->logs.tv_request = now;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003273 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreaub24281b2011-02-13 13:16:36 +01003274 stream_int_register_handler(s->rep->prod, &http_stats_applet);
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02003275 copy_target(&s->target, &s->rep->prod->target); // for logging only
Willy Tarreaubc4af052011-02-13 13:25:14 +01003276 s->rep->prod->applet.private = s;
3277 s->rep->prod->applet.st0 = s->rep->prod->applet.st1 = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003278 req->analysers = 0;
Willy Tarreaueabea072011-09-10 23:29:44 +02003279 if (s->fe == s->be) /* report it if the request was intercepted by the frontend */
3280 s->fe->fe_counters.intercepted_req++;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003281
3282 return 0;
3283
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003284 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003285
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003286 /* check whether we have some ACLs set to redirect this request */
3287 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003288 int ret = ACL_PAT_PASS;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003289
Willy Tarreauf285f542010-01-03 20:03:03 +01003290 if (rule->cond) {
3291 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
3292 ret = acl_pass(ret);
3293 if (rule->cond->pol == ACL_COND_UNLESS)
3294 ret = !ret;
3295 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003296
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003297 if (ret) {
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003298 struct chunk rdr = { .str = trash, .size = sizeof(trash), .len = 0 };
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003299 const char *msg_fmt;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003300
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003301 /* build redirect message */
3302 switch(rule->code) {
3303 case 303:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003304 msg_fmt = HTTP_303;
3305 break;
3306 case 301:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003307 msg_fmt = HTTP_301;
3308 break;
3309 case 302:
3310 default:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003311 msg_fmt = HTTP_302;
3312 break;
3313 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003314
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003315 if (unlikely(!chunk_strcpy(&rdr, msg_fmt)))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003316 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003317
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003318 switch(rule->type) {
3319 case REDIRECT_TYPE_PREFIX: {
3320 const char *path;
3321 int pathlen;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003322
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003323 path = http_get_path(txn);
3324 /* build message using path */
3325 if (path) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003326 pathlen = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003327 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3328 int qs = 0;
3329 while (qs < pathlen) {
3330 if (path[qs] == '?') {
3331 pathlen = qs;
3332 break;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003333 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003334 qs++;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003335 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003336 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003337 } else {
3338 path = "/";
3339 pathlen = 1;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003340 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003341
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003342 if (rdr.len + rule->rdr_len + pathlen > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003343 goto return_bad_req;
3344
3345 /* add prefix. Note that if prefix == "/", we don't want to
3346 * add anything, otherwise it makes it hard for the user to
3347 * configure a self-redirection.
3348 */
3349 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Willy Tarreau06b917c2009-07-06 16:34:52 +02003350 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3351 rdr.len += rule->rdr_len;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003352 }
3353
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003354 /* add path */
3355 memcpy(rdr.str + rdr.len, path, pathlen);
3356 rdr.len += pathlen;
Willy Tarreau81e3b4f2010-01-10 00:42:19 +01003357
3358 /* append a slash at the end of the location is needed and missing */
3359 if (rdr.len && rdr.str[rdr.len - 1] != '/' &&
3360 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3361 if (rdr.len > rdr.size - 5)
3362 goto return_bad_req;
3363 rdr.str[rdr.len] = '/';
3364 rdr.len++;
3365 }
3366
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003367 break;
3368 }
3369 case REDIRECT_TYPE_LOCATION:
3370 default:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003371 if (rdr.len + rule->rdr_len > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003372 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003373
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003374 /* add location */
3375 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3376 rdr.len += rule->rdr_len;
3377 break;
3378 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003379
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003380 if (rule->cookie_len) {
3381 memcpy(rdr.str + rdr.len, "\r\nSet-Cookie: ", 14);
3382 rdr.len += 14;
3383 memcpy(rdr.str + rdr.len, rule->cookie_str, rule->cookie_len);
3384 rdr.len += rule->cookie_len;
3385 memcpy(rdr.str + rdr.len, "\r\n", 2);
3386 rdr.len += 2;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003387 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003388
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003389 /* add end of headers and the keep-alive/close status.
3390 * We may choose to set keep-alive if the Location begins
3391 * with a slash, because the client will come back to the
3392 * same server.
3393 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003394 txn->status = rule->code;
3395 /* let's log the request time */
3396 s->logs.tv_request = now;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003397
3398 if (rule->rdr_len >= 1 && *rule->rdr_str == '/' &&
3399 (txn->flags & TX_REQ_XFER_LEN) &&
Willy Tarreau124d9912011-03-01 20:30:48 +01003400 !(txn->flags & TX_REQ_TE_CHNK) && !txn->req.body_len &&
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003401 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3402 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3403 /* keep-alive possible */
Willy Tarreau75661452010-01-10 10:35:01 +01003404 if (!(txn->flags & TX_REQ_VER_11)) {
Willy Tarreau88d349d2010-01-25 12:15:43 +01003405 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3406 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: keep-alive", 30);
3407 rdr.len += 30;
3408 } else {
3409 memcpy(rdr.str + rdr.len, "\r\nConnection: keep-alive", 24);
3410 rdr.len += 24;
3411 }
Willy Tarreau75661452010-01-10 10:35:01 +01003412 }
3413 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
3414 rdr.len += 4;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003415 buffer_write(req->prod->ob, rdr.str, rdr.len);
3416 /* "eat" the request */
3417 buffer_ignore(req, msg->sov - msg->som);
3418 msg->som = msg->sov;
3419 req->analysers = AN_REQ_HTTP_XFER_BODY;
Willy Tarreau9300fb22010-01-05 00:58:24 +01003420 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3421 txn->req.msg_state = HTTP_MSG_CLOSED;
3422 txn->rsp.msg_state = HTTP_MSG_DONE;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003423 break;
3424 } else {
3425 /* keep-alive not possible */
Willy Tarreau88d349d2010-01-25 12:15:43 +01003426 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3427 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3428 rdr.len += 29;
3429 } else {
3430 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
3431 rdr.len += 23;
3432 }
Willy Tarreau148d0992010-01-10 10:21:21 +01003433 stream_int_retnclose(req->prod, &rdr);
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003434 goto return_prx_cond;
3435 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003436 }
3437 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003438
Willy Tarreau2be39392010-01-03 17:24:51 +01003439 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3440 * If this happens, then the data will not come immediately, so we must
3441 * send all what we have without waiting. Note that due to the small gain
3442 * in waiting for the body of the request, it's easier to simply put the
3443 * BF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
3444 * itself once used.
3445 */
3446 req->flags |= BF_SEND_DONTWAIT;
3447
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003448 /* that's OK for us now, let's move on to next analysers */
3449 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003450
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003451 return_bad_req:
3452 /* We centralize bad requests processing here */
3453 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3454 /* we detected a parsing error. We want to archive this request
3455 * in the dedicated proxy area for later troubleshooting.
3456 */
Willy Tarreau078272e2010-12-12 12:46:33 +01003457 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003458 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003459
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003460 txn->req.msg_state = HTTP_MSG_ERROR;
3461 txn->status = 400;
3462 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003463
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003464 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003465 if (s->listener->counters)
3466 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003467
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003468 return_prx_cond:
3469 if (!(s->flags & SN_ERR_MASK))
3470 s->flags |= SN_ERR_PRXCOND;
3471 if (!(s->flags & SN_FINST_MASK))
3472 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003473
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003474 req->analysers = 0;
3475 req->analyse_exp = TICK_ETERNITY;
3476 return 0;
3477}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003478
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003479/* This function performs all the processing enabled for the current request.
3480 * It returns 1 if the processing can continue on next analysers, or zero if it
3481 * needs more data, encounters an error, or wants to immediately abort the
3482 * request. It relies on buffers flags, and updates s->req->analysers.
3483 */
3484int http_process_request(struct session *s, struct buffer *req, int an_bit)
3485{
3486 struct http_txn *txn = &s->txn;
3487 struct http_msg *msg = &txn->req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003488
Willy Tarreau655dce92009-11-08 13:10:58 +01003489 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003490 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003491 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003492 return 0;
3493 }
3494
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003495 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3496 now_ms, __FUNCTION__,
3497 s,
3498 req,
3499 req->rex, req->wex,
3500 req->flags,
3501 req->l,
3502 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003503
Willy Tarreau59234e92008-11-30 23:51:27 +01003504 /*
3505 * Right now, we know that we have processed the entire headers
3506 * and that unwanted requests have been filtered out. We can do
3507 * whatever we want with the remaining request. Also, now we
3508 * may have separate values for ->fe, ->be.
3509 */
Willy Tarreau06619262006-12-17 08:37:22 +01003510
Willy Tarreau59234e92008-11-30 23:51:27 +01003511 /*
3512 * If HTTP PROXY is set we simply get remote server address
3513 * parsing incoming request.
3514 */
3515 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau957c0a52011-03-03 17:42:23 +01003516 url2sa(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l, &s->req->cons->addr.s.to);
Willy Tarreau59234e92008-11-30 23:51:27 +01003517 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003518
Willy Tarreau59234e92008-11-30 23:51:27 +01003519 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003520 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003521 * Note that doing so might move headers in the request, but
3522 * the fields will stay coherent and the URI will not move.
3523 * This should only be performed in the backend.
3524 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003525 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003526 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
3527 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003528
Willy Tarreau59234e92008-11-30 23:51:27 +01003529 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003530 * 8: the appsession cookie was looked up very early in 1.2,
3531 * so let's do the same now.
3532 */
3533
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02003534 /* It needs to look into the URI unless persistence must be ignored */
3535 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003536 get_srv_from_appsession(s, msg->sol + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01003537 }
3538
3539 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01003540 * 9: add X-Forwarded-For if either the frontend or the backend
3541 * asks for it.
3542 */
3543 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02003544 struct hdr_ctx ctx = { .idx = 0 };
3545
3546 if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
3547 http_find_header2("X-Forwarded-For", 15, txn->req.sol, &txn->hdr_idx, &ctx)) {
3548 /* The header is set to be added only if none is present
3549 * and we found it, so don't do anything.
3550 */
3551 }
3552 else if (s->req->prod->addr.c.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003553 /* Add an X-Forwarded-For header unless the source IP is
3554 * in the 'except' network range.
3555 */
3556 if ((!s->fe->except_mask.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003557 (((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr.s_addr & s->fe->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003558 != s->fe->except_net.s_addr) &&
3559 (!s->be->except_mask.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003560 (((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003561 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01003562 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01003563 unsigned char *pn;
Willy Tarreau957c0a52011-03-03 17:42:23 +01003564 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02003565
3566 /* Note: we rely on the backend to get the header name to be used for
3567 * x-forwarded-for, because the header is really meant for the backends.
3568 * However, if the backend did not specify any option, we have to rely
3569 * on the frontend's header name.
3570 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003571 if (s->be->fwdfor_hdr_len) {
3572 len = s->be->fwdfor_hdr_len;
3573 memcpy(trash, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02003574 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01003575 len = s->fe->fwdfor_hdr_len;
3576 memcpy(trash, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003577 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003578 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01003579
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003580 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003581 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01003582 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01003583 }
3584 }
Willy Tarreau957c0a52011-03-03 17:42:23 +01003585 else if (s->req->prod->addr.c.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003586 /* FIXME: for the sake of completeness, we should also support
3587 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003588 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003589 int len;
3590 char pn[INET6_ADDRSTRLEN];
3591 inet_ntop(AF_INET6,
Willy Tarreau957c0a52011-03-03 17:42:23 +01003592 (const void *)&((struct sockaddr_in6 *)(&s->req->prod->addr.c.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01003593 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003594
Willy Tarreau59234e92008-11-30 23:51:27 +01003595 /* Note: we rely on the backend to get the header name to be used for
3596 * x-forwarded-for, because the header is really meant for the backends.
3597 * However, if the backend did not specify any option, we have to rely
3598 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003599 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003600 if (s->be->fwdfor_hdr_len) {
3601 len = s->be->fwdfor_hdr_len;
3602 memcpy(trash, s->be->fwdfor_hdr_name, len);
3603 } else {
3604 len = s->fe->fwdfor_hdr_len;
3605 memcpy(trash, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003606 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003607 len += sprintf(trash + len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003608
Willy Tarreau59234e92008-11-30 23:51:27 +01003609 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003610 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01003611 goto return_bad_req;
3612 }
3613 }
3614
3615 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02003616 * 10: add X-Original-To if either the frontend or the backend
3617 * asks for it.
3618 */
3619 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
3620
3621 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreau957c0a52011-03-03 17:42:23 +01003622 if (s->req->prod->addr.c.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003623 /* Add an X-Original-To header unless the destination IP is
3624 * in the 'except' network range.
3625 */
3626 if (!(s->flags & SN_FRT_ADDR_SET))
3627 get_frt_addr(s);
3628
Willy Tarreau957c0a52011-03-03 17:42:23 +01003629 if (s->req->prod->addr.c.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02003630 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003631 (((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003632 != s->fe->except_to.s_addr) &&
3633 (!s->be->except_mask_to.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003634 (((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003635 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003636 int len;
3637 unsigned char *pn;
Willy Tarreau957c0a52011-03-03 17:42:23 +01003638 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02003639
3640 /* Note: we rely on the backend to get the header name to be used for
3641 * x-original-to, because the header is really meant for the backends.
3642 * However, if the backend did not specify any option, we have to rely
3643 * on the frontend's header name.
3644 */
3645 if (s->be->orgto_hdr_len) {
3646 len = s->be->orgto_hdr_len;
3647 memcpy(trash, s->be->orgto_hdr_name, len);
3648 } else {
3649 len = s->fe->orgto_hdr_len;
3650 memcpy(trash, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003651 }
Maik Broemme2850cb42009-04-17 18:53:21 +02003652 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
3653
3654 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003655 &txn->hdr_idx, trash, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003656 goto return_bad_req;
3657 }
3658 }
3659 }
3660
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003661 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. */
3662 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003663 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003664 unsigned int want_flags = 0;
3665
3666 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02003667 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
3668 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) &&
3669 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003670 want_flags |= TX_CON_CLO_SET;
3671 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02003672 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
3673 !((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) ||
3674 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003675 want_flags |= TX_CON_KAL_SET;
3676 }
3677
3678 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
3679 http_change_connection_header(txn, msg, req, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003680 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003681
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003682
Willy Tarreau522d6c02009-12-06 18:49:18 +01003683 /* If we have no server assigned yet and we're balancing on url_param
3684 * with a POST request, we may be interested in checking the body for
3685 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003686 */
3687 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
3688 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01003689 s->be->url_param_post_limit != 0 &&
Willy Tarreau61a21a32011-03-01 20:35:49 +01003690 (txn->flags & (TX_REQ_CNT_LEN|TX_REQ_TE_CHNK))) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003691 buffer_dont_connect(req);
3692 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003693 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003694
Willy Tarreaud98cf932009-12-27 22:54:55 +01003695 if (txn->flags & TX_REQ_XFER_LEN)
3696 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01003697
Willy Tarreau59234e92008-11-30 23:51:27 +01003698 /*************************************************************
3699 * OK, that's finished for the headers. We have done what we *
3700 * could. Let's switch to the DATA state. *
3701 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003702 req->analyse_exp = TICK_ETERNITY;
3703 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003704
Willy Tarreau59234e92008-11-30 23:51:27 +01003705 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003706 /* OK let's go on with the BODY now */
3707 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003708
Willy Tarreau59234e92008-11-30 23:51:27 +01003709 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003710 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003711 /* we detected a parsing error. We want to archive this request
3712 * in the dedicated proxy area for later troubleshooting.
3713 */
Willy Tarreau078272e2010-12-12 12:46:33 +01003714 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003715 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003716
Willy Tarreau59234e92008-11-30 23:51:27 +01003717 txn->req.msg_state = HTTP_MSG_ERROR;
3718 txn->status = 400;
3719 req->analysers = 0;
3720 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003721
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003722 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003723 if (s->listener->counters)
3724 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02003725
Willy Tarreau59234e92008-11-30 23:51:27 +01003726 if (!(s->flags & SN_ERR_MASK))
3727 s->flags |= SN_ERR_PRXCOND;
3728 if (!(s->flags & SN_FINST_MASK))
3729 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003730 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003731}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003732
Willy Tarreau60b85b02008-11-30 23:28:40 +01003733/* This function is an analyser which processes the HTTP tarpit. It always
3734 * returns zero, at the beginning because it prevents any other processing
3735 * from occurring, and at the end because it terminates the request.
3736 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003737int http_process_tarpit(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003738{
3739 struct http_txn *txn = &s->txn;
3740
3741 /* This connection is being tarpitted. The CLIENT side has
3742 * already set the connect expiration date to the right
3743 * timeout. We just have to check that the client is still
3744 * there and that the timeout has not expired.
3745 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003746 buffer_dont_connect(req);
Willy Tarreau60b85b02008-11-30 23:28:40 +01003747 if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 &&
3748 !tick_is_expired(req->analyse_exp, now_ms))
3749 return 0;
3750
3751 /* We will set the queue timer to the time spent, just for
3752 * logging purposes. We fake a 500 server error, so that the
3753 * attacker will not suspect his connection has been tarpitted.
3754 * It will not cause trouble to the logs because we can exclude
3755 * the tarpitted connections by filtering on the 'PT' status flags.
3756 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01003757 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
3758
3759 txn->status = 500;
3760 if (req->flags != BF_READ_ERROR)
3761 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_500));
3762
3763 req->analysers = 0;
3764 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003765
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003766 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003767 if (s->listener->counters)
3768 s->listener->counters->failed_req++;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003769
Willy Tarreau60b85b02008-11-30 23:28:40 +01003770 if (!(s->flags & SN_ERR_MASK))
3771 s->flags |= SN_ERR_PRXCOND;
3772 if (!(s->flags & SN_FINST_MASK))
3773 s->flags |= SN_FINST_T;
3774 return 0;
3775}
3776
Willy Tarreaud34af782008-11-30 23:36:37 +01003777/* This function is an analyser which processes the HTTP request body. It looks
3778 * for parameters to be used for the load balancing algorithm (url_param). It
3779 * must only be called after the standard HTTP request processing has occurred,
3780 * because it expects the request to be parsed. It returns zero if it needs to
3781 * read more data, or 1 once it has completed its analysis.
3782 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003783int http_process_request_body(struct session *s, struct buffer *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01003784{
Willy Tarreau522d6c02009-12-06 18:49:18 +01003785 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01003786 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01003787 long long limit = s->be->url_param_post_limit;
Willy Tarreaud34af782008-11-30 23:36:37 +01003788
3789 /* We have to parse the HTTP request body to find any required data.
3790 * "balance url_param check_post" should have been the only way to get
3791 * into this. We were brought here after HTTP header analysis, so all
3792 * related structures are ready.
3793 */
3794
Willy Tarreau522d6c02009-12-06 18:49:18 +01003795 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
3796 goto missing_data;
3797
3798 if (msg->msg_state < HTTP_MSG_100_SENT) {
3799 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3800 * send an HTTP/1.1 100 Continue intermediate response.
3801 */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01003802 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003803 struct hdr_ctx ctx;
3804 ctx.idx = 0;
3805 /* Expect is allowed in 1.1, look for it */
3806 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3807 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3808 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3809 }
3810 }
3811 msg->msg_state = HTTP_MSG_100_SENT;
3812 }
3813
3814 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01003815 /* we have msg->col and msg->sov which both point to the first
3816 * byte of message body. msg->som still points to the beginning
3817 * of the message. We must save the body in req->lr because it
3818 * survives buffer re-alignments.
3819 */
3820 req->lr = req->data + msg->sov;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003821 if (txn->flags & TX_REQ_TE_CHNK)
3822 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
3823 else
3824 msg->msg_state = HTTP_MSG_DATA;
3825 }
3826
3827 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01003828 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01003829 * set ->sov and ->lr to point to the body and switch to DATA or
3830 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01003831 */
3832 int ret = http_parse_chunk_size(req, msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01003833
Willy Tarreau115acb92009-12-26 13:56:06 +01003834 if (!ret)
3835 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003836 else if (ret < 0) {
3837 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003838 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003839 }
Willy Tarreaud34af782008-11-30 23:36:37 +01003840 }
3841
Willy Tarreaud98cf932009-12-27 22:54:55 +01003842 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreau522d6c02009-12-06 18:49:18 +01003843 * We have the first non-header byte in msg->col, which is either the
3844 * beginning of the chunk size or of the data. The first data byte is in
3845 * msg->sov, which is equal to msg->col when not using transfer-encoding.
3846 * We're waiting for at least <url_param_post_limit> bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01003847 */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003848
Willy Tarreau124d9912011-03-01 20:30:48 +01003849 if (msg->body_len < limit)
3850 limit = msg->body_len;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003851
Willy Tarreau7c96f672009-12-27 22:47:25 +01003852 if (req->l - (msg->sov - msg->som) >= limit) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003853 goto http_end;
3854
3855 missing_data:
3856 /* we get here if we need to wait for more data */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003857 if (req->flags & BF_FULL) {
3858 session_inc_http_err_ctr(s);
Willy Tarreau115acb92009-12-26 13:56:06 +01003859 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003860 }
Willy Tarreau115acb92009-12-26 13:56:06 +01003861
Willy Tarreau522d6c02009-12-06 18:49:18 +01003862 if ((req->flags & BF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
3863 txn->status = 408;
3864 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02003865
3866 if (!(s->flags & SN_ERR_MASK))
3867 s->flags |= SN_ERR_CLITO;
3868 if (!(s->flags & SN_FINST_MASK))
3869 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003870 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01003871 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003872
3873 /* we get here if we need to wait for more data */
3874 if (!(req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01003875 /* Not enough data. We'll re-use the http-request
3876 * timeout here. Ideally, we should set the timeout
3877 * relative to the accept() date. We just set the
3878 * request timeout once at the beginning of the
3879 * request.
3880 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003881 buffer_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01003882 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02003883 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01003884 return 0;
3885 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003886
3887 http_end:
3888 /* The situation will not evolve, so let's give up on the analysis. */
3889 s->logs.tv_request = now; /* update the request timer to reflect full request */
3890 req->analysers &= ~an_bit;
3891 req->analyse_exp = TICK_ETERNITY;
3892 return 1;
3893
3894 return_bad_req: /* let's centralize all bad requests */
3895 txn->req.msg_state = HTTP_MSG_ERROR;
3896 txn->status = 400;
3897 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
3898
Willy Tarreau79ebac62010-06-07 13:47:49 +02003899 if (!(s->flags & SN_ERR_MASK))
3900 s->flags |= SN_ERR_PRXCOND;
3901 if (!(s->flags & SN_FINST_MASK))
3902 s->flags |= SN_FINST_R;
3903
Willy Tarreau522d6c02009-12-06 18:49:18 +01003904 return_err_msg:
3905 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003906 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003907 if (s->listener->counters)
3908 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003909 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01003910}
3911
Willy Tarreau610ecce2010-01-04 21:15:02 +01003912/* Terminate current transaction and prepare a new one. This is very tricky
3913 * right now but it works.
3914 */
3915void http_end_txn_clean_session(struct session *s)
3916{
3917 /* FIXME: We need a more portable way of releasing a backend's and a
3918 * server's connections. We need a safer way to reinitialize buffer
3919 * flags. We also need a more accurate method for computing per-request
3920 * data.
3921 */
3922 http_silent_debug(__LINE__, s);
3923
3924 s->req->cons->flags |= SI_FL_NOLINGER;
3925 s->req->cons->shutr(s->req->cons);
3926 s->req->cons->shutw(s->req->cons);
3927
3928 http_silent_debug(__LINE__, s);
3929
3930 if (s->flags & SN_BE_ASSIGNED)
3931 s->be->beconn--;
3932
3933 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
3934 session_process_counters(s);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003935 session_stop_backend_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003936
3937 if (s->txn.status) {
3938 int n;
3939
3940 n = s->txn.status / 100;
3941 if (n < 1 || n > 5)
3942 n = 0;
3943
3944 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003945 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003946
Willy Tarreau24657792010-02-26 10:30:28 +01003947 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01003948 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003949 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003950 }
3951
3952 /* don't count other requests' data */
3953 s->logs.bytes_in -= s->req->l - s->req->send_max;
3954 s->logs.bytes_out -= s->rep->l - s->rep->send_max;
3955
3956 /* let's do a final log if we need it */
3957 if (s->logs.logwait &&
3958 !(s->flags & SN_MONITOR) &&
3959 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
3960 s->do_log(s);
3961 }
3962
3963 s->logs.accept_date = date; /* user-visible date for logging */
3964 s->logs.tv_accept = now; /* corrected date for internal use */
3965 tv_zero(&s->logs.tv_request);
3966 s->logs.t_queue = -1;
3967 s->logs.t_connect = -1;
3968 s->logs.t_data = -1;
3969 s->logs.t_close = 0;
3970 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
3971 s->logs.srv_queue_size = 0; /* we will get this number soon */
3972
3973 s->logs.bytes_in = s->req->total = s->req->l - s->req->send_max;
3974 s->logs.bytes_out = s->rep->total = s->rep->l - s->rep->send_max;
3975
3976 if (s->pend_pos)
3977 pendconn_free(s->pend_pos);
3978
Willy Tarreau827aee92011-03-10 16:55:02 +01003979 if (target_srv(&s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003980 if (s->flags & SN_CURR_SESS) {
3981 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01003982 target_srv(&s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003983 }
Willy Tarreau827aee92011-03-10 16:55:02 +01003984 if (may_dequeue_tasks(target_srv(&s->target), s->be))
3985 process_srv_queue(target_srv(&s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01003986 }
3987
3988 if (unlikely(s->srv_conn))
3989 sess_change_server(s, NULL);
Willy Tarreau9e000c62011-03-10 14:03:36 +01003990 clear_target(&s->target);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003991
3992 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
3993 s->req->cons->fd = -1; /* just to help with debugging */
3994 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02003995 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01003996 s->req->cons->err_loc = NULL;
3997 s->req->cons->exp = TICK_ETERNITY;
3998 s->req->cons->flags = SI_FL_NONE;
Willy Tarreau96e31212011-05-30 18:10:30 +02003999 s->req->flags &= ~(BF_SHUTW|BF_SHUTW_NOW|BF_AUTO_CONNECT|BF_WRITE_ERROR|BF_STREAMER|BF_STREAMER_FAST|BF_NEVER_WAIT);
4000 s->rep->flags &= ~(BF_SHUTR|BF_SHUTR_NOW|BF_READ_ATTACHED|BF_READ_ERROR|BF_READ_NOEXP|BF_STREAMER|BF_STREAMER_FAST|BF_WRITE_PARTIAL|BF_NEVER_WAIT);
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004001 s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004002 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE);
4003 s->txn.meth = 0;
4004 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01004005 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreauee55dc02010-06-01 10:56:34 +02004006 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004007 s->req->cons->flags |= SI_FL_INDEP_STR;
4008
Willy Tarreau96e31212011-05-30 18:10:30 +02004009 if (s->fe->options2 & PR_O2_NODELAY) {
4010 s->req->flags |= BF_NEVER_WAIT;
4011 s->rep->flags |= BF_NEVER_WAIT;
4012 }
4013
Willy Tarreau610ecce2010-01-04 21:15:02 +01004014 /* if the request buffer is not empty, it means we're
4015 * about to process another request, so send pending
4016 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004017 * Just don't do this if the buffer is close to be full,
4018 * because the request will wait for it to flush a little
4019 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004020 */
Willy Tarreau065e8332010-01-08 00:30:20 +01004021 if (s->req->l > s->req->send_max) {
4022 if (s->rep->send_max &&
4023 !(s->rep->flags & BF_FULL) &&
Willy Tarreau065e8332010-01-08 00:30:20 +01004024 s->rep->r <= s->rep->data + s->rep->size - global.tune.maxrewrite)
4025 s->rep->flags |= BF_EXPECT_MORE;
4026 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004027
4028 /* we're removing the analysers, we MUST re-enable events detection */
4029 buffer_auto_read(s->req);
4030 buffer_auto_close(s->req);
4031 buffer_auto_read(s->rep);
4032 buffer_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004033
4034 /* make ->lr point to the first non-forwarded byte */
4035 s->req->lr = s->req->w + s->req->send_max;
4036 if (s->req->lr >= s->req->data + s->req->size)
4037 s->req->lr -= s->req->size;
4038 s->rep->lr = s->rep->w + s->rep->send_max;
4039 if (s->rep->lr >= s->rep->data + s->rep->size)
4040 s->rep->lr -= s->req->size;
4041
Willy Tarreau342b11c2010-11-24 16:22:09 +01004042 s->req->analysers = s->listener->analysers;
4043 s->req->analysers &= ~AN_REQ_DECODE_PROXY;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004044 s->rep->analysers = 0;
4045
4046 http_silent_debug(__LINE__, s);
4047}
4048
4049
4050/* This function updates the request state machine according to the response
4051 * state machine and buffer flags. It returns 1 if it changes anything (flag
4052 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4053 * it is only used to find when a request/response couple is complete. Both
4054 * this function and its equivalent should loop until both return zero. It
4055 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4056 */
4057int http_sync_req_state(struct session *s)
4058{
4059 struct buffer *buf = s->req;
4060 struct http_txn *txn = &s->txn;
4061 unsigned int old_flags = buf->flags;
4062 unsigned int old_state = txn->req.msg_state;
4063
4064 http_silent_debug(__LINE__, s);
4065 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
4066 return 0;
4067
4068 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004069 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004070 * We can shut the read side unless we want to abort_on_close,
4071 * or we have a POST request. The issue with POST requests is
4072 * that some browsers still send a CRLF after the request, and
4073 * this CRLF must be read so that it does not remain in the kernel
4074 * buffers, otherwise a close could cause an RST on some systems
4075 * (eg: Linux).
Willy Tarreau90deb182010-01-07 00:20:41 +01004076 */
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004077 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Willy Tarreau90deb182010-01-07 00:20:41 +01004078 buffer_dont_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004079
4080 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4081 goto wait_other_side;
4082
4083 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4084 /* The server has not finished to respond, so we
4085 * don't want to move in order not to upset it.
4086 */
4087 goto wait_other_side;
4088 }
4089
4090 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4091 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01004092 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004093 txn->req.msg_state = HTTP_MSG_TUNNEL;
4094 goto wait_other_side;
4095 }
4096
4097 /* When we get here, it means that both the request and the
4098 * response have finished receiving. Depending on the connection
4099 * mode, we'll have to wait for the last bytes to leave in either
4100 * direction, and sometimes for a close to be effective.
4101 */
4102
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004103 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4104 /* Server-close mode : queue a connection close to the server */
4105 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW)))
Willy Tarreau610ecce2010-01-04 21:15:02 +01004106 buffer_shutw_now(buf);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004107 }
4108 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4109 /* Option forceclose is set, or either side wants to close,
4110 * let's enforce it now that we're not expecting any new
4111 * data to come. The caller knows the session is complete
4112 * once both states are CLOSED.
4113 */
4114 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004115 buffer_shutr_now(buf);
4116 buffer_shutw_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004117 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004118 }
4119 else {
4120 /* The last possible modes are keep-alive and tunnel. Since tunnel
4121 * mode does not set the body analyser, we can't reach this place
4122 * in tunnel mode, so we're left with keep-alive only.
4123 * This mode is currently not implemented, we switch to tunnel mode.
4124 */
4125 buffer_auto_read(buf);
4126 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004127 }
4128
4129 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
4130 /* if we've just closed an output, let's switch */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004131 buf->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
4132
Willy Tarreau610ecce2010-01-04 21:15:02 +01004133 if (!(buf->flags & BF_OUT_EMPTY)) {
4134 txn->req.msg_state = HTTP_MSG_CLOSING;
4135 goto http_msg_closing;
4136 }
4137 else {
4138 txn->req.msg_state = HTTP_MSG_CLOSED;
4139 goto http_msg_closed;
4140 }
4141 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004142 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004143 }
4144
4145 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4146 http_msg_closing:
4147 /* nothing else to forward, just waiting for the output buffer
4148 * to be empty and for the shutw_now to take effect.
4149 */
4150 if (buf->flags & BF_OUT_EMPTY) {
4151 txn->req.msg_state = HTTP_MSG_CLOSED;
4152 goto http_msg_closed;
4153 }
4154 else if (buf->flags & BF_SHUTW) {
4155 txn->req.msg_state = HTTP_MSG_ERROR;
4156 goto wait_other_side;
4157 }
4158 }
4159
4160 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4161 http_msg_closed:
4162 goto wait_other_side;
4163 }
4164
4165 wait_other_side:
4166 http_silent_debug(__LINE__, s);
4167 return txn->req.msg_state != old_state || buf->flags != old_flags;
4168}
4169
4170
4171/* This function updates the response state machine according to the request
4172 * state machine and buffer flags. It returns 1 if it changes anything (flag
4173 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4174 * it is only used to find when a request/response couple is complete. Both
4175 * this function and its equivalent should loop until both return zero. It
4176 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4177 */
4178int http_sync_res_state(struct session *s)
4179{
4180 struct buffer *buf = s->rep;
4181 struct http_txn *txn = &s->txn;
4182 unsigned int old_flags = buf->flags;
4183 unsigned int old_state = txn->rsp.msg_state;
4184
4185 http_silent_debug(__LINE__, s);
4186 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
4187 return 0;
4188
4189 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4190 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004191 * still monitor the server connection for a possible close
4192 * while the request is being uploaded, so we don't disable
4193 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004194 */
Willy Tarreau90deb182010-01-07 00:20:41 +01004195 /* buffer_dont_read(buf); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004196
4197 if (txn->req.msg_state == HTTP_MSG_ERROR)
4198 goto wait_other_side;
4199
4200 if (txn->req.msg_state < HTTP_MSG_DONE) {
4201 /* The client seems to still be sending data, probably
4202 * because we got an error response during an upload.
4203 * We have the choice of either breaking the connection
4204 * or letting it pass through. Let's do the later.
4205 */
4206 goto wait_other_side;
4207 }
4208
4209 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4210 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01004211 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004212 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
4213 goto wait_other_side;
4214 }
4215
4216 /* When we get here, it means that both the request and the
4217 * response have finished receiving. Depending on the connection
4218 * mode, we'll have to wait for the last bytes to leave in either
4219 * direction, and sometimes for a close to be effective.
4220 */
4221
4222 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4223 /* Server-close mode : shut read and wait for the request
4224 * side to close its output buffer. The caller will detect
4225 * when we're in DONE and the other is in CLOSED and will
4226 * catch that for the final cleanup.
4227 */
4228 if (!(buf->flags & (BF_SHUTR|BF_SHUTR_NOW)))
4229 buffer_shutr_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004230 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004231 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4232 /* Option forceclose is set, or either side wants to close,
4233 * let's enforce it now that we're not expecting any new
4234 * data to come. The caller knows the session is complete
4235 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004236 */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004237 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
4238 buffer_shutr_now(buf);
4239 buffer_shutw_now(buf);
4240 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004241 }
4242 else {
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004243 /* The last possible modes are keep-alive and tunnel. Since tunnel
4244 * mode does not set the body analyser, we can't reach this place
4245 * in tunnel mode, so we're left with keep-alive only.
4246 * This mode is currently not implemented, we switch to tunnel mode.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004247 */
Willy Tarreau90deb182010-01-07 00:20:41 +01004248 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004249 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004250 }
4251
4252 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
4253 /* if we've just closed an output, let's switch */
4254 if (!(buf->flags & BF_OUT_EMPTY)) {
4255 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4256 goto http_msg_closing;
4257 }
4258 else {
4259 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4260 goto http_msg_closed;
4261 }
4262 }
4263 goto wait_other_side;
4264 }
4265
4266 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4267 http_msg_closing:
4268 /* nothing else to forward, just waiting for the output buffer
4269 * to be empty and for the shutw_now to take effect.
4270 */
4271 if (buf->flags & BF_OUT_EMPTY) {
4272 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4273 goto http_msg_closed;
4274 }
4275 else if (buf->flags & BF_SHUTW) {
4276 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004277 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004278 if (target_srv(&s->target))
4279 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004280 goto wait_other_side;
4281 }
4282 }
4283
4284 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4285 http_msg_closed:
4286 /* drop any pending data */
4287 buffer_ignore(buf, buf->l - buf->send_max);
4288 buffer_auto_close(buf);
Willy Tarreau90deb182010-01-07 00:20:41 +01004289 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004290 goto wait_other_side;
4291 }
4292
4293 wait_other_side:
4294 http_silent_debug(__LINE__, s);
4295 return txn->rsp.msg_state != old_state || buf->flags != old_flags;
4296}
4297
4298
4299/* Resync the request and response state machines. Return 1 if either state
4300 * changes.
4301 */
4302int http_resync_states(struct session *s)
4303{
4304 struct http_txn *txn = &s->txn;
4305 int old_req_state = txn->req.msg_state;
4306 int old_res_state = txn->rsp.msg_state;
4307
4308 http_silent_debug(__LINE__, s);
4309 http_sync_req_state(s);
4310 while (1) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004311 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004312 if (!http_sync_res_state(s))
4313 break;
Willy Tarreau90deb182010-01-07 00:20:41 +01004314 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004315 if (!http_sync_req_state(s))
4316 break;
4317 }
4318 http_silent_debug(__LINE__, s);
4319 /* OK, both state machines agree on a compatible state.
4320 * There are a few cases we're interested in :
4321 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
4322 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4323 * directions, so let's simply disable both analysers.
4324 * - HTTP_MSG_CLOSED on the response only means we must abort the
4325 * request.
4326 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
4327 * with server-close mode means we've completed one request and we
4328 * must re-initialize the server connection.
4329 */
4330
4331 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4332 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
4333 (txn->req.msg_state == HTTP_MSG_CLOSED &&
4334 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
4335 s->req->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004336 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004337 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004338 s->rep->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004339 buffer_auto_close(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01004340 buffer_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004341 }
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004342 else if (txn->rsp.msg_state == HTTP_MSG_CLOSED ||
4343 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau4fe41902010-06-07 22:27:41 +02004344 txn->req.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004345 (s->rep->flags & BF_SHUTW)) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004346 s->rep->analysers = 0;
4347 buffer_auto_close(s->rep);
4348 buffer_auto_read(s->rep);
4349 s->req->analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004350 buffer_abort(s->req);
4351 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004352 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004353 buffer_ignore(s->req, s->req->l - s->req->send_max);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004354 }
4355 else if (txn->req.msg_state == HTTP_MSG_CLOSED &&
4356 txn->rsp.msg_state == HTTP_MSG_DONE &&
4357 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)) {
4358 /* server-close: terminate this server connection and
4359 * reinitialize a fresh-new transaction.
4360 */
4361 http_end_txn_clean_session(s);
4362 }
4363
4364 http_silent_debug(__LINE__, s);
4365 return txn->req.msg_state != old_req_state ||
4366 txn->rsp.msg_state != old_res_state;
4367}
4368
Willy Tarreaud98cf932009-12-27 22:54:55 +01004369/* This function is an analyser which forwards request body (including chunk
4370 * sizes if any). It is called as soon as we must forward, even if we forward
4371 * zero byte. The only situation where it must not be called is when we're in
4372 * tunnel mode and we want to forward till the close. It's used both to forward
4373 * remaining data and to resync after end of body. It expects the msg_state to
4374 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4375 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01004376 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreaud98cf932009-12-27 22:54:55 +01004377 * bytes of pending data + the headers if not already done (between som and sov).
4378 * It eventually adjusts som to match sov after the data in between have been sent.
4379 */
4380int http_request_forward_body(struct session *s, struct buffer *req, int an_bit)
4381{
4382 struct http_txn *txn = &s->txn;
4383 struct http_msg *msg = &s->txn.req;
4384
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004385 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4386 return 0;
4387
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01004388 if ((req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
4389 ((req->flags & BF_SHUTW) && (req->to_forward || req->send_max))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02004390 /* Output closed while we were sending data. We must abort and
4391 * wake the other side up.
4392 */
4393 msg->msg_state = HTTP_MSG_ERROR;
4394 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004395 return 1;
4396 }
4397
Willy Tarreau4fe41902010-06-07 22:27:41 +02004398 /* in most states, we should abort in case of early close */
4399 buffer_auto_close(req);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004400
4401 /* Note that we don't have to send 100-continue back because we don't
4402 * need the data to complete our job, and it's up to the server to
4403 * decide whether to return 100, 417 or anything else in return of
4404 * an "Expect: 100-continue" header.
4405 */
4406
4407 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4408 /* we have msg->col and msg->sov which both point to the first
4409 * byte of message body. msg->som still points to the beginning
4410 * of the message. We must save the body in req->lr because it
4411 * survives buffer re-alignments.
4412 */
4413 req->lr = req->data + msg->sov;
4414 if (txn->flags & TX_REQ_TE_CHNK)
4415 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4416 else {
4417 msg->msg_state = HTTP_MSG_DATA;
4418 }
4419 }
4420
Willy Tarreaud98cf932009-12-27 22:54:55 +01004421 while (1) {
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004422 int bytes;
4423
Willy Tarreau610ecce2010-01-04 21:15:02 +01004424 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01004425 /* we may have some data pending */
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004426 bytes = msg->sov - msg->som;
4427 if (msg->chunk_len || bytes) {
Willy Tarreau638cd022010-01-03 07:42:04 +01004428 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004429 if (likely(bytes < 0)) /* sov may have wrapped at the end */
4430 bytes += req->size;
4431 msg->chunk_len += (unsigned int)bytes;
4432 msg->chunk_len -= buffer_forward(req, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01004433 }
Willy Tarreau5523b322009-12-29 12:05:52 +01004434
Willy Tarreaucaabe412010-01-03 23:08:28 +01004435 if (msg->msg_state == HTTP_MSG_DATA) {
4436 /* must still forward */
4437 if (req->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004438 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004439
4440 /* nothing left to forward */
4441 if (txn->flags & TX_REQ_TE_CHNK)
4442 msg->msg_state = HTTP_MSG_DATA_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004443 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01004444 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004445 }
4446 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004447 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01004448 * set ->sov and ->lr to point to the body and switch to DATA or
4449 * TRAILERS state.
4450 */
4451 int ret = http_parse_chunk_size(req, msg);
4452
4453 if (!ret)
4454 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004455 else if (ret < 0) {
4456 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004457 if (msg->err_pos >= 0)
4458 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004459 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004460 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004461 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004462 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004463 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
4464 /* we want the CRLF after the data */
4465 int ret;
4466
Willy Tarreaud3347ee2010-01-04 02:02:25 +01004467 req->lr = req->w + req->send_max;
4468 if (req->lr >= req->data + req->size)
4469 req->lr -= req->size;
4470
Willy Tarreaud98cf932009-12-27 22:54:55 +01004471 ret = http_skip_chunk_crlf(req, msg);
4472
4473 if (ret == 0)
4474 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004475 else if (ret < 0) {
4476 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004477 if (msg->err_pos >= 0)
4478 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_DATA_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004479 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004480 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004481 /* we're in MSG_CHUNK_SIZE now */
4482 }
4483 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
4484 int ret = http_forward_trailers(req, msg);
4485
4486 if (ret == 0)
4487 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004488 else if (ret < 0) {
4489 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004490 if (msg->err_pos >= 0)
4491 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004492 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004493 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004494 /* we're in HTTP_MSG_DONE now */
4495 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004496 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004497 int old_state = msg->msg_state;
4498
Willy Tarreau610ecce2010-01-04 21:15:02 +01004499 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02004500 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004501 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
4502 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
4503 buffer_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004504 if (http_resync_states(s)) {
4505 /* some state changes occurred, maybe the analyser
4506 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01004507 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004508 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4509 if (req->flags & BF_SHUTW) {
4510 /* request errors are most likely due to
4511 * the server aborting the transfer.
4512 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004513 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004514 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004515 if (msg->err_pos >= 0)
4516 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004517 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004518 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004519 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004520 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004521
4522 /* If "option abortonclose" is set on the backend, we
4523 * want to monitor the client's connection and forward
4524 * any shutdown notification to the server, which will
4525 * decide whether to close or to go on processing the
4526 * request.
4527 */
4528 if (s->be->options & PR_O_ABRT_CLOSE) {
4529 buffer_auto_read(req);
4530 buffer_auto_close(req);
4531 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004532 else if (s->txn.meth == HTTP_METH_POST) {
4533 /* POST requests may require to read extra CRLF
4534 * sent by broken browsers and which could cause
4535 * an RST to be sent upon close on some systems
4536 * (eg: Linux).
4537 */
4538 buffer_auto_read(req);
4539 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004540
Willy Tarreau610ecce2010-01-04 21:15:02 +01004541 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004542 }
4543 }
4544
Willy Tarreaud98cf932009-12-27 22:54:55 +01004545 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004546 /* stop waiting for data if the input is closed before the end */
Willy Tarreau79ebac62010-06-07 13:47:49 +02004547 if (req->flags & BF_SHUTR) {
4548 if (!(s->flags & SN_ERR_MASK))
4549 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004550 if (!(s->flags & SN_FINST_MASK)) {
4551 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4552 s->flags |= SN_FINST_H;
4553 else
4554 s->flags |= SN_FINST_D;
4555 }
4556
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004557 s->fe->fe_counters.cli_aborts++;
4558 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004559 if (target_srv(&s->target))
4560 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004561
4562 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004563 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004564
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004565 /* waiting for the last bits to leave the buffer */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004566 if (req->flags & BF_SHUTW)
4567 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004568
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004569 /* When TE: chunked is used, we need to get there again to parse remaining
4570 * chunks even if the client has closed, so we don't want to set BF_DONTCLOSE.
4571 */
4572 if (txn->flags & TX_REQ_TE_CHNK)
4573 buffer_dont_close(req);
4574
Willy Tarreau5c620922011-05-11 19:56:11 +02004575 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau07293032011-05-30 18:29:28 +02004576 * what we did. So we always set the BF_EXPECT_MORE flag so that the
4577 * system knows it must not set a PUSH on this first part. Interactive
4578 * modes are already handled by the stream sock layer.
Willy Tarreau5c620922011-05-11 19:56:11 +02004579 */
Willy Tarreau07293032011-05-30 18:29:28 +02004580 req->flags |= BF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02004581
Willy Tarreau610ecce2010-01-04 21:15:02 +01004582 http_silent_debug(__LINE__, s);
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004583 return 0;
4584
Willy Tarreaud98cf932009-12-27 22:54:55 +01004585 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004586 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004587 if (s->listener->counters)
4588 s->listener->counters->failed_req++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004589 return_bad_req_stats_ok:
4590 txn->req.msg_state = HTTP_MSG_ERROR;
4591 if (txn->status) {
4592 /* Note: we don't send any error if some data were already sent */
4593 stream_int_retnclose(req->prod, NULL);
4594 } else {
4595 txn->status = 400;
4596 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
4597 }
4598 req->analysers = 0;
4599 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004600
4601 if (!(s->flags & SN_ERR_MASK))
4602 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004603 if (!(s->flags & SN_FINST_MASK)) {
4604 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4605 s->flags |= SN_FINST_H;
4606 else
4607 s->flags |= SN_FINST_D;
4608 }
4609 return 0;
4610
4611 aborted_xfer:
4612 txn->req.msg_state = HTTP_MSG_ERROR;
4613 if (txn->status) {
4614 /* Note: we don't send any error if some data were already sent */
4615 stream_int_retnclose(req->prod, NULL);
4616 } else {
4617 txn->status = 502;
4618 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_502));
4619 }
4620 req->analysers = 0;
4621 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
4622
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004623 s->fe->fe_counters.srv_aborts++;
4624 s->be->be_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004625 if (target_srv(&s->target))
4626 target_srv(&s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004627
4628 if (!(s->flags & SN_ERR_MASK))
4629 s->flags |= SN_ERR_SRVCL;
4630 if (!(s->flags & SN_FINST_MASK)) {
4631 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4632 s->flags |= SN_FINST_H;
4633 else
4634 s->flags |= SN_FINST_D;
4635 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004636 return 0;
4637}
4638
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004639/* This stream analyser waits for a complete HTTP response. It returns 1 if the
4640 * processing can continue on next analysers, or zero if it either needs more
4641 * data or wants to immediately abort the response (eg: timeout, error, ...). It
4642 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
4643 * when it has nothing left to do, and may remove any analyser when it wants to
4644 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004645 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004646int http_wait_for_response(struct session *s, struct buffer *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004647{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004648 struct http_txn *txn = &s->txn;
4649 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004650 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004651 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004652 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004653 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004654
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004655 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02004656 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004657 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004658 rep,
4659 rep->rex, rep->wex,
4660 rep->flags,
4661 rep->l,
4662 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02004663
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004664 /*
4665 * Now parse the partial (or complete) lines.
4666 * We will check the response syntax, and also join multi-line
4667 * headers. An index of all the lines will be elaborated while
4668 * parsing.
4669 *
4670 * For the parsing, we use a 28 states FSM.
4671 *
4672 * Here is the information we currently have :
Willy Tarreau83e3af02009-12-28 17:39:57 +01004673 * rep->data + msg->som = beginning of response
4674 * rep->data + msg->eoh = end of processed headers / start of current one
4675 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004676 * rep->lr = first non-visited byte
4677 * rep->r = end of data
Willy Tarreau962c3f42010-01-10 00:15:35 +01004678 * Once we reach MSG_BODY, rep->sol = rep->data + msg->som
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004679 */
4680
Willy Tarreau83e3af02009-12-28 17:39:57 +01004681 /* There's a protected area at the end of the buffer for rewriting
4682 * purposes. We don't want to start to parse the request if the
4683 * protected area is affected, because we may have to move processed
4684 * data later, which is much more complicated.
4685 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004686 if (rep->l && msg->msg_state < HTTP_MSG_ERROR) {
4687 if (unlikely((rep->flags & BF_FULL) ||
4688 rep->r < rep->lr ||
4689 rep->r > rep->data + rep->size - global.tune.maxrewrite)) {
4690 if (rep->send_max) {
4691 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau64648412010-03-05 10:41:54 +01004692 if (rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
4693 goto abort_response;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004694 buffer_dont_close(rep);
4695 rep->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
4696 return 0;
4697 }
4698 if (rep->l <= rep->size - global.tune.maxrewrite)
4699 http_buffer_heavy_realign(rep, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004700 }
4701
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004702 if (likely(rep->lr < rep->r))
4703 http_msg_analyzer(rep, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004704 }
4705
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004706 /* 1: we might have to print this header in debug mode */
4707 if (unlikely((global.mode & MODE_DEBUG) &&
4708 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreauc3bfeeb2010-04-16 09:14:45 +02004709 msg->sol &&
Willy Tarreau655dce92009-11-08 13:10:58 +01004710 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004711 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004712
Willy Tarreau663308b2010-06-07 14:06:08 +02004713 sol = rep->data + msg->som;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02004714 eol = sol + msg->sl.st.l;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004715 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004716
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004717 sol += hdr_idx_first_pos(&txn->hdr_idx);
4718 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004719
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004720 while (cur_idx) {
4721 eol = sol + txn->hdr_idx.v[cur_idx].len;
4722 debug_hdr("srvhdr", s, sol, eol);
4723 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
4724 cur_idx = txn->hdr_idx.v[cur_idx].next;
4725 }
4726 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004727
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004728 /*
4729 * Now we quickly check if we have found a full valid response.
4730 * If not so, we check the FD and buffer states before leaving.
4731 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01004732 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004733 * responses are checked first.
4734 *
4735 * Depending on whether the client is still there or not, we
4736 * may send an error response back or not. Note that normally
4737 * we should only check for HTTP status there, and check I/O
4738 * errors somewhere else.
4739 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004740
Willy Tarreau655dce92009-11-08 13:10:58 +01004741 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004742 /* Invalid response */
4743 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4744 /* we detected a parsing error. We want to archive this response
4745 * in the dedicated proxy area for later troubleshooting.
4746 */
4747 hdr_response_bad:
4748 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004749 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004750
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004751 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004752 if (target_srv(&s->target)) {
4753 target_srv(&s->target)->counters.failed_resp++;
4754 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004755 }
Willy Tarreau64648412010-03-05 10:41:54 +01004756 abort_response:
Willy Tarreau90deb182010-01-07 00:20:41 +01004757 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004758 rep->analysers = 0;
4759 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004760 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004761 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004762 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
4763
4764 if (!(s->flags & SN_ERR_MASK))
4765 s->flags |= SN_ERR_PRXCOND;
4766 if (!(s->flags & SN_FINST_MASK))
4767 s->flags |= SN_FINST_H;
4768
4769 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004770 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004771
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004772 /* too large response does not fit in buffer. */
4773 else if (rep->flags & BF_FULL) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02004774 if (msg->err_pos < 0)
4775 msg->err_pos = rep->l;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004776 goto hdr_response_bad;
4777 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004778
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004779 /* read error */
4780 else if (rep->flags & BF_READ_ERROR) {
4781 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004782 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02004783
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004784 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004785 if (target_srv(&s->target)) {
4786 target_srv(&s->target)->counters.failed_resp++;
4787 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004788 }
Willy Tarreau461f6622008-08-15 23:43:19 +02004789
Willy Tarreau90deb182010-01-07 00:20:41 +01004790 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004791 rep->analysers = 0;
4792 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004793 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004794 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004795 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02004796
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004797 if (!(s->flags & SN_ERR_MASK))
4798 s->flags |= SN_ERR_SRVCL;
4799 if (!(s->flags & SN_FINST_MASK))
4800 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02004801 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004802 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004803
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004804 /* read timeout : return a 504 to the client. */
4805 else if (rep->flags & BF_READ_TIMEOUT) {
4806 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004807 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004808
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004809 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004810 if (target_srv(&s->target)) {
4811 target_srv(&s->target)->counters.failed_resp++;
4812 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004813 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004814
Willy Tarreau90deb182010-01-07 00:20:41 +01004815 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004816 rep->analysers = 0;
4817 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004818 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004819 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004820 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02004821
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004822 if (!(s->flags & SN_ERR_MASK))
4823 s->flags |= SN_ERR_SRVTO;
4824 if (!(s->flags & SN_FINST_MASK))
4825 s->flags |= SN_FINST_H;
4826 return 0;
4827 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02004828
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02004829 /* close from server, capture the response if the server has started to respond */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004830 else if (rep->flags & BF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02004831 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004832 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004833
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004834 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004835 if (target_srv(&s->target)) {
4836 target_srv(&s->target)->counters.failed_resp++;
4837 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004838 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004839
Willy Tarreau90deb182010-01-07 00:20:41 +01004840 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004841 rep->analysers = 0;
4842 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004843 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004844 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004845 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01004846
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004847 if (!(s->flags & SN_ERR_MASK))
4848 s->flags |= SN_ERR_SRVCL;
4849 if (!(s->flags & SN_FINST_MASK))
4850 s->flags |= SN_FINST_H;
4851 return 0;
4852 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004853
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004854 /* write error to client (we don't send any message then) */
4855 else if (rep->flags & BF_WRITE_ERROR) {
4856 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004857 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004858
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004859 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004860 rep->analysers = 0;
Willy Tarreau90deb182010-01-07 00:20:41 +01004861 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004862
4863 if (!(s->flags & SN_ERR_MASK))
4864 s->flags |= SN_ERR_CLICL;
4865 if (!(s->flags & SN_FINST_MASK))
4866 s->flags |= SN_FINST_H;
4867
4868 /* process_session() will take care of the error */
4869 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004870 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004871
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004872 buffer_dont_close(rep);
4873 return 0;
4874 }
4875
4876 /* More interesting part now : we know that we have a complete
4877 * response which at least looks like HTTP. We have an indicator
4878 * of each header's length, so we can parse them quickly.
4879 */
4880
4881 if (unlikely(msg->err_pos >= 0))
Willy Tarreau078272e2010-12-12 12:46:33 +01004882 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004883
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004884 /*
4885 * 1: get the status code
4886 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01004887 n = msg->sol[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004888 if (n < 1 || n > 5)
4889 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004890 /* when the client triggers a 4xx from the server, it's most often due
4891 * to a missing object or permission. These events should be tracked
4892 * because if they happen often, it may indicate a brute force or a
4893 * vulnerability scan.
4894 */
4895 if (n == 4)
4896 session_inc_http_err_ctr(s);
4897
Willy Tarreau827aee92011-03-10 16:55:02 +01004898 if (target_srv(&s->target))
4899 target_srv(&s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004900
Willy Tarreau5b154472009-12-21 20:11:07 +01004901 /* check if the response is HTTP/1.1 or above */
4902 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01004903 ((msg->sol[5] > '1') ||
4904 ((msg->sol[5] == '1') &&
4905 (msg->sol[7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01004906 txn->flags |= TX_RES_VER_11;
4907
4908 /* "connection" has not been parsed yet */
Willy Tarreau60466522010-01-18 19:08:45 +01004909 txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_CON_CLO_SET|TX_CON_KAL_SET);
Willy Tarreau5b154472009-12-21 20:11:07 +01004910
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004911 /* transfer length unknown*/
4912 txn->flags &= ~TX_RES_XFER_LEN;
4913
Willy Tarreau962c3f42010-01-10 00:15:35 +01004914 txn->status = strl2ui(msg->sol + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004915
Willy Tarreau39650402010-03-15 19:44:39 +01004916 /* Adjust server's health based on status code. Note: status codes 501
4917 * and 505 are triggered on demand by client request, so we must not
4918 * count them as server failures.
4919 */
Willy Tarreau827aee92011-03-10 16:55:02 +01004920 if (target_srv(&s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004921 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau827aee92011-03-10 16:55:02 +01004922 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004923 else
Willy Tarreau827aee92011-03-10 16:55:02 +01004924 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004925 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004926
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004927 /*
4928 * 2: check for cacheability.
4929 */
4930
4931 switch (txn->status) {
4932 case 200:
4933 case 203:
4934 case 206:
4935 case 300:
4936 case 301:
4937 case 410:
4938 /* RFC2616 @13.4:
4939 * "A response received with a status code of
4940 * 200, 203, 206, 300, 301 or 410 MAY be stored
4941 * by a cache (...) unless a cache-control
4942 * directive prohibits caching."
4943 *
4944 * RFC2616 @9.5: POST method :
4945 * "Responses to this method are not cacheable,
4946 * unless the response includes appropriate
4947 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004948 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004949 if (likely(txn->meth != HTTP_METH_POST) &&
4950 (s->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
4951 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
4952 break;
4953 default:
4954 break;
4955 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004956
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004957 /*
4958 * 3: we may need to capture headers
4959 */
4960 s->logs.logwait &= ~LW_RESP;
4961 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->fe->rsp_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01004962 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004963 txn->rsp.cap, s->fe->rsp_cap);
4964
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004965 /* 4: determine the transfer-length.
4966 * According to RFC2616 #4.4, amended by the HTTPbis working group,
4967 * the presence of a message-body in a RESPONSE and its transfer length
4968 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004969 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004970 * All responses to the HEAD request method MUST NOT include a
4971 * message-body, even though the presence of entity-header fields
4972 * might lead one to believe they do. All 1xx (informational), 204
4973 * (No Content), and 304 (Not Modified) responses MUST NOT include a
4974 * message-body. All other responses do include a message-body,
4975 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004976 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004977 * 1. Any response which "MUST NOT" include a message-body (such as the
4978 * 1xx, 204 and 304 responses and any response to a HEAD request) is
4979 * always terminated by the first empty line after the header fields,
4980 * regardless of the entity-header fields present in the message.
4981 *
4982 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
4983 * the "chunked" transfer-coding (Section 6.2) is used, the
4984 * transfer-length is defined by the use of this transfer-coding.
4985 * If a Transfer-Encoding header field is present and the "chunked"
4986 * transfer-coding is not present, the transfer-length is defined by
4987 * the sender closing the connection.
4988 *
4989 * 3. If a Content-Length header field is present, its decimal value in
4990 * OCTETs represents both the entity-length and the transfer-length.
4991 * If a message is received with both a Transfer-Encoding header
4992 * field and a Content-Length header field, the latter MUST be ignored.
4993 *
4994 * 4. If the message uses the media type "multipart/byteranges", and
4995 * the transfer-length is not otherwise specified, then this self-
4996 * delimiting media type defines the transfer-length. This media
4997 * type MUST NOT be used unless the sender knows that the recipient
4998 * can parse it; the presence in a request of a Range header with
4999 * multiple byte-range specifiers from a 1.1 client implies that the
5000 * client can parse multipart/byteranges responses.
5001 *
5002 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005003 */
5004
5005 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01005006 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005007 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005008 * FIXME: should we parse anyway and return an error on chunked encoding ?
5009 */
5010 if (txn->meth == HTTP_METH_HEAD ||
5011 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005012 txn->status == 204 || txn->status == 304) {
5013 txn->flags |= TX_RES_XFER_LEN;
5014 goto skip_content_length;
5015 }
5016
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005017 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005018 ctx.idx = 0;
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01005019 while ((txn->flags & TX_RES_VER_11) &&
5020 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005021 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
5022 txn->flags |= (TX_RES_TE_CHNK | TX_RES_XFER_LEN);
5023 else if (txn->flags & TX_RES_TE_CHNK) {
5024 /* bad transfer-encoding (chunked followed by something else) */
5025 use_close_only = 1;
5026 txn->flags &= ~(TX_RES_TE_CHNK | TX_RES_XFER_LEN);
5027 break;
5028 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005029 }
5030
5031 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
5032 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005033 while (!(txn->flags & TX_RES_TE_CHNK) && !use_close_only &&
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005034 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
5035 signed long long cl;
5036
Willy Tarreauad14f752011-09-02 20:33:27 +02005037 if (!ctx.vlen) {
5038 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005039 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005040 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005041
Willy Tarreauad14f752011-09-02 20:33:27 +02005042 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
5043 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005044 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02005045 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005046
Willy Tarreauad14f752011-09-02 20:33:27 +02005047 if (cl < 0) {
5048 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005049 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005050 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005051
Willy Tarreauad14f752011-09-02 20:33:27 +02005052 if ((txn->flags & TX_RES_CNT_LEN) && (msg->chunk_len != cl)) {
5053 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005054 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02005055 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005056
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005057 txn->flags |= TX_RES_CNT_LEN | TX_RES_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01005058 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005059 }
5060
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005061 /* FIXME: we should also implement the multipart/byterange method.
5062 * For now on, we resort to close mode in this case (unknown length).
5063 */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005064skip_content_length:
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005065
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005066 /* end of job, return OK */
5067 rep->analysers &= ~an_bit;
5068 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau90deb182010-01-07 00:20:41 +01005069 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005070 return 1;
5071}
5072
5073/* This function performs all the processing enabled for the current response.
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005074 * It normally returns 1 unless it wants to break. It relies on buffers flags,
5075 * and updates t->rep->analysers. It might make sense to explode it into several
5076 * other functions. It works like process_request (see indications above).
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005077 */
5078int http_process_res_common(struct session *t, struct buffer *rep, int an_bit, struct proxy *px)
5079{
5080 struct http_txn *txn = &t->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005081 struct http_msg *msg = &txn->rsp;
5082 struct proxy *cur_proxy;
Willy Tarreauf4f04122010-01-28 18:10:50 +01005083 struct cond_wordlist *wl;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005084
5085 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
5086 now_ms, __FUNCTION__,
5087 t,
5088 rep,
5089 rep->rex, rep->wex,
5090 rep->flags,
5091 rep->l,
5092 rep->analysers);
5093
Willy Tarreau655dce92009-11-08 13:10:58 +01005094 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005095 return 0;
5096
5097 rep->analysers &= ~an_bit;
5098 rep->analyse_exp = TICK_ETERNITY;
5099
Willy Tarreau5b154472009-12-21 20:11:07 +01005100 /* Now we have to check if we need to modify the Connection header.
5101 * This is more difficult on the response than it is on the request,
5102 * because we can have two different HTTP versions and we don't know
5103 * how the client will interprete a response. For instance, let's say
5104 * that the client sends a keep-alive request in HTTP/1.0 and gets an
5105 * HTTP/1.1 response without any header. Maybe it will bound itself to
5106 * HTTP/1.0 because it only knows about it, and will consider the lack
5107 * of header as a close, or maybe it knows HTTP/1.1 and can consider
5108 * the lack of header as a keep-alive. Thus we will use two flags
5109 * indicating how a request MAY be understood by the client. In case
5110 * of multiple possibilities, we'll fix the header to be explicit. If
5111 * ambiguous cases such as both close and keepalive are seen, then we
5112 * will fall back to explicit close. Note that we won't take risks with
5113 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01005114 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01005115 */
5116
Willy Tarreaudc008c52010-02-01 16:20:08 +01005117 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
5118 txn->status == 101)) {
5119 /* Either we've established an explicit tunnel, or we're
5120 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005121 * to understand the next protocols. We have to switch to tunnel
5122 * mode, so that we transfer the request and responses then let
5123 * this protocol pass unmodified. When we later implement specific
5124 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01005125 * header which contains information about that protocol for
5126 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005127 */
5128 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
5129 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01005130 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
5131 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
5132 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005133 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01005134
Willy Tarreau60466522010-01-18 19:08:45 +01005135 /* on unknown transfer length, we must close */
5136 if (!(txn->flags & TX_RES_XFER_LEN) &&
5137 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5138 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01005139
Willy Tarreau60466522010-01-18 19:08:45 +01005140 /* now adjust header transformations depending on current state */
5141 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
5142 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5143 to_del |= 2; /* remove "keep-alive" on any response */
5144 if (!(txn->flags & TX_RES_VER_11))
5145 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005146 }
Willy Tarreau60466522010-01-18 19:08:45 +01005147 else { /* SCL / KAL */
5148 to_del |= 1; /* remove "close" on any response */
5149 if ((txn->flags & (TX_RES_VER_11|TX_REQ_VER_11)) == (TX_RES_VER_11|TX_REQ_VER_11))
5150 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005151 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005152
Willy Tarreau60466522010-01-18 19:08:45 +01005153 /* Parse and remove some headers from the connection header */
5154 http_parse_connection_header(txn, msg, rep, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01005155
Willy Tarreau60466522010-01-18 19:08:45 +01005156 /* Some keep-alive responses are converted to Server-close if
5157 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01005158 */
Willy Tarreau60466522010-01-18 19:08:45 +01005159 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
5160 if ((txn->flags & TX_HDR_CONN_CLO) ||
5161 (txn->flags & (TX_HDR_CONN_KAL|TX_RES_VER_11)) == 0)
5162 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005163 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005164 }
5165
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005166 if (1) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005167 /*
5168 * 3: we will have to evaluate the filters.
5169 * As opposed to version 1.2, now they will be evaluated in the
5170 * filters order and not in the header order. This means that
5171 * each filter has to be validated among all headers.
5172 *
5173 * Filters are tried with ->be first, then with ->fe if it is
5174 * different from ->be.
5175 */
5176
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005177 cur_proxy = t->be;
5178 while (1) {
5179 struct proxy *rule_set = cur_proxy;
5180
5181 /* try headers filters */
5182 if (rule_set->rsp_exp != NULL) {
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005183 if (apply_filters_to_response(t, rep, rule_set) < 0) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005184 return_bad_resp:
Willy Tarreau827aee92011-03-10 16:55:02 +01005185 if (target_srv(&t->target)) {
5186 target_srv(&t->target)->counters.failed_resp++;
5187 health_adjust(target_srv(&t->target), HANA_STATUS_HTTP_RSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005188 }
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005189 t->be->be_counters.failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005190 return_srv_prx_502:
Willy Tarreau2df28e82008-08-17 15:20:19 +02005191 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005192 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005193 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01005194 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreau8e89b842009-10-18 23:56:35 +02005195 stream_int_retnclose(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005196 if (!(t->flags & SN_ERR_MASK))
5197 t->flags |= SN_ERR_PRXCOND;
5198 if (!(t->flags & SN_FINST_MASK))
5199 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02005200 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005201 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005202 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005203
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005204 /* has the response been denied ? */
5205 if (txn->flags & TX_SVDENY) {
Willy Tarreau827aee92011-03-10 16:55:02 +01005206 if (target_srv(&t->target))
5207 target_srv(&t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005208
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005209 t->be->be_counters.denied_resp++;
5210 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005211 if (t->listener->counters)
5212 t->listener->counters->denied_resp++;
5213
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005214 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01005215 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005216
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005217 /* add response headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005218 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreau816b9792009-09-15 21:25:21 +02005219 if (txn->status < 200)
5220 break;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005221 if (wl->cond) {
5222 int ret = acl_exec_cond(wl->cond, px, t, txn, ACL_DIR_RTR);
5223 ret = acl_pass(ret);
5224 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
5225 ret = !ret;
5226 if (!ret)
5227 continue;
5228 }
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005229 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005230 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02005231 }
5232
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005233 /* check whether we're already working on the frontend */
5234 if (cur_proxy == t->fe)
5235 break;
5236 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005237 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005238
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005239 /*
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005240 * We may be facing a 100-continue response, in which case this
5241 * is not the right response, and we're waiting for the next one.
5242 * Let's allow this response to go to the client and wait for the
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005243 * next one.
5244 */
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005245 if (unlikely(txn->status == 100)) {
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005246 hdr_idx_init(&txn->hdr_idx);
Willy Tarreau962c3f42010-01-10 00:15:35 +01005247 buffer_forward(rep, rep->lr - msg->sol);
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005248 msg->msg_state = HTTP_MSG_RPBEFORE;
5249 txn->status = 0;
5250 rep->analysers |= AN_RES_WAIT_HTTP | an_bit;
5251 return 1;
5252 }
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005253 else if (unlikely(txn->status < 200))
5254 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005255
5256 /* we don't have any 1xx status code now */
5257
5258 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005259 * 4: check for server cookie.
5260 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005261 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name ||
5262 (t->be->options & PR_O_CHK_CACHE))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005263 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005264
Willy Tarreaubaaee002006-06-26 02:48:02 +02005265
Willy Tarreaua15645d2007-03-18 16:22:39 +01005266 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005267 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005268 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005269 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005270 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005271
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005272 /*
5273 * 6: add server cookie in the response if needed
5274 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005275 if (target_srv(&t->target) && (t->be->options & PR_O_COOK_INS) &&
Willy Tarreauba4c5be2010-10-23 12:46:42 +02005276 !((txn->flags & TX_SCK_FOUND) && (t->be->options2 & PR_O2_COOK_PSV)) &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02005277 (!(t->flags & SN_DIRECT) ||
5278 ((t->be->cookie_maxidle || txn->cookie_last_date) &&
5279 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
5280 (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
5281 (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02005282 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST)) &&
5283 !(t->flags & SN_IGNORE_PRST)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005284 int len;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005285 /* the server is known, it's not the one the client requested, or the
5286 * cookie's last seen date needs to be refreshed. We have to
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005287 * insert a set-cookie here, except if we want to insert only on POST
5288 * requests and this one isn't. Note that servers which don't have cookies
5289 * (eg: some backup servers) will return a full cookie removal request.
5290 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005291 if (!target_srv(&t->target)->cookie) {
Willy Tarreauef4f3912010-10-07 21:00:29 +02005292 len = sprintf(trash,
5293 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5294 t->be->cookie_name);
5295 }
5296 else {
Willy Tarreau827aee92011-03-10 16:55:02 +01005297 len = sprintf(trash, "Set-Cookie: %s=%s", t->be->cookie_name, target_srv(&t->target)->cookie);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005298
5299 if (t->be->cookie_maxidle || t->be->cookie_maxlife) {
5300 /* emit last_date, which is mandatory */
5301 trash[len++] = COOKIE_DELIM_DATE;
5302 s30tob64((date.tv_sec+3) >> 2, trash + len); len += 5;
5303 if (t->be->cookie_maxlife) {
5304 /* emit first_date, which is either the original one or
5305 * the current date.
5306 */
5307 trash[len++] = COOKIE_DELIM_DATE;
5308 s30tob64(txn->cookie_first_date ?
5309 txn->cookie_first_date >> 2 :
5310 (date.tv_sec+3) >> 2, trash + len);
5311 len += 5;
5312 }
5313 }
5314 len += sprintf(trash + len, "; path=/");
5315 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005316
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005317 if (t->be->cookie_domain)
5318 len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005319
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005320 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005321 trash, len) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005322 goto return_bad_resp;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005323
Willy Tarreauf1348312010-10-07 15:54:11 +02005324 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau827aee92011-03-10 16:55:02 +01005325 if (target_srv(&t->target)->cookie && (t->flags & SN_DIRECT))
Willy Tarreauef4f3912010-10-07 21:00:29 +02005326 /* the server did not change, only the date was updated */
5327 txn->flags |= TX_SCK_UPDATED;
5328 else
5329 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005330
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005331 /* Here, we will tell an eventual cache on the client side that we don't
5332 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
5333 * Some caches understand the correct form: 'no-cache="set-cookie"', but
5334 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
5335 */
5336 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02005337
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005338 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
5339
5340 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005341 "Cache-control: private", 22) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005342 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005343 }
5344 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005345
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005346 /*
5347 * 7: check if result will be cacheable with a cookie.
5348 * We'll block the response if security checks have caught
5349 * nasty things such as a cacheable cookie.
5350 */
Willy Tarreauf1348312010-10-07 15:54:11 +02005351 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
5352 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005353 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005354
5355 /* we're in presence of a cacheable response containing
5356 * a set-cookie header. We'll block it as requested by
5357 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005358 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005359 if (target_srv(&t->target))
5360 target_srv(&t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005361
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005362 t->be->be_counters.denied_resp++;
5363 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005364 if (t->listener->counters)
5365 t->listener->counters->denied_resp++;
5366
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005367 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau827aee92011-03-10 16:55:02 +01005368 t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005369 send_log(t->be, LOG_ALERT,
5370 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau827aee92011-03-10 16:55:02 +01005371 t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005372 goto return_srv_prx_502;
5373 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005374
5375 /*
Willy Tarreau60466522010-01-18 19:08:45 +01005376 * 8: adjust "Connection: close" or "Connection: keep-alive" if needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005377 */
Willy Tarreau60466522010-01-18 19:08:45 +01005378 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
5379 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE)) {
5380 unsigned int want_flags = 0;
5381
5382 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5383 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5384 /* we want a keep-alive response here. Keep-alive header
5385 * required if either side is not 1.1.
5386 */
5387 if ((txn->flags & (TX_REQ_VER_11|TX_RES_VER_11)) != (TX_REQ_VER_11|TX_RES_VER_11))
5388 want_flags |= TX_CON_KAL_SET;
5389 }
5390 else {
5391 /* we want a close response here. Close header required if
5392 * the server is 1.1, regardless of the client.
5393 */
5394 if (txn->flags & TX_RES_VER_11)
5395 want_flags |= TX_CON_CLO_SET;
5396 }
5397
5398 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
5399 http_change_connection_header(txn, msg, rep, want_flags);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005400 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005401
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005402 skip_header_mangling:
Willy Tarreaudc008c52010-02-01 16:20:08 +01005403 if ((txn->flags & TX_RES_XFER_LEN) ||
5404 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005405 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01005406
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005407 /*************************************************************
5408 * OK, that's finished for the headers. We have done what we *
5409 * could. Let's switch to the DATA state. *
5410 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02005411
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005412 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005413
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005414 /* if the user wants to log as soon as possible, without counting
5415 * bytes from the server, then this is the right moment. We have
5416 * to temporarily assign bytes_out to log what we currently have.
5417 */
5418 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
5419 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
5420 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01005421 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005422 t->logs.bytes_out = 0;
5423 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005424
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005425 /* Note: we must not try to cheat by jumping directly to DATA,
5426 * otherwise we would not let the client side wake up.
5427 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01005428
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005429 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005430 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005431 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005432}
Willy Tarreaua15645d2007-03-18 16:22:39 +01005433
Willy Tarreaud98cf932009-12-27 22:54:55 +01005434/* This function is an analyser which forwards response body (including chunk
5435 * sizes if any). It is called as soon as we must forward, even if we forward
5436 * zero byte. The only situation where it must not be called is when we're in
5437 * tunnel mode and we want to forward till the close. It's used both to forward
5438 * remaining data and to resync after end of body. It expects the msg_state to
5439 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
5440 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01005441 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreaud98cf932009-12-27 22:54:55 +01005442 * bytes of pending data + the headers if not already done (between som and sov).
5443 * It eventually adjusts som to match sov after the data in between have been sent.
5444 */
5445int http_response_forward_body(struct session *s, struct buffer *res, int an_bit)
5446{
5447 struct http_txn *txn = &s->txn;
5448 struct http_msg *msg = &s->txn.rsp;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005449 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005450
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005451 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5452 return 0;
5453
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005454 if ((res->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005455 ((res->flags & BF_SHUTW) && (res->to_forward || res->send_max)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005456 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005457 /* Output closed while we were sending data. We must abort and
5458 * wake the other side up.
5459 */
5460 msg->msg_state = HTTP_MSG_ERROR;
5461 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005462 return 1;
5463 }
5464
Willy Tarreau4fe41902010-06-07 22:27:41 +02005465 /* in most states, we should abort in case of early close */
5466 buffer_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005467
Willy Tarreaud98cf932009-12-27 22:54:55 +01005468 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
5469 /* we have msg->col and msg->sov which both point to the first
5470 * byte of message body. msg->som still points to the beginning
5471 * of the message. We must save the body in req->lr because it
5472 * survives buffer re-alignments.
5473 */
5474 res->lr = res->data + msg->sov;
5475 if (txn->flags & TX_RES_TE_CHNK)
5476 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5477 else {
5478 msg->msg_state = HTTP_MSG_DATA;
5479 }
5480 }
5481
Willy Tarreaud98cf932009-12-27 22:54:55 +01005482 while (1) {
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005483 int bytes;
5484
Willy Tarreau610ecce2010-01-04 21:15:02 +01005485 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01005486 /* we may have some data pending */
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005487 bytes = msg->sov - msg->som;
5488 if (msg->chunk_len || bytes) {
Willy Tarreau638cd022010-01-03 07:42:04 +01005489 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005490 if (likely(bytes < 0)) /* sov may have wrapped at the end */
5491 bytes += res->size;
5492 msg->chunk_len += (unsigned int)bytes;
5493 msg->chunk_len -= buffer_forward(res, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01005494 }
5495
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005496
Willy Tarreaucaabe412010-01-03 23:08:28 +01005497 if (msg->msg_state == HTTP_MSG_DATA) {
5498 /* must still forward */
5499 if (res->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005500 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005501
5502 /* nothing left to forward */
5503 if (txn->flags & TX_RES_TE_CHNK)
5504 msg->msg_state = HTTP_MSG_DATA_CRLF;
5505 else
5506 msg->msg_state = HTTP_MSG_DONE;
5507 }
5508 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005509 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01005510 * set ->sov to point to the body and switch to DATA or TRAILERS state.
5511 */
5512 int ret = http_parse_chunk_size(res, msg);
5513
5514 if (!ret)
5515 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005516 else if (ret < 0) {
5517 if (msg->err_pos >= 0)
5518 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005519 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005520 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005521 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005522 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005523 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
5524 /* we want the CRLF after the data */
5525 int ret;
5526
Willy Tarreaud3347ee2010-01-04 02:02:25 +01005527 res->lr = res->w + res->send_max;
5528 if (res->lr >= res->data + res->size)
5529 res->lr -= res->size;
5530
Willy Tarreaud98cf932009-12-27 22:54:55 +01005531 ret = http_skip_chunk_crlf(res, msg);
5532
5533 if (!ret)
5534 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005535 else if (ret < 0) {
5536 if (msg->err_pos >= 0)
5537 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_DATA_CRLF, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005538 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005539 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005540 /* we're in MSG_CHUNK_SIZE now */
5541 }
5542 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
5543 int ret = http_forward_trailers(res, msg);
Willy Tarreau5523b322009-12-29 12:05:52 +01005544
Willy Tarreaud98cf932009-12-27 22:54:55 +01005545 if (ret == 0)
5546 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005547 else if (ret < 0) {
5548 if (msg->err_pos >= 0)
5549 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005550 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005551 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005552 /* we're in HTTP_MSG_DONE now */
5553 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005554 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005555 int old_state = msg->msg_state;
5556
Willy Tarreau610ecce2010-01-04 21:15:02 +01005557 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02005558 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005559 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5560 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5561 buffer_dont_close(res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005562 if (http_resync_states(s)) {
5563 http_silent_debug(__LINE__, s);
5564 /* some state changes occurred, maybe the analyser
5565 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01005566 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005567 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5568 if (res->flags & BF_SHUTW) {
5569 /* response errors are most likely due to
5570 * the client aborting the transfer.
5571 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005572 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005573 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005574 if (msg->err_pos >= 0)
5575 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, old_state, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005576 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005577 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005578 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01005579 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005580 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005581 }
5582 }
5583
Willy Tarreaud98cf932009-12-27 22:54:55 +01005584 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005585 /* stop waiting for data if the input is closed before the end */
Willy Tarreau40dba092010-03-04 18:14:51 +01005586 if (res->flags & BF_SHUTR) {
5587 if (!(s->flags & SN_ERR_MASK))
5588 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005589 s->be->be_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005590 if (target_srv(&s->target))
5591 target_srv(&s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005592 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01005593 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005594
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005595 if (res->flags & BF_SHUTW)
5596 goto aborted_xfer;
5597
Willy Tarreau40dba092010-03-04 18:14:51 +01005598 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005599 if (!s->req->analysers)
5600 goto return_bad_res;
5601
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005602 /* forward any pending data */
5603 bytes = msg->sov - msg->som;
5604 if (msg->chunk_len || bytes) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005605 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005606 if (likely(bytes < 0)) /* sov may have wrapped at the end */
5607 bytes += res->size;
5608 msg->chunk_len += (unsigned int)bytes;
5609 msg->chunk_len -= buffer_forward(res, msg->chunk_len);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005610 }
5611
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005612 /* When TE: chunked is used, we need to get there again to parse remaining
5613 * chunks even if the server has closed, so we don't want to set BF_DONTCLOSE.
5614 * Similarly, with keep-alive on the client side, we don't want to forward a
5615 * close.
5616 */
5617 if ((txn->flags & TX_RES_TE_CHNK) ||
5618 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5619 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5620 buffer_dont_close(res);
5621
Willy Tarreau5c620922011-05-11 19:56:11 +02005622 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau07293032011-05-30 18:29:28 +02005623 * what we did. So we always set the BF_EXPECT_MORE flag so that the
5624 * system knows it must not set a PUSH on this first part. Interactive
5625 * modes are already handled by the stream sock layer.
Willy Tarreau5c620922011-05-11 19:56:11 +02005626 */
Willy Tarreau07293032011-05-30 18:29:28 +02005627 res->flags |= BF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005628
Willy Tarreaud98cf932009-12-27 22:54:55 +01005629 /* the session handler will take care of timeouts and errors */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005630 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005631 return 0;
5632
Willy Tarreau40dba092010-03-04 18:14:51 +01005633 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005634 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005635 if (target_srv(&s->target))
5636 target_srv(&s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005637
5638 return_bad_res_stats_ok:
Willy Tarreaud98cf932009-12-27 22:54:55 +01005639 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01005640 /* don't send any error message as we're in the body */
5641 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005642 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005643 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau827aee92011-03-10 16:55:02 +01005644 if (target_srv(&s->target))
5645 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005646
5647 if (!(s->flags & SN_ERR_MASK))
5648 s->flags |= SN_ERR_PRXCOND;
5649 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01005650 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005651 return 0;
5652
5653 aborted_xfer:
5654 txn->rsp.msg_state = HTTP_MSG_ERROR;
5655 /* don't send any error message as we're in the body */
5656 stream_int_retnclose(res->cons, NULL);
5657 res->analysers = 0;
5658 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
5659
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005660 s->fe->fe_counters.cli_aborts++;
5661 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005662 if (target_srv(&s->target))
5663 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005664
5665 if (!(s->flags & SN_ERR_MASK))
5666 s->flags |= SN_ERR_CLICL;
5667 if (!(s->flags & SN_FINST_MASK))
5668 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005669 return 0;
5670}
5671
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005672/* Iterate the same filter through all request headers.
5673 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005674 * Since it can manage the switch to another backend, it updates the per-proxy
5675 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005676 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005677int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005678{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005679 char term;
5680 char *cur_ptr, *cur_end, *cur_next;
5681 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005682 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005683 struct hdr_idx_elem *cur_hdr;
5684 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01005685
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005686 last_hdr = 0;
5687
Willy Tarreau962c3f42010-01-10 00:15:35 +01005688 cur_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005689 old_idx = 0;
5690
5691 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005692 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005693 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005694 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005695 (exp->action == ACT_ALLOW ||
5696 exp->action == ACT_DENY ||
5697 exp->action == ACT_TARPIT))
5698 return 0;
5699
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005700 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005701 if (!cur_idx)
5702 break;
5703
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005704 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005705 cur_ptr = cur_next;
5706 cur_end = cur_ptr + cur_hdr->len;
5707 cur_next = cur_end + cur_hdr->cr + 1;
5708
5709 /* Now we have one header between cur_ptr and cur_end,
5710 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005711 */
5712
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005713 /* The annoying part is that pattern matching needs
5714 * that we modify the contents to null-terminate all
5715 * strings before testing them.
5716 */
5717
5718 term = *cur_end;
5719 *cur_end = '\0';
5720
5721 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5722 switch (exp->action) {
5723 case ACT_SETBE:
5724 /* It is not possible to jump a second time.
5725 * FIXME: should we return an HTTP/500 here so that
5726 * the admin knows there's a problem ?
5727 */
5728 if (t->be != t->fe)
5729 break;
5730
5731 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005732 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005733 last_hdr = 1;
5734 break;
5735
5736 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005737 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005738 last_hdr = 1;
5739 break;
5740
5741 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005742 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005743 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005744
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005745 t->fe->fe_counters.denied_req++;
5746 if (t->fe != t->be)
5747 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005748 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005749 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005750
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005751 break;
5752
5753 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005754 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005755 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005756
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005757 t->fe->fe_counters.denied_req++;
5758 if (t->fe != t->be)
5759 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005760 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005761 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005762
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005763 break;
5764
5765 case ACT_REPLACE:
5766 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5767 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5768 /* FIXME: if the user adds a newline in the replacement, the
5769 * index will not be recalculated for now, and the new line
5770 * will not be counted as a new header.
5771 */
5772
5773 cur_end += delta;
5774 cur_next += delta;
5775 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005776 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005777 break;
5778
5779 case ACT_REMOVE:
5780 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
5781 cur_next += delta;
5782
Willy Tarreaufa355d42009-11-29 18:12:29 +01005783 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005784 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5785 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005786 cur_hdr->len = 0;
5787 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01005788 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005789 break;
5790
5791 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005792 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005793 if (cur_end)
5794 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01005795
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005796 /* keep the link from this header to next one in case of later
5797 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005798 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005799 old_idx = cur_idx;
5800 }
5801 return 0;
5802}
5803
5804
5805/* Apply the filter to the request line.
5806 * Returns 0 if nothing has been done, 1 if the filter has been applied,
5807 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005808 * Since it can manage the switch to another backend, it updates the per-proxy
5809 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005810 */
5811int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
5812{
5813 char term;
5814 char *cur_ptr, *cur_end;
5815 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005816 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005817 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005818
Willy Tarreau58f10d72006-12-04 02:26:12 +01005819
Willy Tarreau3d300592007-03-18 18:34:41 +01005820 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005821 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005822 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005823 (exp->action == ACT_ALLOW ||
5824 exp->action == ACT_DENY ||
5825 exp->action == ACT_TARPIT))
5826 return 0;
5827 else if (exp->action == ACT_REMOVE)
5828 return 0;
5829
5830 done = 0;
5831
Willy Tarreau962c3f42010-01-10 00:15:35 +01005832 cur_ptr = txn->req.sol;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005833 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005834
5835 /* Now we have the request line between cur_ptr and cur_end */
5836
5837 /* The annoying part is that pattern matching needs
5838 * that we modify the contents to null-terminate all
5839 * strings before testing them.
5840 */
5841
5842 term = *cur_end;
5843 *cur_end = '\0';
5844
5845 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5846 switch (exp->action) {
5847 case ACT_SETBE:
5848 /* It is not possible to jump a second time.
5849 * FIXME: should we return an HTTP/500 here so that
5850 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01005851 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005852 if (t->be != t->fe)
5853 break;
5854
5855 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005856 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005857 done = 1;
5858 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005859
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005860 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005861 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005862 done = 1;
5863 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005864
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005865 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005866 txn->flags |= TX_CLDENY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005867
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005868 t->fe->fe_counters.denied_req++;
5869 if (t->fe != t->be)
5870 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005871 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005872 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005873
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005874 done = 1;
5875 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005876
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005877 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005878 txn->flags |= TX_CLTARPIT;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005879
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005880 t->fe->fe_counters.denied_req++;
5881 if (t->fe != t->be)
5882 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005883 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005884 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005885
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005886 done = 1;
5887 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005888
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005889 case ACT_REPLACE:
5890 *cur_end = term; /* restore the string terminator */
5891 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5892 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5893 /* FIXME: if the user adds a newline in the replacement, the
5894 * index will not be recalculated for now, and the new line
5895 * will not be counted as a new header.
5896 */
Willy Tarreaua496b602006-12-17 23:15:24 +01005897
Willy Tarreaufa355d42009-11-29 18:12:29 +01005898 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005899 cur_end += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005900 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005901 HTTP_MSG_RQMETH,
5902 cur_ptr, cur_end + 1,
5903 NULL, NULL);
5904 if (unlikely(!cur_end))
5905 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01005906
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005907 /* we have a full request and we know that we have either a CR
5908 * or an LF at <ptr>.
5909 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005910 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
5911 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005912 /* there is no point trying this regex on headers */
5913 return 1;
5914 }
5915 }
5916 *cur_end = term; /* restore the string terminator */
5917 return done;
5918}
Willy Tarreau97de6242006-12-27 17:18:38 +01005919
Willy Tarreau58f10d72006-12-04 02:26:12 +01005920
Willy Tarreau58f10d72006-12-04 02:26:12 +01005921
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005922/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01005923 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005924 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01005925 * unparsable request. Since it can manage the switch to another backend, it
5926 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005927 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005928int apply_filters_to_request(struct session *s, struct buffer *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005929{
Willy Tarreau6c123b12010-01-28 20:22:06 +01005930 struct http_txn *txn = &s->txn;
5931 struct hdr_exp *exp;
5932
5933 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005934 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005935
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005936 /*
5937 * The interleaving of transformations and verdicts
5938 * makes it difficult to decide to continue or stop
5939 * the evaluation.
5940 */
5941
Willy Tarreau6c123b12010-01-28 20:22:06 +01005942 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
5943 break;
5944
Willy Tarreau3d300592007-03-18 18:34:41 +01005945 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005946 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01005947 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005948 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01005949
5950 /* if this filter had a condition, evaluate it now and skip to
5951 * next filter if the condition does not match.
5952 */
5953 if (exp->cond) {
5954 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_REQ);
5955 ret = acl_pass(ret);
5956 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
5957 ret = !ret;
5958
5959 if (!ret)
5960 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005961 }
5962
5963 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005964 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005965 if (unlikely(ret < 0))
5966 return -1;
5967
5968 if (likely(ret == 0)) {
5969 /* The filter did not match the request, it can be
5970 * iterated through all headers.
5971 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005972 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005973 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005974 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005975 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005976}
5977
5978
Willy Tarreaua15645d2007-03-18 16:22:39 +01005979
Willy Tarreau58f10d72006-12-04 02:26:12 +01005980/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005981 * Try to retrieve the server associated to the appsession.
5982 * If the server is found, it's assigned to the session.
5983 */
Cyril Bontéb21570a2009-11-29 20:04:48 +01005984void manage_client_side_appsession(struct session *t, const char *buf, int len) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005985 struct http_txn *txn = &t->txn;
5986 appsess *asession = NULL;
5987 char *sessid_temp = NULL;
5988
Cyril Bontéb21570a2009-11-29 20:04:48 +01005989 if (len > t->be->appsession_len) {
5990 len = t->be->appsession_len;
5991 }
5992
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005993 if (t->be->options2 & PR_O2_AS_REQL) {
5994 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005995 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005996 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005997 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005998 }
5999
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006000 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006001 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6002 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6003 return;
6004 }
6005
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006006 memcpy(txn->sessid, buf, len);
6007 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006008 }
6009
6010 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
6011 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6012 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6013 return;
6014 }
6015
Cyril Bontéb21570a2009-11-29 20:04:48 +01006016 memcpy(sessid_temp, buf, len);
6017 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006018
6019 asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp);
6020 /* free previously allocated memory */
6021 pool_free2(apools.sessid, sessid_temp);
6022
6023 if (asession != NULL) {
6024 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
6025 if (!(t->be->options2 & PR_O2_AS_REQL))
6026 asession->request_count++;
6027
6028 if (asession->serverid != NULL) {
6029 struct server *srv = t->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02006030
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006031 while (srv) {
6032 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01006033 if ((srv->state & SRV_RUNNING) ||
6034 (t->be->options & PR_O_PERSIST) ||
6035 (t->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006036 /* we found the server and it's usable */
6037 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01006038 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006039 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01006040 set_target_server(&t->target, srv);
Willy Tarreau664beb82011-03-10 11:38:29 +01006041
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006042 break;
6043 } else {
6044 txn->flags &= ~TX_CK_MASK;
6045 txn->flags |= TX_CK_DOWN;
6046 }
6047 }
6048 srv = srv->next;
6049 }
6050 }
6051 }
6052}
6053
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006054/* Find the end of a cookie value contained between <s> and <e>. It works the
6055 * same way as with headers above except that the semi-colon also ends a token.
6056 * See RFC2965 for more information. Note that it requires a valid header to
6057 * return a valid result.
6058 */
6059char *find_cookie_value_end(char *s, const char *e)
6060{
6061 int quoted, qdpair;
6062
6063 quoted = qdpair = 0;
6064 for (; s < e; s++) {
6065 if (qdpair) qdpair = 0;
6066 else if (quoted) {
6067 if (*s == '\\') qdpair = 1;
6068 else if (*s == '"') quoted = 0;
6069 }
6070 else if (*s == '"') quoted = 1;
6071 else if (*s == ',' || *s == ';') return s;
6072 }
6073 return s;
6074}
6075
6076/* Delete a value in a header between delimiters <from> and <next> in buffer
6077 * <buf>. The number of characters displaced is returned, and the pointer to
6078 * the first delimiter is updated if required. The function tries as much as
6079 * possible to respect the following principles :
6080 * - replace <from> delimiter by the <next> one unless <from> points to a
6081 * colon, in which case <next> is simply removed
6082 * - set exactly one space character after the new first delimiter, unless
6083 * there are not enough characters in the block being moved to do so.
6084 * - remove unneeded spaces before the previous delimiter and after the new
6085 * one.
6086 *
6087 * It is the caller's responsibility to ensure that :
6088 * - <from> points to a valid delimiter or the colon ;
6089 * - <next> points to a valid delimiter or the final CR/LF ;
6090 * - there are non-space chars before <from> ;
6091 * - there is a CR/LF at or after <next>.
6092 */
6093int del_hdr_value(struct buffer *buf, char **from, char *next)
6094{
6095 char *prev = *from;
6096
6097 if (*prev == ':') {
6098 /* We're removing the first value, preserve the colon and add a
6099 * space if possible.
6100 */
6101 if (!http_is_crlf[(unsigned char)*next])
6102 next++;
6103 prev++;
6104 if (prev < next)
6105 *prev++ = ' ';
6106
6107 while (http_is_spht[(unsigned char)*next])
6108 next++;
6109 } else {
6110 /* Remove useless spaces before the old delimiter. */
6111 while (http_is_spht[(unsigned char)*(prev-1)])
6112 prev--;
6113 *from = prev;
6114
6115 /* copy the delimiter and if possible a space if we're
6116 * not at the end of the line.
6117 */
6118 if (!http_is_crlf[(unsigned char)*next]) {
6119 *prev++ = *next++;
6120 if (prev + 1 < next)
6121 *prev++ = ' ';
6122 while (http_is_spht[(unsigned char)*next])
6123 next++;
6124 }
6125 }
6126 return buffer_replace2(buf, prev, next, NULL, 0);
6127}
6128
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006129/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006130 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006131 * desirable to call it only when needed. This code is quite complex because
6132 * of the multiple very crappy and ambiguous syntaxes we have to support. it
6133 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01006134 */
6135void manage_client_side_cookies(struct session *t, struct buffer *req)
6136{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006137 struct http_txn *txn = &t->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006138 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006139 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006140 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
6141 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006142
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006143 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01006144 old_idx = 0;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006145 hdr_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006146
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006147 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006148 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006149 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006150
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006151 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006152 hdr_beg = hdr_next;
6153 hdr_end = hdr_beg + cur_hdr->len;
6154 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006155
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006156 /* We have one full header between hdr_beg and hdr_end, and the
6157 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01006158 * "Cookie:" headers.
6159 */
6160
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006161 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006162 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006163 old_idx = cur_idx;
6164 continue;
6165 }
6166
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006167 del_from = NULL; /* nothing to be deleted */
6168 preserve_hdr = 0; /* assume we may kill the whole header */
6169
Willy Tarreau58f10d72006-12-04 02:26:12 +01006170 /* Now look for cookies. Conforming to RFC2109, we have to support
6171 * attributes whose name begin with a '$', and associate them with
6172 * the right cookie, if we want to delete this cookie.
6173 * So there are 3 cases for each cookie read :
6174 * 1) it's a special attribute, beginning with a '$' : ignore it.
6175 * 2) it's a server id cookie that we *MAY* want to delete : save
6176 * some pointers on it (last semi-colon, beginning of cookie...)
6177 * 3) it's an application cookie : we *MAY* have to delete a previous
6178 * "special" cookie.
6179 * At the end of loop, if a "special" cookie remains, we may have to
6180 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006181 * *MUST* delete it.
6182 *
6183 * Note: RFC2965 is unclear about the processing of spaces around
6184 * the equal sign in the ATTR=VALUE form. A careful inspection of
6185 * the RFC explicitly allows spaces before it, and not within the
6186 * tokens (attrs or values). An inspection of RFC2109 allows that
6187 * too but section 10.1.3 lets one think that spaces may be allowed
6188 * after the equal sign too, resulting in some (rare) buggy
6189 * implementations trying to do that. So let's do what servers do.
6190 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
6191 * allowed quoted strings in values, with any possible character
6192 * after a backslash, including control chars and delimitors, which
6193 * causes parsing to become ambiguous. Browsers also allow spaces
6194 * within values even without quotes.
6195 *
6196 * We have to keep multiple pointers in order to support cookie
6197 * removal at the beginning, middle or end of header without
6198 * corrupting the header. All of these headers are valid :
6199 *
6200 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
6201 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
6202 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
6203 * | | | | | | | | |
6204 * | | | | | | | | hdr_end <--+
6205 * | | | | | | | +--> next
6206 * | | | | | | +----> val_end
6207 * | | | | | +-----------> val_beg
6208 * | | | | +--------------> equal
6209 * | | | +----------------> att_end
6210 * | | +---------------------> att_beg
6211 * | +--------------------------> prev
6212 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01006213 */
6214
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006215 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
6216 /* Iterate through all cookies on this line */
6217
6218 /* find att_beg */
6219 att_beg = prev + 1;
6220 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6221 att_beg++;
6222
6223 /* find att_end : this is the first character after the last non
6224 * space before the equal. It may be equal to hdr_end.
6225 */
6226 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006227
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006228 while (equal < hdr_end) {
6229 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01006230 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006231 if (http_is_spht[(unsigned char)*equal++])
6232 continue;
6233 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006234 }
6235
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006236 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6237 * is between <att_beg> and <equal>, both may be identical.
6238 */
6239
6240 /* look for end of cookie if there is an equal sign */
6241 if (equal < hdr_end && *equal == '=') {
6242 /* look for the beginning of the value */
6243 val_beg = equal + 1;
6244 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6245 val_beg++;
6246
6247 /* find the end of the value, respecting quotes */
6248 next = find_cookie_value_end(val_beg, hdr_end);
6249
6250 /* make val_end point to the first white space or delimitor after the value */
6251 val_end = next;
6252 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6253 val_end--;
6254 } else {
6255 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01006256 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006257
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006258 /* We have nothing to do with attributes beginning with '$'. However,
6259 * they will automatically be removed if a header before them is removed,
6260 * since they're supposed to be linked together.
6261 */
6262 if (*att_beg == '$')
6263 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006264
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006265 /* Ignore cookies with no equal sign */
6266 if (equal == next) {
6267 /* This is not our cookie, so we must preserve it. But if we already
6268 * scheduled another cookie for removal, we cannot remove the
6269 * complete header, but we can remove the previous block itself.
6270 */
6271 preserve_hdr = 1;
6272 if (del_from != NULL) {
6273 int delta = del_hdr_value(req, &del_from, prev);
6274 val_end += delta;
6275 next += delta;
6276 hdr_end += delta;
6277 hdr_next += delta;
6278 cur_hdr->len += delta;
6279 http_msg_move_end(&txn->req, delta);
6280 prev = del_from;
6281 del_from = NULL;
6282 }
6283 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01006284 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006285
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006286 /* if there are spaces around the equal sign, we need to
6287 * strip them otherwise we'll get trouble for cookie captures,
6288 * or even for rewrites. Since this happens extremely rarely,
6289 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006290 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006291 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6292 int stripped_before = 0;
6293 int stripped_after = 0;
6294
6295 if (att_end != equal) {
6296 stripped_before = buffer_replace2(req, att_end, equal, NULL, 0);
6297 equal += stripped_before;
6298 val_beg += stripped_before;
6299 }
6300
6301 if (val_beg > equal + 1) {
6302 stripped_after = buffer_replace2(req, equal + 1, val_beg, NULL, 0);
6303 val_beg += stripped_after;
6304 stripped_before += stripped_after;
6305 }
6306
6307 val_end += stripped_before;
6308 next += stripped_before;
6309 hdr_end += stripped_before;
6310 hdr_next += stripped_before;
6311 cur_hdr->len += stripped_before;
6312 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006313 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006314 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006315
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006316 /* First, let's see if we want to capture this cookie. We check
6317 * that we don't already have a client side cookie, because we
6318 * can only capture one. Also as an optimisation, we ignore
6319 * cookies shorter than the declared name.
6320 */
6321 if (t->fe->capture_name != NULL && txn->cli_cookie == NULL &&
6322 (val_end - att_beg >= t->fe->capture_namelen) &&
6323 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
6324 int log_len = val_end - att_beg;
6325
6326 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
6327 Alert("HTTP logging : out of memory.\n");
6328 } else {
6329 if (log_len > t->fe->capture_len)
6330 log_len = t->fe->capture_len;
6331 memcpy(txn->cli_cookie, att_beg, log_len);
6332 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006333 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006334 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006335
Willy Tarreaubca99692010-10-06 19:25:55 +02006336 /* Persistence cookies in passive, rewrite or insert mode have the
6337 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006338 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006339 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006340 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006341 * For cookies in prefix mode, the form is :
6342 *
6343 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006344 */
6345 if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
6346 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
6347 struct server *srv = t->be->srv;
6348 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006349
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006350 /* if we're in cookie prefix mode, we'll search the delimitor so that we
6351 * have the server ID between val_beg and delim, and the original cookie between
6352 * delim+1 and val_end. Otherwise, delim==val_end :
6353 *
6354 * Cookie: NAME=SRV; # in all but prefix modes
6355 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
6356 * | || || | |+-> next
6357 * | || || | +--> val_end
6358 * | || || +---------> delim
6359 * | || |+------------> val_beg
6360 * | || +-------------> att_end = equal
6361 * | |+-----------------> att_beg
6362 * | +------------------> prev
6363 * +-------------------------> hdr_beg
6364 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006365
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006366 if (t->be->options & PR_O_COOK_PFX) {
6367 for (delim = val_beg; delim < val_end; delim++)
6368 if (*delim == COOKIE_DELIM)
6369 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02006370 } else {
6371 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006372 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02006373 /* Now check if the cookie contains a date field, which would
6374 * appear after a vertical bar ('|') just after the server name
6375 * and before the delimiter.
6376 */
6377 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
6378 if (vbar1) {
6379 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02006380 * right is the last seen date. It is a base64 encoded
6381 * 30-bit value representing the UNIX date since the
6382 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02006383 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02006384 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02006385 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02006386 if (val_end - vbar1 >= 5) {
6387 val = b64tos30(vbar1);
6388 if (val > 0)
6389 txn->cookie_last_date = val << 2;
6390 }
6391 /* look for a second vertical bar */
6392 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
6393 if (vbar1 && (val_end - vbar1 > 5)) {
6394 val = b64tos30(vbar1 + 1);
6395 if (val > 0)
6396 txn->cookie_first_date = val << 2;
6397 }
Willy Tarreaubca99692010-10-06 19:25:55 +02006398 }
6399 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006400
Willy Tarreauf64d1412010-10-07 20:06:11 +02006401 /* if the cookie has an expiration date and the proxy wants to check
6402 * it, then we do that now. We first check if the cookie is too old,
6403 * then only if it has expired. We detect strict overflow because the
6404 * time resolution here is not great (4 seconds). Cookies with dates
6405 * in the future are ignored if their offset is beyond one day. This
6406 * allows an admin to fix timezone issues without expiring everyone
6407 * and at the same time avoids keeping unwanted side effects for too
6408 * long.
6409 */
6410 if (txn->cookie_first_date && t->be->cookie_maxlife &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006411 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) ||
6412 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006413 txn->flags &= ~TX_CK_MASK;
6414 txn->flags |= TX_CK_OLD;
6415 delim = val_beg; // let's pretend we have not found the cookie
6416 txn->cookie_first_date = 0;
6417 txn->cookie_last_date = 0;
6418 }
6419 else if (txn->cookie_last_date && t->be->cookie_maxidle &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006420 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) ||
6421 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006422 txn->flags &= ~TX_CK_MASK;
6423 txn->flags |= TX_CK_EXPIRED;
6424 delim = val_beg; // let's pretend we have not found the cookie
6425 txn->cookie_first_date = 0;
6426 txn->cookie_last_date = 0;
6427 }
6428
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006429 /* Here, we'll look for the first running server which supports the cookie.
6430 * This allows to share a same cookie between several servers, for example
6431 * to dedicate backup servers to specific servers only.
6432 * However, to prevent clients from sticking to cookie-less backup server
6433 * when they have incidentely learned an empty cookie, we simply ignore
6434 * empty cookies and mark them as invalid.
6435 * The same behaviour is applied when persistence must be ignored.
6436 */
6437 if ((delim == val_beg) || (t->flags & SN_IGNORE_PRST))
6438 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006439
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006440 while (srv) {
6441 if (srv->cookie && (srv->cklen == delim - val_beg) &&
6442 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
6443 if ((srv->state & SRV_RUNNING) ||
6444 (t->be->options & PR_O_PERSIST) ||
6445 (t->flags & SN_FORCE_PRST)) {
6446 /* we found the server and we can use it */
6447 txn->flags &= ~TX_CK_MASK;
6448 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
6449 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01006450 set_target_server(&t->target, srv);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006451 break;
6452 } else {
6453 /* we found a server, but it's down,
6454 * mark it as such and go on in case
6455 * another one is available.
6456 */
6457 txn->flags &= ~TX_CK_MASK;
6458 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006459 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006460 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006461 srv = srv->next;
6462 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006463
Willy Tarreauf64d1412010-10-07 20:06:11 +02006464 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006465 /* no server matched this cookie */
6466 txn->flags &= ~TX_CK_MASK;
6467 txn->flags |= TX_CK_INVALID;
6468 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006469
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006470 /* depending on the cookie mode, we may have to either :
6471 * - delete the complete cookie if we're in insert+indirect mode, so that
6472 * the server never sees it ;
6473 * - remove the server id from the cookie value, and tag the cookie as an
6474 * application cookie so that it does not get accidentely removed later,
6475 * if we're in cookie prefix mode
6476 */
6477 if ((t->be->options & PR_O_COOK_PFX) && (delim != val_end)) {
6478 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006479
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006480 delta = buffer_replace2(req, val_beg, delim + 1, NULL, 0);
6481 val_end += delta;
6482 next += delta;
6483 hdr_end += delta;
6484 hdr_next += delta;
6485 cur_hdr->len += delta;
6486 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006487
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006488 del_from = NULL;
6489 preserve_hdr = 1; /* we want to keep this cookie */
6490 }
6491 else if (del_from == NULL &&
6492 (t->be->options & (PR_O_COOK_INS | PR_O_COOK_IND)) == (PR_O_COOK_INS | PR_O_COOK_IND)) {
6493 del_from = prev;
6494 }
6495 } else {
6496 /* This is not our cookie, so we must preserve it. But if we already
6497 * scheduled another cookie for removal, we cannot remove the
6498 * complete header, but we can remove the previous block itself.
6499 */
6500 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006501
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006502 if (del_from != NULL) {
6503 int delta = del_hdr_value(req, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01006504 if (att_beg >= del_from)
6505 att_beg += delta;
6506 if (att_end >= del_from)
6507 att_end += delta;
6508 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006509 val_end += delta;
6510 next += delta;
6511 hdr_end += delta;
6512 hdr_next += delta;
6513 cur_hdr->len += delta;
6514 http_msg_move_end(&txn->req, delta);
6515 prev = del_from;
6516 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006517 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006518 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006519
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006520 /* Look for the appsession cookie unless persistence must be ignored */
6521 if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
6522 int cmp_len, value_len;
6523 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02006524
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006525 if (t->be->options2 & PR_O2_AS_PFX) {
6526 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
6527 value_begin = att_beg + t->be->appsession_name_len;
6528 value_len = val_end - att_beg - t->be->appsession_name_len;
6529 } else {
6530 cmp_len = att_end - att_beg;
6531 value_begin = val_beg;
6532 value_len = val_end - val_beg;
6533 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01006534
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006535 /* let's see if the cookie is our appcookie */
6536 if (cmp_len == t->be->appsession_name_len &&
6537 memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) {
6538 manage_client_side_appsession(t, value_begin, value_len);
6539 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006540 }
6541
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006542 /* continue with next cookie on this header line */
6543 att_beg = next;
6544 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006545
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006546 /* There are no more cookies on this line.
6547 * We may still have one (or several) marked for deletion at the
6548 * end of the line. We must do this now in two ways :
6549 * - if some cookies must be preserved, we only delete from the
6550 * mark to the end of line ;
6551 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01006552 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006553 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006554 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006555 if (preserve_hdr) {
6556 delta = del_hdr_value(req, &del_from, hdr_end);
6557 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006558 cur_hdr->len += delta;
6559 } else {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006560 delta = buffer_replace2(req, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006561
6562 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006563 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6564 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006565 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01006566 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006567 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006568 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006569 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006570 }
6571
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006572 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006573 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006574 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006575}
6576
6577
Willy Tarreaua15645d2007-03-18 16:22:39 +01006578/* Iterate the same filter through all response headers contained in <rtr>.
6579 * Returns 1 if this filter can be stopped upon return, otherwise 0.
6580 */
6581int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
6582{
6583 char term;
6584 char *cur_ptr, *cur_end, *cur_next;
6585 int cur_idx, old_idx, last_hdr;
6586 struct http_txn *txn = &t->txn;
6587 struct hdr_idx_elem *cur_hdr;
6588 int len, delta;
6589
6590 last_hdr = 0;
6591
Willy Tarreau962c3f42010-01-10 00:15:35 +01006592 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006593 old_idx = 0;
6594
6595 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006596 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006597 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006598 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006599 (exp->action == ACT_ALLOW ||
6600 exp->action == ACT_DENY))
6601 return 0;
6602
6603 cur_idx = txn->hdr_idx.v[old_idx].next;
6604 if (!cur_idx)
6605 break;
6606
6607 cur_hdr = &txn->hdr_idx.v[cur_idx];
6608 cur_ptr = cur_next;
6609 cur_end = cur_ptr + cur_hdr->len;
6610 cur_next = cur_end + cur_hdr->cr + 1;
6611
6612 /* Now we have one header between cur_ptr and cur_end,
6613 * and the next header starts at cur_next.
6614 */
6615
6616 /* The annoying part is that pattern matching needs
6617 * that we modify the contents to null-terminate all
6618 * strings before testing them.
6619 */
6620
6621 term = *cur_end;
6622 *cur_end = '\0';
6623
6624 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6625 switch (exp->action) {
6626 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006627 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006628 last_hdr = 1;
6629 break;
6630
6631 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006632 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006633 last_hdr = 1;
6634 break;
6635
6636 case ACT_REPLACE:
6637 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
6638 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
6639 /* FIXME: if the user adds a newline in the replacement, the
6640 * index will not be recalculated for now, and the new line
6641 * will not be counted as a new header.
6642 */
6643
6644 cur_end += delta;
6645 cur_next += delta;
6646 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006647 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006648 break;
6649
6650 case ACT_REMOVE:
6651 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
6652 cur_next += delta;
6653
Willy Tarreaufa355d42009-11-29 18:12:29 +01006654 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006655 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6656 txn->hdr_idx.used--;
6657 cur_hdr->len = 0;
6658 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006659 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006660 break;
6661
6662 }
6663 }
6664 if (cur_end)
6665 *cur_end = term; /* restore the string terminator */
6666
6667 /* keep the link from this header to next one in case of later
6668 * removal of next header.
6669 */
6670 old_idx = cur_idx;
6671 }
6672 return 0;
6673}
6674
6675
6676/* Apply the filter to the status line in the response buffer <rtr>.
6677 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6678 * or -1 if a replacement resulted in an invalid status line.
6679 */
6680int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
6681{
6682 char term;
6683 char *cur_ptr, *cur_end;
6684 int done;
6685 struct http_txn *txn = &t->txn;
6686 int len, delta;
6687
6688
Willy Tarreau3d300592007-03-18 18:34:41 +01006689 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006690 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006691 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006692 (exp->action == ACT_ALLOW ||
6693 exp->action == ACT_DENY))
6694 return 0;
6695 else if (exp->action == ACT_REMOVE)
6696 return 0;
6697
6698 done = 0;
6699
Willy Tarreau962c3f42010-01-10 00:15:35 +01006700 cur_ptr = txn->rsp.sol;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006701 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006702
6703 /* Now we have the status line between cur_ptr and cur_end */
6704
6705 /* The annoying part is that pattern matching needs
6706 * that we modify the contents to null-terminate all
6707 * strings before testing them.
6708 */
6709
6710 term = *cur_end;
6711 *cur_end = '\0';
6712
6713 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6714 switch (exp->action) {
6715 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006716 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006717 done = 1;
6718 break;
6719
6720 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006721 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006722 done = 1;
6723 break;
6724
6725 case ACT_REPLACE:
6726 *cur_end = term; /* restore the string terminator */
6727 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
6728 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
6729 /* FIXME: if the user adds a newline in the replacement, the
6730 * index will not be recalculated for now, and the new line
6731 * will not be counted as a new header.
6732 */
6733
Willy Tarreaufa355d42009-11-29 18:12:29 +01006734 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006735 cur_end += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006736 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02006737 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01006738 cur_ptr, cur_end + 1,
6739 NULL, NULL);
6740 if (unlikely(!cur_end))
6741 return -1;
6742
6743 /* we have a full respnse and we know that we have either a CR
6744 * or an LF at <ptr>.
6745 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01006746 txn->status = strl2ui(txn->rsp.sol + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006747 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01006748 /* there is no point trying this regex on headers */
6749 return 1;
6750 }
6751 }
6752 *cur_end = term; /* restore the string terminator */
6753 return done;
6754}
6755
6756
6757
6758/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006759 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006760 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
6761 * unparsable response.
6762 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006763int apply_filters_to_response(struct session *s, struct buffer *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006764{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006765 struct http_txn *txn = &s->txn;
6766 struct hdr_exp *exp;
6767
6768 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006769 int ret;
6770
6771 /*
6772 * The interleaving of transformations and verdicts
6773 * makes it difficult to decide to continue or stop
6774 * the evaluation.
6775 */
6776
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006777 if (txn->flags & TX_SVDENY)
6778 break;
6779
Willy Tarreau3d300592007-03-18 18:34:41 +01006780 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006781 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
6782 exp->action == ACT_PASS)) {
6783 exp = exp->next;
6784 continue;
6785 }
6786
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006787 /* if this filter had a condition, evaluate it now and skip to
6788 * next filter if the condition does not match.
6789 */
6790 if (exp->cond) {
6791 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_RTR);
6792 ret = acl_pass(ret);
6793 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6794 ret = !ret;
6795 if (!ret)
6796 continue;
6797 }
6798
Willy Tarreaua15645d2007-03-18 16:22:39 +01006799 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006800 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006801 if (unlikely(ret < 0))
6802 return -1;
6803
6804 if (likely(ret == 0)) {
6805 /* The filter did not match the response, it can be
6806 * iterated through all headers.
6807 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006808 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006809 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006810 }
6811 return 0;
6812}
6813
6814
Willy Tarreaua15645d2007-03-18 16:22:39 +01006815/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006816 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02006817 * desirable to call it only when needed. This function is also used when we
6818 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01006819 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006820void manage_server_side_cookies(struct session *t, struct buffer *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006821{
6822 struct http_txn *txn = &t->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01006823 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006824 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006825 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006826 char *hdr_beg, *hdr_end, *hdr_next;
6827 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006828
Willy Tarreaua15645d2007-03-18 16:22:39 +01006829 /* Iterate through the headers.
6830 * we start with the start line.
6831 */
6832 old_idx = 0;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006833 hdr_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006834
6835 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
6836 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006837 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006838
6839 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02006840 hdr_beg = hdr_next;
6841 hdr_end = hdr_beg + cur_hdr->len;
6842 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006843
Willy Tarreau24581ba2010-08-31 22:39:35 +02006844 /* We have one full header between hdr_beg and hdr_end, and the
6845 * next header starts at hdr_next. We're only interested in
6846 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006847 */
6848
Willy Tarreau24581ba2010-08-31 22:39:35 +02006849 is_cookie2 = 0;
6850 prev = hdr_beg + 10;
6851 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006852 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006853 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
6854 if (!val) {
6855 old_idx = cur_idx;
6856 continue;
6857 }
6858 is_cookie2 = 1;
6859 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006860 }
6861
Willy Tarreau24581ba2010-08-31 22:39:35 +02006862 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
6863 * <prev> points to the colon.
6864 */
Willy Tarreauf1348312010-10-07 15:54:11 +02006865 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006866
Willy Tarreau24581ba2010-08-31 22:39:35 +02006867 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
6868 * check-cache is enabled) and we are not interested in checking
6869 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006870 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006871 if (t->be->cookie_name == NULL &&
6872 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006873 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006874 return;
6875
Willy Tarreau24581ba2010-08-31 22:39:35 +02006876 /* OK so now we know we have to process this response cookie.
6877 * The format of the Set-Cookie header is slightly different
6878 * from the format of the Cookie header in that it does not
6879 * support the comma as a cookie delimiter (thus the header
6880 * cannot be folded) because the Expires attribute described in
6881 * the original Netscape's spec may contain an unquoted date
6882 * with a comma inside. We have to live with this because
6883 * many browsers don't support Max-Age and some browsers don't
6884 * support quoted strings. However the Set-Cookie2 header is
6885 * clean.
6886 *
6887 * We have to keep multiple pointers in order to support cookie
6888 * removal at the beginning, middle or end of header without
6889 * corrupting the header (in case of set-cookie2). A special
6890 * pointer, <scav> points to the beginning of the set-cookie-av
6891 * fields after the first semi-colon. The <next> pointer points
6892 * either to the end of line (set-cookie) or next unquoted comma
6893 * (set-cookie2). All of these headers are valid :
6894 *
6895 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
6896 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6897 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6898 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
6899 * | | | | | | | | | |
6900 * | | | | | | | | +-> next hdr_end <--+
6901 * | | | | | | | +------------> scav
6902 * | | | | | | +--------------> val_end
6903 * | | | | | +--------------------> val_beg
6904 * | | | | +----------------------> equal
6905 * | | | +------------------------> att_end
6906 * | | +----------------------------> att_beg
6907 * | +------------------------------> prev
6908 * +-----------------------------------------> hdr_beg
6909 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006910
Willy Tarreau24581ba2010-08-31 22:39:35 +02006911 for (; prev < hdr_end; prev = next) {
6912 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006913
Willy Tarreau24581ba2010-08-31 22:39:35 +02006914 /* find att_beg */
6915 att_beg = prev + 1;
6916 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6917 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006918
Willy Tarreau24581ba2010-08-31 22:39:35 +02006919 /* find att_end : this is the first character after the last non
6920 * space before the equal. It may be equal to hdr_end.
6921 */
6922 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006923
Willy Tarreau24581ba2010-08-31 22:39:35 +02006924 while (equal < hdr_end) {
6925 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
6926 break;
6927 if (http_is_spht[(unsigned char)*equal++])
6928 continue;
6929 att_end = equal;
6930 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006931
Willy Tarreau24581ba2010-08-31 22:39:35 +02006932 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6933 * is between <att_beg> and <equal>, both may be identical.
6934 */
6935
6936 /* look for end of cookie if there is an equal sign */
6937 if (equal < hdr_end && *equal == '=') {
6938 /* look for the beginning of the value */
6939 val_beg = equal + 1;
6940 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6941 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006942
Willy Tarreau24581ba2010-08-31 22:39:35 +02006943 /* find the end of the value, respecting quotes */
6944 next = find_cookie_value_end(val_beg, hdr_end);
6945
6946 /* make val_end point to the first white space or delimitor after the value */
6947 val_end = next;
6948 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6949 val_end--;
6950 } else {
6951 /* <equal> points to next comma, semi-colon or EOL */
6952 val_beg = val_end = next = equal;
6953 }
6954
6955 if (next < hdr_end) {
6956 /* Set-Cookie2 supports multiple cookies, and <next> points to
6957 * a colon or semi-colon before the end. So skip all attr-value
6958 * pairs and look for the next comma. For Set-Cookie, since
6959 * commas are permitted in values, skip to the end.
6960 */
6961 if (is_cookie2)
6962 next = find_hdr_value_end(next, hdr_end);
6963 else
6964 next = hdr_end;
6965 }
6966
6967 /* Now everything is as on the diagram above */
6968
6969 /* Ignore cookies with no equal sign */
6970 if (equal == val_end)
6971 continue;
6972
6973 /* If there are spaces around the equal sign, we need to
6974 * strip them otherwise we'll get trouble for cookie captures,
6975 * or even for rewrites. Since this happens extremely rarely,
6976 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006977 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006978 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6979 int stripped_before = 0;
6980 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006981
Willy Tarreau24581ba2010-08-31 22:39:35 +02006982 if (att_end != equal) {
6983 stripped_before = buffer_replace2(res, att_end, equal, NULL, 0);
6984 equal += stripped_before;
6985 val_beg += stripped_before;
6986 }
6987
6988 if (val_beg > equal + 1) {
6989 stripped_after = buffer_replace2(res, equal + 1, val_beg, NULL, 0);
6990 val_beg += stripped_after;
6991 stripped_before += stripped_after;
6992 }
6993
6994 val_end += stripped_before;
6995 next += stripped_before;
6996 hdr_end += stripped_before;
6997 hdr_next += stripped_before;
6998 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02006999 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007000 }
7001
7002 /* First, let's see if we want to capture this cookie. We check
7003 * that we don't already have a server side cookie, because we
7004 * can only capture one. Also as an optimisation, we ignore
7005 * cookies shorter than the declared name.
7006 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007007 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01007008 txn->srv_cookie == NULL &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007009 (val_end - att_beg >= t->fe->capture_namelen) &&
7010 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
7011 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02007012 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007013 Alert("HTTP logging : out of memory.\n");
7014 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01007015 else {
7016 if (log_len > t->fe->capture_len)
7017 log_len = t->fe->capture_len;
7018 memcpy(txn->srv_cookie, att_beg, log_len);
7019 txn->srv_cookie[log_len] = 0;
7020 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007021 }
7022
Willy Tarreau827aee92011-03-10 16:55:02 +01007023 srv = target_srv(&t->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007024 /* now check if we need to process it for persistence */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007025 if (!(t->flags & SN_IGNORE_PRST) &&
7026 (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
7027 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02007028 /* assume passive cookie by default */
7029 txn->flags &= ~TX_SCK_MASK;
7030 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007031
7032 /* If the cookie is in insert mode on a known server, we'll delete
7033 * this occurrence because we'll insert another one later.
7034 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02007035 * a direct access.
7036 */
Willy Tarreauba4c5be2010-10-23 12:46:42 +02007037 if (t->be->options2 & PR_O2_COOK_PSV) {
7038 /* The "preserve" flag was set, we don't want to touch the
7039 * server's cookie.
7040 */
7041 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007042 else if ((srv && (t->be->options & PR_O_COOK_INS)) ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007043 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007044 /* this cookie must be deleted */
7045 if (*prev == ':' && next == hdr_end) {
7046 /* whole header */
7047 delta = buffer_replace2(res, hdr_beg, hdr_next, NULL, 0);
7048 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7049 txn->hdr_idx.used--;
7050 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007051 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007052 hdr_next += delta;
7053 http_msg_move_end(&txn->rsp, delta);
7054 /* note: while both invalid now, <next> and <hdr_end>
7055 * are still equal, so the for() will stop as expected.
7056 */
7057 } else {
7058 /* just remove the value */
7059 int delta = del_hdr_value(res, &prev, next);
7060 next = prev;
7061 hdr_end += delta;
7062 hdr_next += delta;
7063 cur_hdr->len += delta;
7064 http_msg_move_end(&txn->rsp, delta);
7065 }
Willy Tarreauf1348312010-10-07 15:54:11 +02007066 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01007067 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007068 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007069 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007070 else if (srv && srv->cookie && (t->be->options & PR_O_COOK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007071 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01007072 * with this server since we know it.
7073 */
Willy Tarreau827aee92011-03-10 16:55:02 +01007074 delta = buffer_replace2(res, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007075 next += delta;
7076 hdr_end += delta;
7077 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007078 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007079 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007080
Willy Tarreauf1348312010-10-07 15:54:11 +02007081 txn->flags &= ~TX_SCK_MASK;
7082 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007083 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007084 else if (srv && srv && (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007085 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02007086 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01007087 */
Willy Tarreau827aee92011-03-10 16:55:02 +01007088 delta = buffer_replace2(res, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007089 next += delta;
7090 hdr_end += delta;
7091 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007092 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007093 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007094
Willy Tarreau827aee92011-03-10 16:55:02 +01007095 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02007096 txn->flags &= ~TX_SCK_MASK;
7097 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007098 }
7099 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007100 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
7101 else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007102 int cmp_len, value_len;
7103 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007104
Cyril Bontéb21570a2009-11-29 20:04:48 +01007105 if (t->be->options2 & PR_O2_AS_PFX) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007106 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
7107 value_begin = att_beg + t->be->appsession_name_len;
7108 value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01007109 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007110 cmp_len = att_end - att_beg;
7111 value_begin = val_beg;
7112 value_len = MIN(t->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007113 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007114
Cyril Bonté17530c32010-04-06 21:11:10 +02007115 if ((cmp_len == t->be->appsession_name_len) &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007116 (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7117 /* free a possibly previously allocated memory */
7118 pool_free2(apools.sessid, txn->sessid);
7119
Cyril Bontéb21570a2009-11-29 20:04:48 +01007120 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007121 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007122 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7123 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
7124 return;
7125 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007126 memcpy(txn->sessid, value_begin, value_len);
7127 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007128 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02007129 }
7130 /* that's done for this cookie, check the next one on the same
7131 * line when next != hdr_end (only if is_cookie2).
7132 */
7133 }
7134 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007135 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007136 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007137
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007138 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007139 appsess *asession = NULL;
7140 /* only do insert, if lookup fails */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007141 asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007142 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01007143 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007144 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
7145 Alert("Not enough Memory process_srv():asession:calloc().\n");
7146 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
7147 return;
7148 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007149 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
7150
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007151 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
7152 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7153 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007154 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007155 return;
7156 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007157 memcpy(asession->sessid, txn->sessid, t->be->appsession_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007158 asession->sessid[t->be->appsession_len] = 0;
7159
Willy Tarreau827aee92011-03-10 16:55:02 +01007160 server_id_len = strlen(target_srv(&t->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007161 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007162 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007163 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007164 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007165 return;
7166 }
7167 asession->serverid[0] = '\0';
Willy Tarreau827aee92011-03-10 16:55:02 +01007168 memcpy(asession->serverid, target_srv(&t->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007169
7170 asession->request_count = 0;
7171 appsession_hash_insert(&(t->be->htbl_proxy), asession);
7172 }
7173
7174 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
7175 asession->request_count++;
7176 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007177}
7178
7179
Willy Tarreaua15645d2007-03-18 16:22:39 +01007180/*
7181 * Check if response is cacheable or not. Updates t->flags.
7182 */
7183void check_response_for_cacheability(struct session *t, struct buffer *rtr)
7184{
7185 struct http_txn *txn = &t->txn;
7186 char *p1, *p2;
7187
7188 char *cur_ptr, *cur_end, *cur_next;
7189 int cur_idx;
7190
Willy Tarreau5df51872007-11-25 16:20:08 +01007191 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007192 return;
7193
7194 /* Iterate through the headers.
7195 * we start with the start line.
7196 */
7197 cur_idx = 0;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007198 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007199
7200 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7201 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007202 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007203
7204 cur_hdr = &txn->hdr_idx.v[cur_idx];
7205 cur_ptr = cur_next;
7206 cur_end = cur_ptr + cur_hdr->len;
7207 cur_next = cur_end + cur_hdr->cr + 1;
7208
7209 /* We have one full header between cur_ptr and cur_end, and the
7210 * next header starts at cur_next. We're only interested in
7211 * "Cookie:" headers.
7212 */
7213
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007214 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7215 if (val) {
7216 if ((cur_end - (cur_ptr + val) >= 8) &&
7217 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7218 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7219 return;
7220 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007221 }
7222
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007223 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7224 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007225 continue;
7226
7227 /* OK, right now we know we have a cache-control header at cur_ptr */
7228
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007229 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007230
7231 if (p1 >= cur_end) /* no more info */
7232 continue;
7233
7234 /* p1 is at the beginning of the value */
7235 p2 = p1;
7236
Willy Tarreau8f8e6452007-06-17 21:51:38 +02007237 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007238 p2++;
7239
7240 /* we have a complete value between p1 and p2 */
7241 if (p2 < cur_end && *p2 == '=') {
7242 /* we have something of the form no-cache="set-cookie" */
7243 if ((cur_end - p1 >= 21) &&
7244 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
7245 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01007246 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007247 continue;
7248 }
7249
7250 /* OK, so we know that either p2 points to the end of string or to a comma */
7251 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
7252 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
7253 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
7254 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007255 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007256 return;
7257 }
7258
7259 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007260 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007261 continue;
7262 }
7263 }
7264}
7265
7266
Willy Tarreau58f10d72006-12-04 02:26:12 +01007267/*
7268 * Try to retrieve a known appsession in the URI, then the associated server.
7269 * If the server is found, it's assigned to the session.
7270 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007271void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007272{
Cyril Bontéb21570a2009-11-29 20:04:48 +01007273 char *end_params, *first_param, *cur_param, *next_param;
7274 char separator;
7275 int value_len;
7276
7277 int mode = t->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007278
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007279 if (t->be->appsession_name == NULL ||
Cyril Bonté17530c32010-04-06 21:11:10 +02007280 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST && t->txn.meth != HTTP_METH_HEAD)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007281 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007282 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007283
Cyril Bontéb21570a2009-11-29 20:04:48 +01007284 first_param = NULL;
7285 switch (mode) {
7286 case PR_O2_AS_M_PP:
7287 first_param = memchr(begin, ';', len);
7288 break;
7289 case PR_O2_AS_M_QS:
7290 first_param = memchr(begin, '?', len);
7291 break;
7292 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007293
Cyril Bontéb21570a2009-11-29 20:04:48 +01007294 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007295 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007296 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007297
Cyril Bontéb21570a2009-11-29 20:04:48 +01007298 switch (mode) {
7299 case PR_O2_AS_M_PP:
7300 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
7301 end_params = (char *) begin + len;
7302 }
7303 separator = ';';
7304 break;
7305 case PR_O2_AS_M_QS:
7306 end_params = (char *) begin + len;
7307 separator = '&';
7308 break;
7309 default:
7310 /* unknown mode, shouldn't happen */
7311 return;
7312 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007313
Cyril Bontéb21570a2009-11-29 20:04:48 +01007314 cur_param = next_param = end_params;
7315 while (cur_param > first_param) {
7316 cur_param--;
7317 if ((cur_param[0] == separator) || (cur_param == first_param)) {
7318 /* let's see if this is the appsession parameter */
7319 if ((cur_param + t->be->appsession_name_len + 1 < next_param) &&
7320 ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') &&
7321 (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7322 /* Cool... it's the right one */
7323 cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2);
7324 value_len = MIN(t->be->appsession_len, next_param - cur_param);
7325 if (value_len > 0) {
7326 manage_client_side_appsession(t, cur_param, value_len);
7327 }
7328 break;
7329 }
7330 next_param = cur_param;
7331 }
7332 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007333#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007334 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02007335 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01007336#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01007337}
7338
Willy Tarreaub2513902006-12-17 14:52:38 +01007339/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02007340 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007341 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01007342 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02007343 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01007344 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01007345 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007346 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01007347 */
Willy Tarreau295a8372011-03-10 11:25:07 +01007348int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01007349{
7350 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007351 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01007352
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007353 if (!uri_auth)
7354 return 0;
7355
Cyril Bonté70be45d2010-10-12 00:14:35 +02007356 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007357 return 0;
7358
Willy Tarreau295a8372011-03-10 11:25:07 +01007359 memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats));
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007360
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007361 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007362 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01007363 return 0;
7364
Willy Tarreau962c3f42010-01-10 00:15:35 +01007365 h = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007366
Willy Tarreau0214c3a2007-01-07 13:47:30 +01007367 /* the URI is in h */
7368 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01007369 return 0;
7370
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007371 h += uri_auth->uri_len;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007372 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007373 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007374 si->applet.ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007375 break;
7376 }
7377 h++;
7378 }
7379
7380 if (uri_auth->refresh) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01007381 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7382 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007383 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007384 si->applet.ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007385 break;
7386 }
7387 h++;
7388 }
7389 }
7390
Willy Tarreau962c3f42010-01-10 00:15:35 +01007391 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7392 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02007393 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007394 si->applet.ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau55bb8452007-10-17 18:44:57 +02007395 break;
7396 }
7397 h++;
7398 }
7399
Cyril Bonté70be45d2010-10-12 00:14:35 +02007400 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7401 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 8) {
7402 if (memcmp(h, ";st=", 4) == 0) {
7403 h += 4;
7404
7405 if (memcmp(h, STAT_STATUS_DONE, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007406 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007407 else if (memcmp(h, STAT_STATUS_NONE, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007408 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007409 else if (memcmp(h, STAT_STATUS_EXCD, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007410 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté474be412010-10-12 00:14:36 +02007411 else if (memcmp(h, STAT_STATUS_DENY, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007412 si->applet.ctx.stats.st_code = STAT_STATUS_DENY;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007413 else
Willy Tarreau295a8372011-03-10 11:25:07 +01007414 si->applet.ctx.stats.st_code = STAT_STATUS_UNKN;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007415 break;
7416 }
7417 h++;
7418 }
7419
Willy Tarreau295a8372011-03-10 11:25:07 +01007420 si->applet.ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO;
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007421
Willy Tarreaub2513902006-12-17 14:52:38 +01007422 return 1;
7423}
7424
Willy Tarreau4076a152009-04-02 15:18:36 +02007425/*
7426 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau962c3f42010-01-10 00:15:35 +01007427 * WARNING: it's unlikely that we've reached HTTP_MSG_BODY here so we must not
7428 * assume that msg->sol = buf->data + msg->som.
Willy Tarreau4076a152009-04-02 15:18:36 +02007429 */
7430void http_capture_bad_message(struct error_snapshot *es, struct session *s,
7431 struct buffer *buf, struct http_msg *msg,
Willy Tarreau078272e2010-12-12 12:46:33 +01007432 int state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02007433{
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007434 if (buf->r <= (buf->data + msg->som)) { /* message wraps */
7435 int len1 = buf->size - msg->som;
7436 es->len = buf->r - (buf->data + msg->som) + buf->size;
7437 memcpy(es->buf, buf->data + msg->som, MIN(len1, sizeof(es->buf)));
7438 if (es->len > len1 && len1 < sizeof(es->buf))
7439 memcpy(es->buf, buf->data, MIN(es->len, sizeof(es->buf)) - len1);
7440 }
7441 else {
7442 es->len = buf->r - (buf->data + msg->som);
7443 memcpy(es->buf, buf->data + msg->som, MIN(es->len, sizeof(es->buf)));
7444 }
7445
Willy Tarreau4076a152009-04-02 15:18:36 +02007446 if (msg->err_pos >= 0)
Willy Tarreau2df8d712009-05-01 11:33:17 +02007447 es->pos = msg->err_pos - msg->som;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007448 else if (buf->lr >= (buf->data + msg->som))
Willy Tarreau2df8d712009-05-01 11:33:17 +02007449 es->pos = buf->lr - (buf->data + msg->som);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007450 else
7451 es->pos = buf->lr - (buf->data + msg->som) + buf->size;
7452
Willy Tarreau4076a152009-04-02 15:18:36 +02007453 es->when = date; // user-visible date
7454 es->sid = s->uniq_id;
Willy Tarreau827aee92011-03-10 16:55:02 +01007455 es->srv = target_srv(&s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02007456 es->oe = other_end;
Willy Tarreau957c0a52011-03-03 17:42:23 +01007457 es->src = s->req->prod->addr.c.from;
Willy Tarreau078272e2010-12-12 12:46:33 +01007458 es->state = state;
7459 es->flags = buf->flags;
Willy Tarreau10479e42010-12-12 14:00:34 +01007460 es->ev_id = error_snapshot_id++;
Willy Tarreau4076a152009-04-02 15:18:36 +02007461}
Willy Tarreaub2513902006-12-17 14:52:38 +01007462
Willy Tarreaubce70882009-09-07 11:51:47 +02007463/* return the IP address pointed to by occurrence <occ> of header <hname> in
7464 * HTTP message <msg> indexed in <idx>. If <occ> is strictly positive, the
7465 * occurrence number corresponding to this value is returned. If <occ> is
7466 * strictly negative, the occurrence number before the end corresponding to
7467 * this value is returned. If <occ> is null, any value is returned, so it is
7468 * not recommended to use it that way. Negative occurrences are limited to
7469 * a small value because it is required to keep them in memory while scanning.
7470 * IP address 0.0.0.0 is returned if no match is found.
7471 */
7472unsigned int get_ip_from_hdr2(struct http_msg *msg, const char *hname, int hlen, struct hdr_idx *idx, int occ)
7473{
7474 struct hdr_ctx ctx;
7475 unsigned int hdr_hist[MAX_HDR_HISTORY];
7476 unsigned int hist_ptr;
7477 int found = 0;
7478
7479 ctx.idx = 0;
7480 if (occ >= 0) {
7481 while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) {
7482 occ--;
7483 if (occ <= 0) {
7484 found = 1;
7485 break;
7486 }
7487 }
7488 if (!found)
7489 return 0;
7490 return inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen);
7491 }
7492
7493 /* negative occurrence, we scan all the list then walk back */
7494 if (-occ > MAX_HDR_HISTORY)
7495 return 0;
7496
7497 hist_ptr = 0;
7498 hdr_hist[hist_ptr] = 0;
7499 while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) {
7500 hdr_hist[hist_ptr++] = inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen);
7501 if (hist_ptr >= MAX_HDR_HISTORY)
7502 hist_ptr = 0;
7503 found++;
7504 }
7505 if (-occ > found)
7506 return 0;
7507 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
7508 * find occurrence -occ, so we have to check [hist_ptr+occ].
7509 */
7510 hist_ptr += occ;
7511 if (hist_ptr >= MAX_HDR_HISTORY)
7512 hist_ptr -= MAX_HDR_HISTORY;
7513 return hdr_hist[hist_ptr];
7514}
7515
Willy Tarreaubaaee002006-06-26 02:48:02 +02007516/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01007517 * Print a debug line with a header
7518 */
7519void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
7520{
7521 int len, max;
7522 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02007523 dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007524 max = end - start;
7525 UBOUND(max, sizeof(trash) - len - 1);
7526 len += strlcpy2(trash + len, start, max + 1);
7527 trash[len++] = '\n';
7528 write(1, trash, len);
7529}
7530
Willy Tarreau0937bc42009-12-22 15:03:09 +01007531/*
7532 * Initialize a new HTTP transaction for session <s>. It is assumed that all
7533 * the required fields are properly allocated and that we only need to (re)init
7534 * them. This should be used before processing any new request.
7535 */
7536void http_init_txn(struct session *s)
7537{
7538 struct http_txn *txn = &s->txn;
7539 struct proxy *fe = s->fe;
7540
7541 txn->flags = 0;
7542 txn->status = -1;
7543
Willy Tarreauf64d1412010-10-07 20:06:11 +02007544 txn->cookie_first_date = 0;
7545 txn->cookie_last_date = 0;
7546
Willy Tarreau0937bc42009-12-22 15:03:09 +01007547 txn->req.sol = txn->req.eol = NULL;
7548 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
7549 txn->rsp.sol = txn->rsp.eol = NULL;
7550 txn->rsp.som = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreau124d9912011-03-01 20:30:48 +01007551 txn->req.chunk_len = 0LL;
7552 txn->req.body_len = 0LL;
7553 txn->rsp.chunk_len = 0LL;
7554 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007555 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
7556 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007557
7558 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007559
7560 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
7561 if (fe->options2 & PR_O2_REQBUG_OK)
7562 txn->req.err_pos = -1; /* let buggy requests pass */
7563
Willy Tarreau46023632010-01-07 22:51:47 +01007564 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007565 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
7566
Willy Tarreau46023632010-01-07 22:51:47 +01007567 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007568 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
7569
7570 if (txn->hdr_idx.v)
7571 hdr_idx_init(&txn->hdr_idx);
7572}
7573
7574/* to be used at the end of a transaction */
7575void http_end_txn(struct session *s)
7576{
7577 struct http_txn *txn = &s->txn;
7578
7579 /* these ones will have been dynamically allocated */
7580 pool_free2(pool2_requri, txn->uri);
7581 pool_free2(pool2_capture, txn->cli_cookie);
7582 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007583 pool_free2(apools.sessid, txn->sessid);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007584
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007585 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007586 txn->uri = NULL;
7587 txn->srv_cookie = NULL;
7588 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01007589
7590 if (txn->req.cap) {
7591 struct cap_hdr *h;
7592 for (h = s->fe->req_cap; h; h = h->next)
7593 pool_free2(h->pool, txn->req.cap[h->index]);
7594 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
7595 }
7596
7597 if (txn->rsp.cap) {
7598 struct cap_hdr *h;
7599 for (h = s->fe->rsp_cap; h; h = h->next)
7600 pool_free2(h->pool, txn->rsp.cap[h->index]);
7601 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
7602 }
7603
Willy Tarreau0937bc42009-12-22 15:03:09 +01007604}
7605
7606/* to be used at the end of a transaction to prepare a new one */
7607void http_reset_txn(struct session *s)
7608{
7609 http_end_txn(s);
7610 http_init_txn(s);
7611
7612 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007613 s->logs.logwait = s->fe->to_log;
Simon Hormanaf514952011-06-21 14:34:57 +09007614 session_del_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +01007615 clear_target(&s->target);
Emeric Brunb982a3d2010-01-04 15:45:53 +01007616 /* re-init store persistence */
7617 s->store_count = 0;
7618
Willy Tarreau0937bc42009-12-22 15:03:09 +01007619 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007620
7621 s->req->flags |= BF_READ_DONTWAIT; /* one read is usually enough */
7622
Willy Tarreau739cfba2010-01-25 23:11:14 +01007623 /* We must trim any excess data from the response buffer, because we
7624 * may have blocked an invalid response from a server that we don't
7625 * want to accidentely forward once we disable the analysers, nor do
7626 * we want those data to come along with next response. A typical
7627 * example of such data would be from a buggy server responding to
7628 * a HEAD with some data, or sending more than the advertised
7629 * content-length.
7630 */
7631 if (unlikely(s->rep->l > s->rep->send_max)) {
7632 s->rep->l = s->rep->send_max;
7633 s->rep->r = s->rep->w + s->rep->l;
7634 if (s->rep->r >= s->rep->data + s->rep->size)
7635 s->rep->r -= s->rep->size;
7636 }
7637
Willy Tarreau0937bc42009-12-22 15:03:09 +01007638 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02007639 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007640
Willy Tarreaud04e8582010-05-31 12:31:35 +02007641 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007642 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007643
7644 s->req->rex = TICK_ETERNITY;
7645 s->req->wex = TICK_ETERNITY;
7646 s->req->analyse_exp = TICK_ETERNITY;
7647 s->rep->rex = TICK_ETERNITY;
7648 s->rep->wex = TICK_ETERNITY;
7649 s->rep->analyse_exp = TICK_ETERNITY;
7650}
Willy Tarreau58f10d72006-12-04 02:26:12 +01007651
Willy Tarreauff011f22011-01-06 17:51:27 +01007652void free_http_req_rules(struct list *r) {
7653 struct http_req_rule *tr, *pr;
7654
7655 list_for_each_entry_safe(pr, tr, r, list) {
7656 LIST_DEL(&pr->list);
7657 if (pr->action == HTTP_REQ_ACT_HTTP_AUTH)
7658 free(pr->http_auth.realm);
7659
7660 free(pr);
7661 }
7662}
7663
7664struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
7665{
7666 struct http_req_rule *rule;
7667 int cur_arg;
7668
7669 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
7670 if (!rule) {
7671 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
7672 return NULL;
7673 }
7674
7675 if (!*args[0]) {
7676 goto req_error_parsing;
7677 } else if (!strcmp(args[0], "allow")) {
7678 rule->action = HTTP_REQ_ACT_ALLOW;
7679 cur_arg = 1;
7680 } else if (!strcmp(args[0], "deny")) {
7681 rule->action = HTTP_REQ_ACT_DENY;
7682 cur_arg = 1;
7683 } else if (!strcmp(args[0], "auth")) {
7684 rule->action = HTTP_REQ_ACT_HTTP_AUTH;
7685 cur_arg = 1;
7686
7687 while(*args[cur_arg]) {
7688 if (!strcmp(args[cur_arg], "realm")) {
7689 rule->http_auth.realm = strdup(args[cur_arg + 1]);
7690 cur_arg+=2;
7691 continue;
7692 } else
7693 break;
7694 }
7695 } else {
7696req_error_parsing:
7697 Alert("parsing [%s:%d]: %s '%s', expects 'allow', 'deny', 'auth'.\n",
7698 file, linenum, *args[1]?"unknown parameter":"missing keyword in", args[*args[1]?1:0]);
7699 return NULL;
7700 }
7701
7702 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
7703 struct acl_cond *cond;
7704
7705 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg)) == NULL) {
7706 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition.\n",
7707 file, linenum, args[0]);
7708 return NULL;
7709 }
7710 rule->cond = cond;
7711 }
7712 else if (*args[cur_arg]) {
7713 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
7714 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
7715 file, linenum, args[0], args[cur_arg]);
7716 return NULL;
7717 }
7718
7719 return rule;
7720}
7721
Willy Tarreau8797c062007-05-07 00:55:35 +02007722/************************************************************************/
7723/* The code below is dedicated to ACL parsing and matching */
7724/************************************************************************/
7725
7726
7727
7728
7729/* 1. Check on METHOD
7730 * We use the pre-parsed method if it is known, and store its number as an
7731 * integer. If it is unknown, we use the pointer and the length.
7732 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02007733static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02007734{
7735 int len, meth;
7736
Willy Tarreauae8b7962007-06-09 23:10:04 +02007737 len = strlen(*text);
7738 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02007739
7740 pattern->val.i = meth;
7741 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02007742 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007743 if (!pattern->ptr.str)
7744 return 0;
7745 pattern->len = len;
7746 }
7747 return 1;
7748}
7749
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007750static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007751acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
7752 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007753{
7754 int meth;
7755 struct http_txn *txn = l7;
7756
Willy Tarreaub6866442008-07-14 23:54:42 +02007757 if (!txn)
7758 return 0;
7759
Willy Tarreau655dce92009-11-08 13:10:58 +01007760 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007761 return 0;
7762
Willy Tarreau8797c062007-05-07 00:55:35 +02007763 meth = txn->meth;
7764 test->i = meth;
7765 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02007766 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7767 /* ensure the indexes are not affected */
7768 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02007769 test->len = txn->req.sl.rq.m_l;
7770 test->ptr = txn->req.sol;
7771 }
7772 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7773 return 1;
7774}
7775
7776static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
7777{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02007778 int icase;
7779
Willy Tarreau8797c062007-05-07 00:55:35 +02007780 if (test->i != pattern->val.i)
Willy Tarreau11382812008-07-09 16:18:21 +02007781 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02007782
7783 if (test->i != HTTP_METH_OTHER)
Willy Tarreau11382812008-07-09 16:18:21 +02007784 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02007785
7786 /* Other method, we must compare the strings */
7787 if (pattern->len != test->len)
Willy Tarreau11382812008-07-09 16:18:21 +02007788 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02007789
7790 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
7791 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
7792 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02007793 return ACL_PAT_FAIL;
7794 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02007795}
7796
7797/* 2. Check on Request/Status Version
7798 * We simply compare strings here.
7799 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02007800static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02007801{
Willy Tarreauae8b7962007-06-09 23:10:04 +02007802 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007803 if (!pattern->ptr.str)
7804 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02007805 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007806 return 1;
7807}
7808
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007809static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007810acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
7811 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007812{
7813 struct http_txn *txn = l7;
7814 char *ptr;
7815 int len;
7816
Willy Tarreaub6866442008-07-14 23:54:42 +02007817 if (!txn)
7818 return 0;
7819
Willy Tarreau655dce92009-11-08 13:10:58 +01007820 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007821 return 0;
7822
Willy Tarreau8797c062007-05-07 00:55:35 +02007823 len = txn->req.sl.rq.v_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007824 ptr = txn->req.sol + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02007825
7826 while ((len-- > 0) && (*ptr++ != '/'));
7827 if (len <= 0)
7828 return 0;
7829
7830 test->ptr = ptr;
7831 test->len = len;
7832
7833 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7834 return 1;
7835}
7836
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007837static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007838acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
7839 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007840{
7841 struct http_txn *txn = l7;
7842 char *ptr;
7843 int len;
7844
Willy Tarreaub6866442008-07-14 23:54:42 +02007845 if (!txn)
7846 return 0;
7847
Willy Tarreau655dce92009-11-08 13:10:58 +01007848 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007849 return 0;
7850
Willy Tarreau8797c062007-05-07 00:55:35 +02007851 len = txn->rsp.sl.st.v_l;
7852 ptr = txn->rsp.sol;
7853
7854 while ((len-- > 0) && (*ptr++ != '/'));
7855 if (len <= 0)
7856 return 0;
7857
7858 test->ptr = ptr;
7859 test->len = len;
7860
7861 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7862 return 1;
7863}
7864
7865/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007866static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007867acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
7868 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007869{
7870 struct http_txn *txn = l7;
7871 char *ptr;
7872 int len;
7873
Willy Tarreaub6866442008-07-14 23:54:42 +02007874 if (!txn)
7875 return 0;
7876
Willy Tarreau655dce92009-11-08 13:10:58 +01007877 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007878 return 0;
7879
Willy Tarreau8797c062007-05-07 00:55:35 +02007880 len = txn->rsp.sl.st.c_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007881 ptr = txn->rsp.sol + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02007882
7883 test->i = __strl2ui(ptr, len);
7884 test->flags = ACL_TEST_F_VOL_1ST;
7885 return 1;
7886}
7887
7888/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007889static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007890acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
7891 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007892{
7893 struct http_txn *txn = l7;
7894
Willy Tarreaub6866442008-07-14 23:54:42 +02007895 if (!txn)
7896 return 0;
7897
Willy Tarreau655dce92009-11-08 13:10:58 +01007898 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007899 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007900
Willy Tarreauc11416f2007-06-17 16:58:38 +02007901 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7902 /* ensure the indexes are not affected */
7903 return 0;
7904
Willy Tarreau8797c062007-05-07 00:55:35 +02007905 test->len = txn->req.sl.rq.u_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007906 test->ptr = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8797c062007-05-07 00:55:35 +02007907
Willy Tarreauf3d25982007-05-08 22:45:09 +02007908 /* we do not need to set READ_ONLY because the data is in a buffer */
7909 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02007910 return 1;
7911}
7912
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007913static int
7914acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
7915 struct acl_expr *expr, struct acl_test *test)
7916{
7917 struct http_txn *txn = l7;
7918
Willy Tarreaub6866442008-07-14 23:54:42 +02007919 if (!txn)
7920 return 0;
7921
Willy Tarreau655dce92009-11-08 13:10:58 +01007922 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007923 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007924
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007925 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7926 /* ensure the indexes are not affected */
7927 return 0;
7928
7929 /* Parse HTTP request */
Willy Tarreau957c0a52011-03-03 17:42:23 +01007930 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to);
7931 test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007932 test->i = AF_INET;
7933
7934 /*
7935 * If we are parsing url in frontend space, we prepare backend stage
7936 * to not parse again the same url ! optimization lazyness...
7937 */
7938 if (px->options & PR_O_HTTP_PROXY)
7939 l4->flags |= SN_ADDR_SET;
7940
7941 test->flags = ACL_TEST_F_READ_ONLY;
7942 return 1;
7943}
7944
7945static int
7946acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
7947 struct acl_expr *expr, struct acl_test *test)
7948{
7949 struct http_txn *txn = l7;
7950
Willy Tarreaub6866442008-07-14 23:54:42 +02007951 if (!txn)
7952 return 0;
7953
Willy Tarreau655dce92009-11-08 13:10:58 +01007954 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007955 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007956
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007957 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7958 /* ensure the indexes are not affected */
7959 return 0;
7960
7961 /* Same optimization as url_ip */
Willy Tarreau957c0a52011-03-03 17:42:23 +01007962 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to);
7963 test->i = ntohs(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_port);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007964
7965 if (px->options & PR_O_HTTP_PROXY)
7966 l4->flags |= SN_ADDR_SET;
7967
7968 test->flags = ACL_TEST_F_READ_ONLY;
7969 return 1;
7970}
7971
Willy Tarreauc11416f2007-06-17 16:58:38 +02007972/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
7973 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
7974 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02007975static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02007976acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02007977 struct acl_expr *expr, struct acl_test *test)
7978{
7979 struct http_txn *txn = l7;
7980 struct hdr_idx *idx = &txn->hdr_idx;
7981 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02007982
Willy Tarreaub6866442008-07-14 23:54:42 +02007983 if (!txn)
7984 return 0;
7985
Willy Tarreau33a7e692007-06-10 19:45:56 +02007986 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
7987 /* search for header from the beginning */
7988 ctx->idx = 0;
7989
Willy Tarreau33a7e692007-06-10 19:45:56 +02007990 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
7991 test->flags |= ACL_TEST_F_FETCH_MORE;
7992 test->flags |= ACL_TEST_F_VOL_HDR;
7993 test->len = ctx->vlen;
7994 test->ptr = (char *)ctx->line + ctx->val;
7995 return 1;
7996 }
7997
7998 test->flags &= ~ACL_TEST_F_FETCH_MORE;
7999 test->flags |= ACL_TEST_F_VOL_HDR;
8000 return 0;
8001}
8002
Willy Tarreau33a7e692007-06-10 19:45:56 +02008003static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02008004acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
8005 struct acl_expr *expr, struct acl_test *test)
8006{
8007 struct http_txn *txn = l7;
8008
Willy Tarreaub6866442008-07-14 23:54:42 +02008009 if (!txn)
8010 return 0;
8011
Willy Tarreau655dce92009-11-08 13:10:58 +01008012 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008013 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008014
Willy Tarreauc11416f2007-06-17 16:58:38 +02008015 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8016 /* ensure the indexes are not affected */
8017 return 0;
8018
8019 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
8020}
8021
8022static int
8023acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
8024 struct acl_expr *expr, struct acl_test *test)
8025{
8026 struct http_txn *txn = l7;
8027
Willy Tarreaub6866442008-07-14 23:54:42 +02008028 if (!txn)
8029 return 0;
8030
Willy Tarreau655dce92009-11-08 13:10:58 +01008031 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008032 return 0;
8033
8034 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
8035}
8036
8037/* 6. Check on HTTP header count. The number of occurrences is returned.
8038 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
8039 */
8040static int
8041acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02008042 struct acl_expr *expr, struct acl_test *test)
8043{
8044 struct http_txn *txn = l7;
8045 struct hdr_idx *idx = &txn->hdr_idx;
8046 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008047 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02008048
Willy Tarreaub6866442008-07-14 23:54:42 +02008049 if (!txn)
8050 return 0;
8051
Willy Tarreau33a7e692007-06-10 19:45:56 +02008052 ctx.idx = 0;
8053 cnt = 0;
8054 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
8055 cnt++;
8056
8057 test->i = cnt;
8058 test->flags = ACL_TEST_F_VOL_HDR;
8059 return 1;
8060}
8061
Willy Tarreauc11416f2007-06-17 16:58:38 +02008062static int
8063acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
8064 struct acl_expr *expr, struct acl_test *test)
8065{
8066 struct http_txn *txn = l7;
8067
Willy Tarreaub6866442008-07-14 23:54:42 +02008068 if (!txn)
8069 return 0;
8070
Willy Tarreau655dce92009-11-08 13:10:58 +01008071 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008072 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008073
Willy Tarreauc11416f2007-06-17 16:58:38 +02008074 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8075 /* ensure the indexes are not affected */
8076 return 0;
8077
8078 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
8079}
8080
8081static int
8082acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
8083 struct acl_expr *expr, struct acl_test *test)
8084{
8085 struct http_txn *txn = l7;
8086
Willy Tarreaub6866442008-07-14 23:54:42 +02008087 if (!txn)
8088 return 0;
8089
Willy Tarreau655dce92009-11-08 13:10:58 +01008090 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008091 return 0;
8092
8093 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
8094}
8095
Willy Tarreau33a7e692007-06-10 19:45:56 +02008096/* 7. Check on HTTP header's integer value. The integer value is returned.
8097 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02008098 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02008099 */
8100static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02008101acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02008102 struct acl_expr *expr, struct acl_test *test)
8103{
8104 struct http_txn *txn = l7;
8105 struct hdr_idx *idx = &txn->hdr_idx;
8106 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008107
Willy Tarreaub6866442008-07-14 23:54:42 +02008108 if (!txn)
8109 return 0;
8110
Willy Tarreau33a7e692007-06-10 19:45:56 +02008111 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
8112 /* search for header from the beginning */
8113 ctx->idx = 0;
8114
Willy Tarreau33a7e692007-06-10 19:45:56 +02008115 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
8116 test->flags |= ACL_TEST_F_FETCH_MORE;
8117 test->flags |= ACL_TEST_F_VOL_HDR;
8118 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
8119 return 1;
8120 }
8121
8122 test->flags &= ~ACL_TEST_F_FETCH_MORE;
8123 test->flags |= ACL_TEST_F_VOL_HDR;
8124 return 0;
8125}
8126
Willy Tarreauc11416f2007-06-17 16:58:38 +02008127static int
8128acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
8129 struct acl_expr *expr, struct acl_test *test)
8130{
8131 struct http_txn *txn = l7;
8132
Willy Tarreaub6866442008-07-14 23:54:42 +02008133 if (!txn)
8134 return 0;
8135
Willy Tarreau655dce92009-11-08 13:10:58 +01008136 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008137 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008138
Willy Tarreauc11416f2007-06-17 16:58:38 +02008139 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8140 /* ensure the indexes are not affected */
8141 return 0;
8142
8143 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
8144}
8145
8146static int
8147acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
8148 struct acl_expr *expr, struct acl_test *test)
8149{
8150 struct http_txn *txn = l7;
8151
Willy Tarreaub6866442008-07-14 23:54:42 +02008152 if (!txn)
8153 return 0;
8154
Willy Tarreau655dce92009-11-08 13:10:58 +01008155 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008156 return 0;
8157
8158 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
8159}
8160
Willy Tarreau106f9792009-09-19 07:54:16 +02008161/* 7. Check on HTTP header's IPv4 address value. The IPv4 address is returned.
8162 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
8163 */
8164static int
8165acl_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, char *sol,
8166 struct acl_expr *expr, struct acl_test *test)
8167{
8168 struct http_txn *txn = l7;
8169 struct hdr_idx *idx = &txn->hdr_idx;
8170 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
8171
8172 if (!txn)
8173 return 0;
8174
8175 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
8176 /* search for header from the beginning */
8177 ctx->idx = 0;
8178
8179 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
8180 test->flags |= ACL_TEST_F_FETCH_MORE;
8181 test->flags |= ACL_TEST_F_VOL_HDR;
8182 /* Same optimization as url_ip */
David du Colombier6f5ccb12011-03-10 22:26:24 +01008183 memset(&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr, 0, sizeof(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr));
8184 url2ipv4((char *)ctx->line + ctx->val, &((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr);
8185 test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr;
Willy Tarreau106f9792009-09-19 07:54:16 +02008186 test->i = AF_INET;
8187 return 1;
8188 }
8189
8190 test->flags &= ~ACL_TEST_F_FETCH_MORE;
8191 test->flags |= ACL_TEST_F_VOL_HDR;
8192 return 0;
8193}
8194
8195static int
8196acl_fetch_chdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
8197 struct acl_expr *expr, struct acl_test *test)
8198{
8199 struct http_txn *txn = l7;
8200
8201 if (!txn)
8202 return 0;
8203
Willy Tarreau655dce92009-11-08 13:10:58 +01008204 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02008205 return 0;
8206
8207 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8208 /* ensure the indexes are not affected */
8209 return 0;
8210
8211 return acl_fetch_hdr_ip(px, l4, txn, txn->req.sol, expr, test);
8212}
8213
8214static int
8215acl_fetch_shdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
8216 struct acl_expr *expr, struct acl_test *test)
8217{
8218 struct http_txn *txn = l7;
8219
8220 if (!txn)
8221 return 0;
8222
Willy Tarreau655dce92009-11-08 13:10:58 +01008223 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02008224 return 0;
8225
8226 return acl_fetch_hdr_ip(px, l4, txn, txn->rsp.sol, expr, test);
8227}
8228
Willy Tarreau737b0c12007-06-10 21:28:46 +02008229/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
8230 * the first '/' after the possible hostname, and ends before the possible '?'.
8231 */
8232static int
8233acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
8234 struct acl_expr *expr, struct acl_test *test)
8235{
8236 struct http_txn *txn = l7;
8237 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008238
Willy Tarreaub6866442008-07-14 23:54:42 +02008239 if (!txn)
8240 return 0;
8241
Willy Tarreau655dce92009-11-08 13:10:58 +01008242 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008243 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008244
Willy Tarreauc11416f2007-06-17 16:58:38 +02008245 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8246 /* ensure the indexes are not affected */
8247 return 0;
8248
Willy Tarreau962c3f42010-01-10 00:15:35 +01008249 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +01008250 ptr = http_get_path(txn);
8251 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02008252 return 0;
8253
8254 /* OK, we got the '/' ! */
8255 test->ptr = ptr;
8256
8257 while (ptr < end && *ptr != '?')
8258 ptr++;
8259
8260 test->len = ptr - test->ptr;
8261
8262 /* we do not need to set READ_ONLY because the data is in a buffer */
8263 test->flags = ACL_TEST_F_VOL_1ST;
8264 return 1;
8265}
8266
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008267static int
8268acl_fetch_proto_http(struct proxy *px, struct session *s, void *l7, int dir,
8269 struct acl_expr *expr, struct acl_test *test)
8270{
8271 struct buffer *req = s->req;
8272 struct http_txn *txn = &s->txn;
8273 struct http_msg *msg = &txn->req;
Willy Tarreau737b0c12007-06-10 21:28:46 +02008274
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008275 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
8276 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
8277 */
8278
8279 if (!s || !req)
8280 return 0;
8281
Willy Tarreau655dce92009-11-08 13:10:58 +01008282 if (unlikely(msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008283 /* Already decoded as OK */
8284 test->flags |= ACL_TEST_F_SET_RES_PASS;
8285 return 1;
8286 }
8287
8288 /* Try to decode HTTP request */
8289 if (likely(req->lr < req->r))
8290 http_msg_analyzer(req, msg, &txn->hdr_idx);
8291
Willy Tarreau655dce92009-11-08 13:10:58 +01008292 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008293 if ((msg->msg_state == HTTP_MSG_ERROR) || (req->flags & BF_FULL)) {
8294 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8295 return 1;
8296 }
8297 /* wait for final state */
8298 test->flags |= ACL_TEST_F_MAY_CHANGE;
8299 return 0;
8300 }
8301
8302 /* OK we got a valid HTTP request. We have some minor preparation to
8303 * perform so that further checks can rely on HTTP tests.
8304 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01008305 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008306 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
8307 s->flags |= SN_REDIRECTABLE;
8308
8309 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn)) {
8310 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8311 return 1;
8312 }
8313
8314 test->flags |= ACL_TEST_F_SET_RES_PASS;
8315 return 1;
8316}
8317
Willy Tarreau7f18e522010-10-22 20:04:13 +02008318/* return a valid test if the current request is the first one on the connection */
8319static int
8320acl_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, int dir,
8321 struct acl_expr *expr, struct acl_test *test)
8322{
8323 if (!s)
8324 return 0;
8325
8326 if (s->txn.flags & TX_NOT_FIRST)
8327 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8328 else
8329 test->flags |= ACL_TEST_F_SET_RES_PASS;
8330
8331 return 1;
8332}
8333
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008334static int
8335acl_fetch_http_auth(struct proxy *px, struct session *s, void *l7, int dir,
8336 struct acl_expr *expr, struct acl_test *test)
8337{
8338
8339 if (!s)
8340 return 0;
8341
8342 if (!get_http_auth(s))
8343 return 0;
8344
8345 test->ctx.a[0] = expr->arg.ul;
8346 test->ctx.a[1] = s->txn.auth.user;
8347 test->ctx.a[2] = s->txn.auth.pass;
8348
8349 test->flags |= ACL_TEST_F_READ_ONLY | ACL_TEST_F_NULL_MATCH;
8350
8351 return 1;
8352}
Willy Tarreau8797c062007-05-07 00:55:35 +02008353
8354/************************************************************************/
8355/* All supported keywords must be declared here. */
8356/************************************************************************/
8357
8358/* Note: must not be declared <const> as its list will be overwritten */
8359static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008360 { "req_proto_http", acl_parse_nothing, acl_fetch_proto_http, acl_match_nothing, ACL_USE_L7REQ_PERMANENT },
8361
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008362 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT },
Willy Tarreauc4262962010-05-10 23:42:40 +02008363 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
8364 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008365 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02008366
Willy Tarreauc4262962010-05-10 23:42:40 +02008367 { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008368 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8369 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8370 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8371 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8372 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
8373 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau0e698542011-09-16 08:32:32 +02008374 { "url_len", acl_parse_int, acl_fetch_url, acl_match_len, ACL_USE_L7REQ_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008375 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008376 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau8797c062007-05-07 00:55:35 +02008377
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008378 /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */
Willy Tarreauc4262962010-05-10 23:42:40 +02008379 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008380 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
8381 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8382 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8383 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8384 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8385 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
8386 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau0e698542011-09-16 08:32:32 +02008387 { "hdr_len", acl_parse_int, acl_fetch_chdr, acl_match_len, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008388 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008389 { "hdr_ip", acl_parse_ip, acl_fetch_chdr_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreauc11416f2007-06-17 16:58:38 +02008390
Willy Tarreauc4262962010-05-10 23:42:40 +02008391 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008392 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE },
8393 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE },
8394 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE },
8395 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE },
8396 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE },
8397 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE },
8398 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreau0e698542011-09-16 08:32:32 +02008399 { "shdr_len", acl_parse_int, acl_fetch_shdr, acl_match_len, ACL_USE_L7RTR_VOLATILE },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008400 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008401 { "shdr_ip", acl_parse_ip, acl_fetch_shdr_ip, acl_match_ip, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau737b0c12007-06-10 21:28:46 +02008402
Willy Tarreauc4262962010-05-10 23:42:40 +02008403 { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008404 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
8405 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8406 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8407 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8408 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8409 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau0e698542011-09-16 08:32:32 +02008410 { "path_len", acl_parse_int, acl_fetch_path, acl_match_len, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02008411
Willy Tarreauf3d25982007-05-08 22:45:09 +02008412#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02008413 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
8414 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
8415 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
8416 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
8417 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
8418 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
8419 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
8420
Willy Tarreau8797c062007-05-07 00:55:35 +02008421 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
8422 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
8423 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
8424 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
8425 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
8426 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
8427 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
8428 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008429#endif
Willy Tarreau8797c062007-05-07 00:55:35 +02008430
Willy Tarreau7f18e522010-10-22 20:04:13 +02008431 { "http_auth", acl_parse_nothing, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT },
8432 { "http_auth_group", acl_parse_strcat, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT },
8433 { "http_first_req", acl_parse_nothing, acl_fetch_http_first_req, acl_match_nothing, ACL_USE_L7REQ_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02008434 { NULL, NULL, NULL, NULL },
Willy Tarreau8797c062007-05-07 00:55:35 +02008435}};
8436
Willy Tarreau4a568972010-05-12 08:08:50 +02008437/************************************************************************/
8438/* The code below is dedicated to pattern fetching and matching */
8439/************************************************************************/
8440
8441/* extract the IP address from the last occurrence of specified header. Note
8442 * that we should normally first extract the string then convert it to IP,
8443 * but right now we have all the functions to do this seemlessly, and we will
8444 * be able to change that later without touching the configuration.
8445 */
8446static int
8447pattern_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
Emeric Brun485479d2010-09-23 18:02:19 +02008448 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
Willy Tarreau4a568972010-05-12 08:08:50 +02008449{
8450 struct http_txn *txn = l7;
8451
Emeric Brun485479d2010-09-23 18:02:19 +02008452 data->ip.s_addr = htonl(get_ip_from_hdr2(&txn->req, arg_p->data.str.str, arg_p->data.str.len, &txn->hdr_idx, -1));
Willy Tarreau4a568972010-05-12 08:08:50 +02008453 return data->ip.s_addr != 0;
8454}
8455
David Cournapeau16023ee2010-12-23 20:55:41 +09008456/*
8457 * Given a path string and its length, find the position of beginning of the
8458 * query string. Returns NULL if no query string is found in the path.
8459 *
8460 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
8461 *
8462 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
8463 */
8464static inline char *find_query_string(char *path, size_t path_l)
8465{
8466 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +02008467
David Cournapeau16023ee2010-12-23 20:55:41 +09008468 p = memchr(path, '?', path_l);
8469 return p ? p + 1 : NULL;
8470}
8471
8472static inline int is_param_delimiter(char c)
8473{
8474 return c == '&' || c == ';';
8475}
8476
8477/*
8478 * Given a url parameter, find the starting position of the first occurence,
8479 * or NULL if the parameter is not found.
8480 *
8481 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
8482 * the function will return query_string+8.
8483 */
8484static char*
8485find_url_param_pos(char* query_string, size_t query_string_l,
8486 char* url_param_name, size_t url_param_name_l)
8487{
8488 char *pos, *last;
8489
8490 pos = query_string;
8491 last = query_string + query_string_l - url_param_name_l - 1;
8492
8493 while (pos <= last) {
8494 if (pos[url_param_name_l] == '=') {
8495 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
8496 return pos;
8497 pos += url_param_name_l + 1;
8498 }
8499 while (pos <= last && !is_param_delimiter(*pos))
8500 pos++;
8501 pos++;
8502 }
8503 return NULL;
8504}
8505
8506/*
8507 * Given a url parameter name, returns its value and size into *value and
8508 * *value_l respectively, and returns non-zero. If the parameter is not found,
8509 * zero is returned and value/value_l are not touched.
8510 */
8511static int
8512find_url_param_value(char* path, size_t path_l,
8513 char* url_param_name, size_t url_param_name_l,
8514 char** value, size_t* value_l)
8515{
8516 char *query_string, *qs_end;
8517 char *arg_start;
8518 char *value_start, *value_end;
8519
8520 query_string = find_query_string(path, path_l);
8521 if (!query_string)
8522 return 0;
8523
8524 qs_end = path + path_l;
8525 arg_start = find_url_param_pos(query_string, qs_end - query_string,
8526 url_param_name, url_param_name_l);
8527 if (!arg_start)
8528 return 0;
8529
8530 value_start = arg_start + url_param_name_l + 1;
8531 value_end = value_start;
8532
8533 while ((value_end < qs_end) && !is_param_delimiter(*value_end))
8534 value_end++;
8535
8536 *value = value_start;
8537 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +01008538 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +09008539}
8540
8541static int
8542pattern_fetch_url_param(struct proxy *px, struct session *l4, void *l7, int dir,
8543 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8544{
8545 struct http_txn *txn = l7;
8546 struct http_msg *msg = &txn->req;
8547 char *url_param_value;
8548 size_t url_param_value_l;
8549
8550 if (!find_url_param_value(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l,
8551 arg_p->data.str.str, arg_p->data.str.len,
8552 &url_param_value, &url_param_value_l))
8553 return 0;
8554
8555 data->str.str = url_param_value;
8556 data->str.len = url_param_value_l;
8557 return 1;
8558}
8559
Willy Tarreaub3eb2212011-07-01 16:16:17 +02008560/* Try to find the last occurrence of a cookie name in a cookie header value.
8561 * The pointer and size of the last occurrence of the cookie value is returned
8562 * into *value and *value_l, and the function returns non-zero if the value was
8563 * found. Otherwise if the cookie was not found, zero is returned and neither
8564 * value nor value_l are touched. The input hdr string should begin at the
8565 * header's value, and its size should be in hdr_l. <list> must be non-zero if
8566 * value may represent a list of values (cookie headers).
8567 */
8568static int
8569extract_cookie_value(char *hdr, size_t hdr_l,
8570 char *cookie_name, size_t cookie_name_l, int list,
8571 char **value, size_t *value_l)
8572{
8573 int found = 0;
8574 char *equal, *att_end, *att_beg, *hdr_end, *val_beg, *val_end;
8575 char *next;
8576
8577 /* Note that multiple cookies may be delimited with semi-colons, so we
8578 * also have to loop on this.
8579 */
8580
8581 /* we search at least a cookie name followed by an equal, and more
8582 * generally something like this :
8583 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
8584 */
8585 if (hdr_l < cookie_name_l + 1)
8586 return 0;
8587
8588 hdr_end = hdr + hdr_l;
8589
8590 for (att_beg = hdr; att_beg < hdr_end; att_beg = next + 1) {
8591 /* Iterate through all cookies on this line */
8592
8593 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
8594 att_beg++;
8595
8596 /* find att_end : this is the first character after the last non
8597 * space before the equal. It may be equal to hdr_end.
8598 */
8599 equal = att_end = att_beg;
8600
8601 while (equal < hdr_end) {
8602 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
8603 break;
8604 if (http_is_spht[(unsigned char)*equal++])
8605 continue;
8606 att_end = equal;
8607 }
8608
8609 /* here, <equal> points to '=', a delimitor or the end. <att_end>
8610 * is between <att_beg> and <equal>, both may be identical.
8611 */
8612
8613 /* look for end of cookie if there is an equal sign */
8614 if (equal < hdr_end && *equal == '=') {
8615 /* look for the beginning of the value */
8616 val_beg = equal + 1;
8617 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
8618 val_beg++;
8619
8620 /* find the end of the value, respecting quotes */
8621 next = find_cookie_value_end(val_beg, hdr_end);
8622
8623 /* make val_end point to the first white space or delimitor after the value */
8624 val_end = next;
8625 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
8626 val_end--;
8627 } else {
8628 val_beg = val_end = next = equal;
8629 }
8630
8631 /* We have nothing to do with attributes beginning with '$'. However,
8632 * they will automatically be removed if a header before them is removed,
8633 * since they're supposed to be linked together.
8634 */
8635 if (*att_beg == '$')
8636 continue;
8637
8638 /* Ignore cookies with no equal sign */
8639 if (equal == next)
8640 continue;
8641
8642 /* Now we have the cookie name between att_beg and att_end, and
8643 * its value between val_beg and val_end.
8644 */
8645
8646 if (att_end - att_beg == cookie_name_l &&
8647 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
8648 found = 1;
8649 *value = val_beg;
8650 *value_l = val_end - val_beg;
8651 /* right now we want to catch the last occurrence
8652 * of the cookie, so let's go on searching.
8653 */
8654 }
8655
8656 /* Set-Cookie headers only have the name in the first attr=value part */
8657 if (!list)
8658 break;
8659 }
8660
8661 return found;
8662}
8663
8664/* Try to find in request or response message is in <msg> and whose transaction
8665 * is in <txn> the last occurrence of a cookie name in all cookie header values
8666 * whose header name is <hdr_name> with name of length <hdr_name_len>. The
8667 * pointer and size of the last occurrence of the cookie value is returned into
8668 * <value> and <value_l>, and the function returns non-zero if the value was
8669 * found. Otherwise if the cookie was not found, zero is returned and neither
8670 * value nor value_l are touched. The input hdr string should begin at the
8671 * header's value, and its size should be in hdr_l. <list> must be non-zero if
8672 * value may represent a list of values (cookie headers).
8673 */
8674
8675static int
8676find_cookie_value(struct http_msg *msg, struct http_txn *txn,
8677 const char *hdr_name, int hdr_name_len,
8678 char *cookie_name, size_t cookie_name_l, int list,
8679 char **value, size_t *value_l)
8680{
8681 struct hdr_ctx ctx;
8682 int found = 0;
8683
8684 ctx.idx = 0;
8685 while (http_find_header2(hdr_name, hdr_name_len, msg->sol, &txn->hdr_idx, &ctx)) {
8686 if (ctx.vlen < cookie_name_l + 1)
8687 continue;
8688
8689 found |= extract_cookie_value(ctx.line + ctx.val, ctx.vlen,
8690 cookie_name, cookie_name_l, 1,
8691 value, value_l);
8692 }
8693 return found;
8694}
8695
8696static int
8697pattern_fetch_cookie(struct proxy *px, struct session *l4, void *l7, int dir,
8698 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8699{
8700 struct http_txn *txn = l7;
8701 struct http_msg *msg = &txn->req;
8702 char *cookie_value;
8703 size_t cookie_value_l;
8704 int found = 0;
8705
8706 found = find_cookie_value(msg, txn, "Cookie", 6,
8707 arg_p->data.str.str, arg_p->data.str.len, 1,
8708 &cookie_value, &cookie_value_l);
8709 if (found) {
8710 data->str.str = cookie_value;
8711 data->str.len = cookie_value_l;
8712 }
8713
8714 return found;
8715}
8716
8717
8718static int
8719pattern_fetch_set_cookie(struct proxy *px, struct session *l4, void *l7, int dir,
8720 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8721{
8722 struct http_txn *txn = l7;
8723 struct http_msg *msg = &txn->rsp;
8724 char *cookie_value;
8725 size_t cookie_value_l;
8726 int found = 0;
8727
8728 found = find_cookie_value(msg, txn, "Set-Cookie", 10,
8729 arg_p->data.str.str, arg_p->data.str.len, 1,
8730 &cookie_value, &cookie_value_l);
8731 if (found) {
8732 data->str.str = cookie_value;
8733 data->str.len = cookie_value_l;
8734 }
8735
8736 return found;
8737}
8738
Emeric Brun485479d2010-09-23 18:02:19 +02008739
Willy Tarreau4a568972010-05-12 08:08:50 +02008740/************************************************************************/
8741/* All supported keywords must be declared here. */
8742/************************************************************************/
8743/* Note: must not be declared <const> as its list will be overwritten */
8744static struct pattern_fetch_kw_list pattern_fetch_keywords = {{ },{
Emeric Brun485479d2010-09-23 18:02:19 +02008745 { "hdr", pattern_fetch_hdr_ip, pattern_arg_str, PATTERN_TYPE_IP, PATTERN_FETCH_REQ },
David Cournapeau16023ee2010-12-23 20:55:41 +09008746 { "url_param", pattern_fetch_url_param, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ },
Willy Tarreaub3eb2212011-07-01 16:16:17 +02008747 { "cookie", pattern_fetch_cookie, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ },
8748 { "set-cookie", pattern_fetch_set_cookie, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_RTR },
Emeric Brun485479d2010-09-23 18:02:19 +02008749 { NULL, NULL, NULL, 0, 0 },
Willy Tarreau4a568972010-05-12 08:08:50 +02008750}};
8751
Willy Tarreau8797c062007-05-07 00:55:35 +02008752
8753__attribute__((constructor))
8754static void __http_protocol_init(void)
8755{
8756 acl_register_keywords(&acl_kws);
Willy Tarreau4a568972010-05-12 08:08:50 +02008757 pattern_register_fetches(&pattern_fetch_keywords);
Willy Tarreau8797c062007-05-07 00:55:35 +02008758}
8759
8760
Willy Tarreau58f10d72006-12-04 02:26:12 +01008761/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02008762 * Local variables:
8763 * c-indent-level: 8
8764 * c-basic-offset: 8
8765 * End:
8766 */