blob: 26b8f73ca9a970778a27ee191b72c11a19bd4639 [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;
555 while (http_is_lws[(unsigned char)*(eol - 1)]) {
556 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 Tarreaub80c2302007-11-30 20:51:32 +01002673
Willy Tarreau59234e92008-11-30 23:51:27 +01002674 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002675 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
2676 int ret = acl_exec_cond(cond, s->fe, s, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002677
Willy Tarreau59234e92008-11-30 23:51:27 +01002678 ret = acl_pass(ret);
2679 if (cond->pol == ACL_COND_UNLESS)
2680 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002681
Willy Tarreau59234e92008-11-30 23:51:27 +01002682 if (ret) {
2683 /* we fail this request, let's return 503 service unavail */
2684 txn->status = 503;
2685 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_503));
2686 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002687 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002688 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002689
Willy Tarreau59234e92008-11-30 23:51:27 +01002690 /* nothing to fail, let's reply normaly */
2691 txn->status = 200;
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002692 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_200));
Willy Tarreau59234e92008-11-30 23:51:27 +01002693 goto return_prx_cond;
2694 }
2695
2696 /*
2697 * 3: Maybe we have to copy the original REQURI for the logs ?
2698 * Note: we cannot log anymore if the request has been
2699 * classified as invalid.
2700 */
2701 if (unlikely(s->logs.logwait & LW_REQ)) {
2702 /* we have a complete HTTP request that we must log */
2703 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2704 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002705
Willy Tarreau59234e92008-11-30 23:51:27 +01002706 if (urilen >= REQURI_LEN)
2707 urilen = REQURI_LEN - 1;
2708 memcpy(txn->uri, &req->data[msg->som], urilen);
2709 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002710
Willy Tarreau59234e92008-11-30 23:51:27 +01002711 if (!(s->logs.logwait &= ~LW_REQ))
2712 s->do_log(s);
2713 } else {
2714 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002715 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002716 }
Willy Tarreau06619262006-12-17 08:37:22 +01002717
Willy Tarreau59234e92008-11-30 23:51:27 +01002718 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002719 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn))
2720 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002721
Willy Tarreau5b154472009-12-21 20:11:07 +01002722 /* ... and check if the request is HTTP/1.1 or above */
2723 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002724 ((msg->sol[msg->sl.rq.v + 5] > '1') ||
2725 ((msg->sol[msg->sl.rq.v + 5] == '1') &&
2726 (msg->sol[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01002727 txn->flags |= TX_REQ_VER_11;
2728
2729 /* "connection" has not been parsed yet */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002730 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL);
Willy Tarreau5b154472009-12-21 20:11:07 +01002731
Willy Tarreau88d349d2010-01-25 12:15:43 +01002732 /* if the frontend has "option http-use-proxy-header", we'll check if
2733 * we have what looks like a proxied connection instead of a connection,
2734 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2735 * Note that this is *not* RFC-compliant, however browsers and proxies
2736 * happen to do that despite being non-standard :-(
2737 * We consider that a request not beginning with either '/' or '*' is
2738 * a proxied connection, which covers both "scheme://location" and
2739 * CONNECT ip:port.
2740 */
2741 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
2742 msg->sol[msg->sl.rq.u] != '/' && msg->sol[msg->sl.rq.u] != '*')
2743 txn->flags |= TX_USE_PX_CONN;
2744
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002745 /* transfer length unknown*/
2746 txn->flags &= ~TX_REQ_XFER_LEN;
2747
Willy Tarreau59234e92008-11-30 23:51:27 +01002748 /* 5: we may need to capture headers */
2749 if (unlikely((s->logs.logwait & LW_REQHDR) && s->fe->req_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01002750 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002751 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002752
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002753 /* 6: determine the transfer-length.
2754 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2755 * the presence of a message-body in a REQUEST and its transfer length
2756 * must be determined that way (in order of precedence) :
2757 * 1. The presence of a message-body in a request is signaled by the
2758 * inclusion of a Content-Length or Transfer-Encoding header field
2759 * in the request's header fields. When a request message contains
2760 * both a message-body of non-zero length and a method that does
2761 * not define any semantics for that request message-body, then an
2762 * origin server SHOULD either ignore the message-body or respond
2763 * with an appropriate error message (e.g., 413). A proxy or
2764 * gateway, when presented the same request, SHOULD either forward
2765 * the request inbound with the message- body or ignore the
2766 * message-body when determining a response.
2767 *
2768 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2769 * and the "chunked" transfer-coding (Section 6.2) is used, the
2770 * transfer-length is defined by the use of this transfer-coding.
2771 * If a Transfer-Encoding header field is present and the "chunked"
2772 * transfer-coding is not present, the transfer-length is defined
2773 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002774 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002775 * 3. If a Content-Length header field is present, its decimal value in
2776 * OCTETs represents both the entity-length and the transfer-length.
2777 * If a message is received with both a Transfer-Encoding header
2778 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002779 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002780 * 4. By the server closing the connection. (Closing the connection
2781 * cannot be used to indicate the end of a request body, since that
2782 * would leave no possibility for the server to send back a response.)
2783 *
2784 * Whenever a transfer-coding is applied to a message-body, the set of
2785 * transfer-codings MUST include "chunked", unless the message indicates
2786 * it is terminated by closing the connection. When the "chunked"
2787 * transfer-coding is used, it MUST be the last transfer-coding applied
2788 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002789 */
2790
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002791 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002792 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002793 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01002794 while ((txn->flags & TX_REQ_VER_11) &&
2795 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002796 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
2797 txn->flags |= (TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2798 else if (txn->flags & TX_REQ_TE_CHNK) {
2799 /* bad transfer-encoding (chunked followed by something else) */
2800 use_close_only = 1;
2801 txn->flags &= ~(TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2802 break;
2803 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002804 }
2805
Willy Tarreau32b47f42009-10-18 20:55:02 +02002806 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002807 while (!(txn->flags & TX_REQ_TE_CHNK) && !use_close_only &&
Willy Tarreau32b47f42009-10-18 20:55:02 +02002808 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
2809 signed long long cl;
2810
Willy Tarreauad14f752011-09-02 20:33:27 +02002811 if (!ctx.vlen) {
2812 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002813 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002814 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002815
Willy Tarreauad14f752011-09-02 20:33:27 +02002816 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
2817 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002818 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002819 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002820
Willy Tarreauad14f752011-09-02 20:33:27 +02002821 if (cl < 0) {
2822 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002823 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002824 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002825
Willy Tarreauad14f752011-09-02 20:33:27 +02002826 if ((txn->flags & TX_REQ_CNT_LEN) && (msg->chunk_len != cl)) {
2827 msg->err_pos = ctx.line + ctx.val - req->data;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002828 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002829 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002830
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002831 txn->flags |= TX_REQ_CNT_LEN | TX_REQ_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002832 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002833 }
2834
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002835 /* bodyless requests have a known length */
2836 if (!use_close_only)
2837 txn->flags |= TX_REQ_XFER_LEN;
2838
Willy Tarreaud787e662009-07-07 10:14:51 +02002839 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002840 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002841 req->analyse_exp = TICK_ETERNITY;
2842 return 1;
2843
2844 return_bad_req:
2845 /* We centralize bad requests processing here */
2846 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2847 /* we detected a parsing error. We want to archive this request
2848 * in the dedicated proxy area for later troubleshooting.
2849 */
Willy Tarreau078272e2010-12-12 12:46:33 +01002850 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002851 }
2852
2853 txn->req.msg_state = HTTP_MSG_ERROR;
2854 txn->status = 400;
2855 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002856
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002857 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002858 if (s->listener->counters)
2859 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02002860
2861 return_prx_cond:
2862 if (!(s->flags & SN_ERR_MASK))
2863 s->flags |= SN_ERR_PRXCOND;
2864 if (!(s->flags & SN_FINST_MASK))
2865 s->flags |= SN_FINST_R;
2866
2867 req->analysers = 0;
2868 req->analyse_exp = TICK_ETERNITY;
2869 return 0;
2870}
2871
Cyril Bonté70be45d2010-10-12 00:14:35 +02002872/* We reached the stats page through a POST request.
2873 * Parse the posted data and enable/disable servers if necessary.
Cyril Bonté23b39d92011-02-10 22:54:44 +01002874 * Returns 1 if request was parsed or zero if it needs more data.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002875 */
Willy Tarreau295a8372011-03-10 11:25:07 +01002876int http_process_req_stat_post(struct stream_interface *si, struct http_txn *txn, struct buffer *req)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002877{
Cyril Bonté70be45d2010-10-12 00:14:35 +02002878 struct proxy *px;
2879 struct server *sv;
2880
2881 char *backend = NULL;
2882 int action = 0;
2883
2884 char *first_param, *cur_param, *next_param, *end_params;
2885
2886 first_param = req->data + txn->req.eoh + 2;
Willy Tarreau124d9912011-03-01 20:30:48 +01002887 end_params = first_param + txn->req.body_len;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002888
2889 cur_param = next_param = end_params;
2890
Cyril Bonté23b39d92011-02-10 22:54:44 +01002891 if (end_params >= req->data + req->size - global.tune.maxrewrite) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002892 /* Prevent buffer overflow */
Willy Tarreau295a8372011-03-10 11:25:07 +01002893 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002894 return 1;
2895 }
2896 else if (end_params > req->data + req->l) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01002897 /* we need more data */
Willy Tarreau295a8372011-03-10 11:25:07 +01002898 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté23b39d92011-02-10 22:54:44 +01002899 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002900 }
2901
2902 *end_params = '\0';
2903
Willy Tarreau295a8372011-03-10 11:25:07 +01002904 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002905
2906 /*
2907 * Parse the parameters in reverse order to only store the last value.
2908 * From the html form, the backend and the action are at the end.
2909 */
2910 while (cur_param > first_param) {
2911 char *key, *value;
2912
2913 cur_param--;
2914 if ((*cur_param == '&') || (cur_param == first_param)) {
2915 /* Parse the key */
2916 key = cur_param;
2917 if (cur_param != first_param) {
2918 /* delimit the string for the next loop */
2919 *key++ = '\0';
2920 }
2921
2922 /* Parse the value */
2923 value = key;
2924 while (*value != '\0' && *value != '=') {
2925 value++;
2926 }
2927 if (*value == '=') {
2928 /* Ok, a value is found, we can mark the end of the key */
2929 *value++ = '\0';
2930 }
2931
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02002932 if (!url_decode(key) || !url_decode(value))
2933 break;
2934
Cyril Bonté70be45d2010-10-12 00:14:35 +02002935 /* Now we can check the key to see what to do */
2936 if (!backend && strcmp(key, "b") == 0) {
2937 backend = value;
2938 }
2939 else if (!action && strcmp(key, "action") == 0) {
2940 if (strcmp(value, "disable") == 0) {
2941 action = 1;
2942 }
2943 else if (strcmp(value, "enable") == 0) {
2944 action = 2;
2945 } else {
2946 /* unknown action, no need to continue */
2947 break;
2948 }
2949 }
2950 else if (strcmp(key, "s") == 0) {
2951 if (backend && action && get_backend_server(backend, value, &px, &sv)) {
2952 switch (action) {
2953 case 1:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002954 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002955 /* Not already in maintenance, we can change the server state */
2956 sv->state |= SRV_MAINTAIN;
2957 set_server_down(sv);
Willy Tarreau295a8372011-03-10 11:25:07 +01002958 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002959 }
2960 break;
2961 case 2:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002962 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002963 /* Already in maintenance, we can change the server state */
2964 set_server_up(sv);
Willy Tarreau70461302010-10-22 14:39:02 +02002965 sv->health = sv->rise; /* up, but will fall down at first failure */
Willy Tarreau295a8372011-03-10 11:25:07 +01002966 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002967 }
2968 break;
2969 }
2970 }
2971 }
2972 next_param = cur_param;
2973 }
2974 }
Cyril Bonté23b39d92011-02-10 22:54:44 +01002975 return 1;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002976}
2977
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002978/* returns a pointer to the first rule which forbids access (deny or http_auth),
2979 * or NULL if everything's OK.
2980 */
Willy Tarreauff011f22011-01-06 17:51:27 +01002981static inline struct http_req_rule *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002982http_check_access_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
2983{
Willy Tarreauff011f22011-01-06 17:51:27 +01002984 struct http_req_rule *rule;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002985
Willy Tarreauff011f22011-01-06 17:51:27 +01002986 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002987 int ret = 1;
2988
Willy Tarreauff011f22011-01-06 17:51:27 +01002989 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002990 continue;
2991
2992 /* check condition, but only if attached */
Willy Tarreauff011f22011-01-06 17:51:27 +01002993 if (rule->cond) {
2994 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002995 ret = acl_pass(ret);
2996
Willy Tarreauff011f22011-01-06 17:51:27 +01002997 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002998 ret = !ret;
2999 }
3000
3001 if (ret) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003002 if (rule->action == HTTP_REQ_ACT_ALLOW)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003003 return NULL; /* no problem */
3004 else
Willy Tarreauff011f22011-01-06 17:51:27 +01003005 return rule; /* most likely a deny or auth rule */
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003006 }
3007 }
3008 return NULL;
3009}
3010
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003011/* This stream analyser runs all HTTP request processing which is common to
3012 * frontends and backends, which means blocking ACLs, filters, connection-close,
3013 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003014 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003015 * either needs more data or wants to immediately abort the request (eg: deny,
3016 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003017 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003018int http_process_req_common(struct session *s, struct buffer *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003019{
Willy Tarreaud787e662009-07-07 10:14:51 +02003020 struct http_txn *txn = &s->txn;
3021 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003022 struct acl_cond *cond;
Willy Tarreauff011f22011-01-06 17:51:27 +01003023 struct http_req_rule *http_req_last_rule = NULL;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003024 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003025 struct cond_wordlist *wl;
Simon Horman70735c92011-06-07 11:07:50 +09003026 int do_stats;
Willy Tarreaud787e662009-07-07 10:14:51 +02003027
Willy Tarreau655dce92009-11-08 13:10:58 +01003028 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003029 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003030 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003031 return 0;
3032 }
3033
Willy Tarreau3a816292009-07-07 10:55:49 +02003034 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003035 req->analyse_exp = TICK_ETERNITY;
3036
3037 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3038 now_ms, __FUNCTION__,
3039 s,
3040 req,
3041 req->rex, req->wex,
3042 req->flags,
3043 req->l,
3044 req->analysers);
3045
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003046 /* first check whether we have some ACLs set to block this request */
3047 list_for_each_entry(cond, &px->block_cond, list) {
3048 int ret = acl_exec_cond(cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02003049
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003050 ret = acl_pass(ret);
3051 if (cond->pol == ACL_COND_UNLESS)
3052 ret = !ret;
Willy Tarreau53b6c742006-12-17 13:37:46 +01003053
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003054 if (ret) {
3055 txn->status = 403;
3056 /* let's log the request time */
3057 s->logs.tv_request = now;
3058 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003059 session_inc_http_err_ctr(s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003060 goto return_prx_cond;
Willy Tarreau59234e92008-11-30 23:51:27 +01003061 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003062 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003063
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003064 /* evaluate http-request rules */
Willy Tarreauff011f22011-01-06 17:51:27 +01003065 http_req_last_rule = http_check_access_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01003066
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003067 /* evaluate stats http-request rules only if http-request is OK */
Willy Tarreauff011f22011-01-06 17:51:27 +01003068 if (!http_req_last_rule) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003069 do_stats = stats_check_uri(s->rep->prod, txn, px);
3070 if (do_stats)
Willy Tarreauff011f22011-01-06 17:51:27 +01003071 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 +01003072 }
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003073 else
3074 do_stats = 0;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003075
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003076 /* return a 403 if either rule has blocked */
Willy Tarreauff011f22011-01-06 17:51:27 +01003077 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_DENY) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003078 txn->status = 403;
3079 s->logs.tv_request = now;
3080 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003081 session_inc_http_err_ctr(s);
Willy Tarreau6da0f6d2011-01-06 18:19:50 +01003082 s->fe->fe_counters.denied_req++;
3083 if (an_bit == AN_REQ_HTTP_PROCESS_BE)
3084 s->be->be_counters.denied_req++;
3085 if (s->listener->counters)
3086 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003087 goto return_prx_cond;
3088 }
3089
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003090 /* try headers filters */
3091 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003092 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003093 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01003094
Willy Tarreau59234e92008-11-30 23:51:27 +01003095 /* has the request been denied ? */
3096 if (txn->flags & TX_CLDENY) {
3097 /* no need to go further */
3098 txn->status = 403;
3099 /* let's log the request time */
3100 s->logs.tv_request = now;
3101 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003102 session_inc_http_err_ctr(s);
Willy Tarreau59234e92008-11-30 23:51:27 +01003103 goto return_prx_cond;
3104 }
Willy Tarreauc465fd72009-08-31 00:17:18 +02003105
3106 /* When a connection is tarpitted, we use the tarpit timeout,
3107 * which may be the same as the connect timeout if unspecified.
3108 * If unset, then set it to zero because we really want it to
3109 * eventually expire. We build the tarpit as an analyser.
3110 */
3111 if (txn->flags & TX_CLTARPIT) {
3112 buffer_erase(s->req);
3113 /* wipe the request out so that we can drop the connection early
3114 * if the client closes first.
3115 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003116 buffer_dont_connect(req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003117 req->analysers = 0; /* remove switching rules etc... */
3118 req->analysers |= AN_REQ_HTTP_TARPIT;
3119 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3120 if (!req->analyse_exp)
3121 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003122 session_inc_http_err_ctr(s);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003123 return 1;
3124 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003125 }
Willy Tarreau06619262006-12-17 08:37:22 +01003126
Willy Tarreau5b154472009-12-21 20:11:07 +01003127 /* Until set to anything else, the connection mode is set as TUNNEL. It will
3128 * only change if both the request and the config reference something else.
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003129 * Option httpclose by itself does not set a mode, it remains a tunnel mode
3130 * in which headers are mangled. However, if another mode is set, it will
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003131 * affect it (eg: server-close/keep-alive + httpclose = close). Note that we
3132 * avoid to redo the same work if FE and BE have the same settings (common).
3133 * The method consists in checking if options changed between the two calls
3134 * (implying that either one is non-null, or one of them is non-null and we
3135 * are there for the first time.
Willy Tarreau42736642009-10-18 21:04:35 +02003136 */
Willy Tarreau5b154472009-12-21 20:11:07 +01003137
Willy Tarreaudc008c52010-02-01 16:20:08 +01003138 if ((!(txn->flags & TX_HDR_CONN_PRS) &&
3139 (s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) ||
3140 ((s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) !=
3141 (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 +01003142 int tmp = TX_CON_WANT_TUN;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003143
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003144 if ((s->fe->options|s->be->options) & PR_O_KEEPALIVE ||
3145 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreau5b154472009-12-21 20:11:07 +01003146 tmp = TX_CON_WANT_KAL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01003147 if ((s->fe->options|s->be->options) & PR_O_SERVER_CLO)
3148 tmp = TX_CON_WANT_SCL;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003149 if ((s->fe->options|s->be->options) & PR_O_FORCE_CLO)
Willy Tarreau5b154472009-12-21 20:11:07 +01003150 tmp = TX_CON_WANT_CLO;
3151
Willy Tarreau5b154472009-12-21 20:11:07 +01003152 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
3153 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003154
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003155 if (!(txn->flags & TX_HDR_CONN_PRS)) {
3156 /* parse the Connection header and possibly clean it */
3157 int to_del = 0;
3158 if ((txn->flags & TX_REQ_VER_11) ||
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003159 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
3160 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003161 to_del |= 2; /* remove "keep-alive" */
3162 if (!(txn->flags & TX_REQ_VER_11))
3163 to_del |= 1; /* remove "close" */
3164 http_parse_connection_header(txn, msg, req, to_del);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003165 }
Willy Tarreau5b154472009-12-21 20:11:07 +01003166
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003167 /* check if client or config asks for explicit close in KAL/SCL */
3168 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
3169 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
3170 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
3171 (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 +01003172 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE) || /* httpclose+any = forceclose */
Willy Tarreauc3e8b252010-01-28 15:01:20 +01003173 !(txn->flags & TX_REQ_XFER_LEN) || /* no length known => close */
3174 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003175 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
3176 }
Willy Tarreau78599912009-10-17 20:12:21 +02003177
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003178 /* we can be blocked here because the request needs to be authenticated,
3179 * either to pass or to access stats.
3180 */
Willy Tarreauff011f22011-01-06 17:51:27 +01003181 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_HTTP_AUTH) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003182 struct chunk msg;
Willy Tarreauff011f22011-01-06 17:51:27 +01003183 char *realm = http_req_last_rule->http_auth.realm;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003184
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003185 if (!realm)
3186 realm = do_stats?STATS_DEFAULT_REALM:px->id;
3187
Willy Tarreau844a7e72010-01-31 21:46:18 +01003188 sprintf(trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003189 chunk_initlen(&msg, trash, sizeof(trash), strlen(trash));
3190 txn->status = 401;
3191 stream_int_retnclose(req->prod, &msg);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003192 /* on 401 we still count one error, because normal browsing
3193 * won't significantly increase the counter but brute force
3194 * attempts will.
3195 */
3196 session_inc_http_err_ctr(s);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003197 goto return_prx_cond;
3198 }
3199
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003200 /* add request headers from the rule sets in the same order */
3201 list_for_each_entry(wl, &px->req_add, list) {
3202 if (wl->cond) {
3203 int ret = acl_exec_cond(wl->cond, px, s, txn, ACL_DIR_REQ);
3204 ret = acl_pass(ret);
3205 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3206 ret = !ret;
3207 if (!ret)
3208 continue;
3209 }
3210
3211 if (unlikely(http_header_add_tail(req, &txn->req, &txn->hdr_idx, wl->s) < 0))
3212 goto return_bad_req;
3213 }
3214
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003215 if (do_stats) {
Cyril Bonté474be412010-10-12 00:14:36 +02003216 struct stats_admin_rule *stats_admin_rule;
3217
3218 /* We need to provide stats for this request.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003219 * FIXME!!! that one is rather dangerous, we want to
3220 * make it follow standard rules (eg: clear req->analysers).
3221 */
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003222
Cyril Bonté474be412010-10-12 00:14:36 +02003223 /* now check whether we have some admin rules for this request */
3224 list_for_each_entry(stats_admin_rule, &s->be->uri_auth->admin_rules, list) {
3225 int ret = 1;
3226
3227 if (stats_admin_rule->cond) {
3228 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
3229 ret = acl_pass(ret);
3230 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3231 ret = !ret;
3232 }
3233
3234 if (ret) {
3235 /* no rule, or the rule matches */
Willy Tarreau295a8372011-03-10 11:25:07 +01003236 s->rep->prod->applet.ctx.stats.flags |= STAT_ADMIN;
Cyril Bonté474be412010-10-12 00:14:36 +02003237 break;
3238 }
3239 }
3240
Cyril Bonté70be45d2010-10-12 00:14:35 +02003241 /* Was the status page requested with a POST ? */
3242 if (txn->meth == HTTP_METH_POST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003243 if (s->rep->prod->applet.ctx.stats.flags & STAT_ADMIN) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01003244 if (msg->msg_state < HTTP_MSG_100_SENT) {
3245 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3246 * send an HTTP/1.1 100 Continue intermediate response.
3247 */
3248 if (txn->flags & TX_REQ_VER_11) {
3249 struct hdr_ctx ctx;
3250 ctx.idx = 0;
3251 /* Expect is allowed in 1.1, look for it */
3252 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3253 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3254 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3255 }
3256 }
3257 msg->msg_state = HTTP_MSG_100_SENT;
3258 s->logs.tv_request = now; /* update the request timer to reflect full request */
3259 }
Willy Tarreau295a8372011-03-10 11:25:07 +01003260 if (!http_process_req_stat_post(s->rep->prod, txn, req)) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01003261 /* we need more data */
3262 req->analysers |= an_bit;
3263 buffer_dont_connect(req);
3264 return 0;
3265 }
Cyril Bonté474be412010-10-12 00:14:36 +02003266 } else {
Willy Tarreau295a8372011-03-10 11:25:07 +01003267 s->rep->prod->applet.ctx.stats.st_code = STAT_STATUS_DENY;
Cyril Bonté474be412010-10-12 00:14:36 +02003268 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02003269 }
3270
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003271 s->logs.tv_request = now;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003272 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreaub24281b2011-02-13 13:16:36 +01003273 stream_int_register_handler(s->rep->prod, &http_stats_applet);
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02003274 copy_target(&s->target, &s->rep->prod->target); // for logging only
Willy Tarreaubc4af052011-02-13 13:25:14 +01003275 s->rep->prod->applet.private = s;
3276 s->rep->prod->applet.st0 = s->rep->prod->applet.st1 = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003277 req->analysers = 0;
3278
3279 return 0;
3280
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003281 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003282
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003283 /* check whether we have some ACLs set to redirect this request */
3284 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003285 int ret = ACL_PAT_PASS;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003286
Willy Tarreauf285f542010-01-03 20:03:03 +01003287 if (rule->cond) {
3288 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
3289 ret = acl_pass(ret);
3290 if (rule->cond->pol == ACL_COND_UNLESS)
3291 ret = !ret;
3292 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003293
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003294 if (ret) {
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003295 struct chunk rdr = { .str = trash, .size = sizeof(trash), .len = 0 };
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003296 const char *msg_fmt;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003297
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003298 /* build redirect message */
3299 switch(rule->code) {
3300 case 303:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003301 msg_fmt = HTTP_303;
3302 break;
3303 case 301:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003304 msg_fmt = HTTP_301;
3305 break;
3306 case 302:
3307 default:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003308 msg_fmt = HTTP_302;
3309 break;
3310 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003311
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003312 if (unlikely(!chunk_strcpy(&rdr, msg_fmt)))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003313 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003314
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003315 switch(rule->type) {
3316 case REDIRECT_TYPE_PREFIX: {
3317 const char *path;
3318 int pathlen;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003319
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003320 path = http_get_path(txn);
3321 /* build message using path */
3322 if (path) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003323 pathlen = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003324 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3325 int qs = 0;
3326 while (qs < pathlen) {
3327 if (path[qs] == '?') {
3328 pathlen = qs;
3329 break;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003330 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003331 qs++;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003332 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003333 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003334 } else {
3335 path = "/";
3336 pathlen = 1;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003337 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003338
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003339 if (rdr.len + rule->rdr_len + pathlen > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003340 goto return_bad_req;
3341
3342 /* add prefix. Note that if prefix == "/", we don't want to
3343 * add anything, otherwise it makes it hard for the user to
3344 * configure a self-redirection.
3345 */
3346 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Willy Tarreau06b917c2009-07-06 16:34:52 +02003347 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3348 rdr.len += rule->rdr_len;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003349 }
3350
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003351 /* add path */
3352 memcpy(rdr.str + rdr.len, path, pathlen);
3353 rdr.len += pathlen;
Willy Tarreau81e3b4f2010-01-10 00:42:19 +01003354
3355 /* append a slash at the end of the location is needed and missing */
3356 if (rdr.len && rdr.str[rdr.len - 1] != '/' &&
3357 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3358 if (rdr.len > rdr.size - 5)
3359 goto return_bad_req;
3360 rdr.str[rdr.len] = '/';
3361 rdr.len++;
3362 }
3363
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003364 break;
3365 }
3366 case REDIRECT_TYPE_LOCATION:
3367 default:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003368 if (rdr.len + rule->rdr_len > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003369 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003370
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003371 /* add location */
3372 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3373 rdr.len += rule->rdr_len;
3374 break;
3375 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003376
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003377 if (rule->cookie_len) {
3378 memcpy(rdr.str + rdr.len, "\r\nSet-Cookie: ", 14);
3379 rdr.len += 14;
3380 memcpy(rdr.str + rdr.len, rule->cookie_str, rule->cookie_len);
3381 rdr.len += rule->cookie_len;
3382 memcpy(rdr.str + rdr.len, "\r\n", 2);
3383 rdr.len += 2;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003384 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003385
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003386 /* add end of headers and the keep-alive/close status.
3387 * We may choose to set keep-alive if the Location begins
3388 * with a slash, because the client will come back to the
3389 * same server.
3390 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003391 txn->status = rule->code;
3392 /* let's log the request time */
3393 s->logs.tv_request = now;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003394
3395 if (rule->rdr_len >= 1 && *rule->rdr_str == '/' &&
3396 (txn->flags & TX_REQ_XFER_LEN) &&
Willy Tarreau124d9912011-03-01 20:30:48 +01003397 !(txn->flags & TX_REQ_TE_CHNK) && !txn->req.body_len &&
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003398 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3399 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3400 /* keep-alive possible */
Willy Tarreau75661452010-01-10 10:35:01 +01003401 if (!(txn->flags & TX_REQ_VER_11)) {
Willy Tarreau88d349d2010-01-25 12:15:43 +01003402 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3403 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: keep-alive", 30);
3404 rdr.len += 30;
3405 } else {
3406 memcpy(rdr.str + rdr.len, "\r\nConnection: keep-alive", 24);
3407 rdr.len += 24;
3408 }
Willy Tarreau75661452010-01-10 10:35:01 +01003409 }
3410 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
3411 rdr.len += 4;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003412 buffer_write(req->prod->ob, rdr.str, rdr.len);
3413 /* "eat" the request */
3414 buffer_ignore(req, msg->sov - msg->som);
3415 msg->som = msg->sov;
3416 req->analysers = AN_REQ_HTTP_XFER_BODY;
Willy Tarreau9300fb22010-01-05 00:58:24 +01003417 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3418 txn->req.msg_state = HTTP_MSG_CLOSED;
3419 txn->rsp.msg_state = HTTP_MSG_DONE;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003420 break;
3421 } else {
3422 /* keep-alive not possible */
Willy Tarreau88d349d2010-01-25 12:15:43 +01003423 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3424 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3425 rdr.len += 29;
3426 } else {
3427 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
3428 rdr.len += 23;
3429 }
Willy Tarreau148d0992010-01-10 10:21:21 +01003430 stream_int_retnclose(req->prod, &rdr);
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003431 goto return_prx_cond;
3432 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003433 }
3434 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003435
Willy Tarreau2be39392010-01-03 17:24:51 +01003436 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3437 * If this happens, then the data will not come immediately, so we must
3438 * send all what we have without waiting. Note that due to the small gain
3439 * in waiting for the body of the request, it's easier to simply put the
3440 * BF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
3441 * itself once used.
3442 */
3443 req->flags |= BF_SEND_DONTWAIT;
3444
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003445 /* that's OK for us now, let's move on to next analysers */
3446 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003447
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003448 return_bad_req:
3449 /* We centralize bad requests processing here */
3450 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3451 /* we detected a parsing error. We want to archive this request
3452 * in the dedicated proxy area for later troubleshooting.
3453 */
Willy Tarreau078272e2010-12-12 12:46:33 +01003454 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003455 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003456
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003457 txn->req.msg_state = HTTP_MSG_ERROR;
3458 txn->status = 400;
3459 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003460
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003461 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003462 if (s->listener->counters)
3463 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003464
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003465 return_prx_cond:
3466 if (!(s->flags & SN_ERR_MASK))
3467 s->flags |= SN_ERR_PRXCOND;
3468 if (!(s->flags & SN_FINST_MASK))
3469 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003470
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003471 req->analysers = 0;
3472 req->analyse_exp = TICK_ETERNITY;
3473 return 0;
3474}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003475
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003476/* This function performs all the processing enabled for the current request.
3477 * It returns 1 if the processing can continue on next analysers, or zero if it
3478 * needs more data, encounters an error, or wants to immediately abort the
3479 * request. It relies on buffers flags, and updates s->req->analysers.
3480 */
3481int http_process_request(struct session *s, struct buffer *req, int an_bit)
3482{
3483 struct http_txn *txn = &s->txn;
3484 struct http_msg *msg = &txn->req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003485
Willy Tarreau655dce92009-11-08 13:10:58 +01003486 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003487 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003488 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003489 return 0;
3490 }
3491
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003492 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3493 now_ms, __FUNCTION__,
3494 s,
3495 req,
3496 req->rex, req->wex,
3497 req->flags,
3498 req->l,
3499 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003500
Willy Tarreau59234e92008-11-30 23:51:27 +01003501 /*
3502 * Right now, we know that we have processed the entire headers
3503 * and that unwanted requests have been filtered out. We can do
3504 * whatever we want with the remaining request. Also, now we
3505 * may have separate values for ->fe, ->be.
3506 */
Willy Tarreau06619262006-12-17 08:37:22 +01003507
Willy Tarreau59234e92008-11-30 23:51:27 +01003508 /*
3509 * If HTTP PROXY is set we simply get remote server address
3510 * parsing incoming request.
3511 */
3512 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau957c0a52011-03-03 17:42:23 +01003513 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 +01003514 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003515
Willy Tarreau59234e92008-11-30 23:51:27 +01003516 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003517 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003518 * Note that doing so might move headers in the request, but
3519 * the fields will stay coherent and the URI will not move.
3520 * This should only be performed in the backend.
3521 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003522 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003523 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
3524 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003525
Willy Tarreau59234e92008-11-30 23:51:27 +01003526 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003527 * 8: the appsession cookie was looked up very early in 1.2,
3528 * so let's do the same now.
3529 */
3530
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02003531 /* It needs to look into the URI unless persistence must be ignored */
3532 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003533 get_srv_from_appsession(s, msg->sol + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01003534 }
3535
3536 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01003537 * 9: add X-Forwarded-For if either the frontend or the backend
3538 * asks for it.
3539 */
3540 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02003541 struct hdr_ctx ctx = { .idx = 0 };
3542
3543 if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
3544 http_find_header2("X-Forwarded-For", 15, txn->req.sol, &txn->hdr_idx, &ctx)) {
3545 /* The header is set to be added only if none is present
3546 * and we found it, so don't do anything.
3547 */
3548 }
3549 else if (s->req->prod->addr.c.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003550 /* Add an X-Forwarded-For header unless the source IP is
3551 * in the 'except' network range.
3552 */
3553 if ((!s->fe->except_mask.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003554 (((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 +01003555 != s->fe->except_net.s_addr) &&
3556 (!s->be->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->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003558 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01003559 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01003560 unsigned char *pn;
Willy Tarreau957c0a52011-03-03 17:42:23 +01003561 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02003562
3563 /* Note: we rely on the backend to get the header name to be used for
3564 * x-forwarded-for, because the header is really meant for the backends.
3565 * However, if the backend did not specify any option, we have to rely
3566 * on the frontend's header name.
3567 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003568 if (s->be->fwdfor_hdr_len) {
3569 len = s->be->fwdfor_hdr_len;
3570 memcpy(trash, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02003571 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01003572 len = s->fe->fwdfor_hdr_len;
3573 memcpy(trash, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003574 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003575 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01003576
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003577 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003578 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01003579 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01003580 }
3581 }
Willy Tarreau957c0a52011-03-03 17:42:23 +01003582 else if (s->req->prod->addr.c.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003583 /* FIXME: for the sake of completeness, we should also support
3584 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003585 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003586 int len;
3587 char pn[INET6_ADDRSTRLEN];
3588 inet_ntop(AF_INET6,
Willy Tarreau957c0a52011-03-03 17:42:23 +01003589 (const void *)&((struct sockaddr_in6 *)(&s->req->prod->addr.c.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01003590 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003591
Willy Tarreau59234e92008-11-30 23:51:27 +01003592 /* Note: we rely on the backend to get the header name to be used for
3593 * x-forwarded-for, because the header is really meant for the backends.
3594 * However, if the backend did not specify any option, we have to rely
3595 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003596 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003597 if (s->be->fwdfor_hdr_len) {
3598 len = s->be->fwdfor_hdr_len;
3599 memcpy(trash, s->be->fwdfor_hdr_name, len);
3600 } else {
3601 len = s->fe->fwdfor_hdr_len;
3602 memcpy(trash, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003603 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003604 len += sprintf(trash + len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003605
Willy Tarreau59234e92008-11-30 23:51:27 +01003606 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003607 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01003608 goto return_bad_req;
3609 }
3610 }
3611
3612 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02003613 * 10: add X-Original-To if either the frontend or the backend
3614 * asks for it.
3615 */
3616 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
3617
3618 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreau957c0a52011-03-03 17:42:23 +01003619 if (s->req->prod->addr.c.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003620 /* Add an X-Original-To header unless the destination IP is
3621 * in the 'except' network range.
3622 */
3623 if (!(s->flags & SN_FRT_ADDR_SET))
3624 get_frt_addr(s);
3625
Willy Tarreau957c0a52011-03-03 17:42:23 +01003626 if (s->req->prod->addr.c.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02003627 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003628 (((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 +02003629 != s->fe->except_to.s_addr) &&
3630 (!s->be->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->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003632 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003633 int len;
3634 unsigned char *pn;
Willy Tarreau957c0a52011-03-03 17:42:23 +01003635 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02003636
3637 /* Note: we rely on the backend to get the header name to be used for
3638 * x-original-to, because the header is really meant for the backends.
3639 * However, if the backend did not specify any option, we have to rely
3640 * on the frontend's header name.
3641 */
3642 if (s->be->orgto_hdr_len) {
3643 len = s->be->orgto_hdr_len;
3644 memcpy(trash, s->be->orgto_hdr_name, len);
3645 } else {
3646 len = s->fe->orgto_hdr_len;
3647 memcpy(trash, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003648 }
Maik Broemme2850cb42009-04-17 18:53:21 +02003649 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
3650
3651 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003652 &txn->hdr_idx, trash, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003653 goto return_bad_req;
3654 }
3655 }
3656 }
3657
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003658 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. */
3659 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003660 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003661 unsigned int want_flags = 0;
3662
3663 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02003664 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
3665 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) &&
3666 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003667 want_flags |= TX_CON_CLO_SET;
3668 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02003669 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
3670 !((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) ||
3671 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003672 want_flags |= TX_CON_KAL_SET;
3673 }
3674
3675 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
3676 http_change_connection_header(txn, msg, req, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003677 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003678
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003679
Willy Tarreau522d6c02009-12-06 18:49:18 +01003680 /* If we have no server assigned yet and we're balancing on url_param
3681 * with a POST request, we may be interested in checking the body for
3682 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003683 */
3684 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
3685 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01003686 s->be->url_param_post_limit != 0 &&
Willy Tarreau61a21a32011-03-01 20:35:49 +01003687 (txn->flags & (TX_REQ_CNT_LEN|TX_REQ_TE_CHNK))) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003688 buffer_dont_connect(req);
3689 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003690 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003691
Willy Tarreaud98cf932009-12-27 22:54:55 +01003692 if (txn->flags & TX_REQ_XFER_LEN)
3693 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01003694
Willy Tarreau59234e92008-11-30 23:51:27 +01003695 /*************************************************************
3696 * OK, that's finished for the headers. We have done what we *
3697 * could. Let's switch to the DATA state. *
3698 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003699 req->analyse_exp = TICK_ETERNITY;
3700 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003701
Willy Tarreau59234e92008-11-30 23:51:27 +01003702 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003703 /* OK let's go on with the BODY now */
3704 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003705
Willy Tarreau59234e92008-11-30 23:51:27 +01003706 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003707 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003708 /* we detected a parsing error. We want to archive this request
3709 * in the dedicated proxy area for later troubleshooting.
3710 */
Willy Tarreau078272e2010-12-12 12:46:33 +01003711 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003712 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003713
Willy Tarreau59234e92008-11-30 23:51:27 +01003714 txn->req.msg_state = HTTP_MSG_ERROR;
3715 txn->status = 400;
3716 req->analysers = 0;
3717 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003718
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003719 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003720 if (s->listener->counters)
3721 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02003722
Willy Tarreau59234e92008-11-30 23:51:27 +01003723 if (!(s->flags & SN_ERR_MASK))
3724 s->flags |= SN_ERR_PRXCOND;
3725 if (!(s->flags & SN_FINST_MASK))
3726 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003727 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003728}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003729
Willy Tarreau60b85b02008-11-30 23:28:40 +01003730/* This function is an analyser which processes the HTTP tarpit. It always
3731 * returns zero, at the beginning because it prevents any other processing
3732 * from occurring, and at the end because it terminates the request.
3733 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003734int http_process_tarpit(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003735{
3736 struct http_txn *txn = &s->txn;
3737
3738 /* This connection is being tarpitted. The CLIENT side has
3739 * already set the connect expiration date to the right
3740 * timeout. We just have to check that the client is still
3741 * there and that the timeout has not expired.
3742 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003743 buffer_dont_connect(req);
Willy Tarreau60b85b02008-11-30 23:28:40 +01003744 if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 &&
3745 !tick_is_expired(req->analyse_exp, now_ms))
3746 return 0;
3747
3748 /* We will set the queue timer to the time spent, just for
3749 * logging purposes. We fake a 500 server error, so that the
3750 * attacker will not suspect his connection has been tarpitted.
3751 * It will not cause trouble to the logs because we can exclude
3752 * the tarpitted connections by filtering on the 'PT' status flags.
3753 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01003754 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
3755
3756 txn->status = 500;
3757 if (req->flags != BF_READ_ERROR)
3758 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_500));
3759
3760 req->analysers = 0;
3761 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003762
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003763 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003764 if (s->listener->counters)
3765 s->listener->counters->failed_req++;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003766
Willy Tarreau60b85b02008-11-30 23:28:40 +01003767 if (!(s->flags & SN_ERR_MASK))
3768 s->flags |= SN_ERR_PRXCOND;
3769 if (!(s->flags & SN_FINST_MASK))
3770 s->flags |= SN_FINST_T;
3771 return 0;
3772}
3773
Willy Tarreaud34af782008-11-30 23:36:37 +01003774/* This function is an analyser which processes the HTTP request body. It looks
3775 * for parameters to be used for the load balancing algorithm (url_param). It
3776 * must only be called after the standard HTTP request processing has occurred,
3777 * because it expects the request to be parsed. It returns zero if it needs to
3778 * read more data, or 1 once it has completed its analysis.
3779 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003780int http_process_request_body(struct session *s, struct buffer *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01003781{
Willy Tarreau522d6c02009-12-06 18:49:18 +01003782 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01003783 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01003784 long long limit = s->be->url_param_post_limit;
Willy Tarreaud34af782008-11-30 23:36:37 +01003785
3786 /* We have to parse the HTTP request body to find any required data.
3787 * "balance url_param check_post" should have been the only way to get
3788 * into this. We were brought here after HTTP header analysis, so all
3789 * related structures are ready.
3790 */
3791
Willy Tarreau522d6c02009-12-06 18:49:18 +01003792 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
3793 goto missing_data;
3794
3795 if (msg->msg_state < HTTP_MSG_100_SENT) {
3796 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3797 * send an HTTP/1.1 100 Continue intermediate response.
3798 */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01003799 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003800 struct hdr_ctx ctx;
3801 ctx.idx = 0;
3802 /* Expect is allowed in 1.1, look for it */
3803 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3804 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3805 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3806 }
3807 }
3808 msg->msg_state = HTTP_MSG_100_SENT;
3809 }
3810
3811 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01003812 /* we have msg->col and msg->sov which both point to the first
3813 * byte of message body. msg->som still points to the beginning
3814 * of the message. We must save the body in req->lr because it
3815 * survives buffer re-alignments.
3816 */
3817 req->lr = req->data + msg->sov;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003818 if (txn->flags & TX_REQ_TE_CHNK)
3819 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
3820 else
3821 msg->msg_state = HTTP_MSG_DATA;
3822 }
3823
3824 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01003825 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01003826 * set ->sov and ->lr to point to the body and switch to DATA or
3827 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01003828 */
3829 int ret = http_parse_chunk_size(req, msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01003830
Willy Tarreau115acb92009-12-26 13:56:06 +01003831 if (!ret)
3832 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003833 else if (ret < 0) {
3834 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003835 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003836 }
Willy Tarreaud34af782008-11-30 23:36:37 +01003837 }
3838
Willy Tarreaud98cf932009-12-27 22:54:55 +01003839 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreau522d6c02009-12-06 18:49:18 +01003840 * We have the first non-header byte in msg->col, which is either the
3841 * beginning of the chunk size or of the data. The first data byte is in
3842 * msg->sov, which is equal to msg->col when not using transfer-encoding.
3843 * We're waiting for at least <url_param_post_limit> bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01003844 */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003845
Willy Tarreau124d9912011-03-01 20:30:48 +01003846 if (msg->body_len < limit)
3847 limit = msg->body_len;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003848
Willy Tarreau7c96f672009-12-27 22:47:25 +01003849 if (req->l - (msg->sov - msg->som) >= limit) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003850 goto http_end;
3851
3852 missing_data:
3853 /* we get here if we need to wait for more data */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003854 if (req->flags & BF_FULL) {
3855 session_inc_http_err_ctr(s);
Willy Tarreau115acb92009-12-26 13:56:06 +01003856 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003857 }
Willy Tarreau115acb92009-12-26 13:56:06 +01003858
Willy Tarreau522d6c02009-12-06 18:49:18 +01003859 if ((req->flags & BF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
3860 txn->status = 408;
3861 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02003862
3863 if (!(s->flags & SN_ERR_MASK))
3864 s->flags |= SN_ERR_CLITO;
3865 if (!(s->flags & SN_FINST_MASK))
3866 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003867 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01003868 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003869
3870 /* we get here if we need to wait for more data */
3871 if (!(req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01003872 /* Not enough data. We'll re-use the http-request
3873 * timeout here. Ideally, we should set the timeout
3874 * relative to the accept() date. We just set the
3875 * request timeout once at the beginning of the
3876 * request.
3877 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003878 buffer_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01003879 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02003880 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01003881 return 0;
3882 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003883
3884 http_end:
3885 /* The situation will not evolve, so let's give up on the analysis. */
3886 s->logs.tv_request = now; /* update the request timer to reflect full request */
3887 req->analysers &= ~an_bit;
3888 req->analyse_exp = TICK_ETERNITY;
3889 return 1;
3890
3891 return_bad_req: /* let's centralize all bad requests */
3892 txn->req.msg_state = HTTP_MSG_ERROR;
3893 txn->status = 400;
3894 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
3895
Willy Tarreau79ebac62010-06-07 13:47:49 +02003896 if (!(s->flags & SN_ERR_MASK))
3897 s->flags |= SN_ERR_PRXCOND;
3898 if (!(s->flags & SN_FINST_MASK))
3899 s->flags |= SN_FINST_R;
3900
Willy Tarreau522d6c02009-12-06 18:49:18 +01003901 return_err_msg:
3902 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003903 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003904 if (s->listener->counters)
3905 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003906 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01003907}
3908
Willy Tarreau610ecce2010-01-04 21:15:02 +01003909/* Terminate current transaction and prepare a new one. This is very tricky
3910 * right now but it works.
3911 */
3912void http_end_txn_clean_session(struct session *s)
3913{
3914 /* FIXME: We need a more portable way of releasing a backend's and a
3915 * server's connections. We need a safer way to reinitialize buffer
3916 * flags. We also need a more accurate method for computing per-request
3917 * data.
3918 */
3919 http_silent_debug(__LINE__, s);
3920
3921 s->req->cons->flags |= SI_FL_NOLINGER;
3922 s->req->cons->shutr(s->req->cons);
3923 s->req->cons->shutw(s->req->cons);
3924
3925 http_silent_debug(__LINE__, s);
3926
3927 if (s->flags & SN_BE_ASSIGNED)
3928 s->be->beconn--;
3929
3930 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
3931 session_process_counters(s);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003932 session_stop_backend_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003933
3934 if (s->txn.status) {
3935 int n;
3936
3937 n = s->txn.status / 100;
3938 if (n < 1 || n > 5)
3939 n = 0;
3940
3941 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003942 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003943
Willy Tarreau24657792010-02-26 10:30:28 +01003944 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01003945 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003946 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003947 }
3948
3949 /* don't count other requests' data */
3950 s->logs.bytes_in -= s->req->l - s->req->send_max;
3951 s->logs.bytes_out -= s->rep->l - s->rep->send_max;
3952
3953 /* let's do a final log if we need it */
3954 if (s->logs.logwait &&
3955 !(s->flags & SN_MONITOR) &&
3956 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
3957 s->do_log(s);
3958 }
3959
3960 s->logs.accept_date = date; /* user-visible date for logging */
3961 s->logs.tv_accept = now; /* corrected date for internal use */
3962 tv_zero(&s->logs.tv_request);
3963 s->logs.t_queue = -1;
3964 s->logs.t_connect = -1;
3965 s->logs.t_data = -1;
3966 s->logs.t_close = 0;
3967 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
3968 s->logs.srv_queue_size = 0; /* we will get this number soon */
3969
3970 s->logs.bytes_in = s->req->total = s->req->l - s->req->send_max;
3971 s->logs.bytes_out = s->rep->total = s->rep->l - s->rep->send_max;
3972
3973 if (s->pend_pos)
3974 pendconn_free(s->pend_pos);
3975
Willy Tarreau827aee92011-03-10 16:55:02 +01003976 if (target_srv(&s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003977 if (s->flags & SN_CURR_SESS) {
3978 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01003979 target_srv(&s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003980 }
Willy Tarreau827aee92011-03-10 16:55:02 +01003981 if (may_dequeue_tasks(target_srv(&s->target), s->be))
3982 process_srv_queue(target_srv(&s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01003983 }
3984
3985 if (unlikely(s->srv_conn))
3986 sess_change_server(s, NULL);
Willy Tarreau9e000c62011-03-10 14:03:36 +01003987 clear_target(&s->target);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003988
3989 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
3990 s->req->cons->fd = -1; /* just to help with debugging */
3991 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02003992 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01003993 s->req->cons->err_loc = NULL;
3994 s->req->cons->exp = TICK_ETERNITY;
3995 s->req->cons->flags = SI_FL_NONE;
Willy Tarreau96e31212011-05-30 18:10:30 +02003996 s->req->flags &= ~(BF_SHUTW|BF_SHUTW_NOW|BF_AUTO_CONNECT|BF_WRITE_ERROR|BF_STREAMER|BF_STREAMER_FAST|BF_NEVER_WAIT);
3997 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 +02003998 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 +01003999 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE);
4000 s->txn.meth = 0;
4001 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01004002 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreauee55dc02010-06-01 10:56:34 +02004003 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004004 s->req->cons->flags |= SI_FL_INDEP_STR;
4005
Willy Tarreau96e31212011-05-30 18:10:30 +02004006 if (s->fe->options2 & PR_O2_NODELAY) {
4007 s->req->flags |= BF_NEVER_WAIT;
4008 s->rep->flags |= BF_NEVER_WAIT;
4009 }
4010
Willy Tarreau610ecce2010-01-04 21:15:02 +01004011 /* if the request buffer is not empty, it means we're
4012 * about to process another request, so send pending
4013 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004014 * Just don't do this if the buffer is close to be full,
4015 * because the request will wait for it to flush a little
4016 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004017 */
Willy Tarreau065e8332010-01-08 00:30:20 +01004018 if (s->req->l > s->req->send_max) {
4019 if (s->rep->send_max &&
4020 !(s->rep->flags & BF_FULL) &&
Willy Tarreau065e8332010-01-08 00:30:20 +01004021 s->rep->r <= s->rep->data + s->rep->size - global.tune.maxrewrite)
4022 s->rep->flags |= BF_EXPECT_MORE;
4023 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004024
4025 /* we're removing the analysers, we MUST re-enable events detection */
4026 buffer_auto_read(s->req);
4027 buffer_auto_close(s->req);
4028 buffer_auto_read(s->rep);
4029 buffer_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004030
4031 /* make ->lr point to the first non-forwarded byte */
4032 s->req->lr = s->req->w + s->req->send_max;
4033 if (s->req->lr >= s->req->data + s->req->size)
4034 s->req->lr -= s->req->size;
4035 s->rep->lr = s->rep->w + s->rep->send_max;
4036 if (s->rep->lr >= s->rep->data + s->rep->size)
4037 s->rep->lr -= s->req->size;
4038
Willy Tarreau342b11c2010-11-24 16:22:09 +01004039 s->req->analysers = s->listener->analysers;
4040 s->req->analysers &= ~AN_REQ_DECODE_PROXY;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004041 s->rep->analysers = 0;
4042
4043 http_silent_debug(__LINE__, s);
4044}
4045
4046
4047/* This function updates the request state machine according to the response
4048 * state machine and buffer flags. It returns 1 if it changes anything (flag
4049 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4050 * it is only used to find when a request/response couple is complete. Both
4051 * this function and its equivalent should loop until both return zero. It
4052 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4053 */
4054int http_sync_req_state(struct session *s)
4055{
4056 struct buffer *buf = s->req;
4057 struct http_txn *txn = &s->txn;
4058 unsigned int old_flags = buf->flags;
4059 unsigned int old_state = txn->req.msg_state;
4060
4061 http_silent_debug(__LINE__, s);
4062 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
4063 return 0;
4064
4065 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004066 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004067 * We can shut the read side unless we want to abort_on_close,
4068 * or we have a POST request. The issue with POST requests is
4069 * that some browsers still send a CRLF after the request, and
4070 * this CRLF must be read so that it does not remain in the kernel
4071 * buffers, otherwise a close could cause an RST on some systems
4072 * (eg: Linux).
Willy Tarreau90deb182010-01-07 00:20:41 +01004073 */
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004074 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Willy Tarreau90deb182010-01-07 00:20:41 +01004075 buffer_dont_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004076
4077 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4078 goto wait_other_side;
4079
4080 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4081 /* The server has not finished to respond, so we
4082 * don't want to move in order not to upset it.
4083 */
4084 goto wait_other_side;
4085 }
4086
4087 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4088 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01004089 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004090 txn->req.msg_state = HTTP_MSG_TUNNEL;
4091 goto wait_other_side;
4092 }
4093
4094 /* When we get here, it means that both the request and the
4095 * response have finished receiving. Depending on the connection
4096 * mode, we'll have to wait for the last bytes to leave in either
4097 * direction, and sometimes for a close to be effective.
4098 */
4099
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004100 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4101 /* Server-close mode : queue a connection close to the server */
4102 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW)))
Willy Tarreau610ecce2010-01-04 21:15:02 +01004103 buffer_shutw_now(buf);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004104 }
4105 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4106 /* Option forceclose is set, or either side wants to close,
4107 * let's enforce it now that we're not expecting any new
4108 * data to come. The caller knows the session is complete
4109 * once both states are CLOSED.
4110 */
4111 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004112 buffer_shutr_now(buf);
4113 buffer_shutw_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004114 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004115 }
4116 else {
4117 /* The last possible modes are keep-alive and tunnel. Since tunnel
4118 * mode does not set the body analyser, we can't reach this place
4119 * in tunnel mode, so we're left with keep-alive only.
4120 * This mode is currently not implemented, we switch to tunnel mode.
4121 */
4122 buffer_auto_read(buf);
4123 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004124 }
4125
4126 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
4127 /* if we've just closed an output, let's switch */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004128 buf->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
4129
Willy Tarreau610ecce2010-01-04 21:15:02 +01004130 if (!(buf->flags & BF_OUT_EMPTY)) {
4131 txn->req.msg_state = HTTP_MSG_CLOSING;
4132 goto http_msg_closing;
4133 }
4134 else {
4135 txn->req.msg_state = HTTP_MSG_CLOSED;
4136 goto http_msg_closed;
4137 }
4138 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004139 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004140 }
4141
4142 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4143 http_msg_closing:
4144 /* nothing else to forward, just waiting for the output buffer
4145 * to be empty and for the shutw_now to take effect.
4146 */
4147 if (buf->flags & BF_OUT_EMPTY) {
4148 txn->req.msg_state = HTTP_MSG_CLOSED;
4149 goto http_msg_closed;
4150 }
4151 else if (buf->flags & BF_SHUTW) {
4152 txn->req.msg_state = HTTP_MSG_ERROR;
4153 goto wait_other_side;
4154 }
4155 }
4156
4157 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4158 http_msg_closed:
4159 goto wait_other_side;
4160 }
4161
4162 wait_other_side:
4163 http_silent_debug(__LINE__, s);
4164 return txn->req.msg_state != old_state || buf->flags != old_flags;
4165}
4166
4167
4168/* This function updates the response state machine according to the request
4169 * state machine and buffer flags. It returns 1 if it changes anything (flag
4170 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4171 * it is only used to find when a request/response couple is complete. Both
4172 * this function and its equivalent should loop until both return zero. It
4173 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4174 */
4175int http_sync_res_state(struct session *s)
4176{
4177 struct buffer *buf = s->rep;
4178 struct http_txn *txn = &s->txn;
4179 unsigned int old_flags = buf->flags;
4180 unsigned int old_state = txn->rsp.msg_state;
4181
4182 http_silent_debug(__LINE__, s);
4183 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
4184 return 0;
4185
4186 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4187 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004188 * still monitor the server connection for a possible close
4189 * while the request is being uploaded, so we don't disable
4190 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004191 */
Willy Tarreau90deb182010-01-07 00:20:41 +01004192 /* buffer_dont_read(buf); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004193
4194 if (txn->req.msg_state == HTTP_MSG_ERROR)
4195 goto wait_other_side;
4196
4197 if (txn->req.msg_state < HTTP_MSG_DONE) {
4198 /* The client seems to still be sending data, probably
4199 * because we got an error response during an upload.
4200 * We have the choice of either breaking the connection
4201 * or letting it pass through. Let's do the later.
4202 */
4203 goto wait_other_side;
4204 }
4205
4206 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4207 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01004208 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004209 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
4210 goto wait_other_side;
4211 }
4212
4213 /* When we get here, it means that both the request and the
4214 * response have finished receiving. Depending on the connection
4215 * mode, we'll have to wait for the last bytes to leave in either
4216 * direction, and sometimes for a close to be effective.
4217 */
4218
4219 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4220 /* Server-close mode : shut read and wait for the request
4221 * side to close its output buffer. The caller will detect
4222 * when we're in DONE and the other is in CLOSED and will
4223 * catch that for the final cleanup.
4224 */
4225 if (!(buf->flags & (BF_SHUTR|BF_SHUTR_NOW)))
4226 buffer_shutr_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004227 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004228 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4229 /* Option forceclose is set, or either side wants to close,
4230 * let's enforce it now that we're not expecting any new
4231 * data to come. The caller knows the session is complete
4232 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004233 */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004234 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
4235 buffer_shutr_now(buf);
4236 buffer_shutw_now(buf);
4237 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004238 }
4239 else {
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004240 /* The last possible modes are keep-alive and tunnel. Since tunnel
4241 * mode does not set the body analyser, we can't reach this place
4242 * in tunnel mode, so we're left with keep-alive only.
4243 * This mode is currently not implemented, we switch to tunnel mode.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004244 */
Willy Tarreau90deb182010-01-07 00:20:41 +01004245 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004246 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004247 }
4248
4249 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
4250 /* if we've just closed an output, let's switch */
4251 if (!(buf->flags & BF_OUT_EMPTY)) {
4252 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4253 goto http_msg_closing;
4254 }
4255 else {
4256 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4257 goto http_msg_closed;
4258 }
4259 }
4260 goto wait_other_side;
4261 }
4262
4263 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4264 http_msg_closing:
4265 /* nothing else to forward, just waiting for the output buffer
4266 * to be empty and for the shutw_now to take effect.
4267 */
4268 if (buf->flags & BF_OUT_EMPTY) {
4269 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4270 goto http_msg_closed;
4271 }
4272 else if (buf->flags & BF_SHUTW) {
4273 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004274 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004275 if (target_srv(&s->target))
4276 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004277 goto wait_other_side;
4278 }
4279 }
4280
4281 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4282 http_msg_closed:
4283 /* drop any pending data */
4284 buffer_ignore(buf, buf->l - buf->send_max);
4285 buffer_auto_close(buf);
Willy Tarreau90deb182010-01-07 00:20:41 +01004286 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004287 goto wait_other_side;
4288 }
4289
4290 wait_other_side:
4291 http_silent_debug(__LINE__, s);
4292 return txn->rsp.msg_state != old_state || buf->flags != old_flags;
4293}
4294
4295
4296/* Resync the request and response state machines. Return 1 if either state
4297 * changes.
4298 */
4299int http_resync_states(struct session *s)
4300{
4301 struct http_txn *txn = &s->txn;
4302 int old_req_state = txn->req.msg_state;
4303 int old_res_state = txn->rsp.msg_state;
4304
4305 http_silent_debug(__LINE__, s);
4306 http_sync_req_state(s);
4307 while (1) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004308 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004309 if (!http_sync_res_state(s))
4310 break;
Willy Tarreau90deb182010-01-07 00:20:41 +01004311 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004312 if (!http_sync_req_state(s))
4313 break;
4314 }
4315 http_silent_debug(__LINE__, s);
4316 /* OK, both state machines agree on a compatible state.
4317 * There are a few cases we're interested in :
4318 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
4319 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4320 * directions, so let's simply disable both analysers.
4321 * - HTTP_MSG_CLOSED on the response only means we must abort the
4322 * request.
4323 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
4324 * with server-close mode means we've completed one request and we
4325 * must re-initialize the server connection.
4326 */
4327
4328 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4329 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
4330 (txn->req.msg_state == HTTP_MSG_CLOSED &&
4331 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
4332 s->req->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004333 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004334 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004335 s->rep->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004336 buffer_auto_close(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01004337 buffer_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004338 }
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004339 else if (txn->rsp.msg_state == HTTP_MSG_CLOSED ||
4340 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau4fe41902010-06-07 22:27:41 +02004341 txn->req.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004342 (s->rep->flags & BF_SHUTW)) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004343 s->rep->analysers = 0;
4344 buffer_auto_close(s->rep);
4345 buffer_auto_read(s->rep);
4346 s->req->analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004347 buffer_abort(s->req);
4348 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004349 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004350 buffer_ignore(s->req, s->req->l - s->req->send_max);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004351 }
4352 else if (txn->req.msg_state == HTTP_MSG_CLOSED &&
4353 txn->rsp.msg_state == HTTP_MSG_DONE &&
4354 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)) {
4355 /* server-close: terminate this server connection and
4356 * reinitialize a fresh-new transaction.
4357 */
4358 http_end_txn_clean_session(s);
4359 }
4360
4361 http_silent_debug(__LINE__, s);
4362 return txn->req.msg_state != old_req_state ||
4363 txn->rsp.msg_state != old_res_state;
4364}
4365
Willy Tarreaud98cf932009-12-27 22:54:55 +01004366/* This function is an analyser which forwards request body (including chunk
4367 * sizes if any). It is called as soon as we must forward, even if we forward
4368 * zero byte. The only situation where it must not be called is when we're in
4369 * tunnel mode and we want to forward till the close. It's used both to forward
4370 * remaining data and to resync after end of body. It expects the msg_state to
4371 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4372 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01004373 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreaud98cf932009-12-27 22:54:55 +01004374 * bytes of pending data + the headers if not already done (between som and sov).
4375 * It eventually adjusts som to match sov after the data in between have been sent.
4376 */
4377int http_request_forward_body(struct session *s, struct buffer *req, int an_bit)
4378{
4379 struct http_txn *txn = &s->txn;
4380 struct http_msg *msg = &s->txn.req;
4381
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004382 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4383 return 0;
4384
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01004385 if ((req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
4386 ((req->flags & BF_SHUTW) && (req->to_forward || req->send_max))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02004387 /* Output closed while we were sending data. We must abort and
4388 * wake the other side up.
4389 */
4390 msg->msg_state = HTTP_MSG_ERROR;
4391 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004392 return 1;
4393 }
4394
Willy Tarreau4fe41902010-06-07 22:27:41 +02004395 /* in most states, we should abort in case of early close */
4396 buffer_auto_close(req);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004397
4398 /* Note that we don't have to send 100-continue back because we don't
4399 * need the data to complete our job, and it's up to the server to
4400 * decide whether to return 100, 417 or anything else in return of
4401 * an "Expect: 100-continue" header.
4402 */
4403
4404 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4405 /* we have msg->col and msg->sov which both point to the first
4406 * byte of message body. msg->som still points to the beginning
4407 * of the message. We must save the body in req->lr because it
4408 * survives buffer re-alignments.
4409 */
4410 req->lr = req->data + msg->sov;
4411 if (txn->flags & TX_REQ_TE_CHNK)
4412 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4413 else {
4414 msg->msg_state = HTTP_MSG_DATA;
4415 }
4416 }
4417
Willy Tarreaud98cf932009-12-27 22:54:55 +01004418 while (1) {
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004419 int bytes;
4420
Willy Tarreau610ecce2010-01-04 21:15:02 +01004421 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01004422 /* we may have some data pending */
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004423 bytes = msg->sov - msg->som;
4424 if (msg->chunk_len || bytes) {
Willy Tarreau638cd022010-01-03 07:42:04 +01004425 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004426 if (likely(bytes < 0)) /* sov may have wrapped at the end */
4427 bytes += req->size;
4428 msg->chunk_len += (unsigned int)bytes;
4429 msg->chunk_len -= buffer_forward(req, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01004430 }
Willy Tarreau5523b322009-12-29 12:05:52 +01004431
Willy Tarreaucaabe412010-01-03 23:08:28 +01004432 if (msg->msg_state == HTTP_MSG_DATA) {
4433 /* must still forward */
4434 if (req->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004435 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004436
4437 /* nothing left to forward */
4438 if (txn->flags & TX_REQ_TE_CHNK)
4439 msg->msg_state = HTTP_MSG_DATA_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004440 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01004441 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004442 }
4443 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004444 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01004445 * set ->sov and ->lr to point to the body and switch to DATA or
4446 * TRAILERS state.
4447 */
4448 int ret = http_parse_chunk_size(req, msg);
4449
4450 if (!ret)
4451 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004452 else if (ret < 0) {
4453 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004454 if (msg->err_pos >= 0)
4455 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004456 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004457 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004458 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004459 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004460 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
4461 /* we want the CRLF after the data */
4462 int ret;
4463
Willy Tarreaud3347ee2010-01-04 02:02:25 +01004464 req->lr = req->w + req->send_max;
4465 if (req->lr >= req->data + req->size)
4466 req->lr -= req->size;
4467
Willy Tarreaud98cf932009-12-27 22:54:55 +01004468 ret = http_skip_chunk_crlf(req, msg);
4469
4470 if (ret == 0)
4471 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004472 else if (ret < 0) {
4473 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004474 if (msg->err_pos >= 0)
4475 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_DATA_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004476 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004477 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004478 /* we're in MSG_CHUNK_SIZE now */
4479 }
4480 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
4481 int ret = http_forward_trailers(req, msg);
4482
4483 if (ret == 0)
4484 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004485 else if (ret < 0) {
4486 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004487 if (msg->err_pos >= 0)
4488 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004489 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004490 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004491 /* we're in HTTP_MSG_DONE now */
4492 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004493 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004494 int old_state = msg->msg_state;
4495
Willy Tarreau610ecce2010-01-04 21:15:02 +01004496 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02004497 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004498 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
4499 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
4500 buffer_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004501 if (http_resync_states(s)) {
4502 /* some state changes occurred, maybe the analyser
4503 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01004504 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004505 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4506 if (req->flags & BF_SHUTW) {
4507 /* request errors are most likely due to
4508 * the server aborting the transfer.
4509 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004510 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004511 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004512 if (msg->err_pos >= 0)
4513 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004514 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004515 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004516 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004517 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004518
4519 /* If "option abortonclose" is set on the backend, we
4520 * want to monitor the client's connection and forward
4521 * any shutdown notification to the server, which will
4522 * decide whether to close or to go on processing the
4523 * request.
4524 */
4525 if (s->be->options & PR_O_ABRT_CLOSE) {
4526 buffer_auto_read(req);
4527 buffer_auto_close(req);
4528 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004529 else if (s->txn.meth == HTTP_METH_POST) {
4530 /* POST requests may require to read extra CRLF
4531 * sent by broken browsers and which could cause
4532 * an RST to be sent upon close on some systems
4533 * (eg: Linux).
4534 */
4535 buffer_auto_read(req);
4536 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004537
Willy Tarreau610ecce2010-01-04 21:15:02 +01004538 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004539 }
4540 }
4541
Willy Tarreaud98cf932009-12-27 22:54:55 +01004542 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004543 /* stop waiting for data if the input is closed before the end */
Willy Tarreau79ebac62010-06-07 13:47:49 +02004544 if (req->flags & BF_SHUTR) {
4545 if (!(s->flags & SN_ERR_MASK))
4546 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004547 if (!(s->flags & SN_FINST_MASK)) {
4548 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4549 s->flags |= SN_FINST_H;
4550 else
4551 s->flags |= SN_FINST_D;
4552 }
4553
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004554 s->fe->fe_counters.cli_aborts++;
4555 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004556 if (target_srv(&s->target))
4557 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004558
4559 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004560 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004561
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004562 /* waiting for the last bits to leave the buffer */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004563 if (req->flags & BF_SHUTW)
4564 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004565
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004566 /* When TE: chunked is used, we need to get there again to parse remaining
4567 * chunks even if the client has closed, so we don't want to set BF_DONTCLOSE.
4568 */
4569 if (txn->flags & TX_REQ_TE_CHNK)
4570 buffer_dont_close(req);
4571
Willy Tarreau5c620922011-05-11 19:56:11 +02004572 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau07293032011-05-30 18:29:28 +02004573 * what we did. So we always set the BF_EXPECT_MORE flag so that the
4574 * system knows it must not set a PUSH on this first part. Interactive
4575 * modes are already handled by the stream sock layer.
Willy Tarreau5c620922011-05-11 19:56:11 +02004576 */
Willy Tarreau07293032011-05-30 18:29:28 +02004577 req->flags |= BF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02004578
Willy Tarreau610ecce2010-01-04 21:15:02 +01004579 http_silent_debug(__LINE__, s);
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004580 return 0;
4581
Willy Tarreaud98cf932009-12-27 22:54:55 +01004582 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004583 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004584 if (s->listener->counters)
4585 s->listener->counters->failed_req++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004586 return_bad_req_stats_ok:
4587 txn->req.msg_state = HTTP_MSG_ERROR;
4588 if (txn->status) {
4589 /* Note: we don't send any error if some data were already sent */
4590 stream_int_retnclose(req->prod, NULL);
4591 } else {
4592 txn->status = 400;
4593 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
4594 }
4595 req->analysers = 0;
4596 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004597
4598 if (!(s->flags & SN_ERR_MASK))
4599 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004600 if (!(s->flags & SN_FINST_MASK)) {
4601 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4602 s->flags |= SN_FINST_H;
4603 else
4604 s->flags |= SN_FINST_D;
4605 }
4606 return 0;
4607
4608 aborted_xfer:
4609 txn->req.msg_state = HTTP_MSG_ERROR;
4610 if (txn->status) {
4611 /* Note: we don't send any error if some data were already sent */
4612 stream_int_retnclose(req->prod, NULL);
4613 } else {
4614 txn->status = 502;
4615 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_502));
4616 }
4617 req->analysers = 0;
4618 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
4619
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004620 s->fe->fe_counters.srv_aborts++;
4621 s->be->be_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004622 if (target_srv(&s->target))
4623 target_srv(&s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004624
4625 if (!(s->flags & SN_ERR_MASK))
4626 s->flags |= SN_ERR_SRVCL;
4627 if (!(s->flags & SN_FINST_MASK)) {
4628 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4629 s->flags |= SN_FINST_H;
4630 else
4631 s->flags |= SN_FINST_D;
4632 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004633 return 0;
4634}
4635
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004636/* This stream analyser waits for a complete HTTP response. It returns 1 if the
4637 * processing can continue on next analysers, or zero if it either needs more
4638 * data or wants to immediately abort the response (eg: timeout, error, ...). It
4639 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
4640 * when it has nothing left to do, and may remove any analyser when it wants to
4641 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004642 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004643int http_wait_for_response(struct session *s, struct buffer *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004644{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004645 struct http_txn *txn = &s->txn;
4646 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004647 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004648 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004649 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004650 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004651
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004652 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 +02004653 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004654 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004655 rep,
4656 rep->rex, rep->wex,
4657 rep->flags,
4658 rep->l,
4659 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02004660
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004661 /*
4662 * Now parse the partial (or complete) lines.
4663 * We will check the response syntax, and also join multi-line
4664 * headers. An index of all the lines will be elaborated while
4665 * parsing.
4666 *
4667 * For the parsing, we use a 28 states FSM.
4668 *
4669 * Here is the information we currently have :
Willy Tarreau83e3af02009-12-28 17:39:57 +01004670 * rep->data + msg->som = beginning of response
4671 * rep->data + msg->eoh = end of processed headers / start of current one
4672 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004673 * rep->lr = first non-visited byte
4674 * rep->r = end of data
Willy Tarreau962c3f42010-01-10 00:15:35 +01004675 * Once we reach MSG_BODY, rep->sol = rep->data + msg->som
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004676 */
4677
Willy Tarreau83e3af02009-12-28 17:39:57 +01004678 /* There's a protected area at the end of the buffer for rewriting
4679 * purposes. We don't want to start to parse the request if the
4680 * protected area is affected, because we may have to move processed
4681 * data later, which is much more complicated.
4682 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004683 if (rep->l && msg->msg_state < HTTP_MSG_ERROR) {
4684 if (unlikely((rep->flags & BF_FULL) ||
4685 rep->r < rep->lr ||
4686 rep->r > rep->data + rep->size - global.tune.maxrewrite)) {
4687 if (rep->send_max) {
4688 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau64648412010-03-05 10:41:54 +01004689 if (rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
4690 goto abort_response;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004691 buffer_dont_close(rep);
4692 rep->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
4693 return 0;
4694 }
4695 if (rep->l <= rep->size - global.tune.maxrewrite)
4696 http_buffer_heavy_realign(rep, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004697 }
4698
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004699 if (likely(rep->lr < rep->r))
4700 http_msg_analyzer(rep, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004701 }
4702
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004703 /* 1: we might have to print this header in debug mode */
4704 if (unlikely((global.mode & MODE_DEBUG) &&
4705 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreauc3bfeeb2010-04-16 09:14:45 +02004706 msg->sol &&
Willy Tarreau655dce92009-11-08 13:10:58 +01004707 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004708 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004709
Willy Tarreau663308b2010-06-07 14:06:08 +02004710 sol = rep->data + msg->som;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02004711 eol = sol + msg->sl.st.l;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004712 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004713
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004714 sol += hdr_idx_first_pos(&txn->hdr_idx);
4715 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004716
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004717 while (cur_idx) {
4718 eol = sol + txn->hdr_idx.v[cur_idx].len;
4719 debug_hdr("srvhdr", s, sol, eol);
4720 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
4721 cur_idx = txn->hdr_idx.v[cur_idx].next;
4722 }
4723 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004724
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004725 /*
4726 * Now we quickly check if we have found a full valid response.
4727 * If not so, we check the FD and buffer states before leaving.
4728 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01004729 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004730 * responses are checked first.
4731 *
4732 * Depending on whether the client is still there or not, we
4733 * may send an error response back or not. Note that normally
4734 * we should only check for HTTP status there, and check I/O
4735 * errors somewhere else.
4736 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004737
Willy Tarreau655dce92009-11-08 13:10:58 +01004738 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004739 /* Invalid response */
4740 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4741 /* we detected a parsing error. We want to archive this response
4742 * in the dedicated proxy area for later troubleshooting.
4743 */
4744 hdr_response_bad:
4745 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004746 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004747
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004748 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004749 if (target_srv(&s->target)) {
4750 target_srv(&s->target)->counters.failed_resp++;
4751 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004752 }
Willy Tarreau64648412010-03-05 10:41:54 +01004753 abort_response:
Willy Tarreau90deb182010-01-07 00:20:41 +01004754 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004755 rep->analysers = 0;
4756 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004757 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004758 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004759 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
4760
4761 if (!(s->flags & SN_ERR_MASK))
4762 s->flags |= SN_ERR_PRXCOND;
4763 if (!(s->flags & SN_FINST_MASK))
4764 s->flags |= SN_FINST_H;
4765
4766 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004767 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004768
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004769 /* too large response does not fit in buffer. */
4770 else if (rep->flags & BF_FULL) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02004771 if (msg->err_pos < 0)
4772 msg->err_pos = rep->l;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004773 goto hdr_response_bad;
4774 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004775
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004776 /* read error */
4777 else if (rep->flags & BF_READ_ERROR) {
4778 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004779 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02004780
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004781 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004782 if (target_srv(&s->target)) {
4783 target_srv(&s->target)->counters.failed_resp++;
4784 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004785 }
Willy Tarreau461f6622008-08-15 23:43:19 +02004786
Willy Tarreau90deb182010-01-07 00:20:41 +01004787 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004788 rep->analysers = 0;
4789 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004790 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004791 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004792 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02004793
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004794 if (!(s->flags & SN_ERR_MASK))
4795 s->flags |= SN_ERR_SRVCL;
4796 if (!(s->flags & SN_FINST_MASK))
4797 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02004798 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004799 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004800
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004801 /* read timeout : return a 504 to the client. */
4802 else if (rep->flags & BF_READ_TIMEOUT) {
4803 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004804 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004805
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004806 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004807 if (target_srv(&s->target)) {
4808 target_srv(&s->target)->counters.failed_resp++;
4809 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004810 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004811
Willy Tarreau90deb182010-01-07 00:20:41 +01004812 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004813 rep->analysers = 0;
4814 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004815 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004816 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004817 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02004818
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004819 if (!(s->flags & SN_ERR_MASK))
4820 s->flags |= SN_ERR_SRVTO;
4821 if (!(s->flags & SN_FINST_MASK))
4822 s->flags |= SN_FINST_H;
4823 return 0;
4824 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02004825
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02004826 /* close from server, capture the response if the server has started to respond */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004827 else if (rep->flags & BF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02004828 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004829 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004830
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004831 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004832 if (target_srv(&s->target)) {
4833 target_srv(&s->target)->counters.failed_resp++;
4834 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004835 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004836
Willy Tarreau90deb182010-01-07 00:20:41 +01004837 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004838 rep->analysers = 0;
4839 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004840 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004841 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004842 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01004843
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004844 if (!(s->flags & SN_ERR_MASK))
4845 s->flags |= SN_ERR_SRVCL;
4846 if (!(s->flags & SN_FINST_MASK))
4847 s->flags |= SN_FINST_H;
4848 return 0;
4849 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004850
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004851 /* write error to client (we don't send any message then) */
4852 else if (rep->flags & BF_WRITE_ERROR) {
4853 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004854 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004855
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004856 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004857 rep->analysers = 0;
Willy Tarreau90deb182010-01-07 00:20:41 +01004858 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004859
4860 if (!(s->flags & SN_ERR_MASK))
4861 s->flags |= SN_ERR_CLICL;
4862 if (!(s->flags & SN_FINST_MASK))
4863 s->flags |= SN_FINST_H;
4864
4865 /* process_session() will take care of the error */
4866 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004867 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004868
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004869 buffer_dont_close(rep);
4870 return 0;
4871 }
4872
4873 /* More interesting part now : we know that we have a complete
4874 * response which at least looks like HTTP. We have an indicator
4875 * of each header's length, so we can parse them quickly.
4876 */
4877
4878 if (unlikely(msg->err_pos >= 0))
Willy Tarreau078272e2010-12-12 12:46:33 +01004879 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004880
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004881 /*
4882 * 1: get the status code
4883 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01004884 n = msg->sol[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004885 if (n < 1 || n > 5)
4886 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004887 /* when the client triggers a 4xx from the server, it's most often due
4888 * to a missing object or permission. These events should be tracked
4889 * because if they happen often, it may indicate a brute force or a
4890 * vulnerability scan.
4891 */
4892 if (n == 4)
4893 session_inc_http_err_ctr(s);
4894
Willy Tarreau827aee92011-03-10 16:55:02 +01004895 if (target_srv(&s->target))
4896 target_srv(&s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004897
Willy Tarreau5b154472009-12-21 20:11:07 +01004898 /* check if the response is HTTP/1.1 or above */
4899 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01004900 ((msg->sol[5] > '1') ||
4901 ((msg->sol[5] == '1') &&
4902 (msg->sol[7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01004903 txn->flags |= TX_RES_VER_11;
4904
4905 /* "connection" has not been parsed yet */
Willy Tarreau60466522010-01-18 19:08:45 +01004906 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 +01004907
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004908 /* transfer length unknown*/
4909 txn->flags &= ~TX_RES_XFER_LEN;
4910
Willy Tarreau962c3f42010-01-10 00:15:35 +01004911 txn->status = strl2ui(msg->sol + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004912
Willy Tarreau39650402010-03-15 19:44:39 +01004913 /* Adjust server's health based on status code. Note: status codes 501
4914 * and 505 are triggered on demand by client request, so we must not
4915 * count them as server failures.
4916 */
Willy Tarreau827aee92011-03-10 16:55:02 +01004917 if (target_srv(&s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004918 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau827aee92011-03-10 16:55:02 +01004919 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004920 else
Willy Tarreau827aee92011-03-10 16:55:02 +01004921 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004922 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004923
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004924 /*
4925 * 2: check for cacheability.
4926 */
4927
4928 switch (txn->status) {
4929 case 200:
4930 case 203:
4931 case 206:
4932 case 300:
4933 case 301:
4934 case 410:
4935 /* RFC2616 @13.4:
4936 * "A response received with a status code of
4937 * 200, 203, 206, 300, 301 or 410 MAY be stored
4938 * by a cache (...) unless a cache-control
4939 * directive prohibits caching."
4940 *
4941 * RFC2616 @9.5: POST method :
4942 * "Responses to this method are not cacheable,
4943 * unless the response includes appropriate
4944 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004945 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004946 if (likely(txn->meth != HTTP_METH_POST) &&
4947 (s->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
4948 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
4949 break;
4950 default:
4951 break;
4952 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004953
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004954 /*
4955 * 3: we may need to capture headers
4956 */
4957 s->logs.logwait &= ~LW_RESP;
4958 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->fe->rsp_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01004959 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004960 txn->rsp.cap, s->fe->rsp_cap);
4961
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004962 /* 4: determine the transfer-length.
4963 * According to RFC2616 #4.4, amended by the HTTPbis working group,
4964 * the presence of a message-body in a RESPONSE and its transfer length
4965 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004966 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004967 * All responses to the HEAD request method MUST NOT include a
4968 * message-body, even though the presence of entity-header fields
4969 * might lead one to believe they do. All 1xx (informational), 204
4970 * (No Content), and 304 (Not Modified) responses MUST NOT include a
4971 * message-body. All other responses do include a message-body,
4972 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004973 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004974 * 1. Any response which "MUST NOT" include a message-body (such as the
4975 * 1xx, 204 and 304 responses and any response to a HEAD request) is
4976 * always terminated by the first empty line after the header fields,
4977 * regardless of the entity-header fields present in the message.
4978 *
4979 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
4980 * the "chunked" transfer-coding (Section 6.2) is used, the
4981 * transfer-length is defined by the use of this transfer-coding.
4982 * If a Transfer-Encoding header field is present and the "chunked"
4983 * transfer-coding is not present, the transfer-length is defined by
4984 * the sender closing the connection.
4985 *
4986 * 3. If a Content-Length header field is present, its decimal value in
4987 * OCTETs represents both the entity-length and the transfer-length.
4988 * If a message is received with both a Transfer-Encoding header
4989 * field and a Content-Length header field, the latter MUST be ignored.
4990 *
4991 * 4. If the message uses the media type "multipart/byteranges", and
4992 * the transfer-length is not otherwise specified, then this self-
4993 * delimiting media type defines the transfer-length. This media
4994 * type MUST NOT be used unless the sender knows that the recipient
4995 * can parse it; the presence in a request of a Range header with
4996 * multiple byte-range specifiers from a 1.1 client implies that the
4997 * client can parse multipart/byteranges responses.
4998 *
4999 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005000 */
5001
5002 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01005003 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005004 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005005 * FIXME: should we parse anyway and return an error on chunked encoding ?
5006 */
5007 if (txn->meth == HTTP_METH_HEAD ||
5008 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005009 txn->status == 204 || txn->status == 304) {
5010 txn->flags |= TX_RES_XFER_LEN;
5011 goto skip_content_length;
5012 }
5013
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005014 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005015 ctx.idx = 0;
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01005016 while ((txn->flags & TX_RES_VER_11) &&
5017 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005018 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
5019 txn->flags |= (TX_RES_TE_CHNK | TX_RES_XFER_LEN);
5020 else if (txn->flags & TX_RES_TE_CHNK) {
5021 /* bad transfer-encoding (chunked followed by something else) */
5022 use_close_only = 1;
5023 txn->flags &= ~(TX_RES_TE_CHNK | TX_RES_XFER_LEN);
5024 break;
5025 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005026 }
5027
5028 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
5029 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005030 while (!(txn->flags & TX_RES_TE_CHNK) && !use_close_only &&
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005031 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
5032 signed long long cl;
5033
Willy Tarreauad14f752011-09-02 20:33:27 +02005034 if (!ctx.vlen) {
5035 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005036 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005037 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005038
Willy Tarreauad14f752011-09-02 20:33:27 +02005039 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
5040 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005041 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02005042 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005043
Willy Tarreauad14f752011-09-02 20:33:27 +02005044 if (cl < 0) {
5045 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005046 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005047 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005048
Willy Tarreauad14f752011-09-02 20:33:27 +02005049 if ((txn->flags & TX_RES_CNT_LEN) && (msg->chunk_len != cl)) {
5050 msg->err_pos = ctx.line + ctx.val - rep->data;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005051 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02005052 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005053
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005054 txn->flags |= TX_RES_CNT_LEN | TX_RES_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01005055 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005056 }
5057
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005058 /* FIXME: we should also implement the multipart/byterange method.
5059 * For now on, we resort to close mode in this case (unknown length).
5060 */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005061skip_content_length:
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005062
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005063 /* end of job, return OK */
5064 rep->analysers &= ~an_bit;
5065 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau90deb182010-01-07 00:20:41 +01005066 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005067 return 1;
5068}
5069
5070/* This function performs all the processing enabled for the current response.
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005071 * It normally returns 1 unless it wants to break. It relies on buffers flags,
5072 * and updates t->rep->analysers. It might make sense to explode it into several
5073 * other functions. It works like process_request (see indications above).
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005074 */
5075int http_process_res_common(struct session *t, struct buffer *rep, int an_bit, struct proxy *px)
5076{
5077 struct http_txn *txn = &t->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005078 struct http_msg *msg = &txn->rsp;
5079 struct proxy *cur_proxy;
Willy Tarreauf4f04122010-01-28 18:10:50 +01005080 struct cond_wordlist *wl;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005081
5082 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
5083 now_ms, __FUNCTION__,
5084 t,
5085 rep,
5086 rep->rex, rep->wex,
5087 rep->flags,
5088 rep->l,
5089 rep->analysers);
5090
Willy Tarreau655dce92009-11-08 13:10:58 +01005091 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005092 return 0;
5093
5094 rep->analysers &= ~an_bit;
5095 rep->analyse_exp = TICK_ETERNITY;
5096
Willy Tarreau5b154472009-12-21 20:11:07 +01005097 /* Now we have to check if we need to modify the Connection header.
5098 * This is more difficult on the response than it is on the request,
5099 * because we can have two different HTTP versions and we don't know
5100 * how the client will interprete a response. For instance, let's say
5101 * that the client sends a keep-alive request in HTTP/1.0 and gets an
5102 * HTTP/1.1 response without any header. Maybe it will bound itself to
5103 * HTTP/1.0 because it only knows about it, and will consider the lack
5104 * of header as a close, or maybe it knows HTTP/1.1 and can consider
5105 * the lack of header as a keep-alive. Thus we will use two flags
5106 * indicating how a request MAY be understood by the client. In case
5107 * of multiple possibilities, we'll fix the header to be explicit. If
5108 * ambiguous cases such as both close and keepalive are seen, then we
5109 * will fall back to explicit close. Note that we won't take risks with
5110 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01005111 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01005112 */
5113
Willy Tarreaudc008c52010-02-01 16:20:08 +01005114 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
5115 txn->status == 101)) {
5116 /* Either we've established an explicit tunnel, or we're
5117 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005118 * to understand the next protocols. We have to switch to tunnel
5119 * mode, so that we transfer the request and responses then let
5120 * this protocol pass unmodified. When we later implement specific
5121 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01005122 * header which contains information about that protocol for
5123 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005124 */
5125 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
5126 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01005127 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
5128 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
5129 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005130 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01005131
Willy Tarreau60466522010-01-18 19:08:45 +01005132 /* on unknown transfer length, we must close */
5133 if (!(txn->flags & TX_RES_XFER_LEN) &&
5134 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5135 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01005136
Willy Tarreau60466522010-01-18 19:08:45 +01005137 /* now adjust header transformations depending on current state */
5138 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
5139 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5140 to_del |= 2; /* remove "keep-alive" on any response */
5141 if (!(txn->flags & TX_RES_VER_11))
5142 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005143 }
Willy Tarreau60466522010-01-18 19:08:45 +01005144 else { /* SCL / KAL */
5145 to_del |= 1; /* remove "close" on any response */
5146 if ((txn->flags & (TX_RES_VER_11|TX_REQ_VER_11)) == (TX_RES_VER_11|TX_REQ_VER_11))
5147 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005148 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005149
Willy Tarreau60466522010-01-18 19:08:45 +01005150 /* Parse and remove some headers from the connection header */
5151 http_parse_connection_header(txn, msg, rep, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01005152
Willy Tarreau60466522010-01-18 19:08:45 +01005153 /* Some keep-alive responses are converted to Server-close if
5154 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01005155 */
Willy Tarreau60466522010-01-18 19:08:45 +01005156 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
5157 if ((txn->flags & TX_HDR_CONN_CLO) ||
5158 (txn->flags & (TX_HDR_CONN_KAL|TX_RES_VER_11)) == 0)
5159 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005160 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005161 }
5162
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005163 if (1) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005164 /*
5165 * 3: we will have to evaluate the filters.
5166 * As opposed to version 1.2, now they will be evaluated in the
5167 * filters order and not in the header order. This means that
5168 * each filter has to be validated among all headers.
5169 *
5170 * Filters are tried with ->be first, then with ->fe if it is
5171 * different from ->be.
5172 */
5173
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005174 cur_proxy = t->be;
5175 while (1) {
5176 struct proxy *rule_set = cur_proxy;
5177
5178 /* try headers filters */
5179 if (rule_set->rsp_exp != NULL) {
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005180 if (apply_filters_to_response(t, rep, rule_set) < 0) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005181 return_bad_resp:
Willy Tarreau827aee92011-03-10 16:55:02 +01005182 if (target_srv(&t->target)) {
5183 target_srv(&t->target)->counters.failed_resp++;
5184 health_adjust(target_srv(&t->target), HANA_STATUS_HTTP_RSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005185 }
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005186 t->be->be_counters.failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005187 return_srv_prx_502:
Willy Tarreau2df28e82008-08-17 15:20:19 +02005188 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005189 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005190 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01005191 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreau8e89b842009-10-18 23:56:35 +02005192 stream_int_retnclose(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005193 if (!(t->flags & SN_ERR_MASK))
5194 t->flags |= SN_ERR_PRXCOND;
5195 if (!(t->flags & SN_FINST_MASK))
5196 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02005197 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005198 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005199 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005200
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005201 /* has the response been denied ? */
5202 if (txn->flags & TX_SVDENY) {
Willy Tarreau827aee92011-03-10 16:55:02 +01005203 if (target_srv(&t->target))
5204 target_srv(&t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005205
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005206 t->be->be_counters.denied_resp++;
5207 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005208 if (t->listener->counters)
5209 t->listener->counters->denied_resp++;
5210
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005211 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01005212 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005213
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005214 /* add response headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005215 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreau816b9792009-09-15 21:25:21 +02005216 if (txn->status < 200)
5217 break;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005218 if (wl->cond) {
5219 int ret = acl_exec_cond(wl->cond, px, t, txn, ACL_DIR_RTR);
5220 ret = acl_pass(ret);
5221 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
5222 ret = !ret;
5223 if (!ret)
5224 continue;
5225 }
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005226 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005227 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02005228 }
5229
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005230 /* check whether we're already working on the frontend */
5231 if (cur_proxy == t->fe)
5232 break;
5233 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005234 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005235
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005236 /*
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005237 * We may be facing a 100-continue response, in which case this
5238 * is not the right response, and we're waiting for the next one.
5239 * Let's allow this response to go to the client and wait for the
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005240 * next one.
5241 */
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005242 if (unlikely(txn->status == 100)) {
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005243 hdr_idx_init(&txn->hdr_idx);
Willy Tarreau962c3f42010-01-10 00:15:35 +01005244 buffer_forward(rep, rep->lr - msg->sol);
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005245 msg->msg_state = HTTP_MSG_RPBEFORE;
5246 txn->status = 0;
5247 rep->analysers |= AN_RES_WAIT_HTTP | an_bit;
5248 return 1;
5249 }
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005250 else if (unlikely(txn->status < 200))
5251 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005252
5253 /* we don't have any 1xx status code now */
5254
5255 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005256 * 4: check for server cookie.
5257 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005258 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name ||
5259 (t->be->options & PR_O_CHK_CACHE))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005260 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005261
Willy Tarreaubaaee002006-06-26 02:48:02 +02005262
Willy Tarreaua15645d2007-03-18 16:22:39 +01005263 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005264 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005265 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005266 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005267 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005268
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005269 /*
5270 * 6: add server cookie in the response if needed
5271 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005272 if (target_srv(&t->target) && (t->be->options & PR_O_COOK_INS) &&
Willy Tarreauba4c5be2010-10-23 12:46:42 +02005273 !((txn->flags & TX_SCK_FOUND) && (t->be->options2 & PR_O2_COOK_PSV)) &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02005274 (!(t->flags & SN_DIRECT) ||
5275 ((t->be->cookie_maxidle || txn->cookie_last_date) &&
5276 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
5277 (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
5278 (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02005279 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST)) &&
5280 !(t->flags & SN_IGNORE_PRST)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005281 int len;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005282 /* the server is known, it's not the one the client requested, or the
5283 * cookie's last seen date needs to be refreshed. We have to
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005284 * insert a set-cookie here, except if we want to insert only on POST
5285 * requests and this one isn't. Note that servers which don't have cookies
5286 * (eg: some backup servers) will return a full cookie removal request.
5287 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005288 if (!target_srv(&t->target)->cookie) {
Willy Tarreauef4f3912010-10-07 21:00:29 +02005289 len = sprintf(trash,
5290 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5291 t->be->cookie_name);
5292 }
5293 else {
Willy Tarreau827aee92011-03-10 16:55:02 +01005294 len = sprintf(trash, "Set-Cookie: %s=%s", t->be->cookie_name, target_srv(&t->target)->cookie);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005295
5296 if (t->be->cookie_maxidle || t->be->cookie_maxlife) {
5297 /* emit last_date, which is mandatory */
5298 trash[len++] = COOKIE_DELIM_DATE;
5299 s30tob64((date.tv_sec+3) >> 2, trash + len); len += 5;
5300 if (t->be->cookie_maxlife) {
5301 /* emit first_date, which is either the original one or
5302 * the current date.
5303 */
5304 trash[len++] = COOKIE_DELIM_DATE;
5305 s30tob64(txn->cookie_first_date ?
5306 txn->cookie_first_date >> 2 :
5307 (date.tv_sec+3) >> 2, trash + len);
5308 len += 5;
5309 }
5310 }
5311 len += sprintf(trash + len, "; path=/");
5312 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005313
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005314 if (t->be->cookie_domain)
5315 len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005316
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005317 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005318 trash, len) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005319 goto return_bad_resp;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005320
Willy Tarreauf1348312010-10-07 15:54:11 +02005321 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau827aee92011-03-10 16:55:02 +01005322 if (target_srv(&t->target)->cookie && (t->flags & SN_DIRECT))
Willy Tarreauef4f3912010-10-07 21:00:29 +02005323 /* the server did not change, only the date was updated */
5324 txn->flags |= TX_SCK_UPDATED;
5325 else
5326 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005327
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005328 /* Here, we will tell an eventual cache on the client side that we don't
5329 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
5330 * Some caches understand the correct form: 'no-cache="set-cookie"', but
5331 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
5332 */
5333 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02005334
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005335 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
5336
5337 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005338 "Cache-control: private", 22) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005339 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005340 }
5341 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005342
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005343 /*
5344 * 7: check if result will be cacheable with a cookie.
5345 * We'll block the response if security checks have caught
5346 * nasty things such as a cacheable cookie.
5347 */
Willy Tarreauf1348312010-10-07 15:54:11 +02005348 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
5349 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005350 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005351
5352 /* we're in presence of a cacheable response containing
5353 * a set-cookie header. We'll block it as requested by
5354 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005355 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005356 if (target_srv(&t->target))
5357 target_srv(&t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005358
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005359 t->be->be_counters.denied_resp++;
5360 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005361 if (t->listener->counters)
5362 t->listener->counters->denied_resp++;
5363
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005364 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau827aee92011-03-10 16:55:02 +01005365 t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005366 send_log(t->be, LOG_ALERT,
5367 "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 goto return_srv_prx_502;
5370 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005371
5372 /*
Willy Tarreau60466522010-01-18 19:08:45 +01005373 * 8: adjust "Connection: close" or "Connection: keep-alive" if needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005374 */
Willy Tarreau60466522010-01-18 19:08:45 +01005375 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
5376 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE)) {
5377 unsigned int want_flags = 0;
5378
5379 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5380 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5381 /* we want a keep-alive response here. Keep-alive header
5382 * required if either side is not 1.1.
5383 */
5384 if ((txn->flags & (TX_REQ_VER_11|TX_RES_VER_11)) != (TX_REQ_VER_11|TX_RES_VER_11))
5385 want_flags |= TX_CON_KAL_SET;
5386 }
5387 else {
5388 /* we want a close response here. Close header required if
5389 * the server is 1.1, regardless of the client.
5390 */
5391 if (txn->flags & TX_RES_VER_11)
5392 want_flags |= TX_CON_CLO_SET;
5393 }
5394
5395 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
5396 http_change_connection_header(txn, msg, rep, want_flags);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005397 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005398
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005399 skip_header_mangling:
Willy Tarreaudc008c52010-02-01 16:20:08 +01005400 if ((txn->flags & TX_RES_XFER_LEN) ||
5401 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005402 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01005403
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005404 /*************************************************************
5405 * OK, that's finished for the headers. We have done what we *
5406 * could. Let's switch to the DATA state. *
5407 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02005408
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005409 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005410
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005411 /* if the user wants to log as soon as possible, without counting
5412 * bytes from the server, then this is the right moment. We have
5413 * to temporarily assign bytes_out to log what we currently have.
5414 */
5415 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
5416 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
5417 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01005418 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005419 t->logs.bytes_out = 0;
5420 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005421
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005422 /* Note: we must not try to cheat by jumping directly to DATA,
5423 * otherwise we would not let the client side wake up.
5424 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01005425
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005426 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005427 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005428 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005429}
Willy Tarreaua15645d2007-03-18 16:22:39 +01005430
Willy Tarreaud98cf932009-12-27 22:54:55 +01005431/* This function is an analyser which forwards response body (including chunk
5432 * sizes if any). It is called as soon as we must forward, even if we forward
5433 * zero byte. The only situation where it must not be called is when we're in
5434 * tunnel mode and we want to forward till the close. It's used both to forward
5435 * remaining data and to resync after end of body. It expects the msg_state to
5436 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
5437 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01005438 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreaud98cf932009-12-27 22:54:55 +01005439 * bytes of pending data + the headers if not already done (between som and sov).
5440 * It eventually adjusts som to match sov after the data in between have been sent.
5441 */
5442int http_response_forward_body(struct session *s, struct buffer *res, int an_bit)
5443{
5444 struct http_txn *txn = &s->txn;
5445 struct http_msg *msg = &s->txn.rsp;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005446 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005447
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005448 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5449 return 0;
5450
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005451 if ((res->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005452 ((res->flags & BF_SHUTW) && (res->to_forward || res->send_max)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005453 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005454 /* Output closed while we were sending data. We must abort and
5455 * wake the other side up.
5456 */
5457 msg->msg_state = HTTP_MSG_ERROR;
5458 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005459 return 1;
5460 }
5461
Willy Tarreau4fe41902010-06-07 22:27:41 +02005462 /* in most states, we should abort in case of early close */
5463 buffer_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005464
Willy Tarreaud98cf932009-12-27 22:54:55 +01005465 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
5466 /* we have msg->col and msg->sov which both point to the first
5467 * byte of message body. msg->som still points to the beginning
5468 * of the message. We must save the body in req->lr because it
5469 * survives buffer re-alignments.
5470 */
5471 res->lr = res->data + msg->sov;
5472 if (txn->flags & TX_RES_TE_CHNK)
5473 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5474 else {
5475 msg->msg_state = HTTP_MSG_DATA;
5476 }
5477 }
5478
Willy Tarreaud98cf932009-12-27 22:54:55 +01005479 while (1) {
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005480 int bytes;
5481
Willy Tarreau610ecce2010-01-04 21:15:02 +01005482 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01005483 /* we may have some data pending */
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005484 bytes = msg->sov - msg->som;
5485 if (msg->chunk_len || bytes) {
Willy Tarreau638cd022010-01-03 07:42:04 +01005486 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005487 if (likely(bytes < 0)) /* sov may have wrapped at the end */
5488 bytes += res->size;
5489 msg->chunk_len += (unsigned int)bytes;
5490 msg->chunk_len -= buffer_forward(res, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01005491 }
5492
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005493
Willy Tarreaucaabe412010-01-03 23:08:28 +01005494 if (msg->msg_state == HTTP_MSG_DATA) {
5495 /* must still forward */
5496 if (res->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005497 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005498
5499 /* nothing left to forward */
5500 if (txn->flags & TX_RES_TE_CHNK)
5501 msg->msg_state = HTTP_MSG_DATA_CRLF;
5502 else
5503 msg->msg_state = HTTP_MSG_DONE;
5504 }
5505 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005506 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01005507 * set ->sov to point to the body and switch to DATA or TRAILERS state.
5508 */
5509 int ret = http_parse_chunk_size(res, msg);
5510
5511 if (!ret)
5512 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005513 else if (ret < 0) {
5514 if (msg->err_pos >= 0)
5515 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005516 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005517 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005518 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005519 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005520 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
5521 /* we want the CRLF after the data */
5522 int ret;
5523
Willy Tarreaud3347ee2010-01-04 02:02:25 +01005524 res->lr = res->w + res->send_max;
5525 if (res->lr >= res->data + res->size)
5526 res->lr -= res->size;
5527
Willy Tarreaud98cf932009-12-27 22:54:55 +01005528 ret = http_skip_chunk_crlf(res, msg);
5529
5530 if (!ret)
5531 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005532 else if (ret < 0) {
5533 if (msg->err_pos >= 0)
5534 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_DATA_CRLF, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005535 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005536 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005537 /* we're in MSG_CHUNK_SIZE now */
5538 }
5539 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
5540 int ret = http_forward_trailers(res, msg);
Willy Tarreau5523b322009-12-29 12:05:52 +01005541
Willy Tarreaud98cf932009-12-27 22:54:55 +01005542 if (ret == 0)
5543 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005544 else if (ret < 0) {
5545 if (msg->err_pos >= 0)
5546 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005547 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005548 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005549 /* we're in HTTP_MSG_DONE now */
5550 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005551 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005552 int old_state = msg->msg_state;
5553
Willy Tarreau610ecce2010-01-04 21:15:02 +01005554 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02005555 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005556 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5557 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5558 buffer_dont_close(res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005559 if (http_resync_states(s)) {
5560 http_silent_debug(__LINE__, s);
5561 /* some state changes occurred, maybe the analyser
5562 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01005563 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005564 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5565 if (res->flags & BF_SHUTW) {
5566 /* response errors are most likely due to
5567 * the client aborting the transfer.
5568 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005569 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005570 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005571 if (msg->err_pos >= 0)
5572 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, old_state, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005573 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005574 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005575 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01005576 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005577 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005578 }
5579 }
5580
Willy Tarreaud98cf932009-12-27 22:54:55 +01005581 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005582 /* stop waiting for data if the input is closed before the end */
Willy Tarreau40dba092010-03-04 18:14:51 +01005583 if (res->flags & BF_SHUTR) {
5584 if (!(s->flags & SN_ERR_MASK))
5585 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005586 s->be->be_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005587 if (target_srv(&s->target))
5588 target_srv(&s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005589 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01005590 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005591
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005592 if (res->flags & BF_SHUTW)
5593 goto aborted_xfer;
5594
Willy Tarreau40dba092010-03-04 18:14:51 +01005595 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005596 if (!s->req->analysers)
5597 goto return_bad_res;
5598
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005599 /* forward any pending data */
5600 bytes = msg->sov - msg->som;
5601 if (msg->chunk_len || bytes) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005602 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005603 if (likely(bytes < 0)) /* sov may have wrapped at the end */
5604 bytes += res->size;
5605 msg->chunk_len += (unsigned int)bytes;
5606 msg->chunk_len -= buffer_forward(res, msg->chunk_len);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005607 }
5608
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005609 /* When TE: chunked is used, we need to get there again to parse remaining
5610 * chunks even if the server has closed, so we don't want to set BF_DONTCLOSE.
5611 * Similarly, with keep-alive on the client side, we don't want to forward a
5612 * close.
5613 */
5614 if ((txn->flags & TX_RES_TE_CHNK) ||
5615 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5616 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5617 buffer_dont_close(res);
5618
Willy Tarreau5c620922011-05-11 19:56:11 +02005619 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau07293032011-05-30 18:29:28 +02005620 * what we did. So we always set the BF_EXPECT_MORE flag so that the
5621 * system knows it must not set a PUSH on this first part. Interactive
5622 * modes are already handled by the stream sock layer.
Willy Tarreau5c620922011-05-11 19:56:11 +02005623 */
Willy Tarreau07293032011-05-30 18:29:28 +02005624 res->flags |= BF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005625
Willy Tarreaud98cf932009-12-27 22:54:55 +01005626 /* the session handler will take care of timeouts and errors */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005627 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005628 return 0;
5629
Willy Tarreau40dba092010-03-04 18:14:51 +01005630 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005631 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005632 if (target_srv(&s->target))
5633 target_srv(&s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005634
5635 return_bad_res_stats_ok:
Willy Tarreaud98cf932009-12-27 22:54:55 +01005636 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01005637 /* don't send any error message as we're in the body */
5638 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005639 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005640 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau827aee92011-03-10 16:55:02 +01005641 if (target_srv(&s->target))
5642 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005643
5644 if (!(s->flags & SN_ERR_MASK))
5645 s->flags |= SN_ERR_PRXCOND;
5646 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01005647 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005648 return 0;
5649
5650 aborted_xfer:
5651 txn->rsp.msg_state = HTTP_MSG_ERROR;
5652 /* don't send any error message as we're in the body */
5653 stream_int_retnclose(res->cons, NULL);
5654 res->analysers = 0;
5655 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
5656
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005657 s->fe->fe_counters.cli_aborts++;
5658 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005659 if (target_srv(&s->target))
5660 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005661
5662 if (!(s->flags & SN_ERR_MASK))
5663 s->flags |= SN_ERR_CLICL;
5664 if (!(s->flags & SN_FINST_MASK))
5665 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005666 return 0;
5667}
5668
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005669/* Iterate the same filter through all request headers.
5670 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005671 * Since it can manage the switch to another backend, it updates the per-proxy
5672 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005673 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005674int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005675{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005676 char term;
5677 char *cur_ptr, *cur_end, *cur_next;
5678 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005679 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005680 struct hdr_idx_elem *cur_hdr;
5681 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01005682
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005683 last_hdr = 0;
5684
Willy Tarreau962c3f42010-01-10 00:15:35 +01005685 cur_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005686 old_idx = 0;
5687
5688 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005689 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005690 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005691 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005692 (exp->action == ACT_ALLOW ||
5693 exp->action == ACT_DENY ||
5694 exp->action == ACT_TARPIT))
5695 return 0;
5696
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005697 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005698 if (!cur_idx)
5699 break;
5700
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005701 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005702 cur_ptr = cur_next;
5703 cur_end = cur_ptr + cur_hdr->len;
5704 cur_next = cur_end + cur_hdr->cr + 1;
5705
5706 /* Now we have one header between cur_ptr and cur_end,
5707 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005708 */
5709
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005710 /* The annoying part is that pattern matching needs
5711 * that we modify the contents to null-terminate all
5712 * strings before testing them.
5713 */
5714
5715 term = *cur_end;
5716 *cur_end = '\0';
5717
5718 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5719 switch (exp->action) {
5720 case ACT_SETBE:
5721 /* It is not possible to jump a second time.
5722 * FIXME: should we return an HTTP/500 here so that
5723 * the admin knows there's a problem ?
5724 */
5725 if (t->be != t->fe)
5726 break;
5727
5728 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005729 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005730 last_hdr = 1;
5731 break;
5732
5733 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005734 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005735 last_hdr = 1;
5736 break;
5737
5738 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005739 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005740 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005741
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005742 t->fe->fe_counters.denied_req++;
5743 if (t->fe != t->be)
5744 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005745 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005746 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005747
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005748 break;
5749
5750 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005751 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005752 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005753
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005754 t->fe->fe_counters.denied_req++;
5755 if (t->fe != t->be)
5756 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005757 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005758 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005759
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005760 break;
5761
5762 case ACT_REPLACE:
5763 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5764 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5765 /* FIXME: if the user adds a newline in the replacement, the
5766 * index will not be recalculated for now, and the new line
5767 * will not be counted as a new header.
5768 */
5769
5770 cur_end += delta;
5771 cur_next += delta;
5772 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005773 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005774 break;
5775
5776 case ACT_REMOVE:
5777 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
5778 cur_next += delta;
5779
Willy Tarreaufa355d42009-11-29 18:12:29 +01005780 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005781 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5782 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005783 cur_hdr->len = 0;
5784 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01005785 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005786 break;
5787
5788 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005789 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005790 if (cur_end)
5791 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01005792
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005793 /* keep the link from this header to next one in case of later
5794 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005795 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005796 old_idx = cur_idx;
5797 }
5798 return 0;
5799}
5800
5801
5802/* Apply the filter to the request line.
5803 * Returns 0 if nothing has been done, 1 if the filter has been applied,
5804 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005805 * Since it can manage the switch to another backend, it updates the per-proxy
5806 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005807 */
5808int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
5809{
5810 char term;
5811 char *cur_ptr, *cur_end;
5812 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005813 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005814 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005815
Willy Tarreau58f10d72006-12-04 02:26:12 +01005816
Willy Tarreau3d300592007-03-18 18:34:41 +01005817 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005818 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005819 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005820 (exp->action == ACT_ALLOW ||
5821 exp->action == ACT_DENY ||
5822 exp->action == ACT_TARPIT))
5823 return 0;
5824 else if (exp->action == ACT_REMOVE)
5825 return 0;
5826
5827 done = 0;
5828
Willy Tarreau962c3f42010-01-10 00:15:35 +01005829 cur_ptr = txn->req.sol;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005830 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005831
5832 /* Now we have the request line between cur_ptr and cur_end */
5833
5834 /* The annoying part is that pattern matching needs
5835 * that we modify the contents to null-terminate all
5836 * strings before testing them.
5837 */
5838
5839 term = *cur_end;
5840 *cur_end = '\0';
5841
5842 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5843 switch (exp->action) {
5844 case ACT_SETBE:
5845 /* It is not possible to jump a second time.
5846 * FIXME: should we return an HTTP/500 here so that
5847 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01005848 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005849 if (t->be != t->fe)
5850 break;
5851
5852 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005853 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005854 done = 1;
5855 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005856
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005857 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005858 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005859 done = 1;
5860 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005861
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005862 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005863 txn->flags |= TX_CLDENY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005864
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005865 t->fe->fe_counters.denied_req++;
5866 if (t->fe != t->be)
5867 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005868 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005869 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005870
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005871 done = 1;
5872 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005873
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005874 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005875 txn->flags |= TX_CLTARPIT;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005876
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005877 t->fe->fe_counters.denied_req++;
5878 if (t->fe != t->be)
5879 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005880 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005881 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005882
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005883 done = 1;
5884 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005885
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005886 case ACT_REPLACE:
5887 *cur_end = term; /* restore the string terminator */
5888 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5889 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5890 /* FIXME: if the user adds a newline in the replacement, the
5891 * index will not be recalculated for now, and the new line
5892 * will not be counted as a new header.
5893 */
Willy Tarreaua496b602006-12-17 23:15:24 +01005894
Willy Tarreaufa355d42009-11-29 18:12:29 +01005895 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005896 cur_end += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005897 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005898 HTTP_MSG_RQMETH,
5899 cur_ptr, cur_end + 1,
5900 NULL, NULL);
5901 if (unlikely(!cur_end))
5902 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01005903
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005904 /* we have a full request and we know that we have either a CR
5905 * or an LF at <ptr>.
5906 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005907 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
5908 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005909 /* there is no point trying this regex on headers */
5910 return 1;
5911 }
5912 }
5913 *cur_end = term; /* restore the string terminator */
5914 return done;
5915}
Willy Tarreau97de6242006-12-27 17:18:38 +01005916
Willy Tarreau58f10d72006-12-04 02:26:12 +01005917
Willy Tarreau58f10d72006-12-04 02:26:12 +01005918
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005919/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01005920 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005921 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01005922 * unparsable request. Since it can manage the switch to another backend, it
5923 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005924 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005925int apply_filters_to_request(struct session *s, struct buffer *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005926{
Willy Tarreau6c123b12010-01-28 20:22:06 +01005927 struct http_txn *txn = &s->txn;
5928 struct hdr_exp *exp;
5929
5930 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005931 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005932
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005933 /*
5934 * The interleaving of transformations and verdicts
5935 * makes it difficult to decide to continue or stop
5936 * the evaluation.
5937 */
5938
Willy Tarreau6c123b12010-01-28 20:22:06 +01005939 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
5940 break;
5941
Willy Tarreau3d300592007-03-18 18:34:41 +01005942 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005943 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01005944 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005945 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01005946
5947 /* if this filter had a condition, evaluate it now and skip to
5948 * next filter if the condition does not match.
5949 */
5950 if (exp->cond) {
5951 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_REQ);
5952 ret = acl_pass(ret);
5953 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
5954 ret = !ret;
5955
5956 if (!ret)
5957 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005958 }
5959
5960 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005961 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005962 if (unlikely(ret < 0))
5963 return -1;
5964
5965 if (likely(ret == 0)) {
5966 /* The filter did not match the request, it can be
5967 * iterated through all headers.
5968 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005969 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005970 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005971 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005972 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005973}
5974
5975
Willy Tarreaua15645d2007-03-18 16:22:39 +01005976
Willy Tarreau58f10d72006-12-04 02:26:12 +01005977/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005978 * Try to retrieve the server associated to the appsession.
5979 * If the server is found, it's assigned to the session.
5980 */
Cyril Bontéb21570a2009-11-29 20:04:48 +01005981void manage_client_side_appsession(struct session *t, const char *buf, int len) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005982 struct http_txn *txn = &t->txn;
5983 appsess *asession = NULL;
5984 char *sessid_temp = NULL;
5985
Cyril Bontéb21570a2009-11-29 20:04:48 +01005986 if (len > t->be->appsession_len) {
5987 len = t->be->appsession_len;
5988 }
5989
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005990 if (t->be->options2 & PR_O2_AS_REQL) {
5991 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005992 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005993 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005994 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005995 }
5996
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005997 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005998 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
5999 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6000 return;
6001 }
6002
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006003 memcpy(txn->sessid, buf, len);
6004 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006005 }
6006
6007 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
6008 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6009 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6010 return;
6011 }
6012
Cyril Bontéb21570a2009-11-29 20:04:48 +01006013 memcpy(sessid_temp, buf, len);
6014 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006015
6016 asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp);
6017 /* free previously allocated memory */
6018 pool_free2(apools.sessid, sessid_temp);
6019
6020 if (asession != NULL) {
6021 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
6022 if (!(t->be->options2 & PR_O2_AS_REQL))
6023 asession->request_count++;
6024
6025 if (asession->serverid != NULL) {
6026 struct server *srv = t->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02006027
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006028 while (srv) {
6029 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01006030 if ((srv->state & SRV_RUNNING) ||
6031 (t->be->options & PR_O_PERSIST) ||
6032 (t->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006033 /* we found the server and it's usable */
6034 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01006035 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006036 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01006037 set_target_server(&t->target, srv);
Willy Tarreau664beb82011-03-10 11:38:29 +01006038
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006039 break;
6040 } else {
6041 txn->flags &= ~TX_CK_MASK;
6042 txn->flags |= TX_CK_DOWN;
6043 }
6044 }
6045 srv = srv->next;
6046 }
6047 }
6048 }
6049}
6050
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006051/* Find the end of a cookie value contained between <s> and <e>. It works the
6052 * same way as with headers above except that the semi-colon also ends a token.
6053 * See RFC2965 for more information. Note that it requires a valid header to
6054 * return a valid result.
6055 */
6056char *find_cookie_value_end(char *s, const char *e)
6057{
6058 int quoted, qdpair;
6059
6060 quoted = qdpair = 0;
6061 for (; s < e; s++) {
6062 if (qdpair) qdpair = 0;
6063 else if (quoted) {
6064 if (*s == '\\') qdpair = 1;
6065 else if (*s == '"') quoted = 0;
6066 }
6067 else if (*s == '"') quoted = 1;
6068 else if (*s == ',' || *s == ';') return s;
6069 }
6070 return s;
6071}
6072
6073/* Delete a value in a header between delimiters <from> and <next> in buffer
6074 * <buf>. The number of characters displaced is returned, and the pointer to
6075 * the first delimiter is updated if required. The function tries as much as
6076 * possible to respect the following principles :
6077 * - replace <from> delimiter by the <next> one unless <from> points to a
6078 * colon, in which case <next> is simply removed
6079 * - set exactly one space character after the new first delimiter, unless
6080 * there are not enough characters in the block being moved to do so.
6081 * - remove unneeded spaces before the previous delimiter and after the new
6082 * one.
6083 *
6084 * It is the caller's responsibility to ensure that :
6085 * - <from> points to a valid delimiter or the colon ;
6086 * - <next> points to a valid delimiter or the final CR/LF ;
6087 * - there are non-space chars before <from> ;
6088 * - there is a CR/LF at or after <next>.
6089 */
6090int del_hdr_value(struct buffer *buf, char **from, char *next)
6091{
6092 char *prev = *from;
6093
6094 if (*prev == ':') {
6095 /* We're removing the first value, preserve the colon and add a
6096 * space if possible.
6097 */
6098 if (!http_is_crlf[(unsigned char)*next])
6099 next++;
6100 prev++;
6101 if (prev < next)
6102 *prev++ = ' ';
6103
6104 while (http_is_spht[(unsigned char)*next])
6105 next++;
6106 } else {
6107 /* Remove useless spaces before the old delimiter. */
6108 while (http_is_spht[(unsigned char)*(prev-1)])
6109 prev--;
6110 *from = prev;
6111
6112 /* copy the delimiter and if possible a space if we're
6113 * not at the end of the line.
6114 */
6115 if (!http_is_crlf[(unsigned char)*next]) {
6116 *prev++ = *next++;
6117 if (prev + 1 < next)
6118 *prev++ = ' ';
6119 while (http_is_spht[(unsigned char)*next])
6120 next++;
6121 }
6122 }
6123 return buffer_replace2(buf, prev, next, NULL, 0);
6124}
6125
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006126/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006127 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006128 * desirable to call it only when needed. This code is quite complex because
6129 * of the multiple very crappy and ambiguous syntaxes we have to support. it
6130 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01006131 */
6132void manage_client_side_cookies(struct session *t, struct buffer *req)
6133{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006134 struct http_txn *txn = &t->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006135 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006136 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006137 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
6138 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006139
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006140 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01006141 old_idx = 0;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006142 hdr_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006143
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006144 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006145 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006146 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006147
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006148 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006149 hdr_beg = hdr_next;
6150 hdr_end = hdr_beg + cur_hdr->len;
6151 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006152
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006153 /* We have one full header between hdr_beg and hdr_end, and the
6154 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01006155 * "Cookie:" headers.
6156 */
6157
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006158 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006159 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006160 old_idx = cur_idx;
6161 continue;
6162 }
6163
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006164 del_from = NULL; /* nothing to be deleted */
6165 preserve_hdr = 0; /* assume we may kill the whole header */
6166
Willy Tarreau58f10d72006-12-04 02:26:12 +01006167 /* Now look for cookies. Conforming to RFC2109, we have to support
6168 * attributes whose name begin with a '$', and associate them with
6169 * the right cookie, if we want to delete this cookie.
6170 * So there are 3 cases for each cookie read :
6171 * 1) it's a special attribute, beginning with a '$' : ignore it.
6172 * 2) it's a server id cookie that we *MAY* want to delete : save
6173 * some pointers on it (last semi-colon, beginning of cookie...)
6174 * 3) it's an application cookie : we *MAY* have to delete a previous
6175 * "special" cookie.
6176 * At the end of loop, if a "special" cookie remains, we may have to
6177 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006178 * *MUST* delete it.
6179 *
6180 * Note: RFC2965 is unclear about the processing of spaces around
6181 * the equal sign in the ATTR=VALUE form. A careful inspection of
6182 * the RFC explicitly allows spaces before it, and not within the
6183 * tokens (attrs or values). An inspection of RFC2109 allows that
6184 * too but section 10.1.3 lets one think that spaces may be allowed
6185 * after the equal sign too, resulting in some (rare) buggy
6186 * implementations trying to do that. So let's do what servers do.
6187 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
6188 * allowed quoted strings in values, with any possible character
6189 * after a backslash, including control chars and delimitors, which
6190 * causes parsing to become ambiguous. Browsers also allow spaces
6191 * within values even without quotes.
6192 *
6193 * We have to keep multiple pointers in order to support cookie
6194 * removal at the beginning, middle or end of header without
6195 * corrupting the header. All of these headers are valid :
6196 *
6197 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
6198 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
6199 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
6200 * | | | | | | | | |
6201 * | | | | | | | | hdr_end <--+
6202 * | | | | | | | +--> next
6203 * | | | | | | +----> val_end
6204 * | | | | | +-----------> val_beg
6205 * | | | | +--------------> equal
6206 * | | | +----------------> att_end
6207 * | | +---------------------> att_beg
6208 * | +--------------------------> prev
6209 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01006210 */
6211
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006212 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
6213 /* Iterate through all cookies on this line */
6214
6215 /* find att_beg */
6216 att_beg = prev + 1;
6217 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6218 att_beg++;
6219
6220 /* find att_end : this is the first character after the last non
6221 * space before the equal. It may be equal to hdr_end.
6222 */
6223 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006224
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006225 while (equal < hdr_end) {
6226 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01006227 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006228 if (http_is_spht[(unsigned char)*equal++])
6229 continue;
6230 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006231 }
6232
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006233 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6234 * is between <att_beg> and <equal>, both may be identical.
6235 */
6236
6237 /* look for end of cookie if there is an equal sign */
6238 if (equal < hdr_end && *equal == '=') {
6239 /* look for the beginning of the value */
6240 val_beg = equal + 1;
6241 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6242 val_beg++;
6243
6244 /* find the end of the value, respecting quotes */
6245 next = find_cookie_value_end(val_beg, hdr_end);
6246
6247 /* make val_end point to the first white space or delimitor after the value */
6248 val_end = next;
6249 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6250 val_end--;
6251 } else {
6252 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01006253 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006254
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006255 /* We have nothing to do with attributes beginning with '$'. However,
6256 * they will automatically be removed if a header before them is removed,
6257 * since they're supposed to be linked together.
6258 */
6259 if (*att_beg == '$')
6260 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006261
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006262 /* Ignore cookies with no equal sign */
6263 if (equal == next) {
6264 /* This is not our cookie, so we must preserve it. But if we already
6265 * scheduled another cookie for removal, we cannot remove the
6266 * complete header, but we can remove the previous block itself.
6267 */
6268 preserve_hdr = 1;
6269 if (del_from != NULL) {
6270 int delta = del_hdr_value(req, &del_from, prev);
6271 val_end += delta;
6272 next += delta;
6273 hdr_end += delta;
6274 hdr_next += delta;
6275 cur_hdr->len += delta;
6276 http_msg_move_end(&txn->req, delta);
6277 prev = del_from;
6278 del_from = NULL;
6279 }
6280 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01006281 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006282
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006283 /* if there are spaces around the equal sign, we need to
6284 * strip them otherwise we'll get trouble for cookie captures,
6285 * or even for rewrites. Since this happens extremely rarely,
6286 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006287 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006288 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6289 int stripped_before = 0;
6290 int stripped_after = 0;
6291
6292 if (att_end != equal) {
6293 stripped_before = buffer_replace2(req, att_end, equal, NULL, 0);
6294 equal += stripped_before;
6295 val_beg += stripped_before;
6296 }
6297
6298 if (val_beg > equal + 1) {
6299 stripped_after = buffer_replace2(req, equal + 1, val_beg, NULL, 0);
6300 val_beg += stripped_after;
6301 stripped_before += stripped_after;
6302 }
6303
6304 val_end += stripped_before;
6305 next += stripped_before;
6306 hdr_end += stripped_before;
6307 hdr_next += stripped_before;
6308 cur_hdr->len += stripped_before;
6309 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006310 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006311 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006312
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006313 /* First, let's see if we want to capture this cookie. We check
6314 * that we don't already have a client side cookie, because we
6315 * can only capture one. Also as an optimisation, we ignore
6316 * cookies shorter than the declared name.
6317 */
6318 if (t->fe->capture_name != NULL && txn->cli_cookie == NULL &&
6319 (val_end - att_beg >= t->fe->capture_namelen) &&
6320 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
6321 int log_len = val_end - att_beg;
6322
6323 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
6324 Alert("HTTP logging : out of memory.\n");
6325 } else {
6326 if (log_len > t->fe->capture_len)
6327 log_len = t->fe->capture_len;
6328 memcpy(txn->cli_cookie, att_beg, log_len);
6329 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006330 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006331 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006332
Willy Tarreaubca99692010-10-06 19:25:55 +02006333 /* Persistence cookies in passive, rewrite or insert mode have the
6334 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006335 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006336 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006337 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006338 * For cookies in prefix mode, the form is :
6339 *
6340 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006341 */
6342 if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
6343 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
6344 struct server *srv = t->be->srv;
6345 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006346
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006347 /* if we're in cookie prefix mode, we'll search the delimitor so that we
6348 * have the server ID between val_beg and delim, and the original cookie between
6349 * delim+1 and val_end. Otherwise, delim==val_end :
6350 *
6351 * Cookie: NAME=SRV; # in all but prefix modes
6352 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
6353 * | || || | |+-> next
6354 * | || || | +--> val_end
6355 * | || || +---------> delim
6356 * | || |+------------> val_beg
6357 * | || +-------------> att_end = equal
6358 * | |+-----------------> att_beg
6359 * | +------------------> prev
6360 * +-------------------------> hdr_beg
6361 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006362
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006363 if (t->be->options & PR_O_COOK_PFX) {
6364 for (delim = val_beg; delim < val_end; delim++)
6365 if (*delim == COOKIE_DELIM)
6366 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02006367 } else {
6368 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006369 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02006370 /* Now check if the cookie contains a date field, which would
6371 * appear after a vertical bar ('|') just after the server name
6372 * and before the delimiter.
6373 */
6374 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
6375 if (vbar1) {
6376 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02006377 * right is the last seen date. It is a base64 encoded
6378 * 30-bit value representing the UNIX date since the
6379 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02006380 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02006381 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02006382 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02006383 if (val_end - vbar1 >= 5) {
6384 val = b64tos30(vbar1);
6385 if (val > 0)
6386 txn->cookie_last_date = val << 2;
6387 }
6388 /* look for a second vertical bar */
6389 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
6390 if (vbar1 && (val_end - vbar1 > 5)) {
6391 val = b64tos30(vbar1 + 1);
6392 if (val > 0)
6393 txn->cookie_first_date = val << 2;
6394 }
Willy Tarreaubca99692010-10-06 19:25:55 +02006395 }
6396 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006397
Willy Tarreauf64d1412010-10-07 20:06:11 +02006398 /* if the cookie has an expiration date and the proxy wants to check
6399 * it, then we do that now. We first check if the cookie is too old,
6400 * then only if it has expired. We detect strict overflow because the
6401 * time resolution here is not great (4 seconds). Cookies with dates
6402 * in the future are ignored if their offset is beyond one day. This
6403 * allows an admin to fix timezone issues without expiring everyone
6404 * and at the same time avoids keeping unwanted side effects for too
6405 * long.
6406 */
6407 if (txn->cookie_first_date && t->be->cookie_maxlife &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006408 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) ||
6409 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006410 txn->flags &= ~TX_CK_MASK;
6411 txn->flags |= TX_CK_OLD;
6412 delim = val_beg; // let's pretend we have not found the cookie
6413 txn->cookie_first_date = 0;
6414 txn->cookie_last_date = 0;
6415 }
6416 else if (txn->cookie_last_date && t->be->cookie_maxidle &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006417 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) ||
6418 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006419 txn->flags &= ~TX_CK_MASK;
6420 txn->flags |= TX_CK_EXPIRED;
6421 delim = val_beg; // let's pretend we have not found the cookie
6422 txn->cookie_first_date = 0;
6423 txn->cookie_last_date = 0;
6424 }
6425
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006426 /* Here, we'll look for the first running server which supports the cookie.
6427 * This allows to share a same cookie between several servers, for example
6428 * to dedicate backup servers to specific servers only.
6429 * However, to prevent clients from sticking to cookie-less backup server
6430 * when they have incidentely learned an empty cookie, we simply ignore
6431 * empty cookies and mark them as invalid.
6432 * The same behaviour is applied when persistence must be ignored.
6433 */
6434 if ((delim == val_beg) || (t->flags & SN_IGNORE_PRST))
6435 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006436
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006437 while (srv) {
6438 if (srv->cookie && (srv->cklen == delim - val_beg) &&
6439 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
6440 if ((srv->state & SRV_RUNNING) ||
6441 (t->be->options & PR_O_PERSIST) ||
6442 (t->flags & SN_FORCE_PRST)) {
6443 /* we found the server and we can use it */
6444 txn->flags &= ~TX_CK_MASK;
6445 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
6446 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01006447 set_target_server(&t->target, srv);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006448 break;
6449 } else {
6450 /* we found a server, but it's down,
6451 * mark it as such and go on in case
6452 * another one is available.
6453 */
6454 txn->flags &= ~TX_CK_MASK;
6455 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006456 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006457 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006458 srv = srv->next;
6459 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006460
Willy Tarreauf64d1412010-10-07 20:06:11 +02006461 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006462 /* no server matched this cookie */
6463 txn->flags &= ~TX_CK_MASK;
6464 txn->flags |= TX_CK_INVALID;
6465 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006466
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006467 /* depending on the cookie mode, we may have to either :
6468 * - delete the complete cookie if we're in insert+indirect mode, so that
6469 * the server never sees it ;
6470 * - remove the server id from the cookie value, and tag the cookie as an
6471 * application cookie so that it does not get accidentely removed later,
6472 * if we're in cookie prefix mode
6473 */
6474 if ((t->be->options & PR_O_COOK_PFX) && (delim != val_end)) {
6475 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006476
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006477 delta = buffer_replace2(req, val_beg, delim + 1, NULL, 0);
6478 val_end += delta;
6479 next += delta;
6480 hdr_end += delta;
6481 hdr_next += delta;
6482 cur_hdr->len += delta;
6483 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006484
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006485 del_from = NULL;
6486 preserve_hdr = 1; /* we want to keep this cookie */
6487 }
6488 else if (del_from == NULL &&
6489 (t->be->options & (PR_O_COOK_INS | PR_O_COOK_IND)) == (PR_O_COOK_INS | PR_O_COOK_IND)) {
6490 del_from = prev;
6491 }
6492 } else {
6493 /* This is not our cookie, so we must preserve it. But if we already
6494 * scheduled another cookie for removal, we cannot remove the
6495 * complete header, but we can remove the previous block itself.
6496 */
6497 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006498
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006499 if (del_from != NULL) {
6500 int delta = del_hdr_value(req, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01006501 if (att_beg >= del_from)
6502 att_beg += delta;
6503 if (att_end >= del_from)
6504 att_end += delta;
6505 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006506 val_end += delta;
6507 next += delta;
6508 hdr_end += delta;
6509 hdr_next += delta;
6510 cur_hdr->len += delta;
6511 http_msg_move_end(&txn->req, delta);
6512 prev = del_from;
6513 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006514 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006515 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006516
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006517 /* Look for the appsession cookie unless persistence must be ignored */
6518 if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
6519 int cmp_len, value_len;
6520 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02006521
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006522 if (t->be->options2 & PR_O2_AS_PFX) {
6523 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
6524 value_begin = att_beg + t->be->appsession_name_len;
6525 value_len = val_end - att_beg - t->be->appsession_name_len;
6526 } else {
6527 cmp_len = att_end - att_beg;
6528 value_begin = val_beg;
6529 value_len = val_end - val_beg;
6530 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01006531
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006532 /* let's see if the cookie is our appcookie */
6533 if (cmp_len == t->be->appsession_name_len &&
6534 memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) {
6535 manage_client_side_appsession(t, value_begin, value_len);
6536 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006537 }
6538
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006539 /* continue with next cookie on this header line */
6540 att_beg = next;
6541 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006542
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006543 /* There are no more cookies on this line.
6544 * We may still have one (or several) marked for deletion at the
6545 * end of the line. We must do this now in two ways :
6546 * - if some cookies must be preserved, we only delete from the
6547 * mark to the end of line ;
6548 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01006549 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006550 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006551 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006552 if (preserve_hdr) {
6553 delta = del_hdr_value(req, &del_from, hdr_end);
6554 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006555 cur_hdr->len += delta;
6556 } else {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006557 delta = buffer_replace2(req, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006558
6559 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006560 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6561 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006562 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01006563 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006564 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006565 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006566 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006567 }
6568
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006569 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006570 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006571 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006572}
6573
6574
Willy Tarreaua15645d2007-03-18 16:22:39 +01006575/* Iterate the same filter through all response headers contained in <rtr>.
6576 * Returns 1 if this filter can be stopped upon return, otherwise 0.
6577 */
6578int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
6579{
6580 char term;
6581 char *cur_ptr, *cur_end, *cur_next;
6582 int cur_idx, old_idx, last_hdr;
6583 struct http_txn *txn = &t->txn;
6584 struct hdr_idx_elem *cur_hdr;
6585 int len, delta;
6586
6587 last_hdr = 0;
6588
Willy Tarreau962c3f42010-01-10 00:15:35 +01006589 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006590 old_idx = 0;
6591
6592 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006593 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006594 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006595 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006596 (exp->action == ACT_ALLOW ||
6597 exp->action == ACT_DENY))
6598 return 0;
6599
6600 cur_idx = txn->hdr_idx.v[old_idx].next;
6601 if (!cur_idx)
6602 break;
6603
6604 cur_hdr = &txn->hdr_idx.v[cur_idx];
6605 cur_ptr = cur_next;
6606 cur_end = cur_ptr + cur_hdr->len;
6607 cur_next = cur_end + cur_hdr->cr + 1;
6608
6609 /* Now we have one header between cur_ptr and cur_end,
6610 * and the next header starts at cur_next.
6611 */
6612
6613 /* The annoying part is that pattern matching needs
6614 * that we modify the contents to null-terminate all
6615 * strings before testing them.
6616 */
6617
6618 term = *cur_end;
6619 *cur_end = '\0';
6620
6621 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6622 switch (exp->action) {
6623 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006624 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006625 last_hdr = 1;
6626 break;
6627
6628 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006629 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006630 last_hdr = 1;
6631 break;
6632
6633 case ACT_REPLACE:
6634 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
6635 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
6636 /* FIXME: if the user adds a newline in the replacement, the
6637 * index will not be recalculated for now, and the new line
6638 * will not be counted as a new header.
6639 */
6640
6641 cur_end += delta;
6642 cur_next += delta;
6643 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006644 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006645 break;
6646
6647 case ACT_REMOVE:
6648 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
6649 cur_next += delta;
6650
Willy Tarreaufa355d42009-11-29 18:12:29 +01006651 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006652 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6653 txn->hdr_idx.used--;
6654 cur_hdr->len = 0;
6655 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006656 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006657 break;
6658
6659 }
6660 }
6661 if (cur_end)
6662 *cur_end = term; /* restore the string terminator */
6663
6664 /* keep the link from this header to next one in case of later
6665 * removal of next header.
6666 */
6667 old_idx = cur_idx;
6668 }
6669 return 0;
6670}
6671
6672
6673/* Apply the filter to the status line in the response buffer <rtr>.
6674 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6675 * or -1 if a replacement resulted in an invalid status line.
6676 */
6677int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
6678{
6679 char term;
6680 char *cur_ptr, *cur_end;
6681 int done;
6682 struct http_txn *txn = &t->txn;
6683 int len, delta;
6684
6685
Willy Tarreau3d300592007-03-18 18:34:41 +01006686 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006687 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006688 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006689 (exp->action == ACT_ALLOW ||
6690 exp->action == ACT_DENY))
6691 return 0;
6692 else if (exp->action == ACT_REMOVE)
6693 return 0;
6694
6695 done = 0;
6696
Willy Tarreau962c3f42010-01-10 00:15:35 +01006697 cur_ptr = txn->rsp.sol;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006698 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006699
6700 /* Now we have the status line between cur_ptr and cur_end */
6701
6702 /* The annoying part is that pattern matching needs
6703 * that we modify the contents to null-terminate all
6704 * strings before testing them.
6705 */
6706
6707 term = *cur_end;
6708 *cur_end = '\0';
6709
6710 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6711 switch (exp->action) {
6712 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006713 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006714 done = 1;
6715 break;
6716
6717 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006718 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006719 done = 1;
6720 break;
6721
6722 case ACT_REPLACE:
6723 *cur_end = term; /* restore the string terminator */
6724 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
6725 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
6726 /* FIXME: if the user adds a newline in the replacement, the
6727 * index will not be recalculated for now, and the new line
6728 * will not be counted as a new header.
6729 */
6730
Willy Tarreaufa355d42009-11-29 18:12:29 +01006731 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006732 cur_end += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006733 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02006734 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01006735 cur_ptr, cur_end + 1,
6736 NULL, NULL);
6737 if (unlikely(!cur_end))
6738 return -1;
6739
6740 /* we have a full respnse and we know that we have either a CR
6741 * or an LF at <ptr>.
6742 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01006743 txn->status = strl2ui(txn->rsp.sol + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006744 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01006745 /* there is no point trying this regex on headers */
6746 return 1;
6747 }
6748 }
6749 *cur_end = term; /* restore the string terminator */
6750 return done;
6751}
6752
6753
6754
6755/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006756 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006757 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
6758 * unparsable response.
6759 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006760int apply_filters_to_response(struct session *s, struct buffer *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006761{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006762 struct http_txn *txn = &s->txn;
6763 struct hdr_exp *exp;
6764
6765 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006766 int ret;
6767
6768 /*
6769 * The interleaving of transformations and verdicts
6770 * makes it difficult to decide to continue or stop
6771 * the evaluation.
6772 */
6773
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006774 if (txn->flags & TX_SVDENY)
6775 break;
6776
Willy Tarreau3d300592007-03-18 18:34:41 +01006777 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006778 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
6779 exp->action == ACT_PASS)) {
6780 exp = exp->next;
6781 continue;
6782 }
6783
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006784 /* if this filter had a condition, evaluate it now and skip to
6785 * next filter if the condition does not match.
6786 */
6787 if (exp->cond) {
6788 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_RTR);
6789 ret = acl_pass(ret);
6790 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6791 ret = !ret;
6792 if (!ret)
6793 continue;
6794 }
6795
Willy Tarreaua15645d2007-03-18 16:22:39 +01006796 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006797 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006798 if (unlikely(ret < 0))
6799 return -1;
6800
6801 if (likely(ret == 0)) {
6802 /* The filter did not match the response, it can be
6803 * iterated through all headers.
6804 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006805 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006806 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006807 }
6808 return 0;
6809}
6810
6811
Willy Tarreaua15645d2007-03-18 16:22:39 +01006812/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006813 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02006814 * desirable to call it only when needed. This function is also used when we
6815 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01006816 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006817void manage_server_side_cookies(struct session *t, struct buffer *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006818{
6819 struct http_txn *txn = &t->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01006820 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006821 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006822 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006823 char *hdr_beg, *hdr_end, *hdr_next;
6824 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006825
Willy Tarreaua15645d2007-03-18 16:22:39 +01006826 /* Iterate through the headers.
6827 * we start with the start line.
6828 */
6829 old_idx = 0;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006830 hdr_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006831
6832 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
6833 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006834 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006835
6836 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02006837 hdr_beg = hdr_next;
6838 hdr_end = hdr_beg + cur_hdr->len;
6839 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006840
Willy Tarreau24581ba2010-08-31 22:39:35 +02006841 /* We have one full header between hdr_beg and hdr_end, and the
6842 * next header starts at hdr_next. We're only interested in
6843 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006844 */
6845
Willy Tarreau24581ba2010-08-31 22:39:35 +02006846 is_cookie2 = 0;
6847 prev = hdr_beg + 10;
6848 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006849 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006850 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
6851 if (!val) {
6852 old_idx = cur_idx;
6853 continue;
6854 }
6855 is_cookie2 = 1;
6856 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006857 }
6858
Willy Tarreau24581ba2010-08-31 22:39:35 +02006859 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
6860 * <prev> points to the colon.
6861 */
Willy Tarreauf1348312010-10-07 15:54:11 +02006862 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006863
Willy Tarreau24581ba2010-08-31 22:39:35 +02006864 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
6865 * check-cache is enabled) and we are not interested in checking
6866 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006867 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006868 if (t->be->cookie_name == NULL &&
6869 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006870 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006871 return;
6872
Willy Tarreau24581ba2010-08-31 22:39:35 +02006873 /* OK so now we know we have to process this response cookie.
6874 * The format of the Set-Cookie header is slightly different
6875 * from the format of the Cookie header in that it does not
6876 * support the comma as a cookie delimiter (thus the header
6877 * cannot be folded) because the Expires attribute described in
6878 * the original Netscape's spec may contain an unquoted date
6879 * with a comma inside. We have to live with this because
6880 * many browsers don't support Max-Age and some browsers don't
6881 * support quoted strings. However the Set-Cookie2 header is
6882 * clean.
6883 *
6884 * We have to keep multiple pointers in order to support cookie
6885 * removal at the beginning, middle or end of header without
6886 * corrupting the header (in case of set-cookie2). A special
6887 * pointer, <scav> points to the beginning of the set-cookie-av
6888 * fields after the first semi-colon. The <next> pointer points
6889 * either to the end of line (set-cookie) or next unquoted comma
6890 * (set-cookie2). All of these headers are valid :
6891 *
6892 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
6893 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6894 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6895 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
6896 * | | | | | | | | | |
6897 * | | | | | | | | +-> next hdr_end <--+
6898 * | | | | | | | +------------> scav
6899 * | | | | | | +--------------> val_end
6900 * | | | | | +--------------------> val_beg
6901 * | | | | +----------------------> equal
6902 * | | | +------------------------> att_end
6903 * | | +----------------------------> att_beg
6904 * | +------------------------------> prev
6905 * +-----------------------------------------> hdr_beg
6906 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006907
Willy Tarreau24581ba2010-08-31 22:39:35 +02006908 for (; prev < hdr_end; prev = next) {
6909 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006910
Willy Tarreau24581ba2010-08-31 22:39:35 +02006911 /* find att_beg */
6912 att_beg = prev + 1;
6913 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6914 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006915
Willy Tarreau24581ba2010-08-31 22:39:35 +02006916 /* find att_end : this is the first character after the last non
6917 * space before the equal. It may be equal to hdr_end.
6918 */
6919 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006920
Willy Tarreau24581ba2010-08-31 22:39:35 +02006921 while (equal < hdr_end) {
6922 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
6923 break;
6924 if (http_is_spht[(unsigned char)*equal++])
6925 continue;
6926 att_end = equal;
6927 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006928
Willy Tarreau24581ba2010-08-31 22:39:35 +02006929 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6930 * is between <att_beg> and <equal>, both may be identical.
6931 */
6932
6933 /* look for end of cookie if there is an equal sign */
6934 if (equal < hdr_end && *equal == '=') {
6935 /* look for the beginning of the value */
6936 val_beg = equal + 1;
6937 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6938 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006939
Willy Tarreau24581ba2010-08-31 22:39:35 +02006940 /* find the end of the value, respecting quotes */
6941 next = find_cookie_value_end(val_beg, hdr_end);
6942
6943 /* make val_end point to the first white space or delimitor after the value */
6944 val_end = next;
6945 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6946 val_end--;
6947 } else {
6948 /* <equal> points to next comma, semi-colon or EOL */
6949 val_beg = val_end = next = equal;
6950 }
6951
6952 if (next < hdr_end) {
6953 /* Set-Cookie2 supports multiple cookies, and <next> points to
6954 * a colon or semi-colon before the end. So skip all attr-value
6955 * pairs and look for the next comma. For Set-Cookie, since
6956 * commas are permitted in values, skip to the end.
6957 */
6958 if (is_cookie2)
6959 next = find_hdr_value_end(next, hdr_end);
6960 else
6961 next = hdr_end;
6962 }
6963
6964 /* Now everything is as on the diagram above */
6965
6966 /* Ignore cookies with no equal sign */
6967 if (equal == val_end)
6968 continue;
6969
6970 /* If there are spaces around the equal sign, we need to
6971 * strip them otherwise we'll get trouble for cookie captures,
6972 * or even for rewrites. Since this happens extremely rarely,
6973 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006974 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006975 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6976 int stripped_before = 0;
6977 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006978
Willy Tarreau24581ba2010-08-31 22:39:35 +02006979 if (att_end != equal) {
6980 stripped_before = buffer_replace2(res, att_end, equal, NULL, 0);
6981 equal += stripped_before;
6982 val_beg += stripped_before;
6983 }
6984
6985 if (val_beg > equal + 1) {
6986 stripped_after = buffer_replace2(res, equal + 1, val_beg, NULL, 0);
6987 val_beg += stripped_after;
6988 stripped_before += stripped_after;
6989 }
6990
6991 val_end += stripped_before;
6992 next += stripped_before;
6993 hdr_end += stripped_before;
6994 hdr_next += stripped_before;
6995 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02006996 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006997 }
6998
6999 /* First, let's see if we want to capture this cookie. We check
7000 * that we don't already have a server side cookie, because we
7001 * can only capture one. Also as an optimisation, we ignore
7002 * cookies shorter than the declared name.
7003 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007004 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01007005 txn->srv_cookie == NULL &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007006 (val_end - att_beg >= t->fe->capture_namelen) &&
7007 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
7008 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02007009 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007010 Alert("HTTP logging : out of memory.\n");
7011 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01007012 else {
7013 if (log_len > t->fe->capture_len)
7014 log_len = t->fe->capture_len;
7015 memcpy(txn->srv_cookie, att_beg, log_len);
7016 txn->srv_cookie[log_len] = 0;
7017 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007018 }
7019
Willy Tarreau827aee92011-03-10 16:55:02 +01007020 srv = target_srv(&t->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007021 /* now check if we need to process it for persistence */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007022 if (!(t->flags & SN_IGNORE_PRST) &&
7023 (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
7024 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02007025 /* assume passive cookie by default */
7026 txn->flags &= ~TX_SCK_MASK;
7027 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007028
7029 /* If the cookie is in insert mode on a known server, we'll delete
7030 * this occurrence because we'll insert another one later.
7031 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02007032 * a direct access.
7033 */
Willy Tarreauba4c5be2010-10-23 12:46:42 +02007034 if (t->be->options2 & PR_O2_COOK_PSV) {
7035 /* The "preserve" flag was set, we don't want to touch the
7036 * server's cookie.
7037 */
7038 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007039 else if ((srv && (t->be->options & PR_O_COOK_INS)) ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007040 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007041 /* this cookie must be deleted */
7042 if (*prev == ':' && next == hdr_end) {
7043 /* whole header */
7044 delta = buffer_replace2(res, hdr_beg, hdr_next, NULL, 0);
7045 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7046 txn->hdr_idx.used--;
7047 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007048 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007049 hdr_next += delta;
7050 http_msg_move_end(&txn->rsp, delta);
7051 /* note: while both invalid now, <next> and <hdr_end>
7052 * are still equal, so the for() will stop as expected.
7053 */
7054 } else {
7055 /* just remove the value */
7056 int delta = del_hdr_value(res, &prev, next);
7057 next = prev;
7058 hdr_end += delta;
7059 hdr_next += delta;
7060 cur_hdr->len += delta;
7061 http_msg_move_end(&txn->rsp, delta);
7062 }
Willy Tarreauf1348312010-10-07 15:54:11 +02007063 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01007064 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007065 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007066 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007067 else if (srv && srv->cookie && (t->be->options & PR_O_COOK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007068 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01007069 * with this server since we know it.
7070 */
Willy Tarreau827aee92011-03-10 16:55:02 +01007071 delta = buffer_replace2(res, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007072 next += delta;
7073 hdr_end += delta;
7074 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007075 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007076 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007077
Willy Tarreauf1348312010-10-07 15:54:11 +02007078 txn->flags &= ~TX_SCK_MASK;
7079 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007080 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007081 else if (srv && srv && (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007082 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02007083 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01007084 */
Willy Tarreau827aee92011-03-10 16:55:02 +01007085 delta = buffer_replace2(res, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007086 next += delta;
7087 hdr_end += delta;
7088 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007089 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007090 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007091
Willy Tarreau827aee92011-03-10 16:55:02 +01007092 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02007093 txn->flags &= ~TX_SCK_MASK;
7094 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007095 }
7096 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007097 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
7098 else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007099 int cmp_len, value_len;
7100 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007101
Cyril Bontéb21570a2009-11-29 20:04:48 +01007102 if (t->be->options2 & PR_O2_AS_PFX) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007103 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
7104 value_begin = att_beg + t->be->appsession_name_len;
7105 value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01007106 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007107 cmp_len = att_end - att_beg;
7108 value_begin = val_beg;
7109 value_len = MIN(t->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007110 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007111
Cyril Bonté17530c32010-04-06 21:11:10 +02007112 if ((cmp_len == t->be->appsession_name_len) &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007113 (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7114 /* free a possibly previously allocated memory */
7115 pool_free2(apools.sessid, txn->sessid);
7116
Cyril Bontéb21570a2009-11-29 20:04:48 +01007117 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007118 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007119 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7120 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
7121 return;
7122 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007123 memcpy(txn->sessid, value_begin, value_len);
7124 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007125 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02007126 }
7127 /* that's done for this cookie, check the next one on the same
7128 * line when next != hdr_end (only if is_cookie2).
7129 */
7130 }
7131 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007132 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007133 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007134
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007135 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007136 appsess *asession = NULL;
7137 /* only do insert, if lookup fails */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007138 asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007139 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01007140 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007141 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
7142 Alert("Not enough Memory process_srv():asession:calloc().\n");
7143 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
7144 return;
7145 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007146 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
7147
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007148 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
7149 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7150 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007151 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007152 return;
7153 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007154 memcpy(asession->sessid, txn->sessid, t->be->appsession_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007155 asession->sessid[t->be->appsession_len] = 0;
7156
Willy Tarreau827aee92011-03-10 16:55:02 +01007157 server_id_len = strlen(target_srv(&t->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007158 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007159 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007160 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007161 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007162 return;
7163 }
7164 asession->serverid[0] = '\0';
Willy Tarreau827aee92011-03-10 16:55:02 +01007165 memcpy(asession->serverid, target_srv(&t->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007166
7167 asession->request_count = 0;
7168 appsession_hash_insert(&(t->be->htbl_proxy), asession);
7169 }
7170
7171 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
7172 asession->request_count++;
7173 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007174}
7175
7176
Willy Tarreaua15645d2007-03-18 16:22:39 +01007177/*
7178 * Check if response is cacheable or not. Updates t->flags.
7179 */
7180void check_response_for_cacheability(struct session *t, struct buffer *rtr)
7181{
7182 struct http_txn *txn = &t->txn;
7183 char *p1, *p2;
7184
7185 char *cur_ptr, *cur_end, *cur_next;
7186 int cur_idx;
7187
Willy Tarreau5df51872007-11-25 16:20:08 +01007188 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007189 return;
7190
7191 /* Iterate through the headers.
7192 * we start with the start line.
7193 */
7194 cur_idx = 0;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007195 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007196
7197 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7198 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007199 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007200
7201 cur_hdr = &txn->hdr_idx.v[cur_idx];
7202 cur_ptr = cur_next;
7203 cur_end = cur_ptr + cur_hdr->len;
7204 cur_next = cur_end + cur_hdr->cr + 1;
7205
7206 /* We have one full header between cur_ptr and cur_end, and the
7207 * next header starts at cur_next. We're only interested in
7208 * "Cookie:" headers.
7209 */
7210
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007211 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7212 if (val) {
7213 if ((cur_end - (cur_ptr + val) >= 8) &&
7214 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7215 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7216 return;
7217 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007218 }
7219
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007220 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7221 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007222 continue;
7223
7224 /* OK, right now we know we have a cache-control header at cur_ptr */
7225
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007226 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007227
7228 if (p1 >= cur_end) /* no more info */
7229 continue;
7230
7231 /* p1 is at the beginning of the value */
7232 p2 = p1;
7233
Willy Tarreau8f8e6452007-06-17 21:51:38 +02007234 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007235 p2++;
7236
7237 /* we have a complete value between p1 and p2 */
7238 if (p2 < cur_end && *p2 == '=') {
7239 /* we have something of the form no-cache="set-cookie" */
7240 if ((cur_end - p1 >= 21) &&
7241 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
7242 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01007243 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007244 continue;
7245 }
7246
7247 /* OK, so we know that either p2 points to the end of string or to a comma */
7248 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
7249 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
7250 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
7251 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007252 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007253 return;
7254 }
7255
7256 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007257 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007258 continue;
7259 }
7260 }
7261}
7262
7263
Willy Tarreau58f10d72006-12-04 02:26:12 +01007264/*
7265 * Try to retrieve a known appsession in the URI, then the associated server.
7266 * If the server is found, it's assigned to the session.
7267 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007268void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007269{
Cyril Bontéb21570a2009-11-29 20:04:48 +01007270 char *end_params, *first_param, *cur_param, *next_param;
7271 char separator;
7272 int value_len;
7273
7274 int mode = t->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007275
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007276 if (t->be->appsession_name == NULL ||
Cyril Bonté17530c32010-04-06 21:11:10 +02007277 (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 +01007278 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007279 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007280
Cyril Bontéb21570a2009-11-29 20:04:48 +01007281 first_param = NULL;
7282 switch (mode) {
7283 case PR_O2_AS_M_PP:
7284 first_param = memchr(begin, ';', len);
7285 break;
7286 case PR_O2_AS_M_QS:
7287 first_param = memchr(begin, '?', len);
7288 break;
7289 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007290
Cyril Bontéb21570a2009-11-29 20:04:48 +01007291 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007292 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007293 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007294
Cyril Bontéb21570a2009-11-29 20:04:48 +01007295 switch (mode) {
7296 case PR_O2_AS_M_PP:
7297 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
7298 end_params = (char *) begin + len;
7299 }
7300 separator = ';';
7301 break;
7302 case PR_O2_AS_M_QS:
7303 end_params = (char *) begin + len;
7304 separator = '&';
7305 break;
7306 default:
7307 /* unknown mode, shouldn't happen */
7308 return;
7309 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007310
Cyril Bontéb21570a2009-11-29 20:04:48 +01007311 cur_param = next_param = end_params;
7312 while (cur_param > first_param) {
7313 cur_param--;
7314 if ((cur_param[0] == separator) || (cur_param == first_param)) {
7315 /* let's see if this is the appsession parameter */
7316 if ((cur_param + t->be->appsession_name_len + 1 < next_param) &&
7317 ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') &&
7318 (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7319 /* Cool... it's the right one */
7320 cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2);
7321 value_len = MIN(t->be->appsession_len, next_param - cur_param);
7322 if (value_len > 0) {
7323 manage_client_side_appsession(t, cur_param, value_len);
7324 }
7325 break;
7326 }
7327 next_param = cur_param;
7328 }
7329 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007330#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007331 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02007332 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01007333#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01007334}
7335
Willy Tarreaub2513902006-12-17 14:52:38 +01007336/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02007337 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007338 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01007339 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02007340 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01007341 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01007342 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007343 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01007344 */
Willy Tarreau295a8372011-03-10 11:25:07 +01007345int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01007346{
7347 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007348 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01007349
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007350 if (!uri_auth)
7351 return 0;
7352
Cyril Bonté70be45d2010-10-12 00:14:35 +02007353 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007354 return 0;
7355
Willy Tarreau295a8372011-03-10 11:25:07 +01007356 memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats));
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007357
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007358 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007359 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01007360 return 0;
7361
Willy Tarreau962c3f42010-01-10 00:15:35 +01007362 h = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007363
Willy Tarreau0214c3a2007-01-07 13:47:30 +01007364 /* the URI is in h */
7365 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01007366 return 0;
7367
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007368 h += uri_auth->uri_len;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007369 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007370 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007371 si->applet.ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007372 break;
7373 }
7374 h++;
7375 }
7376
7377 if (uri_auth->refresh) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01007378 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7379 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007380 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007381 si->applet.ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007382 break;
7383 }
7384 h++;
7385 }
7386 }
7387
Willy Tarreau962c3f42010-01-10 00:15:35 +01007388 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7389 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02007390 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007391 si->applet.ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau55bb8452007-10-17 18:44:57 +02007392 break;
7393 }
7394 h++;
7395 }
7396
Cyril Bonté70be45d2010-10-12 00:14:35 +02007397 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7398 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 8) {
7399 if (memcmp(h, ";st=", 4) == 0) {
7400 h += 4;
7401
7402 if (memcmp(h, STAT_STATUS_DONE, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007403 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007404 else if (memcmp(h, STAT_STATUS_NONE, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007405 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007406 else if (memcmp(h, STAT_STATUS_EXCD, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007407 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté474be412010-10-12 00:14:36 +02007408 else if (memcmp(h, STAT_STATUS_DENY, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007409 si->applet.ctx.stats.st_code = STAT_STATUS_DENY;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007410 else
Willy Tarreau295a8372011-03-10 11:25:07 +01007411 si->applet.ctx.stats.st_code = STAT_STATUS_UNKN;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007412 break;
7413 }
7414 h++;
7415 }
7416
Willy Tarreau295a8372011-03-10 11:25:07 +01007417 si->applet.ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO;
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007418
Willy Tarreaub2513902006-12-17 14:52:38 +01007419 return 1;
7420}
7421
Willy Tarreau4076a152009-04-02 15:18:36 +02007422/*
7423 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau962c3f42010-01-10 00:15:35 +01007424 * WARNING: it's unlikely that we've reached HTTP_MSG_BODY here so we must not
7425 * assume that msg->sol = buf->data + msg->som.
Willy Tarreau4076a152009-04-02 15:18:36 +02007426 */
7427void http_capture_bad_message(struct error_snapshot *es, struct session *s,
7428 struct buffer *buf, struct http_msg *msg,
Willy Tarreau078272e2010-12-12 12:46:33 +01007429 int state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02007430{
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007431 if (buf->r <= (buf->data + msg->som)) { /* message wraps */
7432 int len1 = buf->size - msg->som;
7433 es->len = buf->r - (buf->data + msg->som) + buf->size;
7434 memcpy(es->buf, buf->data + msg->som, MIN(len1, sizeof(es->buf)));
7435 if (es->len > len1 && len1 < sizeof(es->buf))
7436 memcpy(es->buf, buf->data, MIN(es->len, sizeof(es->buf)) - len1);
7437 }
7438 else {
7439 es->len = buf->r - (buf->data + msg->som);
7440 memcpy(es->buf, buf->data + msg->som, MIN(es->len, sizeof(es->buf)));
7441 }
7442
Willy Tarreau4076a152009-04-02 15:18:36 +02007443 if (msg->err_pos >= 0)
Willy Tarreau2df8d712009-05-01 11:33:17 +02007444 es->pos = msg->err_pos - msg->som;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007445 else if (buf->lr >= (buf->data + msg->som))
Willy Tarreau2df8d712009-05-01 11:33:17 +02007446 es->pos = buf->lr - (buf->data + msg->som);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007447 else
7448 es->pos = buf->lr - (buf->data + msg->som) + buf->size;
7449
Willy Tarreau4076a152009-04-02 15:18:36 +02007450 es->when = date; // user-visible date
7451 es->sid = s->uniq_id;
Willy Tarreau827aee92011-03-10 16:55:02 +01007452 es->srv = target_srv(&s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02007453 es->oe = other_end;
Willy Tarreau957c0a52011-03-03 17:42:23 +01007454 es->src = s->req->prod->addr.c.from;
Willy Tarreau078272e2010-12-12 12:46:33 +01007455 es->state = state;
7456 es->flags = buf->flags;
Willy Tarreau10479e42010-12-12 14:00:34 +01007457 es->ev_id = error_snapshot_id++;
Willy Tarreau4076a152009-04-02 15:18:36 +02007458}
Willy Tarreaub2513902006-12-17 14:52:38 +01007459
Willy Tarreaubce70882009-09-07 11:51:47 +02007460/* return the IP address pointed to by occurrence <occ> of header <hname> in
7461 * HTTP message <msg> indexed in <idx>. If <occ> is strictly positive, the
7462 * occurrence number corresponding to this value is returned. If <occ> is
7463 * strictly negative, the occurrence number before the end corresponding to
7464 * this value is returned. If <occ> is null, any value is returned, so it is
7465 * not recommended to use it that way. Negative occurrences are limited to
7466 * a small value because it is required to keep them in memory while scanning.
7467 * IP address 0.0.0.0 is returned if no match is found.
7468 */
7469unsigned int get_ip_from_hdr2(struct http_msg *msg, const char *hname, int hlen, struct hdr_idx *idx, int occ)
7470{
7471 struct hdr_ctx ctx;
7472 unsigned int hdr_hist[MAX_HDR_HISTORY];
7473 unsigned int hist_ptr;
7474 int found = 0;
7475
7476 ctx.idx = 0;
7477 if (occ >= 0) {
7478 while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) {
7479 occ--;
7480 if (occ <= 0) {
7481 found = 1;
7482 break;
7483 }
7484 }
7485 if (!found)
7486 return 0;
7487 return inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen);
7488 }
7489
7490 /* negative occurrence, we scan all the list then walk back */
7491 if (-occ > MAX_HDR_HISTORY)
7492 return 0;
7493
7494 hist_ptr = 0;
7495 hdr_hist[hist_ptr] = 0;
7496 while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) {
7497 hdr_hist[hist_ptr++] = inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen);
7498 if (hist_ptr >= MAX_HDR_HISTORY)
7499 hist_ptr = 0;
7500 found++;
7501 }
7502 if (-occ > found)
7503 return 0;
7504 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
7505 * find occurrence -occ, so we have to check [hist_ptr+occ].
7506 */
7507 hist_ptr += occ;
7508 if (hist_ptr >= MAX_HDR_HISTORY)
7509 hist_ptr -= MAX_HDR_HISTORY;
7510 return hdr_hist[hist_ptr];
7511}
7512
Willy Tarreaubaaee002006-06-26 02:48:02 +02007513/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01007514 * Print a debug line with a header
7515 */
7516void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
7517{
7518 int len, max;
7519 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02007520 dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007521 max = end - start;
7522 UBOUND(max, sizeof(trash) - len - 1);
7523 len += strlcpy2(trash + len, start, max + 1);
7524 trash[len++] = '\n';
7525 write(1, trash, len);
7526}
7527
Willy Tarreau0937bc42009-12-22 15:03:09 +01007528/*
7529 * Initialize a new HTTP transaction for session <s>. It is assumed that all
7530 * the required fields are properly allocated and that we only need to (re)init
7531 * them. This should be used before processing any new request.
7532 */
7533void http_init_txn(struct session *s)
7534{
7535 struct http_txn *txn = &s->txn;
7536 struct proxy *fe = s->fe;
7537
7538 txn->flags = 0;
7539 txn->status = -1;
7540
Willy Tarreauf64d1412010-10-07 20:06:11 +02007541 txn->cookie_first_date = 0;
7542 txn->cookie_last_date = 0;
7543
Willy Tarreau0937bc42009-12-22 15:03:09 +01007544 txn->req.sol = txn->req.eol = NULL;
7545 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
7546 txn->rsp.sol = txn->rsp.eol = NULL;
7547 txn->rsp.som = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreau124d9912011-03-01 20:30:48 +01007548 txn->req.chunk_len = 0LL;
7549 txn->req.body_len = 0LL;
7550 txn->rsp.chunk_len = 0LL;
7551 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007552 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
7553 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007554
7555 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007556
7557 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
7558 if (fe->options2 & PR_O2_REQBUG_OK)
7559 txn->req.err_pos = -1; /* let buggy requests pass */
7560
Willy Tarreau46023632010-01-07 22:51:47 +01007561 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007562 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
7563
Willy Tarreau46023632010-01-07 22:51:47 +01007564 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007565 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
7566
7567 if (txn->hdr_idx.v)
7568 hdr_idx_init(&txn->hdr_idx);
7569}
7570
7571/* to be used at the end of a transaction */
7572void http_end_txn(struct session *s)
7573{
7574 struct http_txn *txn = &s->txn;
7575
7576 /* these ones will have been dynamically allocated */
7577 pool_free2(pool2_requri, txn->uri);
7578 pool_free2(pool2_capture, txn->cli_cookie);
7579 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007580 pool_free2(apools.sessid, txn->sessid);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007581
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007582 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007583 txn->uri = NULL;
7584 txn->srv_cookie = NULL;
7585 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01007586
7587 if (txn->req.cap) {
7588 struct cap_hdr *h;
7589 for (h = s->fe->req_cap; h; h = h->next)
7590 pool_free2(h->pool, txn->req.cap[h->index]);
7591 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
7592 }
7593
7594 if (txn->rsp.cap) {
7595 struct cap_hdr *h;
7596 for (h = s->fe->rsp_cap; h; h = h->next)
7597 pool_free2(h->pool, txn->rsp.cap[h->index]);
7598 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
7599 }
7600
Willy Tarreau0937bc42009-12-22 15:03:09 +01007601}
7602
7603/* to be used at the end of a transaction to prepare a new one */
7604void http_reset_txn(struct session *s)
7605{
7606 http_end_txn(s);
7607 http_init_txn(s);
7608
7609 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007610 s->logs.logwait = s->fe->to_log;
Simon Hormanaf514952011-06-21 14:34:57 +09007611 session_del_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +01007612 clear_target(&s->target);
Emeric Brunb982a3d2010-01-04 15:45:53 +01007613 /* re-init store persistence */
7614 s->store_count = 0;
7615
Willy Tarreau0937bc42009-12-22 15:03:09 +01007616 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007617
7618 s->req->flags |= BF_READ_DONTWAIT; /* one read is usually enough */
7619
Willy Tarreau739cfba2010-01-25 23:11:14 +01007620 /* We must trim any excess data from the response buffer, because we
7621 * may have blocked an invalid response from a server that we don't
7622 * want to accidentely forward once we disable the analysers, nor do
7623 * we want those data to come along with next response. A typical
7624 * example of such data would be from a buggy server responding to
7625 * a HEAD with some data, or sending more than the advertised
7626 * content-length.
7627 */
7628 if (unlikely(s->rep->l > s->rep->send_max)) {
7629 s->rep->l = s->rep->send_max;
7630 s->rep->r = s->rep->w + s->rep->l;
7631 if (s->rep->r >= s->rep->data + s->rep->size)
7632 s->rep->r -= s->rep->size;
7633 }
7634
Willy Tarreau0937bc42009-12-22 15:03:09 +01007635 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02007636 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007637
Willy Tarreaud04e8582010-05-31 12:31:35 +02007638 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007639 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007640
7641 s->req->rex = TICK_ETERNITY;
7642 s->req->wex = TICK_ETERNITY;
7643 s->req->analyse_exp = TICK_ETERNITY;
7644 s->rep->rex = TICK_ETERNITY;
7645 s->rep->wex = TICK_ETERNITY;
7646 s->rep->analyse_exp = TICK_ETERNITY;
7647}
Willy Tarreau58f10d72006-12-04 02:26:12 +01007648
Willy Tarreauff011f22011-01-06 17:51:27 +01007649void free_http_req_rules(struct list *r) {
7650 struct http_req_rule *tr, *pr;
7651
7652 list_for_each_entry_safe(pr, tr, r, list) {
7653 LIST_DEL(&pr->list);
7654 if (pr->action == HTTP_REQ_ACT_HTTP_AUTH)
7655 free(pr->http_auth.realm);
7656
7657 free(pr);
7658 }
7659}
7660
7661struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
7662{
7663 struct http_req_rule *rule;
7664 int cur_arg;
7665
7666 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
7667 if (!rule) {
7668 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
7669 return NULL;
7670 }
7671
7672 if (!*args[0]) {
7673 goto req_error_parsing;
7674 } else if (!strcmp(args[0], "allow")) {
7675 rule->action = HTTP_REQ_ACT_ALLOW;
7676 cur_arg = 1;
7677 } else if (!strcmp(args[0], "deny")) {
7678 rule->action = HTTP_REQ_ACT_DENY;
7679 cur_arg = 1;
7680 } else if (!strcmp(args[0], "auth")) {
7681 rule->action = HTTP_REQ_ACT_HTTP_AUTH;
7682 cur_arg = 1;
7683
7684 while(*args[cur_arg]) {
7685 if (!strcmp(args[cur_arg], "realm")) {
7686 rule->http_auth.realm = strdup(args[cur_arg + 1]);
7687 cur_arg+=2;
7688 continue;
7689 } else
7690 break;
7691 }
7692 } else {
7693req_error_parsing:
7694 Alert("parsing [%s:%d]: %s '%s', expects 'allow', 'deny', 'auth'.\n",
7695 file, linenum, *args[1]?"unknown parameter":"missing keyword in", args[*args[1]?1:0]);
7696 return NULL;
7697 }
7698
7699 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
7700 struct acl_cond *cond;
7701
7702 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg)) == NULL) {
7703 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition.\n",
7704 file, linenum, args[0]);
7705 return NULL;
7706 }
7707 rule->cond = cond;
7708 }
7709 else if (*args[cur_arg]) {
7710 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
7711 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
7712 file, linenum, args[0], args[cur_arg]);
7713 return NULL;
7714 }
7715
7716 return rule;
7717}
7718
Willy Tarreau8797c062007-05-07 00:55:35 +02007719/************************************************************************/
7720/* The code below is dedicated to ACL parsing and matching */
7721/************************************************************************/
7722
7723
7724
7725
7726/* 1. Check on METHOD
7727 * We use the pre-parsed method if it is known, and store its number as an
7728 * integer. If it is unknown, we use the pointer and the length.
7729 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02007730static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02007731{
7732 int len, meth;
7733
Willy Tarreauae8b7962007-06-09 23:10:04 +02007734 len = strlen(*text);
7735 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02007736
7737 pattern->val.i = meth;
7738 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02007739 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007740 if (!pattern->ptr.str)
7741 return 0;
7742 pattern->len = len;
7743 }
7744 return 1;
7745}
7746
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007747static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007748acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
7749 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007750{
7751 int meth;
7752 struct http_txn *txn = l7;
7753
Willy Tarreaub6866442008-07-14 23:54:42 +02007754 if (!txn)
7755 return 0;
7756
Willy Tarreau655dce92009-11-08 13:10:58 +01007757 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007758 return 0;
7759
Willy Tarreau8797c062007-05-07 00:55:35 +02007760 meth = txn->meth;
7761 test->i = meth;
7762 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02007763 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7764 /* ensure the indexes are not affected */
7765 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02007766 test->len = txn->req.sl.rq.m_l;
7767 test->ptr = txn->req.sol;
7768 }
7769 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7770 return 1;
7771}
7772
7773static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
7774{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02007775 int icase;
7776
Willy Tarreau8797c062007-05-07 00:55:35 +02007777 if (test->i != pattern->val.i)
Willy Tarreau11382812008-07-09 16:18:21 +02007778 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02007779
7780 if (test->i != HTTP_METH_OTHER)
Willy Tarreau11382812008-07-09 16:18:21 +02007781 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02007782
7783 /* Other method, we must compare the strings */
7784 if (pattern->len != test->len)
Willy Tarreau11382812008-07-09 16:18:21 +02007785 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02007786
7787 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
7788 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
7789 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02007790 return ACL_PAT_FAIL;
7791 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02007792}
7793
7794/* 2. Check on Request/Status Version
7795 * We simply compare strings here.
7796 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02007797static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02007798{
Willy Tarreauae8b7962007-06-09 23:10:04 +02007799 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007800 if (!pattern->ptr.str)
7801 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02007802 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007803 return 1;
7804}
7805
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007806static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007807acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
7808 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007809{
7810 struct http_txn *txn = l7;
7811 char *ptr;
7812 int len;
7813
Willy Tarreaub6866442008-07-14 23:54:42 +02007814 if (!txn)
7815 return 0;
7816
Willy Tarreau655dce92009-11-08 13:10:58 +01007817 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007818 return 0;
7819
Willy Tarreau8797c062007-05-07 00:55:35 +02007820 len = txn->req.sl.rq.v_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007821 ptr = txn->req.sol + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02007822
7823 while ((len-- > 0) && (*ptr++ != '/'));
7824 if (len <= 0)
7825 return 0;
7826
7827 test->ptr = ptr;
7828 test->len = len;
7829
7830 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7831 return 1;
7832}
7833
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007834static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007835acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
7836 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007837{
7838 struct http_txn *txn = l7;
7839 char *ptr;
7840 int len;
7841
Willy Tarreaub6866442008-07-14 23:54:42 +02007842 if (!txn)
7843 return 0;
7844
Willy Tarreau655dce92009-11-08 13:10:58 +01007845 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007846 return 0;
7847
Willy Tarreau8797c062007-05-07 00:55:35 +02007848 len = txn->rsp.sl.st.v_l;
7849 ptr = txn->rsp.sol;
7850
7851 while ((len-- > 0) && (*ptr++ != '/'));
7852 if (len <= 0)
7853 return 0;
7854
7855 test->ptr = ptr;
7856 test->len = len;
7857
7858 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7859 return 1;
7860}
7861
7862/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007863static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007864acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
7865 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007866{
7867 struct http_txn *txn = l7;
7868 char *ptr;
7869 int len;
7870
Willy Tarreaub6866442008-07-14 23:54:42 +02007871 if (!txn)
7872 return 0;
7873
Willy Tarreau655dce92009-11-08 13:10:58 +01007874 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007875 return 0;
7876
Willy Tarreau8797c062007-05-07 00:55:35 +02007877 len = txn->rsp.sl.st.c_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007878 ptr = txn->rsp.sol + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02007879
7880 test->i = __strl2ui(ptr, len);
7881 test->flags = ACL_TEST_F_VOL_1ST;
7882 return 1;
7883}
7884
7885/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007886static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007887acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
7888 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007889{
7890 struct http_txn *txn = l7;
7891
Willy Tarreaub6866442008-07-14 23:54:42 +02007892 if (!txn)
7893 return 0;
7894
Willy Tarreau655dce92009-11-08 13:10:58 +01007895 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007896 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007897
Willy Tarreauc11416f2007-06-17 16:58:38 +02007898 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7899 /* ensure the indexes are not affected */
7900 return 0;
7901
Willy Tarreau8797c062007-05-07 00:55:35 +02007902 test->len = txn->req.sl.rq.u_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007903 test->ptr = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8797c062007-05-07 00:55:35 +02007904
Willy Tarreauf3d25982007-05-08 22:45:09 +02007905 /* we do not need to set READ_ONLY because the data is in a buffer */
7906 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02007907 return 1;
7908}
7909
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007910static int
7911acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
7912 struct acl_expr *expr, struct acl_test *test)
7913{
7914 struct http_txn *txn = l7;
7915
Willy Tarreaub6866442008-07-14 23:54:42 +02007916 if (!txn)
7917 return 0;
7918
Willy Tarreau655dce92009-11-08 13:10:58 +01007919 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007920 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007921
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007922 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7923 /* ensure the indexes are not affected */
7924 return 0;
7925
7926 /* Parse HTTP request */
Willy Tarreau957c0a52011-03-03 17:42:23 +01007927 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to);
7928 test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007929 test->i = AF_INET;
7930
7931 /*
7932 * If we are parsing url in frontend space, we prepare backend stage
7933 * to not parse again the same url ! optimization lazyness...
7934 */
7935 if (px->options & PR_O_HTTP_PROXY)
7936 l4->flags |= SN_ADDR_SET;
7937
7938 test->flags = ACL_TEST_F_READ_ONLY;
7939 return 1;
7940}
7941
7942static int
7943acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
7944 struct acl_expr *expr, struct acl_test *test)
7945{
7946 struct http_txn *txn = l7;
7947
Willy Tarreaub6866442008-07-14 23:54:42 +02007948 if (!txn)
7949 return 0;
7950
Willy Tarreau655dce92009-11-08 13:10:58 +01007951 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007952 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007953
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007954 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7955 /* ensure the indexes are not affected */
7956 return 0;
7957
7958 /* Same optimization as url_ip */
Willy Tarreau957c0a52011-03-03 17:42:23 +01007959 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to);
7960 test->i = ntohs(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_port);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007961
7962 if (px->options & PR_O_HTTP_PROXY)
7963 l4->flags |= SN_ADDR_SET;
7964
7965 test->flags = ACL_TEST_F_READ_ONLY;
7966 return 1;
7967}
7968
Willy Tarreauc11416f2007-06-17 16:58:38 +02007969/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
7970 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
7971 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02007972static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02007973acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02007974 struct acl_expr *expr, struct acl_test *test)
7975{
7976 struct http_txn *txn = l7;
7977 struct hdr_idx *idx = &txn->hdr_idx;
7978 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02007979
Willy Tarreaub6866442008-07-14 23:54:42 +02007980 if (!txn)
7981 return 0;
7982
Willy Tarreau33a7e692007-06-10 19:45:56 +02007983 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
7984 /* search for header from the beginning */
7985 ctx->idx = 0;
7986
Willy Tarreau33a7e692007-06-10 19:45:56 +02007987 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
7988 test->flags |= ACL_TEST_F_FETCH_MORE;
7989 test->flags |= ACL_TEST_F_VOL_HDR;
7990 test->len = ctx->vlen;
7991 test->ptr = (char *)ctx->line + ctx->val;
7992 return 1;
7993 }
7994
7995 test->flags &= ~ACL_TEST_F_FETCH_MORE;
7996 test->flags |= ACL_TEST_F_VOL_HDR;
7997 return 0;
7998}
7999
Willy Tarreau33a7e692007-06-10 19:45:56 +02008000static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02008001acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
8002 struct acl_expr *expr, struct acl_test *test)
8003{
8004 struct http_txn *txn = l7;
8005
Willy Tarreaub6866442008-07-14 23:54:42 +02008006 if (!txn)
8007 return 0;
8008
Willy Tarreau655dce92009-11-08 13:10:58 +01008009 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008010 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008011
Willy Tarreauc11416f2007-06-17 16:58:38 +02008012 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8013 /* ensure the indexes are not affected */
8014 return 0;
8015
8016 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
8017}
8018
8019static int
8020acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
8021 struct acl_expr *expr, struct acl_test *test)
8022{
8023 struct http_txn *txn = l7;
8024
Willy Tarreaub6866442008-07-14 23:54:42 +02008025 if (!txn)
8026 return 0;
8027
Willy Tarreau655dce92009-11-08 13:10:58 +01008028 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008029 return 0;
8030
8031 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
8032}
8033
8034/* 6. Check on HTTP header count. The number of occurrences is returned.
8035 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
8036 */
8037static int
8038acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02008039 struct acl_expr *expr, struct acl_test *test)
8040{
8041 struct http_txn *txn = l7;
8042 struct hdr_idx *idx = &txn->hdr_idx;
8043 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008044 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02008045
Willy Tarreaub6866442008-07-14 23:54:42 +02008046 if (!txn)
8047 return 0;
8048
Willy Tarreau33a7e692007-06-10 19:45:56 +02008049 ctx.idx = 0;
8050 cnt = 0;
8051 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
8052 cnt++;
8053
8054 test->i = cnt;
8055 test->flags = ACL_TEST_F_VOL_HDR;
8056 return 1;
8057}
8058
Willy Tarreauc11416f2007-06-17 16:58:38 +02008059static int
8060acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
8061 struct acl_expr *expr, struct acl_test *test)
8062{
8063 struct http_txn *txn = l7;
8064
Willy Tarreaub6866442008-07-14 23:54:42 +02008065 if (!txn)
8066 return 0;
8067
Willy Tarreau655dce92009-11-08 13:10:58 +01008068 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008069 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008070
Willy Tarreauc11416f2007-06-17 16:58:38 +02008071 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8072 /* ensure the indexes are not affected */
8073 return 0;
8074
8075 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
8076}
8077
8078static int
8079acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
8080 struct acl_expr *expr, struct acl_test *test)
8081{
8082 struct http_txn *txn = l7;
8083
Willy Tarreaub6866442008-07-14 23:54:42 +02008084 if (!txn)
8085 return 0;
8086
Willy Tarreau655dce92009-11-08 13:10:58 +01008087 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008088 return 0;
8089
8090 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
8091}
8092
Willy Tarreau33a7e692007-06-10 19:45:56 +02008093/* 7. Check on HTTP header's integer value. The integer value is returned.
8094 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02008095 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02008096 */
8097static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02008098acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02008099 struct acl_expr *expr, struct acl_test *test)
8100{
8101 struct http_txn *txn = l7;
8102 struct hdr_idx *idx = &txn->hdr_idx;
8103 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008104
Willy Tarreaub6866442008-07-14 23:54:42 +02008105 if (!txn)
8106 return 0;
8107
Willy Tarreau33a7e692007-06-10 19:45:56 +02008108 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
8109 /* search for header from the beginning */
8110 ctx->idx = 0;
8111
Willy Tarreau33a7e692007-06-10 19:45:56 +02008112 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
8113 test->flags |= ACL_TEST_F_FETCH_MORE;
8114 test->flags |= ACL_TEST_F_VOL_HDR;
8115 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
8116 return 1;
8117 }
8118
8119 test->flags &= ~ACL_TEST_F_FETCH_MORE;
8120 test->flags |= ACL_TEST_F_VOL_HDR;
8121 return 0;
8122}
8123
Willy Tarreauc11416f2007-06-17 16:58:38 +02008124static int
8125acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
8126 struct acl_expr *expr, struct acl_test *test)
8127{
8128 struct http_txn *txn = l7;
8129
Willy Tarreaub6866442008-07-14 23:54:42 +02008130 if (!txn)
8131 return 0;
8132
Willy Tarreau655dce92009-11-08 13:10:58 +01008133 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008134 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008135
Willy Tarreauc11416f2007-06-17 16:58:38 +02008136 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8137 /* ensure the indexes are not affected */
8138 return 0;
8139
8140 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
8141}
8142
8143static int
8144acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
8145 struct acl_expr *expr, struct acl_test *test)
8146{
8147 struct http_txn *txn = l7;
8148
Willy Tarreaub6866442008-07-14 23:54:42 +02008149 if (!txn)
8150 return 0;
8151
Willy Tarreau655dce92009-11-08 13:10:58 +01008152 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008153 return 0;
8154
8155 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
8156}
8157
Willy Tarreau106f9792009-09-19 07:54:16 +02008158/* 7. Check on HTTP header's IPv4 address value. The IPv4 address is returned.
8159 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
8160 */
8161static int
8162acl_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, char *sol,
8163 struct acl_expr *expr, struct acl_test *test)
8164{
8165 struct http_txn *txn = l7;
8166 struct hdr_idx *idx = &txn->hdr_idx;
8167 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
8168
8169 if (!txn)
8170 return 0;
8171
8172 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
8173 /* search for header from the beginning */
8174 ctx->idx = 0;
8175
8176 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
8177 test->flags |= ACL_TEST_F_FETCH_MORE;
8178 test->flags |= ACL_TEST_F_VOL_HDR;
8179 /* Same optimization as url_ip */
David du Colombier6f5ccb12011-03-10 22:26:24 +01008180 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));
8181 url2ipv4((char *)ctx->line + ctx->val, &((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr);
8182 test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr;
Willy Tarreau106f9792009-09-19 07:54:16 +02008183 test->i = AF_INET;
8184 return 1;
8185 }
8186
8187 test->flags &= ~ACL_TEST_F_FETCH_MORE;
8188 test->flags |= ACL_TEST_F_VOL_HDR;
8189 return 0;
8190}
8191
8192static int
8193acl_fetch_chdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
8194 struct acl_expr *expr, struct acl_test *test)
8195{
8196 struct http_txn *txn = l7;
8197
8198 if (!txn)
8199 return 0;
8200
Willy Tarreau655dce92009-11-08 13:10:58 +01008201 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02008202 return 0;
8203
8204 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8205 /* ensure the indexes are not affected */
8206 return 0;
8207
8208 return acl_fetch_hdr_ip(px, l4, txn, txn->req.sol, expr, test);
8209}
8210
8211static int
8212acl_fetch_shdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
8213 struct acl_expr *expr, struct acl_test *test)
8214{
8215 struct http_txn *txn = l7;
8216
8217 if (!txn)
8218 return 0;
8219
Willy Tarreau655dce92009-11-08 13:10:58 +01008220 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02008221 return 0;
8222
8223 return acl_fetch_hdr_ip(px, l4, txn, txn->rsp.sol, expr, test);
8224}
8225
Willy Tarreau737b0c12007-06-10 21:28:46 +02008226/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
8227 * the first '/' after the possible hostname, and ends before the possible '?'.
8228 */
8229static int
8230acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
8231 struct acl_expr *expr, struct acl_test *test)
8232{
8233 struct http_txn *txn = l7;
8234 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008235
Willy Tarreaub6866442008-07-14 23:54:42 +02008236 if (!txn)
8237 return 0;
8238
Willy Tarreau655dce92009-11-08 13:10:58 +01008239 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008240 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008241
Willy Tarreauc11416f2007-06-17 16:58:38 +02008242 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8243 /* ensure the indexes are not affected */
8244 return 0;
8245
Willy Tarreau962c3f42010-01-10 00:15:35 +01008246 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +01008247 ptr = http_get_path(txn);
8248 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02008249 return 0;
8250
8251 /* OK, we got the '/' ! */
8252 test->ptr = ptr;
8253
8254 while (ptr < end && *ptr != '?')
8255 ptr++;
8256
8257 test->len = ptr - test->ptr;
8258
8259 /* we do not need to set READ_ONLY because the data is in a buffer */
8260 test->flags = ACL_TEST_F_VOL_1ST;
8261 return 1;
8262}
8263
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008264static int
8265acl_fetch_proto_http(struct proxy *px, struct session *s, void *l7, int dir,
8266 struct acl_expr *expr, struct acl_test *test)
8267{
8268 struct buffer *req = s->req;
8269 struct http_txn *txn = &s->txn;
8270 struct http_msg *msg = &txn->req;
Willy Tarreau737b0c12007-06-10 21:28:46 +02008271
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008272 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
8273 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
8274 */
8275
8276 if (!s || !req)
8277 return 0;
8278
Willy Tarreau655dce92009-11-08 13:10:58 +01008279 if (unlikely(msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008280 /* Already decoded as OK */
8281 test->flags |= ACL_TEST_F_SET_RES_PASS;
8282 return 1;
8283 }
8284
8285 /* Try to decode HTTP request */
8286 if (likely(req->lr < req->r))
8287 http_msg_analyzer(req, msg, &txn->hdr_idx);
8288
Willy Tarreau655dce92009-11-08 13:10:58 +01008289 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008290 if ((msg->msg_state == HTTP_MSG_ERROR) || (req->flags & BF_FULL)) {
8291 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8292 return 1;
8293 }
8294 /* wait for final state */
8295 test->flags |= ACL_TEST_F_MAY_CHANGE;
8296 return 0;
8297 }
8298
8299 /* OK we got a valid HTTP request. We have some minor preparation to
8300 * perform so that further checks can rely on HTTP tests.
8301 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01008302 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008303 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
8304 s->flags |= SN_REDIRECTABLE;
8305
8306 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn)) {
8307 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8308 return 1;
8309 }
8310
8311 test->flags |= ACL_TEST_F_SET_RES_PASS;
8312 return 1;
8313}
8314
Willy Tarreau7f18e522010-10-22 20:04:13 +02008315/* return a valid test if the current request is the first one on the connection */
8316static int
8317acl_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, int dir,
8318 struct acl_expr *expr, struct acl_test *test)
8319{
8320 if (!s)
8321 return 0;
8322
8323 if (s->txn.flags & TX_NOT_FIRST)
8324 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8325 else
8326 test->flags |= ACL_TEST_F_SET_RES_PASS;
8327
8328 return 1;
8329}
8330
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008331static int
8332acl_fetch_http_auth(struct proxy *px, struct session *s, void *l7, int dir,
8333 struct acl_expr *expr, struct acl_test *test)
8334{
8335
8336 if (!s)
8337 return 0;
8338
8339 if (!get_http_auth(s))
8340 return 0;
8341
8342 test->ctx.a[0] = expr->arg.ul;
8343 test->ctx.a[1] = s->txn.auth.user;
8344 test->ctx.a[2] = s->txn.auth.pass;
8345
8346 test->flags |= ACL_TEST_F_READ_ONLY | ACL_TEST_F_NULL_MATCH;
8347
8348 return 1;
8349}
Willy Tarreau8797c062007-05-07 00:55:35 +02008350
8351/************************************************************************/
8352/* All supported keywords must be declared here. */
8353/************************************************************************/
8354
8355/* Note: must not be declared <const> as its list will be overwritten */
8356static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008357 { "req_proto_http", acl_parse_nothing, acl_fetch_proto_http, acl_match_nothing, ACL_USE_L7REQ_PERMANENT },
8358
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008359 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT },
Willy Tarreauc4262962010-05-10 23:42:40 +02008360 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
8361 { "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 +02008362 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02008363
Willy Tarreauc4262962010-05-10 23:42:40 +02008364 { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008365 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8366 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8367 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8368 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8369 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
8370 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008371 { "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 +02008372 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau8797c062007-05-07 00:55:35 +02008373
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008374 /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */
Willy Tarreauc4262962010-05-10 23:42:40 +02008375 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008376 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
8377 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8378 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8379 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8380 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8381 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
8382 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE },
8383 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008384 { "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 +02008385
Willy Tarreauc4262962010-05-10 23:42:40 +02008386 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008387 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE },
8388 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE },
8389 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE },
8390 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE },
8391 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE },
8392 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE },
8393 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE },
8394 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008395 { "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 +02008396
Willy Tarreauc4262962010-05-10 23:42:40 +02008397 { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008398 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
8399 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8400 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8401 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8402 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8403 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02008404
Willy Tarreauf3d25982007-05-08 22:45:09 +02008405#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02008406 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
8407 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
8408 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
8409 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
8410 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
8411 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
8412 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
8413
Willy Tarreau8797c062007-05-07 00:55:35 +02008414 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
8415 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
8416 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
8417 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
8418 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
8419 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
8420 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
8421 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008422#endif
Willy Tarreau8797c062007-05-07 00:55:35 +02008423
Willy Tarreau7f18e522010-10-22 20:04:13 +02008424 { "http_auth", acl_parse_nothing, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT },
8425 { "http_auth_group", acl_parse_strcat, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT },
8426 { "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 +02008427 { NULL, NULL, NULL, NULL },
Willy Tarreau8797c062007-05-07 00:55:35 +02008428}};
8429
Willy Tarreau4a568972010-05-12 08:08:50 +02008430/************************************************************************/
8431/* The code below is dedicated to pattern fetching and matching */
8432/************************************************************************/
8433
8434/* extract the IP address from the last occurrence of specified header. Note
8435 * that we should normally first extract the string then convert it to IP,
8436 * but right now we have all the functions to do this seemlessly, and we will
8437 * be able to change that later without touching the configuration.
8438 */
8439static int
8440pattern_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
Emeric Brun485479d2010-09-23 18:02:19 +02008441 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
Willy Tarreau4a568972010-05-12 08:08:50 +02008442{
8443 struct http_txn *txn = l7;
8444
Emeric Brun485479d2010-09-23 18:02:19 +02008445 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 +02008446 return data->ip.s_addr != 0;
8447}
8448
David Cournapeau16023ee2010-12-23 20:55:41 +09008449/*
8450 * Given a path string and its length, find the position of beginning of the
8451 * query string. Returns NULL if no query string is found in the path.
8452 *
8453 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
8454 *
8455 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
8456 */
8457static inline char *find_query_string(char *path, size_t path_l)
8458{
8459 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +02008460
David Cournapeau16023ee2010-12-23 20:55:41 +09008461 p = memchr(path, '?', path_l);
8462 return p ? p + 1 : NULL;
8463}
8464
8465static inline int is_param_delimiter(char c)
8466{
8467 return c == '&' || c == ';';
8468}
8469
8470/*
8471 * Given a url parameter, find the starting position of the first occurence,
8472 * or NULL if the parameter is not found.
8473 *
8474 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
8475 * the function will return query_string+8.
8476 */
8477static char*
8478find_url_param_pos(char* query_string, size_t query_string_l,
8479 char* url_param_name, size_t url_param_name_l)
8480{
8481 char *pos, *last;
8482
8483 pos = query_string;
8484 last = query_string + query_string_l - url_param_name_l - 1;
8485
8486 while (pos <= last) {
8487 if (pos[url_param_name_l] == '=') {
8488 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
8489 return pos;
8490 pos += url_param_name_l + 1;
8491 }
8492 while (pos <= last && !is_param_delimiter(*pos))
8493 pos++;
8494 pos++;
8495 }
8496 return NULL;
8497}
8498
8499/*
8500 * Given a url parameter name, returns its value and size into *value and
8501 * *value_l respectively, and returns non-zero. If the parameter is not found,
8502 * zero is returned and value/value_l are not touched.
8503 */
8504static int
8505find_url_param_value(char* path, size_t path_l,
8506 char* url_param_name, size_t url_param_name_l,
8507 char** value, size_t* value_l)
8508{
8509 char *query_string, *qs_end;
8510 char *arg_start;
8511 char *value_start, *value_end;
8512
8513 query_string = find_query_string(path, path_l);
8514 if (!query_string)
8515 return 0;
8516
8517 qs_end = path + path_l;
8518 arg_start = find_url_param_pos(query_string, qs_end - query_string,
8519 url_param_name, url_param_name_l);
8520 if (!arg_start)
8521 return 0;
8522
8523 value_start = arg_start + url_param_name_l + 1;
8524 value_end = value_start;
8525
8526 while ((value_end < qs_end) && !is_param_delimiter(*value_end))
8527 value_end++;
8528
8529 *value = value_start;
8530 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +01008531 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +09008532}
8533
8534static int
8535pattern_fetch_url_param(struct proxy *px, struct session *l4, void *l7, int dir,
8536 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8537{
8538 struct http_txn *txn = l7;
8539 struct http_msg *msg = &txn->req;
8540 char *url_param_value;
8541 size_t url_param_value_l;
8542
8543 if (!find_url_param_value(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l,
8544 arg_p->data.str.str, arg_p->data.str.len,
8545 &url_param_value, &url_param_value_l))
8546 return 0;
8547
8548 data->str.str = url_param_value;
8549 data->str.len = url_param_value_l;
8550 return 1;
8551}
8552
Willy Tarreaub3eb2212011-07-01 16:16:17 +02008553/* Try to find the last occurrence of a cookie name in a cookie header value.
8554 * The pointer and size of the last occurrence of the cookie value is returned
8555 * into *value and *value_l, and the function returns non-zero if the value was
8556 * found. Otherwise if the cookie was not found, zero is returned and neither
8557 * value nor value_l are touched. The input hdr string should begin at the
8558 * header's value, and its size should be in hdr_l. <list> must be non-zero if
8559 * value may represent a list of values (cookie headers).
8560 */
8561static int
8562extract_cookie_value(char *hdr, size_t hdr_l,
8563 char *cookie_name, size_t cookie_name_l, int list,
8564 char **value, size_t *value_l)
8565{
8566 int found = 0;
8567 char *equal, *att_end, *att_beg, *hdr_end, *val_beg, *val_end;
8568 char *next;
8569
8570 /* Note that multiple cookies may be delimited with semi-colons, so we
8571 * also have to loop on this.
8572 */
8573
8574 /* we search at least a cookie name followed by an equal, and more
8575 * generally something like this :
8576 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
8577 */
8578 if (hdr_l < cookie_name_l + 1)
8579 return 0;
8580
8581 hdr_end = hdr + hdr_l;
8582
8583 for (att_beg = hdr; att_beg < hdr_end; att_beg = next + 1) {
8584 /* Iterate through all cookies on this line */
8585
8586 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
8587 att_beg++;
8588
8589 /* find att_end : this is the first character after the last non
8590 * space before the equal. It may be equal to hdr_end.
8591 */
8592 equal = att_end = att_beg;
8593
8594 while (equal < hdr_end) {
8595 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
8596 break;
8597 if (http_is_spht[(unsigned char)*equal++])
8598 continue;
8599 att_end = equal;
8600 }
8601
8602 /* here, <equal> points to '=', a delimitor or the end. <att_end>
8603 * is between <att_beg> and <equal>, both may be identical.
8604 */
8605
8606 /* look for end of cookie if there is an equal sign */
8607 if (equal < hdr_end && *equal == '=') {
8608 /* look for the beginning of the value */
8609 val_beg = equal + 1;
8610 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
8611 val_beg++;
8612
8613 /* find the end of the value, respecting quotes */
8614 next = find_cookie_value_end(val_beg, hdr_end);
8615
8616 /* make val_end point to the first white space or delimitor after the value */
8617 val_end = next;
8618 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
8619 val_end--;
8620 } else {
8621 val_beg = val_end = next = equal;
8622 }
8623
8624 /* We have nothing to do with attributes beginning with '$'. However,
8625 * they will automatically be removed if a header before them is removed,
8626 * since they're supposed to be linked together.
8627 */
8628 if (*att_beg == '$')
8629 continue;
8630
8631 /* Ignore cookies with no equal sign */
8632 if (equal == next)
8633 continue;
8634
8635 /* Now we have the cookie name between att_beg and att_end, and
8636 * its value between val_beg and val_end.
8637 */
8638
8639 if (att_end - att_beg == cookie_name_l &&
8640 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
8641 found = 1;
8642 *value = val_beg;
8643 *value_l = val_end - val_beg;
8644 /* right now we want to catch the last occurrence
8645 * of the cookie, so let's go on searching.
8646 */
8647 }
8648
8649 /* Set-Cookie headers only have the name in the first attr=value part */
8650 if (!list)
8651 break;
8652 }
8653
8654 return found;
8655}
8656
8657/* Try to find in request or response message is in <msg> and whose transaction
8658 * is in <txn> the last occurrence of a cookie name in all cookie header values
8659 * whose header name is <hdr_name> with name of length <hdr_name_len>. The
8660 * pointer and size of the last occurrence of the cookie value is returned into
8661 * <value> and <value_l>, and the function returns non-zero if the value was
8662 * found. Otherwise if the cookie was not found, zero is returned and neither
8663 * value nor value_l are touched. The input hdr string should begin at the
8664 * header's value, and its size should be in hdr_l. <list> must be non-zero if
8665 * value may represent a list of values (cookie headers).
8666 */
8667
8668static int
8669find_cookie_value(struct http_msg *msg, struct http_txn *txn,
8670 const char *hdr_name, int hdr_name_len,
8671 char *cookie_name, size_t cookie_name_l, int list,
8672 char **value, size_t *value_l)
8673{
8674 struct hdr_ctx ctx;
8675 int found = 0;
8676
8677 ctx.idx = 0;
8678 while (http_find_header2(hdr_name, hdr_name_len, msg->sol, &txn->hdr_idx, &ctx)) {
8679 if (ctx.vlen < cookie_name_l + 1)
8680 continue;
8681
8682 found |= extract_cookie_value(ctx.line + ctx.val, ctx.vlen,
8683 cookie_name, cookie_name_l, 1,
8684 value, value_l);
8685 }
8686 return found;
8687}
8688
8689static int
8690pattern_fetch_cookie(struct proxy *px, struct session *l4, void *l7, int dir,
8691 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8692{
8693 struct http_txn *txn = l7;
8694 struct http_msg *msg = &txn->req;
8695 char *cookie_value;
8696 size_t cookie_value_l;
8697 int found = 0;
8698
8699 found = find_cookie_value(msg, txn, "Cookie", 6,
8700 arg_p->data.str.str, arg_p->data.str.len, 1,
8701 &cookie_value, &cookie_value_l);
8702 if (found) {
8703 data->str.str = cookie_value;
8704 data->str.len = cookie_value_l;
8705 }
8706
8707 return found;
8708}
8709
8710
8711static int
8712pattern_fetch_set_cookie(struct proxy *px, struct session *l4, void *l7, int dir,
8713 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8714{
8715 struct http_txn *txn = l7;
8716 struct http_msg *msg = &txn->rsp;
8717 char *cookie_value;
8718 size_t cookie_value_l;
8719 int found = 0;
8720
8721 found = find_cookie_value(msg, txn, "Set-Cookie", 10,
8722 arg_p->data.str.str, arg_p->data.str.len, 1,
8723 &cookie_value, &cookie_value_l);
8724 if (found) {
8725 data->str.str = cookie_value;
8726 data->str.len = cookie_value_l;
8727 }
8728
8729 return found;
8730}
8731
Emeric Brun485479d2010-09-23 18:02:19 +02008732
Willy Tarreau4a568972010-05-12 08:08:50 +02008733/************************************************************************/
8734/* All supported keywords must be declared here. */
8735/************************************************************************/
8736/* Note: must not be declared <const> as its list will be overwritten */
8737static struct pattern_fetch_kw_list pattern_fetch_keywords = {{ },{
Emeric Brun485479d2010-09-23 18:02:19 +02008738 { "hdr", pattern_fetch_hdr_ip, pattern_arg_str, PATTERN_TYPE_IP, PATTERN_FETCH_REQ },
David Cournapeau16023ee2010-12-23 20:55:41 +09008739 { "url_param", pattern_fetch_url_param, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ },
Willy Tarreaub3eb2212011-07-01 16:16:17 +02008740 { "cookie", pattern_fetch_cookie, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ },
8741 { "set-cookie", pattern_fetch_set_cookie, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_RTR },
Emeric Brun485479d2010-09-23 18:02:19 +02008742 { NULL, NULL, NULL, 0, 0 },
Willy Tarreau4a568972010-05-12 08:08:50 +02008743}};
8744
Willy Tarreau8797c062007-05-07 00:55:35 +02008745
8746__attribute__((constructor))
8747static void __http_protocol_init(void)
8748{
8749 acl_register_keywords(&acl_kws);
Willy Tarreau4a568972010-05-12 08:08:50 +02008750 pattern_register_fetches(&pattern_fetch_keywords);
Willy Tarreau8797c062007-05-07 00:55:35 +02008751}
8752
8753
Willy Tarreau58f10d72006-12-04 02:26:12 +01008754/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02008755 * Local variables:
8756 * c-indent-level: 8
8757 * c-basic-offset: 8
8758 * End:
8759 */