blob: 0f1401623dc6d43955a31396e4f35aab9b65038a [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 Tarreaub05405a2012-01-23 15:35:52 +010026#include <netinet/tcp.h>
27
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/appsession.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010029#include <common/base64.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020030#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020031#include <common/compat.h>
32#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010033#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/memory.h>
35#include <common/mini-clist.h>
36#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020037#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/time.h>
39#include <common/uri_auth.h>
40#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
42#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreau8797c062007-05-07 00:55:35 +020045#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020046#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010047#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020049#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010050#include <proto/checks.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020051#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020052#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020054#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010056#include <proto/hdr_idx.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020057#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010059#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020060#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020061#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010062#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020063#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010064#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020065#include <proto/task.h>
66
Willy Tarreau522d6c02009-12-06 18:49:18 +010067const char HTTP_100[] =
68 "HTTP/1.1 100 Continue\r\n\r\n";
69
70const struct chunk http_100_chunk = {
71 .str = (char *)&HTTP_100,
72 .len = sizeof(HTTP_100)-1
73};
74
Willy Tarreaua9679ac2010-01-03 17:32:57 +010075/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020076const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010077 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020078 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020080 "Location: "; /* not terminated since it will be concatenated with the URL */
81
Willy Tarreau0f772532006-12-23 20:51:41 +010082const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010083 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010084 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010085 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010086 "Location: "; /* not terminated since it will be concatenated with the URL */
87
88/* same as 302 except that the browser MUST retry with the GET method */
89const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010090 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010091 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010092 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010093 "Location: "; /* not terminated since it will be concatenated with the URL */
94
Willy Tarreaubaaee002006-06-26 02:48:02 +020095/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
96const char *HTTP_401_fmt =
97 "HTTP/1.0 401 Unauthorized\r\n"
98 "Cache-Control: no-cache\r\n"
99 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200100 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
102 "\r\n"
103 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
104
Willy Tarreau844a7e72010-01-31 21:46:18 +0100105const char *HTTP_407_fmt =
106 "HTTP/1.0 407 Unauthorized\r\n"
107 "Cache-Control: no-cache\r\n"
108 "Connection: close\r\n"
109 "Content-Type: text/html\r\n"
110 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
111 "\r\n"
112 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
113
Willy Tarreau0f772532006-12-23 20:51:41 +0100114
115const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200116 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100117 [HTTP_ERR_400] = 400,
118 [HTTP_ERR_403] = 403,
119 [HTTP_ERR_408] = 408,
120 [HTTP_ERR_500] = 500,
121 [HTTP_ERR_502] = 502,
122 [HTTP_ERR_503] = 503,
123 [HTTP_ERR_504] = 504,
124};
125
Willy Tarreau80587432006-12-24 17:47:20 +0100126static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200127 [HTTP_ERR_200] =
128 "HTTP/1.0 200 OK\r\n"
129 "Cache-Control: no-cache\r\n"
130 "Connection: close\r\n"
131 "Content-Type: text/html\r\n"
132 "\r\n"
133 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
134
Willy Tarreau0f772532006-12-23 20:51:41 +0100135 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100136 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100137 "Cache-Control: no-cache\r\n"
138 "Connection: close\r\n"
139 "Content-Type: text/html\r\n"
140 "\r\n"
141 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
142
143 [HTTP_ERR_403] =
144 "HTTP/1.0 403 Forbidden\r\n"
145 "Cache-Control: no-cache\r\n"
146 "Connection: close\r\n"
147 "Content-Type: text/html\r\n"
148 "\r\n"
149 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
150
151 [HTTP_ERR_408] =
152 "HTTP/1.0 408 Request Time-out\r\n"
153 "Cache-Control: no-cache\r\n"
154 "Connection: close\r\n"
155 "Content-Type: text/html\r\n"
156 "\r\n"
157 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
158
159 [HTTP_ERR_500] =
160 "HTTP/1.0 500 Server Error\r\n"
161 "Cache-Control: no-cache\r\n"
162 "Connection: close\r\n"
163 "Content-Type: text/html\r\n"
164 "\r\n"
165 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
166
167 [HTTP_ERR_502] =
168 "HTTP/1.0 502 Bad Gateway\r\n"
169 "Cache-Control: no-cache\r\n"
170 "Connection: close\r\n"
171 "Content-Type: text/html\r\n"
172 "\r\n"
173 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
174
175 [HTTP_ERR_503] =
176 "HTTP/1.0 503 Service Unavailable\r\n"
177 "Cache-Control: no-cache\r\n"
178 "Connection: close\r\n"
179 "Content-Type: text/html\r\n"
180 "\r\n"
181 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
182
183 [HTTP_ERR_504] =
184 "HTTP/1.0 504 Gateway Time-out\r\n"
185 "Cache-Control: no-cache\r\n"
186 "Connection: close\r\n"
187 "Content-Type: text/html\r\n"
188 "\r\n"
189 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
190
191};
192
Cyril Bonté19979e12012-04-04 12:57:21 +0200193/* status codes available for the stats admin page (strictly 4 chars length) */
194const char *stat_status_codes[STAT_STATUS_SIZE] = {
195 [STAT_STATUS_DENY] = "DENY",
196 [STAT_STATUS_DONE] = "DONE",
197 [STAT_STATUS_ERRP] = "ERRP",
198 [STAT_STATUS_EXCD] = "EXCD",
199 [STAT_STATUS_NONE] = "NONE",
200 [STAT_STATUS_PART] = "PART",
201 [STAT_STATUS_UNKN] = "UNKN",
202};
203
204
Willy Tarreau80587432006-12-24 17:47:20 +0100205/* We must put the messages here since GCC cannot initialize consts depending
206 * on strlen().
207 */
208struct chunk http_err_chunks[HTTP_ERR_SIZE];
209
Willy Tarreau42250582007-04-01 01:30:43 +0200210#define FD_SETS_ARE_BITFIELDS
211#ifdef FD_SETS_ARE_BITFIELDS
212/*
213 * This map is used with all the FD_* macros to check whether a particular bit
214 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
215 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
216 * byte should be encoded. Be careful to always pass bytes from 0 to 255
217 * exclusively to the macros.
218 */
219fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
220fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
221
222#else
223#error "Check if your OS uses bitfields for fd_sets"
224#endif
225
Willy Tarreau80587432006-12-24 17:47:20 +0100226void init_proto_http()
227{
Willy Tarreau42250582007-04-01 01:30:43 +0200228 int i;
229 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100230 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200231
Willy Tarreau80587432006-12-24 17:47:20 +0100232 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
233 if (!http_err_msgs[msg]) {
234 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
235 abort();
236 }
237
238 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
239 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
240 }
Willy Tarreau42250582007-04-01 01:30:43 +0200241
242 /* initialize the log header encoding map : '{|}"#' should be encoded with
243 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
244 * URL encoding only requires '"', '#' to be encoded as well as non-
245 * printable characters above.
246 */
247 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
248 memset(url_encode_map, 0, sizeof(url_encode_map));
249 for (i = 0; i < 32; i++) {
250 FD_SET(i, hdr_encode_map);
251 FD_SET(i, url_encode_map);
252 }
253 for (i = 127; i < 256; i++) {
254 FD_SET(i, hdr_encode_map);
255 FD_SET(i, url_encode_map);
256 }
257
258 tmp = "\"#{|}";
259 while (*tmp) {
260 FD_SET(*tmp, hdr_encode_map);
261 tmp++;
262 }
263
264 tmp = "\"#";
265 while (*tmp) {
266 FD_SET(*tmp, url_encode_map);
267 tmp++;
268 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200269
270 /* memory allocations */
271 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
William Lallemanda73203e2012-03-12 12:48:57 +0100272 pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100273}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200274
Willy Tarreau53b6c742006-12-17 13:37:46 +0100275/*
276 * We have 26 list of methods (1 per first letter), each of which can have
277 * up to 3 entries (2 valid, 1 null).
278 */
279struct http_method_desc {
280 http_meth_t meth;
281 int len;
282 const char text[8];
283};
284
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100285const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100286 ['C' - 'A'] = {
287 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
288 },
289 ['D' - 'A'] = {
290 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
291 },
292 ['G' - 'A'] = {
293 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
294 },
295 ['H' - 'A'] = {
296 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
297 },
298 ['P' - 'A'] = {
299 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
300 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
301 },
302 ['T' - 'A'] = {
303 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
304 },
305 /* rest is empty like this :
306 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
307 */
308};
309
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100310/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200311 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100312 * RFC2616 for those chars.
313 */
314
315const char http_is_spht[256] = {
316 [' '] = 1, ['\t'] = 1,
317};
318
319const char http_is_crlf[256] = {
320 ['\r'] = 1, ['\n'] = 1,
321};
322
323const char http_is_lws[256] = {
324 [' '] = 1, ['\t'] = 1,
325 ['\r'] = 1, ['\n'] = 1,
326};
327
328const char http_is_sep[256] = {
329 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
330 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
331 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
332 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
333 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
334};
335
336const char http_is_ctl[256] = {
337 [0 ... 31] = 1,
338 [127] = 1,
339};
340
341/*
342 * A token is any ASCII char that is neither a separator nor a CTL char.
343 * Do not overwrite values in assignment since gcc-2.95 will not handle
344 * them correctly. Instead, define every non-CTL char's status.
345 */
346const char http_is_token[256] = {
347 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
348 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
349 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
350 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
351 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
352 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
353 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
354 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
355 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
356 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
357 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
358 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
359 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
360 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
361 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
362 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
363 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
364 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
365 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
366 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
367 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
368 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
369 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
370 ['|'] = 1, ['}'] = 0, ['~'] = 1,
371};
372
373
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100374/*
375 * An http ver_token is any ASCII which can be found in an HTTP version,
376 * which includes 'H', 'T', 'P', '/', '.' and any digit.
377 */
378const char http_is_ver_token[256] = {
379 ['.'] = 1, ['/'] = 1,
380 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
381 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
382 ['H'] = 1, ['P'] = 1, ['T'] = 1,
383};
384
385
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100386/*
Willy Tarreaue988a792010-01-04 21:13:14 +0100387 * Silent debug that outputs only in strace, using fd #-1. Trash is modified.
388 */
389#if defined(DEBUG_FSM)
390static void http_silent_debug(int line, struct session *s)
391{
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100392 chunk_printf(&trash,
393 "[%04d] req: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p o=%p sm=%d fw=%ld tf=%08x\n",
394 line,
395 s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers,
396 s->req->buf->data, s->req->buf->size, s->req->l, s->req->w, s->req->r, s->req->buf->p, s->req->buf->o, s->req->to_forward, s->txn.flags);
397 write(-1, trash.str, trash.len);
Willy Tarreaue988a792010-01-04 21:13:14 +0100398
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100399 chunk_printf(&trash,
400 " %04d rep: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p o=%p sm=%d fw=%ld\n",
401 line,
402 s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers,
403 s->rep->buf->data, s->rep->buf->size, s->rep->l, s->rep->w, s->rep->r, s->rep->buf->p, s->rep->buf->o, s->rep->to_forward);
404 write(-1, trash.str, trash.len);
Willy Tarreaue988a792010-01-04 21:13:14 +0100405}
406#else
407#define http_silent_debug(l,s) do { } while (0)
408#endif
409
410/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100411 * Adds a header and its CRLF at the tail of the message's buffer, just before
412 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100413 * The header is also automatically added to the index <hdr_idx>, and the end
414 * of headers is automatically adjusted. The number of bytes added is returned
415 * on success, otherwise <0 is returned indicating an error.
416 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100417int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100418{
419 int bytes, len;
420
421 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200422 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100423 if (!bytes)
424 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100425 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100426 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
427}
428
429/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100430 * Adds a header and its CRLF at the tail of the message's buffer, just before
431 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100432 * the buffer is only opened and the space reserved, but nothing is copied.
433 * The header is also automatically added to the index <hdr_idx>, and the end
434 * of headers is automatically adjusted. The number of bytes added is returned
435 * on success, otherwise <0 is returned indicating an error.
436 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100437int http_header_add_tail2(struct http_msg *msg,
438 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100439{
440 int bytes;
441
Willy Tarreau9b28e032012-10-12 23:49:43 +0200442 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100443 if (!bytes)
444 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100445 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100446 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
447}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200448
449/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100450 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
451 * If so, returns the position of the first non-space character relative to
452 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
453 * to return a pointer to the place after the first space. Returns 0 if the
454 * header name does not match. Checks are case-insensitive.
455 */
456int http_header_match2(const char *hdr, const char *end,
457 const char *name, int len)
458{
459 const char *val;
460
461 if (hdr + len >= end)
462 return 0;
463 if (hdr[len] != ':')
464 return 0;
465 if (strncasecmp(hdr, name, len) != 0)
466 return 0;
467 val = hdr + len + 1;
468 while (val < end && HTTP_IS_SPHT(*val))
469 val++;
470 if ((val >= end) && (len + 2 <= end - hdr))
471 return len + 2; /* we may replace starting from second space */
472 return val - hdr;
473}
474
Willy Tarreau68085d82010-01-18 14:54:04 +0100475/* Find the end of the header value contained between <s> and <e>. See RFC2616,
476 * par 2.2 for more information. Note that it requires a valid header to return
477 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200478 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100479char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200480{
481 int quoted, qdpair;
482
483 quoted = qdpair = 0;
484 for (; s < e; s++) {
485 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200486 else if (quoted) {
487 if (*s == '\\') qdpair = 1;
488 else if (*s == '"') quoted = 0;
489 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200490 else if (*s == '"') quoted = 1;
491 else if (*s == ',') return s;
492 }
493 return s;
494}
495
496/* Find the first or next occurrence of header <name> in message buffer <sol>
497 * using headers index <idx>, and return it in the <ctx> structure. This
498 * structure holds everything necessary to use the header and find next
499 * occurrence. If its <idx> member is 0, the header is searched from the
500 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100501 * 1 when it finds a value, and 0 when there is no more. It is designed to work
502 * with headers defined as comma-separated lists. As a special case, if ctx->val
503 * is NULL when searching for a new values of a header, the current header is
504 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200505 */
506int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100507 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200508 struct hdr_ctx *ctx)
509{
Willy Tarreau68085d82010-01-18 14:54:04 +0100510 char *eol, *sov;
511 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200512
Willy Tarreau68085d82010-01-18 14:54:04 +0100513 cur_idx = ctx->idx;
514 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200515 /* We have previously returned a value, let's search
516 * another one on the same line.
517 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200518 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200519 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100520 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200521 eol = sol + idx->v[cur_idx].len;
522
523 if (sov >= eol)
524 /* no more values in this header */
525 goto next_hdr;
526
Willy Tarreau68085d82010-01-18 14:54:04 +0100527 /* values remaining for this header, skip the comma but save it
528 * for later use (eg: for header deletion).
529 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200530 sov++;
531 while (sov < eol && http_is_lws[(unsigned char)*sov])
532 sov++;
533
534 goto return_hdr;
535 }
536
537 /* first request for this header */
538 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100539 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200540 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200541 while (cur_idx) {
542 eol = sol + idx->v[cur_idx].len;
543
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200544 if (len == 0) {
545 /* No argument was passed, we want any header.
546 * To achieve this, we simply build a fake request. */
547 while (sol + len < eol && sol[len] != ':')
548 len++;
549 name = sol;
550 }
551
Willy Tarreau33a7e692007-06-10 19:45:56 +0200552 if ((len < eol - sol) &&
553 (sol[len] == ':') &&
554 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100555 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200556 sov = sol + len + 1;
557 while (sov < eol && http_is_lws[(unsigned char)*sov])
558 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100559
Willy Tarreau33a7e692007-06-10 19:45:56 +0200560 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100561 ctx->prev = old_idx;
562 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200563 ctx->idx = cur_idx;
564 ctx->val = sov - sol;
565
566 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200567 ctx->tws = 0;
Willy Tarreau275600b2011-09-16 08:11:26 +0200568 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200569 eol--;
570 ctx->tws++;
571 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200572 ctx->vlen = eol - sov;
573 return 1;
574 }
575 next_hdr:
576 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100577 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200578 cur_idx = idx->v[cur_idx].next;
579 }
580 return 0;
581}
582
583int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100584 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200585 struct hdr_ctx *ctx)
586{
587 return http_find_header2(name, strlen(name), sol, idx, ctx);
588}
589
Willy Tarreau68085d82010-01-18 14:54:04 +0100590/* Remove one value of a header. This only works on a <ctx> returned by one of
591 * the http_find_header functions. The value is removed, as well as surrounding
592 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100593 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100594 * message <msg>. The new index is returned. If it is zero, it means there is
595 * no more header, so any processing may stop. The ctx is always left in a form
596 * that can be handled by http_find_header2() to find next occurrence.
597 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100598int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100599{
600 int cur_idx = ctx->idx;
601 char *sol = ctx->line;
602 struct hdr_idx_elem *hdr;
603 int delta, skip_comma;
604
605 if (!cur_idx)
606 return 0;
607
608 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200609 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100610 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200611 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +0100612 http_msg_move_end(msg, delta);
613 idx->used--;
614 hdr->len = 0; /* unused entry */
615 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100616 if (idx->tail == ctx->idx)
617 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100618 ctx->idx = ctx->prev; /* walk back to the end of previous header */
619 ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1;
620 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200621 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100622 return ctx->idx;
623 }
624
625 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200626 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
627 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100628 */
629
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200630 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200631 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200632 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100633 NULL, 0);
634 hdr->len += delta;
635 http_msg_move_end(msg, delta);
636 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200637 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100638 return ctx->idx;
639}
640
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100641/* This function handles a server error at the stream interface level. The
642 * stream interface is assumed to be already in a closed state. An optional
643 * message is copied into the input buffer, and an HTTP status code stored.
644 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100645 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200646 */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100647static void http_server_error(struct session *t, struct stream_interface *si,
648 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200649{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200650 channel_auto_read(si->ob);
651 channel_abort(si->ob);
652 channel_auto_close(si->ob);
653 channel_erase(si->ob);
654 channel_auto_close(si->ib);
655 channel_auto_read(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100656 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100657 t->txn.status = status;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200658 bo_inject(si->ib, msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200659 }
660 if (!(t->flags & SN_ERR_MASK))
661 t->flags |= err;
662 if (!(t->flags & SN_FINST_MASK))
663 t->flags |= finst;
664}
665
Willy Tarreau80587432006-12-24 17:47:20 +0100666/* This function returns the appropriate error location for the given session
667 * and message.
668 */
669
Willy Tarreau783f2582012-09-04 12:19:04 +0200670struct chunk *http_error_message(struct session *s, int msgnum)
Willy Tarreau80587432006-12-24 17:47:20 +0100671{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200672 if (s->be->errmsg[msgnum].str)
673 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100674 else if (s->fe->errmsg[msgnum].str)
675 return &s->fe->errmsg[msgnum];
676 else
677 return &http_err_chunks[msgnum];
678}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200679
Willy Tarreau53b6c742006-12-17 13:37:46 +0100680/*
681 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
682 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
683 */
684static http_meth_t find_http_meth(const char *str, const int len)
685{
686 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100687 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100688
689 m = ((unsigned)*str - 'A');
690
691 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100692 for (h = http_methods[m]; h->len > 0; h++) {
693 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100694 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100695 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100696 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100697 };
698 return HTTP_METH_OTHER;
699 }
700 return HTTP_METH_NONE;
701
702}
703
Willy Tarreau21d2af32008-02-14 20:25:24 +0100704/* Parse the URI from the given transaction (which is assumed to be in request
705 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
706 * It is returned otherwise.
707 */
708static char *
709http_get_path(struct http_txn *txn)
710{
711 char *ptr, *end;
712
Willy Tarreau9b28e032012-10-12 23:49:43 +0200713 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100714 end = ptr + txn->req.sl.rq.u_l;
715
716 if (ptr >= end)
717 return NULL;
718
719 /* RFC2616, par. 5.1.2 :
720 * Request-URI = "*" | absuri | abspath | authority
721 */
722
723 if (*ptr == '*')
724 return NULL;
725
726 if (isalpha((unsigned char)*ptr)) {
727 /* this is a scheme as described by RFC3986, par. 3.1 */
728 ptr++;
729 while (ptr < end &&
730 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
731 ptr++;
732 /* skip '://' */
733 if (ptr == end || *ptr++ != ':')
734 return NULL;
735 if (ptr == end || *ptr++ != '/')
736 return NULL;
737 if (ptr == end || *ptr++ != '/')
738 return NULL;
739 }
740 /* skip [user[:passwd]@]host[:[port]] */
741
742 while (ptr < end && *ptr != '/')
743 ptr++;
744
745 if (ptr == end)
746 return NULL;
747
748 /* OK, we got the '/' ! */
749 return ptr;
750}
751
Willy Tarreau71241ab2012-12-27 11:30:54 +0100752/* Returns a 302 for a redirectable request that reaches a server working in
753 * in redirect mode. This may only be called just after the stream interface
754 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
755 * follow normal proxy processing. NOTE: this function is designed to support
756 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100757 */
Willy Tarreau71241ab2012-12-27 11:30:54 +0100758void http_perform_server_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100759{
760 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +0100761 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100762 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200763 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100764
765 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100766 trash.len = strlen(HTTP_302);
767 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100768
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100769 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100770
Willy Tarreauefb453c2008-10-26 20:49:47 +0100771 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100772 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100773 return;
774
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100775 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100776 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100777 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
778 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100779 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100780
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200781 /* 3: add the request URI. Since it was already forwarded, we need
782 * to temporarily rewind the buffer.
783 */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100784 txn = &s->txn;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200785 b_rew(s->req->buf, rewind = s->req->buf->o);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200786
Willy Tarreauefb453c2008-10-26 20:49:47 +0100787 path = http_get_path(txn);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200788 len = buffer_count(s->req->buf, path, b_ptr(s->req->buf, txn->req.sl.rq.u + txn->req.sl.rq.u_l));
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200789
Willy Tarreau9b28e032012-10-12 23:49:43 +0200790 b_adv(s->req->buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200791
Willy Tarreauefb453c2008-10-26 20:49:47 +0100792 if (!path)
793 return;
794
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100795 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100796 return;
797
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100798 memcpy(trash.str + trash.len, path, len);
799 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100800
801 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100802 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
803 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100804 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100805 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
806 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100807 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100808
809 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200810 si_shutr(si);
811 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100812 si->err_type = SI_ET_NONE;
813 si->err_loc = NULL;
814 si->state = SI_ST_CLO;
815
816 /* send the message */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100817 http_server_error(s, si, SN_ERR_PRXCOND, SN_FINST_C, 302, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100818
819 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +0100820 srv_inc_sess_ctr(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100821}
822
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100823/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100824 * that the server side is closed. Note that err_type is actually a
825 * bitmask, where almost only aborts may be cumulated with other
826 * values. We consider that aborted operations are more important
827 * than timeouts or errors due to the fact that nobody else in the
828 * logs might explain incomplete retries. All others should avoid
829 * being cumulated. It should normally not be possible to have multiple
830 * aborts at once, but just in case, the first one in sequence is reported.
831 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100832void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100833{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100834 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100835
836 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100837 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +0200838 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100839 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100840 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +0200841 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100842 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100843 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +0200844 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100845 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100846 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +0200847 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100848 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100849 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +0200850 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100851 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100852 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +0200853 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100854 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100855 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +0200856 500, http_error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100857}
858
Willy Tarreau42250582007-04-01 01:30:43 +0200859extern const char sess_term_cond[8];
860extern const char sess_fin_state[8];
861extern const char *monthname[12];
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200862struct pool_head *pool2_requri;
Willy Tarreau193b8c62012-11-22 00:17:38 +0100863struct pool_head *pool2_capture = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +0100864struct pool_head *pool2_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100865
Willy Tarreau117f59e2007-03-04 18:17:17 +0100866/*
867 * Capture headers from message starting at <som> according to header list
868 * <cap_hdr>, and fill the <idx> structure appropriately.
869 */
870void capture_headers(char *som, struct hdr_idx *idx,
871 char **cap, struct cap_hdr *cap_hdr)
872{
873 char *eol, *sol, *col, *sov;
874 int cur_idx;
875 struct cap_hdr *h;
876 int len;
877
878 sol = som + hdr_idx_first_pos(idx);
879 cur_idx = hdr_idx_first_idx(idx);
880
881 while (cur_idx) {
882 eol = sol + idx->v[cur_idx].len;
883
884 col = sol;
885 while (col < eol && *col != ':')
886 col++;
887
888 sov = col + 1;
889 while (sov < eol && http_is_lws[(unsigned char)*sov])
890 sov++;
891
892 for (h = cap_hdr; h; h = h->next) {
893 if ((h->namelen == col - sol) &&
894 (strncasecmp(sol, h->name, h->namelen) == 0)) {
895 if (cap[h->index] == NULL)
896 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200897 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +0100898
899 if (cap[h->index] == NULL) {
900 Alert("HTTP capture : out of memory.\n");
901 continue;
902 }
903
904 len = eol - sov;
905 if (len > h->len)
906 len = h->len;
907
908 memcpy(cap[h->index], sov, len);
909 cap[h->index][len]=0;
910 }
911 }
912 sol = eol + idx->v[cur_idx].cr + 1;
913 cur_idx = idx->v[cur_idx].next;
914 }
915}
916
917
Willy Tarreau42250582007-04-01 01:30:43 +0200918/* either we find an LF at <ptr> or we jump to <bad>.
919 */
920#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
921
922/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
923 * otherwise to <http_msg_ood> with <state> set to <st>.
924 */
925#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
926 ptr++; \
927 if (likely(ptr < end)) \
928 goto good; \
929 else { \
930 state = (st); \
931 goto http_msg_ood; \
932 } \
933 } while (0)
934
935
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936/*
Willy Tarreaua15645d2007-03-18 16:22:39 +0100937 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +0100938 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
939 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
940 * will give undefined results.
941 * Note that it is upon the caller's responsibility to ensure that ptr < end,
942 * and that msg->sol points to the beginning of the response.
943 * If a complete line is found (which implies that at least one CR or LF is
944 * found before <end>, the updated <ptr> is returned, otherwise NULL is
945 * returned indicating an incomplete line (which does not mean that parts have
946 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
947 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
948 * upon next call.
949 *
Willy Tarreau9cdde232007-05-02 20:58:19 +0200950 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +0100951 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
952 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +0200953 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +0100954 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +0200955const char *http_parse_stsline(struct http_msg *msg,
Willy Tarreaue69eada2008-01-27 00:34:10 +0100956 unsigned int state, const char *ptr, const char *end,
Willy Tarreaua458b672012-03-05 11:17:50 +0100957 unsigned int *ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +0100958{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200959 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100960
Willy Tarreau8973c702007-01-21 23:58:29 +0100961 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +0100962 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +0200963 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100964 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +0100965 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
966
967 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +0100968 msg->sl.st.v_l = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +0100969 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
970 }
Willy Tarreau7552c032009-03-01 11:10:40 +0100971 state = HTTP_MSG_ERROR;
972 break;
973
Willy Tarreau8973c702007-01-21 23:58:29 +0100974 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +0200975 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +0100976 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +0100977 msg->sl.st.c = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +0100978 goto http_msg_rpcode;
979 }
980 if (likely(HTTP_IS_SPHT(*ptr)))
981 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
982 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +0100983 state = HTTP_MSG_ERROR;
984 break;
Willy Tarreau8973c702007-01-21 23:58:29 +0100985
Willy Tarreau8973c702007-01-21 23:58:29 +0100986 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +0200987 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +0100988 if (likely(!HTTP_IS_LWS(*ptr)))
989 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
990
991 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +0100992 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +0100993 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
994 }
995
996 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreauea1175a2012-03-05 15:52:30 +0100997 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +0100998 http_msg_rsp_reason:
999 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001000 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001001 msg->sl.st.r_l = 0;
1002 goto http_msg_rpline_eol;
1003
Willy Tarreau8973c702007-01-21 23:58:29 +01001004 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001005 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001006 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001007 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001008 goto http_msg_rpreason;
1009 }
1010 if (likely(HTTP_IS_SPHT(*ptr)))
1011 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1012 /* so it's a CR/LF, so there is no reason phrase */
1013 goto http_msg_rsp_reason;
1014
Willy Tarreau8973c702007-01-21 23:58:29 +01001015 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001016 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001017 if (likely(!HTTP_IS_CRLF(*ptr)))
1018 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreauea1175a2012-03-05 15:52:30 +01001019 msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001020 http_msg_rpline_eol:
1021 /* We have seen the end of line. Note that we do not
1022 * necessarily have the \n yet, but at least we know that we
1023 * have EITHER \r OR \n, otherwise the response would not be
1024 * complete. We can then record the response length and return
1025 * to the caller which will be able to register it.
1026 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001027 msg->sl.st.l = ptr - msg_start - msg->sol;
Willy Tarreau8973c702007-01-21 23:58:29 +01001028 return ptr;
1029
1030#ifdef DEBUG_FULL
1031 default:
1032 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1033 exit(1);
1034#endif
1035 }
1036
1037 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001038 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001039 if (ret_state)
1040 *ret_state = state;
1041 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001042 *ret_ptr = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001043 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001044}
1045
Willy Tarreau8973c702007-01-21 23:58:29 +01001046/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001047 * This function parses a request line between <ptr> and <end>, starting with
1048 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1049 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1050 * will give undefined results.
1051 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1052 * and that msg->sol points to the beginning of the request.
1053 * If a complete line is found (which implies that at least one CR or LF is
1054 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1055 * returned indicating an incomplete line (which does not mean that parts have
1056 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1057 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1058 * upon next call.
1059 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001060 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001061 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1062 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001063 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001064 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001065const char *http_parse_reqline(struct http_msg *msg,
Willy Tarreaue69eada2008-01-27 00:34:10 +01001066 unsigned int state, const char *ptr, const char *end,
Willy Tarreaua458b672012-03-05 11:17:50 +01001067 unsigned int *ret_ptr, unsigned int *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001068{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001069 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001070
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001071 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001072 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001073 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001074 if (likely(HTTP_IS_TOKEN(*ptr)))
1075 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001076
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001077 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001078 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001079 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1080 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001081
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001082 if (likely(HTTP_IS_CRLF(*ptr))) {
1083 /* HTTP 0.9 request */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001084 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001085 http_msg_req09_uri:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001086 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001087 http_msg_req09_uri_e:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001088 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001089 http_msg_req09_ver:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001090 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001091 msg->sl.rq.v_l = 0;
1092 goto http_msg_rqline_eol;
1093 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001094 state = HTTP_MSG_ERROR;
1095 break;
1096
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001097 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001098 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001099 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001100 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001101 goto http_msg_rquri;
1102 }
1103 if (likely(HTTP_IS_SPHT(*ptr)))
1104 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1105 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1106 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001107
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001108 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001109 http_msg_rquri:
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001110 if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001111 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001112
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001113 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001114 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001115 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1116 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001117
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001118 if (likely((unsigned char)*ptr >= 128)) {
Willy Tarreau422246e2012-01-07 23:54:13 +01001119 /* non-ASCII chars are forbidden unless option
1120 * accept-invalid-http-request is enabled in the frontend.
1121 * In any case, we capture the faulty char.
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001122 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001123 if (msg->err_pos < -1)
1124 goto invalid_char;
1125 if (msg->err_pos == -1)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001126 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001127 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
1128 }
1129
1130 if (likely(HTTP_IS_CRLF(*ptr))) {
1131 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1132 goto http_msg_req09_uri_e;
1133 }
1134
1135 /* OK forbidden chars, 0..31 or 127 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001136 invalid_char:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001137 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001138 state = HTTP_MSG_ERROR;
1139 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001140
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001141 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001142 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001143 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001144 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001145 goto http_msg_rqver;
1146 }
1147 if (likely(HTTP_IS_SPHT(*ptr)))
1148 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1149 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1150 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001151
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001152 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001153 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001154 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001155 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001156
1157 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001158 msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001159 http_msg_rqline_eol:
1160 /* We have seen the end of line. Note that we do not
1161 * necessarily have the \n yet, but at least we know that we
1162 * have EITHER \r OR \n, otherwise the request would not be
1163 * complete. We can then record the request length and return
1164 * to the caller which will be able to register it.
1165 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001166 msg->sl.rq.l = ptr - msg_start - msg->sol;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001167 return ptr;
1168 }
1169
1170 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001171 state = HTTP_MSG_ERROR;
1172 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001173
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001174#ifdef DEBUG_FULL
1175 default:
1176 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1177 exit(1);
1178#endif
1179 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001180
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001181 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001182 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001183 if (ret_state)
1184 *ret_state = state;
1185 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001186 *ret_ptr = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001187 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001188}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001189
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001190/*
1191 * Returns the data from Authorization header. Function may be called more
1192 * than once so data is stored in txn->auth_data. When no header is found
1193 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
1194 * searching again for something we are unable to find anyway.
1195 */
1196
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001197char *get_http_auth_buff;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001198
1199int
1200get_http_auth(struct session *s)
1201{
1202
1203 struct http_txn *txn = &s->txn;
1204 struct chunk auth_method;
1205 struct hdr_ctx ctx;
1206 char *h, *p;
1207 int len;
1208
1209#ifdef DEBUG_AUTH
1210 printf("Auth for session %p: %d\n", s, txn->auth.method);
1211#endif
1212
1213 if (txn->auth.method == HTTP_AUTH_WRONG)
1214 return 0;
1215
1216 if (txn->auth.method)
1217 return 1;
1218
1219 txn->auth.method = HTTP_AUTH_WRONG;
1220
1221 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001222
1223 if (txn->flags & TX_USE_PX_CONN) {
1224 h = "Proxy-Authorization";
1225 len = strlen(h);
1226 } else {
1227 h = "Authorization";
1228 len = strlen(h);
1229 }
1230
Willy Tarreau9b28e032012-10-12 23:49:43 +02001231 if (!http_find_header2(h, len, s->req->buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001232 return 0;
1233
1234 h = ctx.line + ctx.val;
1235
1236 p = memchr(h, ' ', ctx.vlen);
1237 if (!p || p == h)
1238 return 0;
1239
1240 chunk_initlen(&auth_method, h, 0, p-h);
1241 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1242
1243 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1244
1245 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001246 get_http_auth_buff, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001247
1248 if (len < 0)
1249 return 0;
1250
1251
1252 get_http_auth_buff[len] = '\0';
1253
1254 p = strchr(get_http_auth_buff, ':');
1255
1256 if (!p)
1257 return 0;
1258
1259 txn->auth.user = get_http_auth_buff;
1260 *p = '\0';
1261 txn->auth.pass = p+1;
1262
1263 txn->auth.method = HTTP_AUTH_BASIC;
1264 return 1;
1265 }
1266
1267 return 0;
1268}
1269
Willy Tarreau58f10d72006-12-04 02:26:12 +01001270
Willy Tarreau8973c702007-01-21 23:58:29 +01001271/*
1272 * This function parses an HTTP message, either a request or a response,
Willy Tarreau8b1323e2012-03-09 14:46:19 +01001273 * depending on the initial msg->msg_state. The caller is responsible for
1274 * ensuring that the message does not wrap. The function can be preempted
1275 * everywhere when data are missing and recalled at the exact same location
1276 * with no information loss. The message may even be realigned between two
1277 * calls. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001278 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau26927362012-05-18 23:22:52 +02001279 * fields. Note that msg->sol will be initialized after completing the first
1280 * state, so that none of the msg pointers has to be initialized prior to the
1281 * first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001282 */
Willy Tarreaua560c212012-03-09 13:50:57 +01001283void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001284{
Willy Tarreaue69eada2008-01-27 00:34:10 +01001285 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001286 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001287 struct buffer *buf;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001288
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001289 state = msg->msg_state;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001290 buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001291 ptr = buf->p + msg->next;
1292 end = buf->p + buf->i;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001293
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001294 if (unlikely(ptr >= end))
1295 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001296
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001297 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001298 /*
1299 * First, states that are specific to the response only.
1300 * We check them first so that request and headers are
1301 * closer to each other (accessed more often).
1302 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001303 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001304 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001305 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001306 /* we have a start of message, but we have to check
1307 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001308 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001309 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001310 if (unlikely(ptr != buf->p)) {
1311 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001312 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001313 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001314 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8973c702007-01-21 23:58:29 +01001315 }
Willy Tarreau26927362012-05-18 23:22:52 +02001316 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001317 msg->sl.st.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001318 hdr_idx_init(idx);
1319 state = HTTP_MSG_RPVER;
1320 goto http_msg_rpver;
1321 }
1322
1323 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1324 goto http_msg_invalid;
1325
1326 if (unlikely(*ptr == '\n'))
1327 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1328 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1329 /* stop here */
1330
Willy Tarreau8973c702007-01-21 23:58:29 +01001331 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001332 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001333 EXPECT_LF_HERE(ptr, http_msg_invalid);
1334 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1335 /* stop here */
1336
Willy Tarreau8973c702007-01-21 23:58:29 +01001337 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001338 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001339 case HTTP_MSG_RPVER_SP:
1340 case HTTP_MSG_RPCODE:
1341 case HTTP_MSG_RPCODE_SP:
1342 case HTTP_MSG_RPREASON:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001343 ptr = (char *)http_parse_stsline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001344 state, ptr, end,
1345 &msg->next, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001346 if (unlikely(!ptr))
1347 return;
1348
1349 /* we have a full response and we know that we have either a CR
1350 * or an LF at <ptr>.
1351 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001352 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1353
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001354 msg->sol = ptr - buf->p;
Willy Tarreau8973c702007-01-21 23:58:29 +01001355 if (likely(*ptr == '\r'))
1356 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1357 goto http_msg_rpline_end;
1358
Willy Tarreau8973c702007-01-21 23:58:29 +01001359 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001360 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001361 /* msg->sol must point to the first of CR or LF. */
1362 EXPECT_LF_HERE(ptr, http_msg_invalid);
1363 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1364 /* stop here */
1365
1366 /*
1367 * Second, states that are specific to the request only
1368 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001369 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001370 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001371 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001372 /* we have a start of message, but we have to check
1373 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001374 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001375 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001376 if (likely(ptr != buf->p)) {
1377 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001378 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001379 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001380 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001381 }
Willy Tarreau26927362012-05-18 23:22:52 +02001382 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001383 msg->sl.rq.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001384 state = HTTP_MSG_RQMETH;
1385 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001386 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001387
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001388 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1389 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001390
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001391 if (unlikely(*ptr == '\n'))
1392 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1393 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001394 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001395
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001396 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001397 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001398 EXPECT_LF_HERE(ptr, http_msg_invalid);
1399 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001400 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001401
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001402 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001403 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001404 case HTTP_MSG_RQMETH_SP:
1405 case HTTP_MSG_RQURI:
1406 case HTTP_MSG_RQURI_SP:
1407 case HTTP_MSG_RQVER:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001408 ptr = (char *)http_parse_reqline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001409 state, ptr, end,
1410 &msg->next, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001411 if (unlikely(!ptr))
1412 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001413
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001414 /* we have a full request and we know that we have either a CR
1415 * or an LF at <ptr>.
1416 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001417 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001418
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001419 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001420 if (likely(*ptr == '\r'))
1421 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001422 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001423
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001424 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001425 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001426 /* check for HTTP/0.9 request : no version information available.
1427 * msg->sol must point to the first of CR or LF.
1428 */
1429 if (unlikely(msg->sl.rq.v_l == 0))
1430 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001431
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001432 EXPECT_LF_HERE(ptr, http_msg_invalid);
1433 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001434 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001435
Willy Tarreau8973c702007-01-21 23:58:29 +01001436 /*
1437 * Common states below
1438 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001439 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001440 http_msg_hdr_first:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001441 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001442 if (likely(!HTTP_IS_CRLF(*ptr))) {
1443 goto http_msg_hdr_name;
1444 }
1445
1446 if (likely(*ptr == '\r'))
1447 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1448 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001449
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001450 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001451 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001452 /* assumes msg->sol points to the first char */
1453 if (likely(HTTP_IS_TOKEN(*ptr)))
1454 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001455
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001456 if (likely(*ptr == ':'))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001457 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001458
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001459 if (likely(msg->err_pos < -1) || *ptr == '\n')
1460 goto http_msg_invalid;
1461
1462 if (msg->err_pos == -1) /* capture error pointer */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001463 msg->err_pos = ptr - buf->p; /* >= 0 now */
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001464
1465 /* and we still accept this non-token character */
1466 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001467
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001468 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001469 http_msg_hdr_l1_sp:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001470 /* assumes msg->sol points to the first char */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001471 if (likely(HTTP_IS_SPHT(*ptr)))
1472 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001473
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001474 /* header value can be basically anything except CR/LF */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001475 msg->sov = ptr - buf->p;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001476
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001477 if (likely(!HTTP_IS_CRLF(*ptr))) {
1478 goto http_msg_hdr_val;
1479 }
1480
1481 if (likely(*ptr == '\r'))
1482 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1483 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001484
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001485 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001486 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001487 EXPECT_LF_HERE(ptr, http_msg_invalid);
1488 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001489
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001490 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001491 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001492 if (likely(HTTP_IS_SPHT(*ptr))) {
1493 /* replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001494 for (; buf->p + msg->sov < ptr; msg->sov++)
1495 buf->p[msg->sov] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001496 goto http_msg_hdr_l1_sp;
1497 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001498 /* we had a header consisting only in spaces ! */
Willy Tarreau12e48b32012-03-05 16:57:34 +01001499 msg->eol = msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001500 goto http_msg_complete_header;
1501
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001502 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001503 http_msg_hdr_val:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001504 /* assumes msg->sol points to the first char, and msg->sov
1505 * points to the first character of the value.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001506 */
1507 if (likely(!HTTP_IS_CRLF(*ptr)))
1508 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001509
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001510 msg->eol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001511 /* Note: we could also copy eol into ->eoh so that we have the
1512 * real header end in case it ends with lots of LWS, but is this
1513 * really needed ?
1514 */
1515 if (likely(*ptr == '\r'))
1516 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1517 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001518
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001519 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001520 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001521 EXPECT_LF_HERE(ptr, http_msg_invalid);
1522 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001523
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001524 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001525 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001526 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1527 /* LWS: replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001528 for (; buf->p + msg->eol < ptr; msg->eol++)
1529 buf->p[msg->eol] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001530 goto http_msg_hdr_val;
1531 }
1532 http_msg_complete_header:
1533 /*
1534 * It was a new header, so the last one is finished.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001535 * Assumes msg->sol points to the first char, msg->sov points
1536 * to the first character of the value and msg->eol to the
1537 * first CR or LF so we know how the line ends. We insert last
1538 * header into the index.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001539 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001540 if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r',
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001541 idx, idx->tail) < 0))
1542 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001543
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001544 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001545 if (likely(!HTTP_IS_CRLF(*ptr))) {
1546 goto http_msg_hdr_name;
1547 }
1548
1549 if (likely(*ptr == '\r'))
1550 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1551 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001552
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001553 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001554 http_msg_last_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001555 /* Assumes msg->sol points to the first of either CR or LF */
1556 EXPECT_LF_HERE(ptr, http_msg_invalid);
1557 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001558 msg->sov = msg->next = ptr - buf->p;
Willy Tarreau3a215be2012-03-09 21:39:51 +01001559 msg->eoh = msg->sol;
1560 msg->sol = 0;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001561 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001562 return;
Willy Tarreaub56928a2012-04-16 14:51:55 +02001563
1564 case HTTP_MSG_ERROR:
1565 /* this may only happen if we call http_msg_analyser() twice with an error */
1566 break;
1567
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001568#ifdef DEBUG_FULL
1569 default:
1570 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1571 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001572#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001573 }
1574 http_msg_ood:
1575 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001576 msg->msg_state = state;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001577 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001578 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001579
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001580 http_msg_invalid:
1581 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001582 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001583 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001584 return;
1585}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001586
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001587/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1588 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1589 * nothing is done and 1 is returned.
1590 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001591static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001592{
1593 int delta;
1594 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001595 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001596
1597 if (msg->sl.rq.v_l != 0)
1598 return 1;
1599
Willy Tarreau9b28e032012-10-12 23:49:43 +02001600 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001601 delta = 0;
1602
1603 if (msg->sl.rq.u_l == 0) {
1604 /* if no URI was set, add "/" */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001605 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " /", 2);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001606 cur_end += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001607 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001608 }
1609 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001610 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001611 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001612 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001613 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001614 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001615 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001616 NULL, NULL);
1617 if (unlikely(!cur_end))
1618 return 0;
1619
1620 /* we have a full HTTP/1.0 request now and we know that
1621 * we have either a CR or an LF at <ptr>.
1622 */
1623 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1624 return 1;
1625}
1626
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001627/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001628 * and "keep-alive" values. If we already know that some headers may safely
1629 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001630 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1631 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01001632 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001633 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1634 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1635 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001636 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001637 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001638void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001639{
Willy Tarreau5b154472009-12-21 20:11:07 +01001640 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001641 const char *hdr_val = "Connection";
1642 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001643
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001644 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001645 return;
1646
Willy Tarreau88d349d2010-01-25 12:15:43 +01001647 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1648 hdr_val = "Proxy-Connection";
1649 hdr_len = 16;
1650 }
1651
Willy Tarreau5b154472009-12-21 20:11:07 +01001652 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001653 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001654 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001655 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1656 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001657 if (to_del & 2)
1658 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001659 else
1660 txn->flags |= TX_CON_KAL_SET;
1661 }
1662 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1663 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001664 if (to_del & 1)
1665 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001666 else
1667 txn->flags |= TX_CON_CLO_SET;
1668 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01001669 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
1670 txn->flags |= TX_HDR_CONN_UPG;
1671 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001672 }
1673
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001674 txn->flags |= TX_HDR_CONN_PRS;
1675 return;
1676}
Willy Tarreau5b154472009-12-21 20:11:07 +01001677
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001678/* Apply desired changes on the Connection: header. Values may be removed and/or
1679 * added depending on the <wanted> flags, which are exclusively composed of
1680 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1681 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1682 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001683void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001684{
1685 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001686 const char *hdr_val = "Connection";
1687 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001688
1689 ctx.idx = 0;
1690
Willy Tarreau88d349d2010-01-25 12:15:43 +01001691
1692 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1693 hdr_val = "Proxy-Connection";
1694 hdr_len = 16;
1695 }
1696
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001697 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001698 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001699 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1700 if (wanted & TX_CON_KAL_SET)
1701 txn->flags |= TX_CON_KAL_SET;
1702 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001703 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01001704 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001705 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1706 if (wanted & TX_CON_CLO_SET)
1707 txn->flags |= TX_CON_CLO_SET;
1708 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001709 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01001710 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001711 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001712
1713 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
1714 return;
1715
1716 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
1717 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001718 hdr_val = "Connection: close";
1719 hdr_len = 17;
1720 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1721 hdr_val = "Proxy-Connection: close";
1722 hdr_len = 23;
1723 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001724 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001725 }
1726
1727 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
1728 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001729 hdr_val = "Connection: keep-alive";
1730 hdr_len = 22;
1731 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1732 hdr_val = "Proxy-Connection: keep-alive";
1733 hdr_len = 28;
1734 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001735 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001736 }
1737 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01001738}
1739
Willy Tarreaua458b672012-03-05 11:17:50 +01001740/* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to the
Willy Tarreaud98cf932009-12-27 22:54:55 +01001741 * first byte of body, and increments msg->sov by the number of bytes parsed,
Willy Tarreau26927362012-05-18 23:22:52 +02001742 * so that we know we can forward between ->sol and ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01001743 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01001744 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01001745 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02001746static inline int http_parse_chunk_size(struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01001747{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001748 const struct buffer *buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001749 const char *ptr = b_ptr(buf, msg->next);
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001750 const char *ptr_old = ptr;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001751 const char *end = buf->data + buf->size;
1752 const char *stop = bi_end(buf);
Willy Tarreau115acb92009-12-26 13:56:06 +01001753 unsigned int chunk = 0;
1754
1755 /* The chunk size is in the following form, though we are only
1756 * interested in the size and CRLF :
1757 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
1758 */
1759 while (1) {
1760 int c;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001761 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001762 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001763 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01001764 if (c < 0) /* not a hex digit anymore */
1765 break;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001766 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001767 ptr = buf->data;
Willy Tarreau431946e2012-02-24 19:20:12 +01001768 if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001769 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001770 chunk = (chunk << 4) + c;
1771 }
1772
Willy Tarreaud98cf932009-12-27 22:54:55 +01001773 /* empty size not allowed */
Willy Tarreaua458b672012-03-05 11:17:50 +01001774 if (ptr == ptr_old)
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001775 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001776
1777 while (http_is_spht[(unsigned char)*ptr]) {
1778 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001779 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001780 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001781 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01001782 }
1783
Willy Tarreaud98cf932009-12-27 22:54:55 +01001784 /* Up to there, we know that at least one byte is present at *ptr. Check
1785 * for the end of chunk size.
1786 */
1787 while (1) {
1788 if (likely(HTTP_IS_CRLF(*ptr))) {
1789 /* we now have a CR or an LF at ptr */
1790 if (likely(*ptr == '\r')) {
1791 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001792 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001793 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001794 return 0;
1795 }
Willy Tarreau115acb92009-12-26 13:56:06 +01001796
Willy Tarreaud98cf932009-12-27 22:54:55 +01001797 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001798 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001799 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001800 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001801 /* done */
1802 break;
1803 }
1804 else if (*ptr == ';') {
1805 /* chunk extension, ends at next CRLF */
1806 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001807 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001808 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001809 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001810
1811 while (!HTTP_IS_CRLF(*ptr)) {
1812 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001813 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001814 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001815 return 0;
1816 }
1817 /* we have a CRLF now, loop above */
1818 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01001819 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001820 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001821 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001822 }
1823
Willy Tarreaud98cf932009-12-27 22:54:55 +01001824 /* OK we found our CRLF and now <ptr> points to the next byte,
Willy Tarreaua458b672012-03-05 11:17:50 +01001825 * which may or may not be present. We save that into ->next and
Willy Tarreaud98cf932009-12-27 22:54:55 +01001826 * ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01001827 */
Willy Tarreaub8ffd372012-09-27 15:08:56 +02001828 if (ptr < ptr_old)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001829 msg->sov += buf->size;
Willy Tarreaua458b672012-03-05 11:17:50 +01001830 msg->sov += ptr - ptr_old;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001831 msg->next = buffer_count(buf, buf->p, ptr);
Willy Tarreau124d9912011-03-01 20:30:48 +01001832 msg->chunk_len = chunk;
1833 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001834 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01001835 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001836 error:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001837 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001838 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01001839}
1840
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001841/* This function skips trailers in the buffer associated with HTTP
Willy Tarreaua458b672012-03-05 11:17:50 +01001842 * message <msg>. The first visited position is msg->next. If the end of
Willy Tarreaud98cf932009-12-27 22:54:55 +01001843 * the trailers is found, it is automatically scheduled to be forwarded,
1844 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
1845 * If not enough data are available, the function does not change anything
Willy Tarreaua458b672012-03-05 11:17:50 +01001846 * except maybe msg->next and msg->sov if it could parse some lines, and returns
Willy Tarreau638cd022010-01-03 07:42:04 +01001847 * zero. If a parse error is encountered, the function returns < 0 and does not
Willy Tarreaua458b672012-03-05 11:17:50 +01001848 * change anything except maybe msg->next and msg->sov. Note that the message
Willy Tarreau638cd022010-01-03 07:42:04 +01001849 * must already be in HTTP_MSG_TRAILERS state before calling this function,
1850 * which implies that all non-trailers data have already been scheduled for
Willy Tarreau26927362012-05-18 23:22:52 +02001851 * forwarding, and that the difference between msg->sol and msg->sov exactly
Willy Tarreau638cd022010-01-03 07:42:04 +01001852 * matches the length of trailers already parsed and not forwarded. It is also
1853 * important to note that this function is designed to be able to parse wrapped
1854 * headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01001855 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02001856static int http_forward_trailers(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001857{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001858 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001859
Willy Tarreaua458b672012-03-05 11:17:50 +01001860 /* we have msg->next which points to next line. Look for CRLF. */
Willy Tarreaud98cf932009-12-27 22:54:55 +01001861 while (1) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001862 const char *p1 = NULL, *p2 = NULL;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001863 const char *ptr = b_ptr(buf, msg->next);
1864 const char *stop = bi_end(buf);
Willy Tarreau638cd022010-01-03 07:42:04 +01001865 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001866
1867 /* scan current line and stop at LF or CRLF */
1868 while (1) {
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001869 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001870 return 0;
1871
1872 if (*ptr == '\n') {
1873 if (!p1)
1874 p1 = ptr;
1875 p2 = ptr;
1876 break;
1877 }
1878
1879 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001880 if (p1) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001881 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001882 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001883 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001884 p1 = ptr;
1885 }
1886
1887 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001888 if (ptr >= buf->data + buf->size)
1889 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001890 }
1891
1892 /* after LF; point to beginning of next line */
1893 p2++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001894 if (p2 >= buf->data + buf->size)
1895 p2 = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001896
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001897 bytes = p2 - b_ptr(buf, msg->next);
Willy Tarreau638cd022010-01-03 07:42:04 +01001898 if (bytes < 0)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001899 bytes += buf->size;
Willy Tarreau638cd022010-01-03 07:42:04 +01001900
1901 /* schedule this line for forwarding */
1902 msg->sov += bytes;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001903 if (msg->sov >= buf->size)
1904 msg->sov -= buf->size;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001905
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001906 if (p1 == b_ptr(buf, msg->next)) {
Willy Tarreau638cd022010-01-03 07:42:04 +01001907 /* LF/CRLF at beginning of line => end of trailers at p2.
1908 * Everything was scheduled for forwarding, there's nothing
1909 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01001910 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001911 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001912 msg->msg_state = HTTP_MSG_DONE;
1913 return 1;
1914 }
1915 /* OK, next line then */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001916 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001917 }
1918}
1919
Willy Tarreau54d23df2012-10-25 19:04:45 +02001920/* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF or
Willy Tarreaud98cf932009-12-27 22:54:55 +01001921 * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov,
Willy Tarreau26927362012-05-18 23:22:52 +02001922 * ->sol, ->next in order to include this part into the next forwarding phase.
Willy Tarreaua458b672012-03-05 11:17:50 +01001923 * Note that the caller must ensure that ->p points to the first byte to parse.
Willy Tarreaud98cf932009-12-27 22:54:55 +01001924 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
1925 * not enough data are available, the function does not change anything and
1926 * returns zero. If a parse error is encountered, the function returns < 0 and
1927 * does not change anything. Note: this function is designed to parse wrapped
1928 * CRLF at the end of the buffer.
1929 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02001930static inline int http_skip_chunk_crlf(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001931{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001932 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001933 const char *ptr;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001934 int bytes;
1935
1936 /* NB: we'll check data availabilty at the end. It's not a
1937 * problem because whatever we match first will be checked
1938 * against the correct length.
1939 */
1940 bytes = 1;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001941 ptr = buf->p;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001942 if (*ptr == '\r') {
1943 bytes++;
1944 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001945 if (ptr >= buf->data + buf->size)
1946 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001947 }
1948
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001949 if (bytes > buf->i)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001950 return 0;
1951
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001952 if (*ptr != '\n') {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001953 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001954 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001955 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001956
1957 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001958 if (ptr >= buf->data + buf->size)
1959 ptr = buf->data;
Willy Tarreau26927362012-05-18 23:22:52 +02001960 /* prepare the CRLF to be forwarded (between ->sol and ->sov) */
1961 msg->sol = 0;
Willy Tarreauea1175a2012-03-05 15:52:30 +01001962 msg->sov = msg->next = bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001963 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
1964 return 1;
1965}
Willy Tarreau5b154472009-12-21 20:11:07 +01001966
William Lallemand82fe75c2012-10-23 10:25:10 +02001967
1968/*
1969 * Selects a compression algorithm depending on the client request.
Willy Tarreau05d84602012-10-26 02:11:25 +02001970 */
William Lallemand82fe75c2012-10-23 10:25:10 +02001971int select_compression_request_header(struct session *s, struct buffer *req)
1972{
1973 struct http_txn *txn = &s->txn;
Willy Tarreau70737d12012-10-27 00:34:28 +02001974 struct http_msg *msg = &txn->req;
William Lallemand82fe75c2012-10-23 10:25:10 +02001975 struct hdr_ctx ctx;
1976 struct comp_algo *comp_algo = NULL;
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02001977 struct comp_algo *comp_algo_back = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02001978
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01001979 /* Disable compression for older user agents announcing themselves as "Mozilla/4"
1980 * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later).
Willy Tarreau05d84602012-10-26 02:11:25 +02001981 * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details.
1982 */
1983 ctx.idx = 0;
1984 if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) &&
1985 ctx.vlen >= 9 &&
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01001986 memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 &&
1987 (ctx.vlen < 31 ||
1988 memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 ||
1989 ctx.line[ctx.val + 30] < '6' ||
1990 (ctx.line[ctx.val + 30] == '6' &&
1991 (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) {
1992 s->comp_algo = NULL;
1993 return 0;
Willy Tarreau05d84602012-10-26 02:11:25 +02001994 }
1995
William Lallemand82fe75c2012-10-23 10:25:10 +02001996 /* search for the algo in the backend in priority or the frontend */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02001997 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
William Lallemand82fe75c2012-10-23 10:25:10 +02001998 ctx.idx = 0;
1999 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002000 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002001 if (word_match(ctx.line + ctx.val, ctx.vlen, comp_algo->name, comp_algo->name_len)) {
2002 s->comp_algo = comp_algo;
Willy Tarreau70737d12012-10-27 00:34:28 +02002003
2004 /* remove all occurrences of the header when "compression offload" is set */
2005
2006 if ((s->be->comp && s->be->comp->offload) ||
2007 (s->fe->comp && s->fe->comp->offload)) {
2008 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2009 ctx.idx = 0;
2010 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
2011 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2012 }
2013 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002014 return 1;
2015 }
2016 }
2017 }
2018 }
2019
2020 /* identity is implicit does not require headers */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002021 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
2022 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002023 if (comp_algo->add_data == identity_add_data) {
2024 s->comp_algo = comp_algo;
2025 return 1;
2026 }
2027 }
2028 }
2029
2030 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002031 return 0;
2032}
2033
2034/*
2035 * Selects a comression algorithm depending of the server response.
2036 */
2037int select_compression_response_header(struct session *s, struct buffer *res)
2038{
2039 struct http_txn *txn = &s->txn;
2040 struct http_msg *msg = &txn->rsp;
2041 struct hdr_ctx ctx;
2042 struct comp_type *comp_type;
William Lallemand82fe75c2012-10-23 10:25:10 +02002043
2044 /* no common compression algorithm was found in request header */
2045 if (s->comp_algo == NULL)
2046 goto fail;
2047
2048 /* HTTP < 1.1 should not be compressed */
2049 if (!(msg->flags & HTTP_MSGF_VER_11))
2050 goto fail;
2051
William Lallemandd3002612012-11-26 14:34:47 +01002052 /* 200 only */
2053 if (txn->status != 200)
2054 goto fail;
2055
William Lallemand82fe75c2012-10-23 10:25:10 +02002056 /* Content-Length is null */
2057 if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0)
2058 goto fail;
2059
2060 /* content is already compressed */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002061 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002062 if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx))
2063 goto fail;
2064
Willy Tarreau56e9ffa2013-01-05 16:20:35 +01002065 /* no compression when Cache-Control: no-transform is present in the message */
2066 ctx.idx = 0;
2067 while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) {
2068 if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12))
2069 goto fail;
2070 }
2071
William Lallemand82fe75c2012-10-23 10:25:10 +02002072 comp_type = NULL;
2073
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002074 /* we don't want to compress multipart content-types, nor content-types that are
2075 * not listed in the "compression type" directive if any. If no content-type was
2076 * found but configuration requires one, we don't compress either. Backend has
2077 * the priority.
William Lallemand82fe75c2012-10-23 10:25:10 +02002078 */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002079 ctx.idx = 0;
2080 if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) {
2081 if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0)
2082 goto fail;
2083
2084 if ((s->be->comp && (comp_type = s->be->comp->types)) ||
2085 (s->fe->comp && (comp_type = s->fe->comp->types))) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002086 for (; comp_type; comp_type = comp_type->next) {
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002087 if (ctx.vlen >= comp_type->name_len &&
2088 strncasecmp(ctx.line+ctx.val, comp_type->name, comp_type->name_len) == 0)
William Lallemand82fe75c2012-10-23 10:25:10 +02002089 /* this Content-Type should be compressed */
2090 break;
2091 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002092 /* this Content-Type should not be compressed */
2093 if (comp_type == NULL)
2094 goto fail;
William Lallemand82fe75c2012-10-23 10:25:10 +02002095 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002096 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002097 else { /* no content-type header */
2098 if ((s->be->comp && s->be->comp->types) || (s->fe->comp && s->fe->comp->types))
2099 goto fail; /* a content-type was required */
William Lallemandd3002612012-11-26 14:34:47 +01002100 }
2101
William Lallemandd85f9172012-11-09 17:05:39 +01002102 /* limit compression rate */
2103 if (global.comp_rate_lim > 0)
2104 if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim)
2105 goto fail;
2106
William Lallemand072a2bf2012-11-20 17:01:01 +01002107 /* limit cpu usage */
2108 if (idle_pct < compress_min_idle)
2109 goto fail;
2110
William Lallemand4c49fae2012-11-07 15:00:23 +01002111 /* initialize compression */
William Lallemandf3747832012-11-09 12:33:10 +01002112 if (s->comp_algo->init(&s->comp_ctx, global.tune.comp_maxlevel) < 0)
William Lallemand4c49fae2012-11-07 15:00:23 +01002113 goto fail;
2114
William Lallemandec3e3892012-11-12 17:02:18 +01002115 s->flags |= SN_COMP_READY;
2116
William Lallemand82fe75c2012-10-23 10:25:10 +02002117 /* remove Content-Length header */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002118 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002119 if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx))
2120 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2121
2122 /* add Transfer-Encoding header */
2123 if (!(msg->flags & HTTP_MSGF_TE_CHNK))
2124 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26);
2125
2126 /*
2127 * Add Content-Encoding header when it's not identity encoding.
2128 * RFC 2616 : Identity encoding: This content-coding is used only in the
2129 * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding
2130 * header.
2131 */
2132 if (s->comp_algo->add_data != identity_add_data) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002133 trash.len = 18;
2134 memcpy(trash.str, "Content-Encoding: ", trash.len);
2135 memcpy(trash.str + trash.len, s->comp_algo->name, s->comp_algo->name_len);
2136 trash.len += s->comp_algo->name_len;
2137 trash.str[trash.len] = '\0';
2138 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
William Lallemand82fe75c2012-10-23 10:25:10 +02002139 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002140 return 1;
2141
2142fail:
Willy Tarreaub97b6192012-11-19 14:55:02 +01002143 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002144 return 0;
2145}
2146
2147
Willy Tarreaud787e662009-07-07 10:14:51 +02002148/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2149 * processing can continue on next analysers, or zero if it either needs more
2150 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2151 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2152 * when it has nothing left to do, and may remove any analyser when it wants to
2153 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002154 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02002155int http_wait_for_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002156{
Willy Tarreau59234e92008-11-30 23:51:27 +01002157 /*
2158 * We will parse the partial (or complete) lines.
2159 * We will check the request syntax, and also join multi-line
2160 * headers. An index of all the lines will be elaborated while
2161 * parsing.
2162 *
2163 * For the parsing, we use a 28 states FSM.
2164 *
2165 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02002166 * req->buf->p = beginning of request
2167 * req->buf->p + msg->eoh = end of processed headers / start of current one
2168 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02002169 * msg->eol = end of current header or line (LF or CRLF)
2170 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02002171 *
2172 * At end of parsing, we may perform a capture of the error (if any), and
2173 * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE).
2174 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2175 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002176 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002177
Willy Tarreau59234e92008-11-30 23:51:27 +01002178 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002179 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002180 struct http_txn *txn = &s->txn;
2181 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002182 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002183
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002184 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +01002185 now_ms, __FUNCTION__,
2186 s,
2187 req,
2188 req->rex, req->wex,
2189 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002190 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01002191 req->analysers);
2192
Willy Tarreau52a0c602009-08-16 22:45:38 +02002193 /* we're speaking HTTP here, so let's speak HTTP to the client */
2194 s->srv_error = http_return_srv_error;
2195
Willy Tarreau83e3af02009-12-28 17:39:57 +01002196 /* There's a protected area at the end of the buffer for rewriting
2197 * purposes. We don't want to start to parse the request if the
2198 * protected area is affected, because we may have to move processed
2199 * data later, which is much more complicated.
2200 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002201 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau065e8332010-01-08 00:30:20 +01002202 if ((txn->flags & TX_NOT_FIRST) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02002203 unlikely(channel_full(req) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02002204 bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2205 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite)) {
2206 if (req->buf->o) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002207 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002208 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002209 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002210 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002211 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002212 return 0;
2213 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02002214 if (bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2215 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite)
2216 buffer_slow_realign(msg->chn->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002217 }
2218
Willy Tarreau065e8332010-01-08 00:30:20 +01002219 /* Note that we have the same problem with the response ; we
2220 * may want to send a redirect, error or anything which requires
2221 * some spare space. So we'll ensure that we have at least
2222 * maxrewrite bytes available in the response buffer before
2223 * processing that one. This will only affect pipelined
2224 * keep-alive requests.
2225 */
2226 if ((txn->flags & TX_NOT_FIRST) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02002227 unlikely(channel_full(s->rep) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02002228 bi_end(s->rep->buf) < b_ptr(s->rep->buf, txn->rsp.next) ||
2229 bi_end(s->rep->buf) > s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)) {
2230 if (s->rep->buf->o) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002231 if (s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002232 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002233 /* don't let a connection request be initiated */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002234 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002235 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau0499e352010-12-17 07:13:42 +01002236 s->rep->analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002237 return 0;
2238 }
2239 }
2240
Willy Tarreau9b28e032012-10-12 23:49:43 +02002241 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01002242 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002243 }
2244
Willy Tarreau59234e92008-11-30 23:51:27 +01002245 /* 1: we might have to print this header in debug mode */
2246 if (unlikely((global.mode & MODE_DEBUG) &&
2247 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01002248 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002249 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002250
Willy Tarreau9b28e032012-10-12 23:49:43 +02002251 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02002252 /* this is a bit complex : in case of error on the request line,
2253 * we know that rq.l is still zero, so we display only the part
2254 * up to the end of the line (truncated by debug_hdr).
2255 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002256 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01002257 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002258
Willy Tarreau59234e92008-11-30 23:51:27 +01002259 sol += hdr_idx_first_pos(&txn->hdr_idx);
2260 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002261
Willy Tarreau59234e92008-11-30 23:51:27 +01002262 while (cur_idx) {
2263 eol = sol + txn->hdr_idx.v[cur_idx].len;
2264 debug_hdr("clihdr", s, sol, eol);
2265 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2266 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002267 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002268 }
2269
Willy Tarreau58f10d72006-12-04 02:26:12 +01002270
Willy Tarreau59234e92008-11-30 23:51:27 +01002271 /*
2272 * Now we quickly check if we have found a full valid request.
2273 * If not so, we check the FD and buffer states before leaving.
2274 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002275 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002276 * requests are checked first. When waiting for a second request
2277 * on a keep-alive session, if we encounter and error, close, t/o,
2278 * we note the error in the session flags but don't set any state.
2279 * Since the error will be noted there, it will not be counted by
2280 * process_session() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002281 * Last, we may increase some tracked counters' http request errors on
2282 * the cases that are deliberately the client's fault. For instance,
2283 * a timeout or connection reset is not counted as an error. However
2284 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002285 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002286
Willy Tarreau655dce92009-11-08 13:10:58 +01002287 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002288 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002289 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002290 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002291 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02002292 session_inc_http_req_ctr(s);
2293 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002294 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002295 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002296 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002297
Willy Tarreau59234e92008-11-30 23:51:27 +01002298 /* 1: Since we are in header mode, if there's no space
2299 * left for headers, we won't be able to free more
2300 * later, so the session will never terminate. We
2301 * must terminate it now.
2302 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002303 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002304 /* FIXME: check if URI is set and return Status
2305 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002306 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002307 session_inc_http_req_ctr(s);
2308 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002309 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002310 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02002311 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01002312 goto return_bad_req;
2313 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002314
Willy Tarreau59234e92008-11-30 23:51:27 +01002315 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002316 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002317 if (!(s->flags & SN_ERR_MASK))
2318 s->flags |= SN_ERR_CLICL;
2319
Willy Tarreaufcffa692010-01-10 14:21:19 +01002320 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002321 goto failed_keep_alive;
2322
Willy Tarreau59234e92008-11-30 23:51:27 +01002323 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002324 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002325 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002326 session_inc_http_err_ctr(s);
2327 }
2328
Willy Tarreaudc979f22012-12-04 10:39:01 +01002329 txn->status = 400;
2330 stream_int_retnclose(req->prod, NULL);
Willy Tarreau59234e92008-11-30 23:51:27 +01002331 msg->msg_state = HTTP_MSG_ERROR;
2332 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002333
Willy Tarreauda7ff642010-06-23 11:44:09 +02002334 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002335 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002336 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002337 if (s->listener->counters)
2338 s->listener->counters->failed_req++;
2339
Willy Tarreau59234e92008-11-30 23:51:27 +01002340 if (!(s->flags & SN_FINST_MASK))
2341 s->flags |= SN_FINST_R;
2342 return 0;
2343 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002344
Willy Tarreau59234e92008-11-30 23:51:27 +01002345 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002346 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002347 if (!(s->flags & SN_ERR_MASK))
2348 s->flags |= SN_ERR_CLITO;
2349
Willy Tarreaufcffa692010-01-10 14:21:19 +01002350 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002351 goto failed_keep_alive;
2352
Willy Tarreau59234e92008-11-30 23:51:27 +01002353 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002354 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002355 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002356 session_inc_http_err_ctr(s);
2357 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002358 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02002359 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau59234e92008-11-30 23:51:27 +01002360 msg->msg_state = HTTP_MSG_ERROR;
2361 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002362
Willy Tarreauda7ff642010-06-23 11:44:09 +02002363 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002364 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002365 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002366 if (s->listener->counters)
2367 s->listener->counters->failed_req++;
2368
Willy Tarreau59234e92008-11-30 23:51:27 +01002369 if (!(s->flags & SN_FINST_MASK))
2370 s->flags |= SN_FINST_R;
2371 return 0;
2372 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002373
Willy Tarreau59234e92008-11-30 23:51:27 +01002374 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002375 else if (req->flags & CF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002376 if (!(s->flags & SN_ERR_MASK))
2377 s->flags |= SN_ERR_CLICL;
2378
Willy Tarreaufcffa692010-01-10 14:21:19 +01002379 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002380 goto failed_keep_alive;
2381
Willy Tarreau4076a152009-04-02 15:18:36 +02002382 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002383 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002384 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02002385 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau59234e92008-11-30 23:51:27 +01002386 msg->msg_state = HTTP_MSG_ERROR;
2387 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002388
Willy Tarreauda7ff642010-06-23 11:44:09 +02002389 session_inc_http_err_ctr(s);
2390 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002391 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002392 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002393 if (s->listener->counters)
2394 s->listener->counters->failed_req++;
2395
Willy Tarreau59234e92008-11-30 23:51:27 +01002396 if (!(s->flags & SN_FINST_MASK))
2397 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002398 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002399 }
2400
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002401 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002402 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2403 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01002404#ifdef TCP_QUICKACK
Willy Tarreau9b28e032012-10-12 23:49:43 +02002405 if (s->listener->options & LI_O_NOQUICKACK && req->buf->i) {
Willy Tarreau5e205522011-12-17 16:34:27 +01002406 /* We need more data, we have to re-enable quick-ack in case we
2407 * previously disabled it, otherwise we might cause the client
2408 * to delay next data.
2409 */
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002410 setsockopt(s->si[0].conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01002411 }
2412#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002413
Willy Tarreaufcffa692010-01-10 14:21:19 +01002414 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2415 /* If the client starts to talk, let's fall back to
2416 * request timeout processing.
2417 */
2418 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002419 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002420 }
2421
Willy Tarreau59234e92008-11-30 23:51:27 +01002422 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002423 if (!tick_isset(req->analyse_exp)) {
2424 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2425 (txn->flags & TX_WAIT_NEXT_RQ) &&
2426 tick_isset(s->be->timeout.httpka))
2427 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2428 else
2429 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2430 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002431
Willy Tarreau59234e92008-11-30 23:51:27 +01002432 /* we're not ready yet */
2433 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002434
2435 failed_keep_alive:
2436 /* Here we process low-level errors for keep-alive requests. In
2437 * short, if the request is not the first one and it experiences
2438 * a timeout, read error or shutdown, we just silently close so
2439 * that the client can try again.
2440 */
2441 txn->status = 0;
2442 msg->msg_state = HTTP_MSG_RQBEFORE;
2443 req->analysers = 0;
2444 s->logs.logwait = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002445 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002446 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002447 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002448 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002449
Willy Tarreaud787e662009-07-07 10:14:51 +02002450 /* OK now we have a complete HTTP request with indexed headers. Let's
2451 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02002452 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01002453 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01002454 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002455 * byte after the last LF. msg->sov points to the first byte of data.
2456 * msg->eol cannot be trusted because it may have been left uninitialized
2457 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002458 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002459
Willy Tarreauda7ff642010-06-23 11:44:09 +02002460 session_inc_http_req_ctr(s);
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002461 proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */
2462
Willy Tarreaub16a5742010-01-10 14:46:16 +01002463 if (txn->flags & TX_WAIT_NEXT_RQ) {
2464 /* kill the pending keep-alive timeout */
2465 txn->flags &= ~TX_WAIT_NEXT_RQ;
2466 req->analyse_exp = TICK_ETERNITY;
2467 }
2468
2469
Willy Tarreaud787e662009-07-07 10:14:51 +02002470 /* Maybe we found in invalid header name while we were configured not
2471 * to block on that, so we have to capture it now.
2472 */
2473 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002474 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002475
Willy Tarreau59234e92008-11-30 23:51:27 +01002476 /*
2477 * 1: identify the method
2478 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002479 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002480
2481 /* we can make use of server redirect on GET and HEAD */
2482 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2483 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002484
Willy Tarreau59234e92008-11-30 23:51:27 +01002485 /*
2486 * 2: check if the URI matches the monitor_uri.
2487 * We have to do this for every request which gets in, because
2488 * the monitor-uri is defined by the frontend.
2489 */
2490 if (unlikely((s->fe->monitor_uri_len != 0) &&
2491 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002492 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002493 s->fe->monitor_uri,
2494 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002495 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002496 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002497 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002498 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002499
Willy Tarreau59234e92008-11-30 23:51:27 +01002500 s->flags |= SN_MONITOR;
Willy Tarreaueabea072011-09-10 23:29:44 +02002501 s->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002502
Willy Tarreau59234e92008-11-30 23:51:27 +01002503 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002504 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002505 int ret = acl_exec_cond(cond, s->fe, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02002506
Willy Tarreau59234e92008-11-30 23:51:27 +01002507 ret = acl_pass(ret);
2508 if (cond->pol == ACL_COND_UNLESS)
2509 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002510
Willy Tarreau59234e92008-11-30 23:51:27 +01002511 if (ret) {
2512 /* we fail this request, let's return 503 service unavail */
2513 txn->status = 503;
Willy Tarreau783f2582012-09-04 12:19:04 +02002514 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_503));
Willy Tarreau59234e92008-11-30 23:51:27 +01002515 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002516 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002517 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002518
Willy Tarreau59234e92008-11-30 23:51:27 +01002519 /* nothing to fail, let's reply normaly */
2520 txn->status = 200;
Willy Tarreau783f2582012-09-04 12:19:04 +02002521 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_200));
Willy Tarreau59234e92008-11-30 23:51:27 +01002522 goto return_prx_cond;
2523 }
2524
2525 /*
2526 * 3: Maybe we have to copy the original REQURI for the logs ?
2527 * Note: we cannot log anymore if the request has been
2528 * classified as invalid.
2529 */
2530 if (unlikely(s->logs.logwait & LW_REQ)) {
2531 /* we have a complete HTTP request that we must log */
2532 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2533 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002534
Willy Tarreau59234e92008-11-30 23:51:27 +01002535 if (urilen >= REQURI_LEN)
2536 urilen = REQURI_LEN - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02002537 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01002538 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002539
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002540 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01002541 s->do_log(s);
2542 } else {
2543 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002544 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002545 }
Willy Tarreau06619262006-12-17 08:37:22 +01002546
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002547 if (!LIST_ISEMPTY(&s->fe->format_unique_id))
2548 s->unique_id = pool_alloc2(pool2_uniqueid);
William Lallemanda73203e2012-03-12 12:48:57 +01002549
Willy Tarreau59234e92008-11-30 23:51:27 +01002550 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01002551 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002552 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002553
Willy Tarreau5b154472009-12-21 20:11:07 +01002554 /* ... and check if the request is HTTP/1.1 or above */
2555 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002556 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
2557 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
2558 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002559 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01002560
2561 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01002562 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL | TX_HDR_CONN_UPG);
Willy Tarreau5b154472009-12-21 20:11:07 +01002563
Willy Tarreau88d349d2010-01-25 12:15:43 +01002564 /* if the frontend has "option http-use-proxy-header", we'll check if
2565 * we have what looks like a proxied connection instead of a connection,
2566 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2567 * Note that this is *not* RFC-compliant, however browsers and proxies
2568 * happen to do that despite being non-standard :-(
2569 * We consider that a request not beginning with either '/' or '*' is
2570 * a proxied connection, which covers both "scheme://location" and
2571 * CONNECT ip:port.
2572 */
2573 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002574 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01002575 txn->flags |= TX_USE_PX_CONN;
2576
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002577 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002578 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002579
Willy Tarreau59234e92008-11-30 23:51:27 +01002580 /* 5: we may need to capture headers */
Willy Tarreau42f7d892012-03-24 08:28:09 +01002581 if (unlikely((s->logs.logwait & LW_REQHDR) && txn->req.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02002582 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002583 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002584
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002585 /* 6: determine the transfer-length.
2586 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2587 * the presence of a message-body in a REQUEST and its transfer length
2588 * must be determined that way (in order of precedence) :
2589 * 1. The presence of a message-body in a request is signaled by the
2590 * inclusion of a Content-Length or Transfer-Encoding header field
2591 * in the request's header fields. When a request message contains
2592 * both a message-body of non-zero length and a method that does
2593 * not define any semantics for that request message-body, then an
2594 * origin server SHOULD either ignore the message-body or respond
2595 * with an appropriate error message (e.g., 413). A proxy or
2596 * gateway, when presented the same request, SHOULD either forward
2597 * the request inbound with the message- body or ignore the
2598 * message-body when determining a response.
2599 *
2600 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2601 * and the "chunked" transfer-coding (Section 6.2) is used, the
2602 * transfer-length is defined by the use of this transfer-coding.
2603 * If a Transfer-Encoding header field is present and the "chunked"
2604 * transfer-coding is not present, the transfer-length is defined
2605 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002606 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002607 * 3. If a Content-Length header field is present, its decimal value in
2608 * OCTETs represents both the entity-length and the transfer-length.
2609 * If a message is received with both a Transfer-Encoding header
2610 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002611 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002612 * 4. By the server closing the connection. (Closing the connection
2613 * cannot be used to indicate the end of a request body, since that
2614 * would leave no possibility for the server to send back a response.)
2615 *
2616 * Whenever a transfer-coding is applied to a message-body, the set of
2617 * transfer-codings MUST include "chunked", unless the message indicates
2618 * it is terminated by closing the connection. When the "chunked"
2619 * transfer-coding is used, it MUST be the last transfer-coding applied
2620 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002621 */
2622
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002623 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002624 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002625 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002626 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002627 http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002628 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002629 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
2630 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002631 /* bad transfer-encoding (chunked followed by something else) */
2632 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002633 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002634 break;
2635 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002636 }
2637
Willy Tarreau32b47f42009-10-18 20:55:02 +02002638 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002639 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002640 http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02002641 signed long long cl;
2642
Willy Tarreauad14f752011-09-02 20:33:27 +02002643 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002644 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002645 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002646 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002647
Willy Tarreauad14f752011-09-02 20:33:27 +02002648 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002649 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002650 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002651 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002652
Willy Tarreauad14f752011-09-02 20:33:27 +02002653 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002654 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002655 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002656 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002657
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002658 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002659 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002660 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002661 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002662
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002663 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002664 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002665 }
2666
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002667 /* bodyless requests have a known length */
2668 if (!use_close_only)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002669 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002670
Willy Tarreaud787e662009-07-07 10:14:51 +02002671 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002672 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002673 req->analyse_exp = TICK_ETERNITY;
2674 return 1;
2675
2676 return_bad_req:
2677 /* We centralize bad requests processing here */
2678 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2679 /* we detected a parsing error. We want to archive this request
2680 * in the dedicated proxy area for later troubleshooting.
2681 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002682 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002683 }
2684
2685 txn->req.msg_state = HTTP_MSG_ERROR;
2686 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02002687 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002688
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002689 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002690 if (s->listener->counters)
2691 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02002692
2693 return_prx_cond:
2694 if (!(s->flags & SN_ERR_MASK))
2695 s->flags |= SN_ERR_PRXCOND;
2696 if (!(s->flags & SN_FINST_MASK))
2697 s->flags |= SN_FINST_R;
2698
2699 req->analysers = 0;
2700 req->analyse_exp = TICK_ETERNITY;
2701 return 0;
2702}
2703
Cyril Bonté70be45d2010-10-12 00:14:35 +02002704/* We reached the stats page through a POST request.
2705 * Parse the posted data and enable/disable servers if necessary.
Cyril Bonté23b39d92011-02-10 22:54:44 +01002706 * Returns 1 if request was parsed or zero if it needs more data.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002707 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02002708int http_process_req_stat_post(struct stream_interface *si, struct http_txn *txn, struct channel *req)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002709{
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002710 struct proxy *px = NULL;
2711 struct server *sv = NULL;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002712
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002713 char key[LINESIZE];
2714 int action = ST_ADM_ACTION_NONE;
2715 int reprocess = 0;
2716
2717 int total_servers = 0;
2718 int altered_servers = 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002719
2720 char *first_param, *cur_param, *next_param, *end_params;
Willy Tarreau46787ed2012-04-11 17:28:40 +02002721 char *st_cur_param = NULL;
2722 char *st_next_param = NULL;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002723
Willy Tarreau9b28e032012-10-12 23:49:43 +02002724 first_param = req->buf->p + txn->req.eoh + 2;
Willy Tarreau124d9912011-03-01 20:30:48 +01002725 end_params = first_param + txn->req.body_len;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002726
2727 cur_param = next_param = end_params;
2728
Willy Tarreau9b28e032012-10-12 23:49:43 +02002729 if (end_params >= req->buf->data + req->buf->size - global.tune.maxrewrite) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002730 /* Prevent buffer overflow */
Willy Tarreau295a8372011-03-10 11:25:07 +01002731 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002732 return 1;
2733 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02002734 else if (end_params > req->buf->p + req->buf->i) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01002735 /* we need more data */
Willy Tarreau295a8372011-03-10 11:25:07 +01002736 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté23b39d92011-02-10 22:54:44 +01002737 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002738 }
2739
2740 *end_params = '\0';
2741
Willy Tarreau295a8372011-03-10 11:25:07 +01002742 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002743
2744 /*
2745 * Parse the parameters in reverse order to only store the last value.
2746 * From the html form, the backend and the action are at the end.
2747 */
2748 while (cur_param > first_param) {
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002749 char *value;
2750 int poffset, plen;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002751
2752 cur_param--;
2753 if ((*cur_param == '&') || (cur_param == first_param)) {
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002754 reprocess_servers:
Cyril Bonté70be45d2010-10-12 00:14:35 +02002755 /* Parse the key */
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002756 poffset = (cur_param != first_param ? 1 : 0);
2757 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
2758 if ((plen > 0) && (plen <= sizeof(key))) {
2759 strncpy(key, cur_param + poffset, plen);
2760 key[plen - 1] = '\0';
2761 } else {
2762 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
2763 goto out;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002764 }
2765
2766 /* Parse the value */
2767 value = key;
2768 while (*value != '\0' && *value != '=') {
2769 value++;
2770 }
2771 if (*value == '=') {
2772 /* Ok, a value is found, we can mark the end of the key */
2773 *value++ = '\0';
2774 }
2775
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02002776 if (!url_decode(key) || !url_decode(value))
2777 break;
2778
Cyril Bonté70be45d2010-10-12 00:14:35 +02002779 /* Now we can check the key to see what to do */
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002780 if (!px && (strcmp(key, "b") == 0)) {
2781 if ((px = findproxy(value, PR_CAP_BE)) == NULL) {
2782 /* the backend name is unknown or ambiguous (duplicate names) */
2783 si->applet.ctx.stats.st_code = STAT_STATUS_ERRP;
2784 goto out;
2785 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02002786 }
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002787 else if (!action && (strcmp(key, "action") == 0)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002788 if (strcmp(value, "disable") == 0) {
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002789 action = ST_ADM_ACTION_DISABLE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002790 }
2791 else if (strcmp(value, "enable") == 0) {
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002792 action = ST_ADM_ACTION_ENABLE;
2793 }
Willy Tarreaud7282242012-06-04 00:22:44 +02002794 else if (strcmp(value, "stop") == 0) {
2795 action = ST_ADM_ACTION_STOP;
2796 }
2797 else if (strcmp(value, "start") == 0) {
2798 action = ST_ADM_ACTION_START;
2799 }
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02002800 else if (strcmp(value, "shutdown") == 0) {
2801 action = ST_ADM_ACTION_SHUTDOWN;
2802 }
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002803 else {
2804 si->applet.ctx.stats.st_code = STAT_STATUS_ERRP;
2805 goto out;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002806 }
2807 }
2808 else if (strcmp(key, "s") == 0) {
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002809 if (!(px && action)) {
2810 /*
2811 * Indicates that we'll need to reprocess the parameters
2812 * as soon as backend and action are known
2813 */
2814 if (!reprocess) {
2815 st_cur_param = cur_param;
2816 st_next_param = next_param;
2817 }
2818 reprocess = 1;
2819 }
2820 else if ((sv = findserver(px, value)) != NULL) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002821 switch (action) {
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002822 case ST_ADM_ACTION_DISABLE:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002823 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002824 /* Not already in maintenance, we can change the server state */
2825 sv->state |= SRV_MAINTAIN;
2826 set_server_down(sv);
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002827 altered_servers++;
2828 total_servers++;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002829 }
2830 break;
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002831 case ST_ADM_ACTION_ENABLE:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002832 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002833 /* Already in maintenance, we can change the server state */
2834 set_server_up(sv);
Willy Tarreau70461302010-10-22 14:39:02 +02002835 sv->health = sv->rise; /* up, but will fall down at first failure */
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002836 altered_servers++;
2837 total_servers++;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002838 }
Willy Tarreaud7282242012-06-04 00:22:44 +02002839 break;
2840 case ST_ADM_ACTION_STOP:
2841 case ST_ADM_ACTION_START:
2842 if (action == ST_ADM_ACTION_START)
2843 sv->uweight = sv->iweight;
2844 else
2845 sv->uweight = 0;
2846
2847 if (px->lbprm.algo & BE_LB_PROP_DYN) {
2848 /* we must take care of not pushing the server to full throttle during slow starts */
2849 if ((sv->state & SRV_WARMINGUP) && (px->lbprm.algo & BE_LB_PROP_DYN))
2850 sv->eweight = (BE_WEIGHT_SCALE * (now.tv_sec - sv->last_change) + sv->slowstart - 1) / sv->slowstart;
2851 else
2852 sv->eweight = BE_WEIGHT_SCALE;
2853 sv->eweight *= sv->uweight;
2854 } else {
2855 sv->eweight = sv->uweight;
2856 }
2857
2858 /* static LB algorithms are a bit harder to update */
2859 if (px->lbprm.update_server_eweight)
2860 px->lbprm.update_server_eweight(sv);
2861 else if (sv->eweight) {
2862 if (px->lbprm.set_server_status_up)
2863 px->lbprm.set_server_status_up(sv);
2864 }
2865 else {
2866 if (px->lbprm.set_server_status_down)
2867 px->lbprm.set_server_status_down(sv);
2868 }
2869 altered_servers++;
2870 total_servers++;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002871 break;
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02002872 case ST_ADM_ACTION_SHUTDOWN:
2873 if (px->state != PR_STSTOPPED) {
2874 struct session *sess, *sess_bck;
2875
2876 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
2877 if (sess->srv_conn == sv)
2878 session_shutdown(sess, SN_ERR_KILLED);
2879
2880 altered_servers++;
2881 total_servers++;
2882 }
2883 break;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002884 }
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002885 } else {
2886 /* the server name is unknown or ambiguous (duplicate names) */
2887 total_servers++;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002888 }
2889 }
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002890 if (reprocess && px && action) {
2891 /* Now, we know the backend and the action chosen by the user.
2892 * We can safely restart from the first server parameter
2893 * to reprocess them
2894 */
2895 cur_param = st_cur_param;
2896 next_param = st_next_param;
2897 reprocess = 0;
2898 goto reprocess_servers;
2899 }
2900
Cyril Bonté70be45d2010-10-12 00:14:35 +02002901 next_param = cur_param;
2902 }
2903 }
Cyril Bontécf8d9ae2012-04-04 12:57:18 +02002904
2905 if (total_servers == 0) {
2906 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
2907 }
2908 else if (altered_servers == 0) {
2909 si->applet.ctx.stats.st_code = STAT_STATUS_ERRP;
2910 }
2911 else if (altered_servers == total_servers) {
2912 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
2913 }
2914 else {
2915 si->applet.ctx.stats.st_code = STAT_STATUS_PART;
2916 }
2917 out:
Cyril Bonté23b39d92011-02-10 22:54:44 +01002918 return 1;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002919}
2920
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002921/* This function checks whether we need to enable a POST analyser to parse a
2922 * stats request, and also registers the stats I/O handler. It returns zero
Willy Tarreaucbc743e2012-12-28 08:36:50 +01002923 * if it needs to come back again, otherwise non-zero if it finishes. In the
2924 * latter case, it also clears the request analysers.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002925 */
2926int http_handle_stats(struct session *s, struct channel *req)
2927{
2928 struct stats_admin_rule *stats_admin_rule;
2929 struct stream_interface *si = s->rep->prod;
2930 struct http_txn *txn = &s->txn;
2931 struct http_msg *msg = &txn->req;
2932 struct uri_auth *uri = s->be->uri_auth;
2933
2934 /* now check whether we have some admin rules for this request */
2935 list_for_each_entry(stats_admin_rule, &s->be->uri_auth->admin_rules, list) {
2936 int ret = 1;
2937
2938 if (stats_admin_rule->cond) {
2939 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
2940 ret = acl_pass(ret);
2941 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
2942 ret = !ret;
2943 }
2944
2945 if (ret) {
2946 /* no rule, or the rule matches */
2947 s->rep->prod->applet.ctx.stats.flags |= STAT_ADMIN;
2948 break;
2949 }
2950 }
2951
2952 /* Was the status page requested with a POST ? */
2953 if (unlikely(txn->meth == HTTP_METH_POST)) {
2954 if (si->applet.ctx.stats.flags & STAT_ADMIN) {
2955 if (msg->msg_state < HTTP_MSG_100_SENT) {
2956 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
2957 * send an HTTP/1.1 100 Continue intermediate response.
2958 */
2959 if (msg->flags & HTTP_MSGF_VER_11) {
2960 struct hdr_ctx ctx;
2961 ctx.idx = 0;
2962 /* Expect is allowed in 1.1, look for it */
2963 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
2964 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
2965 bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len);
2966 }
2967 }
2968 msg->msg_state = HTTP_MSG_100_SENT;
2969 s->logs.tv_request = now; /* update the request timer to reflect full request */
2970 }
2971 if (!http_process_req_stat_post(si, txn, req))
2972 return 0; /* we need more data */
2973 }
2974 else
2975 si->applet.ctx.stats.st_code = STAT_STATUS_DENY;
2976
2977 /* We don't want to land on the posted stats page because a refresh will
2978 * repost the data. We don't want this to happen on accident so we redirect
2979 * the browse to the stats page with a GET.
2980 */
2981 chunk_printf(&trash,
2982 "HTTP/1.0 303 See Other\r\n"
2983 "Cache-Control: no-cache\r\n"
2984 "Content-Type: text/plain\r\n"
2985 "Connection: close\r\n"
2986 "Location: %s;st=%s\r\n"
2987 "\r\n",
2988 uri->uri_prefix,
2989 ((si->applet.ctx.stats.st_code > STAT_STATUS_INIT) &&
2990 (si->applet.ctx.stats.st_code < STAT_STATUS_SIZE) &&
2991 stat_status_codes[si->applet.ctx.stats.st_code]) ?
2992 stat_status_codes[si->applet.ctx.stats.st_code] :
2993 stat_status_codes[STAT_STATUS_UNKN]);
2994
2995 s->txn.status = 303;
2996 s->logs.tv_request = now;
2997 stream_int_retnclose(req->prod, &trash);
2998 s->target = &http_stats_applet.obj_type; /* just for logging the applet name */
2999
3000 if (s->fe == s->be) /* report it if the request was intercepted by the frontend */
3001 s->fe->fe_counters.intercepted_req++;
3002
3003 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
3004 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
3005 if (!(s->flags & SN_FINST_MASK))
3006 s->flags |= SN_FINST_R;
Willy Tarreaucbc743e2012-12-28 08:36:50 +01003007 req->analysers = 0;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003008 return 1;
3009 }
3010
3011 /* OK, let's go on now */
3012
3013 chunk_printf(&trash,
3014 "HTTP/1.0 200 OK\r\n"
3015 "Cache-Control: no-cache\r\n"
3016 "Connection: close\r\n"
3017 "Content-Type: %s\r\n",
Willy Tarreau354898b2012-12-23 18:15:23 +01003018 (si->applet.ctx.stats.flags & STAT_FMT_HTML) ? "text/html" : "text/plain");
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003019
3020 if (uri->refresh > 0 && !(si->applet.ctx.stats.flags & STAT_NO_REFRESH))
3021 chunk_appendf(&trash, "Refresh: %d\r\n",
3022 uri->refresh);
3023
3024 chunk_appendf(&trash, "\r\n");
3025
3026 s->txn.status = 200;
3027 s->logs.tv_request = now;
3028
3029 if (s->fe == s->be) /* report it if the request was intercepted by the frontend */
3030 s->fe->fe_counters.intercepted_req++;
3031
3032 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
3033 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
3034 if (!(s->flags & SN_FINST_MASK))
3035 s->flags |= SN_FINST_R;
3036
3037 if (s->txn.meth == HTTP_METH_HEAD) {
3038 /* that's all we return in case of HEAD request, so let's immediately close. */
3039 stream_int_retnclose(req->prod, &trash);
3040 s->target = &http_stats_applet.obj_type; /* just for logging the applet name */
Willy Tarreaucbc743e2012-12-28 08:36:50 +01003041 req->analysers = 0;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003042 return 1;
3043 }
3044
3045 /* OK, push the response and hand over to the stats I/O handler */
3046 bi_putchk(s->rep, &trash);
3047
3048 s->task->nice = -32; /* small boost for HTTP statistics */
3049 stream_int_register_handler(s->rep->prod, &http_stats_applet);
3050 s->target = s->rep->prod->conn->target; // for logging only
3051 s->rep->prod->conn->xprt_ctx = s;
3052 s->rep->prod->applet.st0 = s->rep->prod->applet.st1 = 0;
3053 req->analysers = 0;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003054 return 1;
3055}
3056
Willy Tarreau20b0de52012-12-24 15:45:22 +01003057/* Executes the http-request rules <rules> for session <s>, proxy <px> and
Willy Tarreau96257ec2012-12-27 10:46:37 +01003058 * transaction <txn>. Returns the first rule that prevents further processing
3059 * of the request (auth, deny, ...) or NULL if it executed all rules or stopped
3060 * on an allow. It may set the TX_CLDENY on txn->flags if it encounters a deny
3061 * rule.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003062 */
Willy Tarreau20b0de52012-12-24 15:45:22 +01003063static struct http_req_rule *
Willy Tarreau96257ec2012-12-27 10:46:37 +01003064http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003065{
Willy Tarreauff011f22011-01-06 17:51:27 +01003066 struct http_req_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01003067 struct hdr_ctx ctx;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003068
Willy Tarreauff011f22011-01-06 17:51:27 +01003069 list_for_each_entry(rule, rules, list) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003070 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003071 continue;
3072
Willy Tarreau96257ec2012-12-27 10:46:37 +01003073 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01003074 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01003075 int ret;
3076
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003077 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003078 ret = acl_pass(ret);
3079
Willy Tarreauff011f22011-01-06 17:51:27 +01003080 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003081 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003082
3083 if (!ret) /* condition not matched */
3084 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003085 }
3086
Willy Tarreau20b0de52012-12-24 15:45:22 +01003087
Willy Tarreau96257ec2012-12-27 10:46:37 +01003088 switch (rule->action) {
3089 case HTTP_REQ_ACT_ALLOW:
3090 return NULL; /* "allow" rules are OK */
3091
3092 case HTTP_REQ_ACT_DENY:
3093 txn->flags |= TX_CLDENY;
3094 return rule;
3095
Willy Tarreauccbcc372012-12-27 12:37:57 +01003096 case HTTP_REQ_ACT_TARPIT:
3097 txn->flags |= TX_CLTARPIT;
3098 return rule;
3099
Willy Tarreau96257ec2012-12-27 10:46:37 +01003100 case HTTP_REQ_ACT_AUTH:
3101 return rule;
3102
Willy Tarreau81499eb2012-12-27 12:19:02 +01003103 case HTTP_REQ_ACT_REDIR:
3104 return rule;
3105
Willy Tarreau96257ec2012-12-27 10:46:37 +01003106 case HTTP_REQ_ACT_SET_HDR:
3107 ctx.idx = 0;
3108 /* remove all occurrences of the header */
3109 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3110 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3111 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01003112 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003113 /* now fall through to header addition */
3114
3115 case HTTP_REQ_ACT_ADD_HDR:
3116 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3117 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3118 trash.len = rule->arg.hdr_add.name_len;
3119 trash.str[trash.len++] = ':';
3120 trash.str[trash.len++] = ' ';
3121 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
3122 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len);
3123 break;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003124 }
3125 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003126
3127 /* we reached the end of the rules, nothing to report */
Willy Tarreau418c1a02012-12-25 20:52:58 +01003128 return NULL;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003129}
3130
Willy Tarreau71241ab2012-12-27 11:30:54 +01003131
3132/* Perform an HTTP redirect based on the information in <rule>. The function
3133 * returns non-zero on success, or zero in case of a, irrecoverable error such
3134 * as too large a request to build a valid response.
3135 */
3136static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn)
3137{
3138 struct http_msg *msg = &txn->req;
3139 const char *msg_fmt;
3140
3141 /* build redirect message */
3142 switch(rule->code) {
3143 case 303:
3144 msg_fmt = HTTP_303;
3145 break;
3146 case 301:
3147 msg_fmt = HTTP_301;
3148 break;
3149 case 302:
3150 default:
3151 msg_fmt = HTTP_302;
3152 break;
3153 }
3154
3155 if (unlikely(!chunk_strcpy(&trash, msg_fmt)))
3156 return 0;
3157
3158 switch(rule->type) {
3159 case REDIRECT_TYPE_SCHEME: {
3160 const char *path;
3161 const char *host;
3162 struct hdr_ctx ctx;
3163 int pathlen;
3164 int hostlen;
3165
3166 host = "";
3167 hostlen = 0;
3168 ctx.idx = 0;
3169 if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) {
3170 host = ctx.line + ctx.val;
3171 hostlen = ctx.vlen;
3172 }
3173
3174 path = http_get_path(txn);
3175 /* build message using path */
3176 if (path) {
3177 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3178 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3179 int qs = 0;
3180 while (qs < pathlen) {
3181 if (path[qs] == '?') {
3182 pathlen = qs;
3183 break;
3184 }
3185 qs++;
3186 }
3187 }
3188 } else {
3189 path = "/";
3190 pathlen = 1;
3191 }
3192
3193 /* check if we can add scheme + "://" + host + path */
3194 if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4)
3195 return 0;
3196
3197 /* add scheme */
3198 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3199 trash.len += rule->rdr_len;
3200
3201 /* add "://" */
3202 memcpy(trash.str + trash.len, "://", 3);
3203 trash.len += 3;
3204
3205 /* add host */
3206 memcpy(trash.str + trash.len, host, hostlen);
3207 trash.len += hostlen;
3208
3209 /* add path */
3210 memcpy(trash.str + trash.len, path, pathlen);
3211 trash.len += pathlen;
3212
3213 /* append a slash at the end of the location is needed and missing */
3214 if (trash.len && trash.str[trash.len - 1] != '/' &&
3215 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3216 if (trash.len > trash.size - 5)
3217 return 0;
3218 trash.str[trash.len] = '/';
3219 trash.len++;
3220 }
3221
3222 break;
3223 }
3224 case REDIRECT_TYPE_PREFIX: {
3225 const char *path;
3226 int pathlen;
3227
3228 path = http_get_path(txn);
3229 /* build message using path */
3230 if (path) {
3231 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3232 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3233 int qs = 0;
3234 while (qs < pathlen) {
3235 if (path[qs] == '?') {
3236 pathlen = qs;
3237 break;
3238 }
3239 qs++;
3240 }
3241 }
3242 } else {
3243 path = "/";
3244 pathlen = 1;
3245 }
3246
3247 if (trash.len + rule->rdr_len + pathlen > trash.size - 4)
3248 return 0;
3249
3250 /* add prefix. Note that if prefix == "/", we don't want to
3251 * add anything, otherwise it makes it hard for the user to
3252 * configure a self-redirection.
3253 */
3254 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
3255 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3256 trash.len += rule->rdr_len;
3257 }
3258
3259 /* add path */
3260 memcpy(trash.str + trash.len, path, pathlen);
3261 trash.len += pathlen;
3262
3263 /* append a slash at the end of the location is needed and missing */
3264 if (trash.len && trash.str[trash.len - 1] != '/' &&
3265 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3266 if (trash.len > trash.size - 5)
3267 return 0;
3268 trash.str[trash.len] = '/';
3269 trash.len++;
3270 }
3271
3272 break;
3273 }
3274 case REDIRECT_TYPE_LOCATION:
3275 default:
3276 if (trash.len + rule->rdr_len > trash.size - 4)
3277 return 0;
3278
3279 /* add location */
3280 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3281 trash.len += rule->rdr_len;
3282 break;
3283 }
3284
3285 if (rule->cookie_len) {
3286 memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14);
3287 trash.len += 14;
3288 memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len);
3289 trash.len += rule->cookie_len;
3290 memcpy(trash.str + trash.len, "\r\n", 2);
3291 trash.len += 2;
3292 }
3293
3294 /* add end of headers and the keep-alive/close status.
3295 * We may choose to set keep-alive if the Location begins
3296 * with a slash, because the client will come back to the
3297 * same server.
3298 */
3299 txn->status = rule->code;
3300 /* let's log the request time */
3301 s->logs.tv_request = now;
3302
3303 if (rule->rdr_len >= 1 && *rule->rdr_str == '/' &&
3304 (msg->flags & HTTP_MSGF_XFER_LEN) &&
3305 !(msg->flags & HTTP_MSGF_TE_CHNK) && !txn->req.body_len &&
3306 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3307 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3308 /* keep-alive possible */
3309 if (!(msg->flags & HTTP_MSGF_VER_11)) {
3310 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3311 memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30);
3312 trash.len += 30;
3313 } else {
3314 memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24);
3315 trash.len += 24;
3316 }
3317 }
3318 memcpy(trash.str + trash.len, "\r\n\r\n", 4);
3319 trash.len += 4;
3320 bo_inject(txn->rsp.chn, trash.str, trash.len);
3321 /* "eat" the request */
3322 bi_fast_delete(txn->req.chn->buf, msg->sov);
3323 msg->sov = 0;
3324 txn->req.chn->analysers = AN_REQ_HTTP_XFER_BODY;
3325 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3326 txn->req.msg_state = HTTP_MSG_CLOSED;
3327 txn->rsp.msg_state = HTTP_MSG_DONE;
3328 } else {
3329 /* keep-alive not possible */
3330 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3331 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3332 trash.len += 29;
3333 } else {
3334 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
3335 trash.len += 23;
3336 }
3337 stream_int_retnclose(txn->req.chn->prod, &trash);
3338 txn->req.chn->analysers = 0;
3339 }
3340
3341 if (!(s->flags & SN_ERR_MASK))
3342 s->flags |= SN_ERR_PRXCOND;
3343 if (!(s->flags & SN_FINST_MASK))
3344 s->flags |= SN_FINST_R;
3345
3346 return 1;
3347}
3348
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003349/* This stream analyser runs all HTTP request processing which is common to
3350 * frontends and backends, which means blocking ACLs, filters, connection-close,
3351 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003352 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003353 * either needs more data or wants to immediately abort the request (eg: deny,
3354 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003355 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003356int http_process_req_common(struct session *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003357{
Willy Tarreaud787e662009-07-07 10:14:51 +02003358 struct http_txn *txn = &s->txn;
3359 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003360 struct acl_cond *cond;
Willy Tarreauff011f22011-01-06 17:51:27 +01003361 struct http_req_rule *http_req_last_rule = NULL;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003362 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003363 struct cond_wordlist *wl;
Simon Horman70735c92011-06-07 11:07:50 +09003364 int do_stats;
Willy Tarreaud787e662009-07-07 10:14:51 +02003365
Willy Tarreau655dce92009-11-08 13:10:58 +01003366 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003367 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003368 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003369 return 0;
3370 }
3371
Willy Tarreau3a816292009-07-07 10:55:49 +02003372 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003373 req->analyse_exp = TICK_ETERNITY;
3374
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003375 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02003376 now_ms, __FUNCTION__,
3377 s,
3378 req,
3379 req->rex, req->wex,
3380 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003381 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02003382 req->analysers);
3383
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003384 /* first check whether we have some ACLs set to block this request */
3385 list_for_each_entry(cond, &px->block_cond, list) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003386 int ret = acl_exec_cond(cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02003387
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003388 ret = acl_pass(ret);
3389 if (cond->pol == ACL_COND_UNLESS)
3390 ret = !ret;
Willy Tarreau53b6c742006-12-17 13:37:46 +01003391
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003392 if (ret) {
3393 txn->status = 403;
3394 /* let's log the request time */
3395 s->logs.tv_request = now;
Willy Tarreau783f2582012-09-04 12:19:04 +02003396 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003397 session_inc_http_err_ctr(s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003398 goto return_prx_cond;
Willy Tarreau59234e92008-11-30 23:51:27 +01003399 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003400 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003401
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01003402 /* just in case we have some per-backend tracking */
3403 session_inc_be_http_req_ctr(s);
3404
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003405 /* evaluate http-request rules */
Willy Tarreau96257ec2012-12-27 10:46:37 +01003406 http_req_last_rule = http_req_get_intercept_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01003407
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003408 /* evaluate stats http-request rules only if http-request is OK */
Willy Tarreauff011f22011-01-06 17:51:27 +01003409 if (!http_req_last_rule) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003410 do_stats = stats_check_uri(s->rep->prod, txn, px);
3411 if (do_stats)
Willy Tarreau96257ec2012-12-27 10:46:37 +01003412 http_req_last_rule = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, txn);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003413 }
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003414 else
3415 do_stats = 0;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003416
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003417 /* return a 403 if either rule has blocked */
Willy Tarreauccbcc372012-12-27 12:37:57 +01003418 if (txn->flags & (TX_CLDENY|TX_CLTARPIT)) {
3419 if (txn->flags & TX_CLDENY) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003420 txn->status = 403;
3421 s->logs.tv_request = now;
Willy Tarreau783f2582012-09-04 12:19:04 +02003422 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003423 session_inc_http_err_ctr(s);
Willy Tarreau6da0f6d2011-01-06 18:19:50 +01003424 s->fe->fe_counters.denied_req++;
3425 if (an_bit == AN_REQ_HTTP_PROCESS_BE)
3426 s->be->be_counters.denied_req++;
3427 if (s->listener->counters)
3428 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003429 goto return_prx_cond;
Willy Tarreauccbcc372012-12-27 12:37:57 +01003430 }
3431 /* When a connection is tarpitted, we use the tarpit timeout,
3432 * which may be the same as the connect timeout if unspecified.
3433 * If unset, then set it to zero because we really want it to
3434 * eventually expire. We build the tarpit as an analyser.
3435 */
3436 if (txn->flags & TX_CLTARPIT) {
3437 channel_erase(s->req);
3438 /* wipe the request out so that we can drop the connection early
3439 * if the client closes first.
3440 */
3441 channel_dont_connect(req);
3442 req->analysers = 0; /* remove switching rules etc... */
3443 req->analysers |= AN_REQ_HTTP_TARPIT;
3444 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3445 if (!req->analyse_exp)
3446 req->analyse_exp = tick_add(now_ms, 0);
3447 session_inc_http_err_ctr(s);
3448 s->fe->fe_counters.denied_req++;
3449 if (s->fe != s->be)
3450 s->be->be_counters.denied_req++;
3451 if (s->listener->counters)
3452 s->listener->counters->denied_req++;
3453 return 1;
3454 }
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003455 }
3456
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003457 /* try headers filters */
3458 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003459 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003460 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01003461
Willy Tarreau59234e92008-11-30 23:51:27 +01003462 /* has the request been denied ? */
3463 if (txn->flags & TX_CLDENY) {
3464 /* no need to go further */
3465 txn->status = 403;
3466 /* let's log the request time */
3467 s->logs.tv_request = now;
Willy Tarreau783f2582012-09-04 12:19:04 +02003468 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003469 session_inc_http_err_ctr(s);
Willy Tarreau59234e92008-11-30 23:51:27 +01003470 goto return_prx_cond;
3471 }
Willy Tarreauc465fd72009-08-31 00:17:18 +02003472
3473 /* When a connection is tarpitted, we use the tarpit timeout,
3474 * which may be the same as the connect timeout if unspecified.
3475 * If unset, then set it to zero because we really want it to
3476 * eventually expire. We build the tarpit as an analyser.
3477 */
3478 if (txn->flags & TX_CLTARPIT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003479 channel_erase(s->req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003480 /* wipe the request out so that we can drop the connection early
3481 * if the client closes first.
3482 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003483 channel_dont_connect(req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003484 req->analysers = 0; /* remove switching rules etc... */
3485 req->analysers |= AN_REQ_HTTP_TARPIT;
3486 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3487 if (!req->analyse_exp)
3488 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003489 session_inc_http_err_ctr(s);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003490 return 1;
3491 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003492 }
Willy Tarreau06619262006-12-17 08:37:22 +01003493
Willy Tarreau5b154472009-12-21 20:11:07 +01003494 /* Until set to anything else, the connection mode is set as TUNNEL. It will
3495 * only change if both the request and the config reference something else.
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003496 * Option httpclose by itself does not set a mode, it remains a tunnel mode
3497 * in which headers are mangled. However, if another mode is set, it will
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003498 * affect it (eg: server-close/keep-alive + httpclose = close). Note that we
3499 * avoid to redo the same work if FE and BE have the same settings (common).
3500 * The method consists in checking if options changed between the two calls
3501 * (implying that either one is non-null, or one of them is non-null and we
3502 * are there for the first time.
Willy Tarreau42736642009-10-18 21:04:35 +02003503 */
Willy Tarreau5b154472009-12-21 20:11:07 +01003504
Willy Tarreaudc008c52010-02-01 16:20:08 +01003505 if ((!(txn->flags & TX_HDR_CONN_PRS) &&
3506 (s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) ||
3507 ((s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) !=
3508 (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 +01003509 int tmp = TX_CON_WANT_TUN;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003510
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003511 if ((s->fe->options|s->be->options) & PR_O_KEEPALIVE ||
3512 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreau5b154472009-12-21 20:11:07 +01003513 tmp = TX_CON_WANT_KAL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01003514 if ((s->fe->options|s->be->options) & PR_O_SERVER_CLO)
3515 tmp = TX_CON_WANT_SCL;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003516 if ((s->fe->options|s->be->options) & PR_O_FORCE_CLO)
Willy Tarreau5b154472009-12-21 20:11:07 +01003517 tmp = TX_CON_WANT_CLO;
3518
Willy Tarreau5b154472009-12-21 20:11:07 +01003519 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
3520 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003521
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003522 if (!(txn->flags & TX_HDR_CONN_PRS)) {
3523 /* parse the Connection header and possibly clean it */
3524 int to_del = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003525 if ((msg->flags & HTTP_MSGF_VER_11) ||
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003526 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
3527 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003528 to_del |= 2; /* remove "keep-alive" */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003529 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003530 to_del |= 1; /* remove "close" */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003531 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003532 }
Willy Tarreau5b154472009-12-21 20:11:07 +01003533
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003534 /* check if client or config asks for explicit close in KAL/SCL */
3535 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
3536 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
3537 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003538 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003539 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE) || /* httpclose+any = forceclose */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003540 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
Willy Tarreauc3e8b252010-01-28 15:01:20 +01003541 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003542 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
3543 }
Willy Tarreau78599912009-10-17 20:12:21 +02003544
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003545 /* we can be blocked here because the request needs to be authenticated,
3546 * either to pass or to access stats.
3547 */
Willy Tarreau20b0de52012-12-24 15:45:22 +01003548 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_AUTH) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01003549 char *realm = http_req_last_rule->arg.auth.realm;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003550
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003551 if (!realm)
3552 realm = do_stats?STATS_DEFAULT_REALM:px->id;
3553
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003554 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003555 txn->status = 401;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003556 stream_int_retnclose(req->prod, &trash);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003557 /* on 401 we still count one error, because normal browsing
3558 * won't significantly increase the counter but brute force
3559 * attempts will.
3560 */
3561 session_inc_http_err_ctr(s);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003562 goto return_prx_cond;
3563 }
3564
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003565 /* add request headers from the rule sets in the same order */
3566 list_for_each_entry(wl, &px->req_add, list) {
3567 if (wl->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003568 int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003569 ret = acl_pass(ret);
3570 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3571 ret = !ret;
3572 if (!ret)
3573 continue;
3574 }
3575
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003576 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003577 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003578 }
3579
3580 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_REDIR) {
3581 if (!http_apply_redirect_rule(http_req_last_rule->arg.redir, s, txn))
3582 goto return_bad_req;
3583 req->analyse_exp = TICK_ETERNITY;
3584 return 1;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003585 }
3586
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003587 if (unlikely(do_stats)) {
3588 /* process the stats request now */
3589 if (!http_handle_stats(s, req)) {
3590 /* we need more data, let's come back here later */
3591 req->analysers |= an_bit;
3592 channel_dont_connect(req);
Cyril Bonté70be45d2010-10-12 00:14:35 +02003593 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003594 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003595 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003596
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003597 /* check whether we have some ACLs set to redirect this request */
3598 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003599 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003600 int ret;
3601
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003602 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01003603 ret = acl_pass(ret);
3604 if (rule->cond->pol == ACL_COND_UNLESS)
3605 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003606 if (!ret)
3607 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01003608 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003609 if (!http_apply_redirect_rule(rule, s, txn))
3610 goto return_bad_req;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003611
Willy Tarreau71241ab2012-12-27 11:30:54 +01003612 req->analyse_exp = TICK_ETERNITY;
3613 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003614 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003615
Willy Tarreau2be39392010-01-03 17:24:51 +01003616 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3617 * If this happens, then the data will not come immediately, so we must
3618 * send all what we have without waiting. Note that due to the small gain
3619 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003620 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01003621 * itself once used.
3622 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003623 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01003624
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003625 /* that's OK for us now, let's move on to next analysers */
3626 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003627
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003628 return_bad_req:
3629 /* We centralize bad requests processing here */
3630 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3631 /* we detected a parsing error. We want to archive this request
3632 * in the dedicated proxy area for later troubleshooting.
3633 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01003634 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003635 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003636
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003637 txn->req.msg_state = HTTP_MSG_ERROR;
3638 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02003639 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003640
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003641 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003642 if (s->listener->counters)
3643 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003644
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003645 return_prx_cond:
3646 if (!(s->flags & SN_ERR_MASK))
3647 s->flags |= SN_ERR_PRXCOND;
3648 if (!(s->flags & SN_FINST_MASK))
3649 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003650
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003651 req->analysers = 0;
3652 req->analyse_exp = TICK_ETERNITY;
3653 return 0;
3654}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003655
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003656/* This function performs all the processing enabled for the current request.
3657 * It returns 1 if the processing can continue on next analysers, or zero if it
3658 * needs more data, encounters an error, or wants to immediately abort the
3659 * request. It relies on buffers flags, and updates s->req->analysers.
3660 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003661int http_process_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003662{
3663 struct http_txn *txn = &s->txn;
3664 struct http_msg *msg = &txn->req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003665
Willy Tarreau655dce92009-11-08 13:10:58 +01003666 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003667 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003668 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003669 return 0;
3670 }
3671
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003672 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003673 now_ms, __FUNCTION__,
3674 s,
3675 req,
3676 req->rex, req->wex,
3677 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003678 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003679 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003680
William Lallemand82fe75c2012-10-23 10:25:10 +02003681 if (s->fe->comp || s->be->comp)
3682 select_compression_request_header(s, req->buf);
3683
Willy Tarreau59234e92008-11-30 23:51:27 +01003684 /*
3685 * Right now, we know that we have processed the entire headers
3686 * and that unwanted requests have been filtered out. We can do
3687 * whatever we want with the remaining request. Also, now we
3688 * may have separate values for ->fe, ->be.
3689 */
Willy Tarreau06619262006-12-17 08:37:22 +01003690
Willy Tarreau59234e92008-11-30 23:51:27 +01003691 /*
3692 * If HTTP PROXY is set we simply get remote server address
3693 * parsing incoming request.
3694 */
3695 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003696 url2sa(req->buf->p + msg->sl.rq.u, msg->sl.rq.u_l, &s->req->cons->conn->addr.to);
Willy Tarreau59234e92008-11-30 23:51:27 +01003697 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003698
Willy Tarreau59234e92008-11-30 23:51:27 +01003699 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003700 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003701 * Note that doing so might move headers in the request, but
3702 * the fields will stay coherent and the URI will not move.
3703 * This should only be performed in the backend.
3704 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003705 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003706 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
3707 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003708
Willy Tarreau59234e92008-11-30 23:51:27 +01003709 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003710 * 8: the appsession cookie was looked up very early in 1.2,
3711 * so let's do the same now.
3712 */
3713
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02003714 /* It needs to look into the URI unless persistence must be ignored */
3715 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003716 get_srv_from_appsession(s, req->buf->p + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01003717 }
3718
William Lallemanda73203e2012-03-12 12:48:57 +01003719 /* add unique-id if "header-unique-id" is specified */
3720
3721 if (!LIST_ISEMPTY(&s->fe->format_unique_id))
3722 build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id);
3723
3724 if (s->fe->header_unique_id && s->unique_id) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003725 chunk_printf(&trash, "%s: %s", s->fe->header_unique_id, s->unique_id);
3726 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01003727 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003728 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01003729 goto return_bad_req;
3730 }
3731
Cyril Bontéb21570a2009-11-29 20:04:48 +01003732 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01003733 * 9: add X-Forwarded-For if either the frontend or the backend
3734 * asks for it.
3735 */
3736 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02003737 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreau87cf5142011-08-19 22:57:24 +02003738 if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Cyril Bontéa32d2752012-05-29 23:27:41 +02003739 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : s->fe->fwdfor_hdr_name,
3740 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : s->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003741 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02003742 /* The header is set to be added only if none is present
3743 * and we found it, so don't do anything.
3744 */
3745 }
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003746 else if (s->req->prod->conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003747 /* Add an X-Forwarded-For header unless the source IP is
3748 * in the 'except' network range.
3749 */
3750 if ((!s->fe->except_mask.s_addr ||
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003751 (((struct sockaddr_in *)&s->req->prod->conn->addr.from)->sin_addr.s_addr & s->fe->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003752 != s->fe->except_net.s_addr) &&
3753 (!s->be->except_mask.s_addr ||
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003754 (((struct sockaddr_in *)&s->req->prod->conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003755 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01003756 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01003757 unsigned char *pn;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003758 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02003759
3760 /* Note: we rely on the backend to get the header name to be used for
3761 * x-forwarded-for, because the header is really meant for the backends.
3762 * However, if the backend did not specify any option, we have to rely
3763 * on the frontend's header name.
3764 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003765 if (s->be->fwdfor_hdr_len) {
3766 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003767 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02003768 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01003769 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003770 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003771 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003772 len += sprintf(trash.str + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01003773
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003774 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01003775 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01003776 }
3777 }
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003778 else if (s->req->prod->conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003779 /* FIXME: for the sake of completeness, we should also support
3780 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003781 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003782 int len;
3783 char pn[INET6_ADDRSTRLEN];
3784 inet_ntop(AF_INET6,
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003785 (const void *)&((struct sockaddr_in6 *)(&s->req->prod->conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01003786 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003787
Willy Tarreau59234e92008-11-30 23:51:27 +01003788 /* Note: we rely on the backend to get the header name to be used for
3789 * x-forwarded-for, because the header is really meant for the backends.
3790 * However, if the backend did not specify any option, we have to rely
3791 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003792 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003793 if (s->be->fwdfor_hdr_len) {
3794 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003795 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01003796 } else {
3797 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003798 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003799 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003800 len += sprintf(trash.str + len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003801
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003802 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01003803 goto return_bad_req;
3804 }
3805 }
3806
3807 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02003808 * 10: add X-Original-To if either the frontend or the backend
3809 * asks for it.
3810 */
3811 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
3812
3813 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003814 if (s->req->prod->conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003815 /* Add an X-Original-To header unless the destination IP is
3816 * in the 'except' network range.
3817 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003818 conn_get_to_addr(s->req->prod->conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02003819
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003820 if (s->req->prod->conn->addr.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02003821 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003822 (((struct sockaddr_in *)&s->req->prod->conn->addr.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003823 != s->fe->except_to.s_addr) &&
3824 (!s->be->except_mask_to.s_addr ||
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003825 (((struct sockaddr_in *)&s->req->prod->conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003826 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003827 int len;
3828 unsigned char *pn;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003829 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02003830
3831 /* Note: we rely on the backend to get the header name to be used for
3832 * x-original-to, because the header is really meant for the backends.
3833 * However, if the backend did not specify any option, we have to rely
3834 * on the frontend's header name.
3835 */
3836 if (s->be->orgto_hdr_len) {
3837 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003838 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02003839 } else {
3840 len = s->fe->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003841 memcpy(trash.str, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003842 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003843 len += sprintf(trash.str + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Maik Broemme2850cb42009-04-17 18:53:21 +02003844
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003845 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003846 goto return_bad_req;
3847 }
3848 }
3849 }
3850
Willy Tarreau50fc7772012-11-11 22:19:57 +01003851 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
3852 * If an "Upgrade" token is found, the header is left untouched in order not to have
3853 * to deal with some servers bugs : some of them fail an Upgrade if anything but
3854 * "Upgrade" is present in the Connection header.
3855 */
3856 if (!(txn->flags & TX_HDR_CONN_UPG) &&
3857 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
3858 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003859 unsigned int want_flags = 0;
3860
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003861 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02003862 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
3863 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) &&
3864 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003865 want_flags |= TX_CON_CLO_SET;
3866 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02003867 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
3868 !((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) ||
3869 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003870 want_flags |= TX_CON_KAL_SET;
3871 }
3872
3873 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003874 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003875 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003876
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003877
Willy Tarreau522d6c02009-12-06 18:49:18 +01003878 /* If we have no server assigned yet and we're balancing on url_param
3879 * with a POST request, we may be interested in checking the body for
3880 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003881 */
3882 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
3883 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01003884 s->be->url_param_post_limit != 0 &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003885 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003886 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003887 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003888 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003889
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003890 if (msg->flags & HTTP_MSGF_XFER_LEN) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01003891 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01003892#ifdef TCP_QUICKACK
3893 /* We expect some data from the client. Unless we know for sure
3894 * we already have a full request, we have to re-enable quick-ack
3895 * in case we previously disabled it, otherwise we might cause
3896 * the client to delay further data.
3897 */
3898 if ((s->listener->options & LI_O_NOQUICKACK) &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003899 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02003900 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreau7f7ad912012-11-11 19:27:15 +01003901 setsockopt(s->si[0].conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01003902#endif
3903 }
Willy Tarreau03945942009-12-22 16:50:27 +01003904
Willy Tarreau59234e92008-11-30 23:51:27 +01003905 /*************************************************************
3906 * OK, that's finished for the headers. We have done what we *
3907 * could. Let's switch to the DATA state. *
3908 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003909 req->analyse_exp = TICK_ETERNITY;
3910 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003911
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02003912 /* if the server closes the connection, we want to immediately react
3913 * and close the socket to save packets and syscalls.
3914 */
Willy Tarreau40f151a2012-12-20 12:10:09 +01003915 if (!(req->analysers & AN_REQ_HTTP_XFER_BODY))
3916 req->cons->flags |= SI_FL_NOHALF;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02003917
Willy Tarreau59234e92008-11-30 23:51:27 +01003918 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003919 /* OK let's go on with the BODY now */
3920 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003921
Willy Tarreau59234e92008-11-30 23:51:27 +01003922 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003923 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003924 /* we detected a parsing error. We want to archive this request
3925 * in the dedicated proxy area for later troubleshooting.
3926 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01003927 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003928 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003929
Willy Tarreau59234e92008-11-30 23:51:27 +01003930 txn->req.msg_state = HTTP_MSG_ERROR;
3931 txn->status = 400;
3932 req->analysers = 0;
Willy Tarreau783f2582012-09-04 12:19:04 +02003933 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003934
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003935 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003936 if (s->listener->counters)
3937 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02003938
Willy Tarreau59234e92008-11-30 23:51:27 +01003939 if (!(s->flags & SN_ERR_MASK))
3940 s->flags |= SN_ERR_PRXCOND;
3941 if (!(s->flags & SN_FINST_MASK))
3942 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003943 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003944}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003945
Willy Tarreau60b85b02008-11-30 23:28:40 +01003946/* This function is an analyser which processes the HTTP tarpit. It always
3947 * returns zero, at the beginning because it prevents any other processing
3948 * from occurring, and at the end because it terminates the request.
3949 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003950int http_process_tarpit(struct session *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003951{
3952 struct http_txn *txn = &s->txn;
3953
3954 /* This connection is being tarpitted. The CLIENT side has
3955 * already set the connect expiration date to the right
3956 * timeout. We just have to check that the client is still
3957 * there and that the timeout has not expired.
3958 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003959 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003960 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01003961 !tick_is_expired(req->analyse_exp, now_ms))
3962 return 0;
3963
3964 /* We will set the queue timer to the time spent, just for
3965 * logging purposes. We fake a 500 server error, so that the
3966 * attacker will not suspect his connection has been tarpitted.
3967 * It will not cause trouble to the logs because we can exclude
3968 * the tarpitted connections by filtering on the 'PT' status flags.
3969 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01003970 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
3971
3972 txn->status = 500;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003973 if (!(req->flags & CF_READ_ERROR))
Willy Tarreau783f2582012-09-04 12:19:04 +02003974 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau60b85b02008-11-30 23:28:40 +01003975
3976 req->analysers = 0;
3977 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003978
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003979 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003980 if (s->listener->counters)
3981 s->listener->counters->failed_req++;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003982
Willy Tarreau60b85b02008-11-30 23:28:40 +01003983 if (!(s->flags & SN_ERR_MASK))
3984 s->flags |= SN_ERR_PRXCOND;
3985 if (!(s->flags & SN_FINST_MASK))
3986 s->flags |= SN_FINST_T;
3987 return 0;
3988}
3989
Willy Tarreaud34af782008-11-30 23:36:37 +01003990/* This function is an analyser which processes the HTTP request body. It looks
3991 * for parameters to be used for the load balancing algorithm (url_param). It
3992 * must only be called after the standard HTTP request processing has occurred,
3993 * because it expects the request to be parsed. It returns zero if it needs to
3994 * read more data, or 1 once it has completed its analysis.
3995 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003996int http_process_request_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01003997{
Willy Tarreau522d6c02009-12-06 18:49:18 +01003998 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01003999 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004000 long long limit = s->be->url_param_post_limit;
Willy Tarreaud34af782008-11-30 23:36:37 +01004001
4002 /* We have to parse the HTTP request body to find any required data.
4003 * "balance url_param check_post" should have been the only way to get
4004 * into this. We were brought here after HTTP header analysis, so all
4005 * related structures are ready.
4006 */
4007
Willy Tarreau522d6c02009-12-06 18:49:18 +01004008 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4009 goto missing_data;
4010
4011 if (msg->msg_state < HTTP_MSG_100_SENT) {
4012 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4013 * send an HTTP/1.1 100 Continue intermediate response.
4014 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004015 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004016 struct hdr_ctx ctx;
4017 ctx.idx = 0;
4018 /* Expect is allowed in 1.1, look for it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004019 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01004020 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02004021 bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004022 }
4023 }
4024 msg->msg_state = HTTP_MSG_100_SENT;
4025 }
4026
4027 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004028 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau9b28e032012-10-12 23:49:43 +02004029 * req->buf->p still points to the beginning of the message and msg->sol
Willy Tarreau26927362012-05-18 23:22:52 +02004030 * is still null. We must save the body in msg->next because it
4031 * survives buffer re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004032 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004033 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004034
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004035 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004036 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4037 else
4038 msg->msg_state = HTTP_MSG_DATA;
4039 }
4040
4041 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004042 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004043 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004044 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004045 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004046 int ret = http_parse_chunk_size(msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01004047
Willy Tarreau115acb92009-12-26 13:56:06 +01004048 if (!ret)
4049 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004050 else if (ret < 0) {
4051 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004052 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004053 }
Willy Tarreaud34af782008-11-30 23:36:37 +01004054 }
4055
Willy Tarreaud98cf932009-12-27 22:54:55 +01004056 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004057 * We have the first data byte is in msg->sov. We're waiting for at
4058 * least <url_param_post_limit> bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01004059 */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004060
Willy Tarreau124d9912011-03-01 20:30:48 +01004061 if (msg->body_len < limit)
4062 limit = msg->body_len;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004063
Willy Tarreau9b28e032012-10-12 23:49:43 +02004064 if (req->buf->i - msg->sov >= limit) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004065 goto http_end;
4066
4067 missing_data:
4068 /* we get here if we need to wait for more data */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004069 if (buffer_full(req->buf, global.tune.maxrewrite)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02004070 session_inc_http_err_ctr(s);
Willy Tarreau115acb92009-12-26 13:56:06 +01004071 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004072 }
Willy Tarreau115acb92009-12-26 13:56:06 +01004073
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004074 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004075 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02004076 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02004077
4078 if (!(s->flags & SN_ERR_MASK))
4079 s->flags |= SN_ERR_CLITO;
4080 if (!(s->flags & SN_FINST_MASK))
4081 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004082 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01004083 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004084
4085 /* we get here if we need to wait for more data */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004086 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR)) && !buffer_full(req->buf, global.tune.maxrewrite)) {
Willy Tarreaud34af782008-11-30 23:36:37 +01004087 /* Not enough data. We'll re-use the http-request
4088 * timeout here. Ideally, we should set the timeout
4089 * relative to the accept() date. We just set the
4090 * request timeout once at the beginning of the
4091 * request.
4092 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004093 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01004094 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02004095 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01004096 return 0;
4097 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004098
4099 http_end:
4100 /* The situation will not evolve, so let's give up on the analysis. */
4101 s->logs.tv_request = now; /* update the request timer to reflect full request */
4102 req->analysers &= ~an_bit;
4103 req->analyse_exp = TICK_ETERNITY;
4104 return 1;
4105
4106 return_bad_req: /* let's centralize all bad requests */
4107 txn->req.msg_state = HTTP_MSG_ERROR;
4108 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004109 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau522d6c02009-12-06 18:49:18 +01004110
Willy Tarreau79ebac62010-06-07 13:47:49 +02004111 if (!(s->flags & SN_ERR_MASK))
4112 s->flags |= SN_ERR_PRXCOND;
4113 if (!(s->flags & SN_FINST_MASK))
4114 s->flags |= SN_FINST_R;
4115
Willy Tarreau522d6c02009-12-06 18:49:18 +01004116 return_err_msg:
4117 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004118 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004119 if (s->listener->counters)
4120 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004121 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01004122}
4123
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004124/* send a server's name with an outgoing request over an established connection.
4125 * Note: this function is designed to be called once the request has been scheduled
4126 * for being forwarded. This is the reason why it rewinds the buffer before
4127 * proceeding.
4128 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01004129int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004130
4131 struct hdr_ctx ctx;
4132
Mark Lamourinec2247f02012-01-04 13:02:01 -05004133 char *hdr_name = be->server_id_hdr_name;
4134 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02004135 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004136 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004137 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004138
William Lallemandd9e90662012-01-30 17:27:17 +01004139 ctx.idx = 0;
4140
Willy Tarreau9b28e032012-10-12 23:49:43 +02004141 old_o = chn->buf->o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004142 if (old_o) {
4143 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004144 b_rew(chn->buf, old_o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004145 }
4146
Willy Tarreau9b28e032012-10-12 23:49:43 +02004147 old_i = chn->buf->i;
4148 while (http_find_header2(hdr_name, hdr_name_len, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004149 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004150 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004151 }
4152
4153 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004154 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004155 memcpy(hdr_val, hdr_name, hdr_name_len);
4156 hdr_val += hdr_name_len;
4157 *hdr_val++ = ':';
4158 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004159 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
4160 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004161
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004162 if (old_o) {
4163 /* If this was a forwarded request, we must readjust the amount of
4164 * data to be forwarded in order to take into account the size
Willy Tarreau2fef9b12013-03-26 01:08:21 +01004165 * variations. Note that if the request was already scheduled for
4166 * forwarding, it had its req->sol pointing to the body, which
4167 * must then be updated too.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004168 */
Willy Tarreau2fef9b12013-03-26 01:08:21 +01004169 txn->req.sol += chn->buf->i - old_i;
Willy Tarreau9b28e032012-10-12 23:49:43 +02004170 b_adv(chn->buf, old_o + chn->buf->i - old_i);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004171 }
4172
Mark Lamourinec2247f02012-01-04 13:02:01 -05004173 return 0;
4174}
4175
Willy Tarreau610ecce2010-01-04 21:15:02 +01004176/* Terminate current transaction and prepare a new one. This is very tricky
4177 * right now but it works.
4178 */
4179void http_end_txn_clean_session(struct session *s)
4180{
4181 /* FIXME: We need a more portable way of releasing a backend's and a
4182 * server's connections. We need a safer way to reinitialize buffer
4183 * flags. We also need a more accurate method for computing per-request
4184 * data.
4185 */
4186 http_silent_debug(__LINE__, s);
4187
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004188 s->req->cons->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
Willy Tarreau73b013b2012-05-21 16:31:45 +02004189 si_shutr(s->req->cons);
4190 si_shutw(s->req->cons);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004191
4192 http_silent_debug(__LINE__, s);
4193
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004194 if (s->flags & SN_BE_ASSIGNED) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004195 s->be->beconn--;
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004196 if (unlikely(s->srv_conn))
4197 sess_change_server(s, NULL);
4198 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004199
4200 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
4201 session_process_counters(s);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02004202 session_stop_backend_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004203
4204 if (s->txn.status) {
4205 int n;
4206
4207 n = s->txn.status / 100;
4208 if (n < 1 || n > 5)
4209 n = 0;
4210
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004211 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004212 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004213 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004214 s->fe->fe_counters.p.http.comp_rsp++;
4215 }
Willy Tarreau24657792010-02-26 10:30:28 +01004216 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004217 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004218 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004219 s->be->be_counters.p.http.cum_req++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004220 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004221 s->be->be_counters.p.http.comp_rsp++;
4222 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004223 }
4224
4225 /* don't count other requests' data */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004226 s->logs.bytes_in -= s->req->buf->i;
4227 s->logs.bytes_out -= s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004228
4229 /* let's do a final log if we need it */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01004230 if (!LIST_ISEMPTY(&s->fe->logformat) && s->logs.logwait &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01004231 !(s->flags & SN_MONITOR) &&
4232 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
4233 s->do_log(s);
4234 }
4235
4236 s->logs.accept_date = date; /* user-visible date for logging */
4237 s->logs.tv_accept = now; /* corrected date for internal use */
4238 tv_zero(&s->logs.tv_request);
4239 s->logs.t_queue = -1;
4240 s->logs.t_connect = -1;
4241 s->logs.t_data = -1;
4242 s->logs.t_close = 0;
4243 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
4244 s->logs.srv_queue_size = 0; /* we will get this number soon */
4245
Willy Tarreau9b28e032012-10-12 23:49:43 +02004246 s->logs.bytes_in = s->req->total = s->req->buf->i;
4247 s->logs.bytes_out = s->rep->total = s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004248
4249 if (s->pend_pos)
4250 pendconn_free(s->pend_pos);
4251
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004252 if (objt_server(s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004253 if (s->flags & SN_CURR_SESS) {
4254 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004255 objt_server(s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004256 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004257 if (may_dequeue_tasks(objt_server(s->target), s->be))
4258 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01004259 }
4260
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004261 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004262
4263 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004264 s->req->cons->conn->t.sock.fd = -1; /* just to help with debugging */
4265 s->req->cons->conn->flags = CO_FL_NONE;
Willy Tarreau14cba4b2012-11-30 17:33:05 +01004266 s->req->cons->conn->err_code = CO_ER_NONE;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004267 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02004268 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004269 s->req->cons->err_loc = NULL;
4270 s->req->cons->exp = TICK_ETERNITY;
4271 s->req->cons->flags = SI_FL_NONE;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004272 s->req->flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT);
4273 s->rep->flags &= ~(CF_SHUTR|CF_SHUTR_NOW|CF_READ_ATTACHED|CF_READ_ERROR|CF_READ_NOEXP|CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_PARTIAL|CF_NEVER_WAIT);
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004274 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 +01004275 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE);
Willy Tarreau543db622012-11-15 16:41:22 +01004276
4277 if (s->flags & SN_COMP_READY)
4278 s->comp_algo->end(&s->comp_ctx);
4279 s->comp_algo = NULL;
4280 s->flags &= ~SN_COMP_READY;
4281
Willy Tarreau610ecce2010-01-04 21:15:02 +01004282 s->txn.meth = 0;
4283 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01004284 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreauee55dc02010-06-01 10:56:34 +02004285 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004286 s->req->cons->flags |= SI_FL_INDEP_STR;
4287
Willy Tarreau96e31212011-05-30 18:10:30 +02004288 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004289 s->req->flags |= CF_NEVER_WAIT;
4290 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02004291 }
4292
Willy Tarreau610ecce2010-01-04 21:15:02 +01004293 /* if the request buffer is not empty, it means we're
4294 * about to process another request, so send pending
4295 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004296 * Just don't do this if the buffer is close to be full,
4297 * because the request will wait for it to flush a little
4298 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004299 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004300 if (s->req->buf->i) {
4301 if (s->rep->buf->o &&
4302 !buffer_full(s->rep->buf, global.tune.maxrewrite) &&
4303 bi_end(s->rep->buf) <= s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004304 s->rep->flags |= CF_EXPECT_MORE;
Willy Tarreau065e8332010-01-08 00:30:20 +01004305 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004306
4307 /* we're removing the analysers, we MUST re-enable events detection */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004308 channel_auto_read(s->req);
4309 channel_auto_close(s->req);
4310 channel_auto_read(s->rep);
4311 channel_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004312
Willy Tarreau342b11c2010-11-24 16:22:09 +01004313 s->req->analysers = s->listener->analysers;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004314 s->rep->analysers = 0;
4315
4316 http_silent_debug(__LINE__, s);
4317}
4318
4319
4320/* This function updates the request state machine according to the response
4321 * state machine and buffer flags. It returns 1 if it changes anything (flag
4322 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4323 * it is only used to find when a request/response couple is complete. Both
4324 * this function and its equivalent should loop until both return zero. It
4325 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4326 */
4327int http_sync_req_state(struct session *s)
4328{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004329 struct channel *chn = s->req;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004330 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004331 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004332 unsigned int old_state = txn->req.msg_state;
4333
4334 http_silent_debug(__LINE__, s);
4335 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
4336 return 0;
4337
4338 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004339 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004340 * We can shut the read side unless we want to abort_on_close,
4341 * or we have a POST request. The issue with POST requests is
4342 * that some browsers still send a CRLF after the request, and
4343 * this CRLF must be read so that it does not remain in the kernel
4344 * buffers, otherwise a close could cause an RST on some systems
4345 * (eg: Linux).
Willy Tarreau90deb182010-01-07 00:20:41 +01004346 */
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004347 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004348 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004349
Willy Tarreau40f151a2012-12-20 12:10:09 +01004350 /* if the server closes the connection, we want to immediately react
4351 * and close the socket to save packets and syscalls.
4352 */
4353 chn->cons->flags |= SI_FL_NOHALF;
4354
Willy Tarreau610ecce2010-01-04 21:15:02 +01004355 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4356 goto wait_other_side;
4357
4358 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4359 /* The server has not finished to respond, so we
4360 * don't want to move in order not to upset it.
4361 */
4362 goto wait_other_side;
4363 }
4364
4365 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4366 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004367 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004368 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004369 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004370 goto wait_other_side;
4371 }
4372
4373 /* When we get here, it means that both the request and the
4374 * response have finished receiving. Depending on the connection
4375 * mode, we'll have to wait for the last bytes to leave in either
4376 * direction, and sometimes for a close to be effective.
4377 */
4378
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004379 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4380 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004381 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
4382 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004383 }
4384 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4385 /* Option forceclose is set, or either side wants to close,
4386 * let's enforce it now that we're not expecting any new
4387 * data to come. The caller knows the session is complete
4388 * once both states are CLOSED.
4389 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004390 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4391 channel_shutr_now(chn);
4392 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004393 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004394 }
4395 else {
4396 /* The last possible modes are keep-alive and tunnel. Since tunnel
4397 * mode does not set the body analyser, we can't reach this place
4398 * in tunnel mode, so we're left with keep-alive only.
4399 * This mode is currently not implemented, we switch to tunnel mode.
4400 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004401 channel_auto_read(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004402 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004403 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004404 }
4405
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004406 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004407 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004408 chn->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004409
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004410 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004411 txn->req.msg_state = HTTP_MSG_CLOSING;
4412 goto http_msg_closing;
4413 }
4414 else {
4415 txn->req.msg_state = HTTP_MSG_CLOSED;
4416 goto http_msg_closed;
4417 }
4418 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004419 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004420 }
4421
4422 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4423 http_msg_closing:
4424 /* nothing else to forward, just waiting for the output buffer
4425 * to be empty and for the shutw_now to take effect.
4426 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004427 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004428 txn->req.msg_state = HTTP_MSG_CLOSED;
4429 goto http_msg_closed;
4430 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004431 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004432 txn->req.msg_state = HTTP_MSG_ERROR;
4433 goto wait_other_side;
4434 }
4435 }
4436
4437 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4438 http_msg_closed:
4439 goto wait_other_side;
4440 }
4441
4442 wait_other_side:
4443 http_silent_debug(__LINE__, s);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004444 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004445}
4446
4447
4448/* This function updates the response state machine according to the request
4449 * state machine and buffer flags. It returns 1 if it changes anything (flag
4450 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4451 * it is only used to find when a request/response couple is complete. Both
4452 * this function and its equivalent should loop until both return zero. It
4453 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4454 */
4455int http_sync_res_state(struct session *s)
4456{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004457 struct channel *chn = s->rep;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004458 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004459 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004460 unsigned int old_state = txn->rsp.msg_state;
4461
4462 http_silent_debug(__LINE__, s);
4463 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
4464 return 0;
4465
4466 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4467 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004468 * still monitor the server connection for a possible close
4469 * while the request is being uploaded, so we don't disable
4470 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004471 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004472 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004473
4474 if (txn->req.msg_state == HTTP_MSG_ERROR)
4475 goto wait_other_side;
4476
4477 if (txn->req.msg_state < HTTP_MSG_DONE) {
4478 /* The client seems to still be sending data, probably
4479 * because we got an error response during an upload.
4480 * We have the choice of either breaking the connection
4481 * or letting it pass through. Let's do the later.
4482 */
4483 goto wait_other_side;
4484 }
4485
4486 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4487 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004488 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004489 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004490 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004491 goto wait_other_side;
4492 }
4493
4494 /* When we get here, it means that both the request and the
4495 * response have finished receiving. Depending on the connection
4496 * mode, we'll have to wait for the last bytes to leave in either
4497 * direction, and sometimes for a close to be effective.
4498 */
4499
4500 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4501 /* Server-close mode : shut read and wait for the request
4502 * side to close its output buffer. The caller will detect
4503 * when we're in DONE and the other is in CLOSED and will
4504 * catch that for the final cleanup.
4505 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004506 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
4507 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004508 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004509 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4510 /* Option forceclose is set, or either side wants to close,
4511 * let's enforce it now that we're not expecting any new
4512 * data to come. The caller knows the session is complete
4513 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004514 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004515 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4516 channel_shutr_now(chn);
4517 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004518 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004519 }
4520 else {
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004521 /* The last possible modes are keep-alive and tunnel. Since tunnel
4522 * mode does not set the body analyser, we can't reach this place
4523 * in tunnel mode, so we're left with keep-alive only.
4524 * This mode is currently not implemented, we switch to tunnel mode.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004525 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004526 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004527 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004528 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004529 }
4530
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004531 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004532 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004533 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004534 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4535 goto http_msg_closing;
4536 }
4537 else {
4538 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4539 goto http_msg_closed;
4540 }
4541 }
4542 goto wait_other_side;
4543 }
4544
4545 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4546 http_msg_closing:
4547 /* nothing else to forward, just waiting for the output buffer
4548 * to be empty and for the shutw_now to take effect.
4549 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004550 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004551 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4552 goto http_msg_closed;
4553 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004554 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004555 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004556 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004557 if (objt_server(s->target))
4558 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004559 goto wait_other_side;
4560 }
4561 }
4562
4563 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4564 http_msg_closed:
4565 /* drop any pending data */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004566 bi_erase(chn);
4567 channel_auto_close(chn);
4568 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004569 goto wait_other_side;
4570 }
4571
4572 wait_other_side:
4573 http_silent_debug(__LINE__, s);
Willy Tarreaufc47f912012-10-20 10:38:09 +02004574 /* We force the response to leave immediately if we're waiting for the
4575 * other side, since there is no pending shutdown to push it out.
4576 */
4577 if (!channel_is_empty(chn))
4578 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004579 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004580}
4581
4582
4583/* Resync the request and response state machines. Return 1 if either state
4584 * changes.
4585 */
4586int http_resync_states(struct session *s)
4587{
4588 struct http_txn *txn = &s->txn;
4589 int old_req_state = txn->req.msg_state;
4590 int old_res_state = txn->rsp.msg_state;
4591
4592 http_silent_debug(__LINE__, s);
4593 http_sync_req_state(s);
4594 while (1) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004595 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004596 if (!http_sync_res_state(s))
4597 break;
Willy Tarreau90deb182010-01-07 00:20:41 +01004598 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004599 if (!http_sync_req_state(s))
4600 break;
4601 }
4602 http_silent_debug(__LINE__, s);
4603 /* OK, both state machines agree on a compatible state.
4604 * There are a few cases we're interested in :
4605 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
4606 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4607 * directions, so let's simply disable both analysers.
4608 * - HTTP_MSG_CLOSED on the response only means we must abort the
4609 * request.
4610 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
4611 * with server-close mode means we've completed one request and we
4612 * must re-initialize the server connection.
4613 */
4614
4615 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4616 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
4617 (txn->req.msg_state == HTTP_MSG_CLOSED &&
4618 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
4619 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004620 channel_auto_close(s->req);
4621 channel_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004622 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004623 channel_auto_close(s->rep);
4624 channel_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004625 }
Willy Tarreau40f151a2012-12-20 12:10:09 +01004626 else if ((txn->req.msg_state >= HTTP_MSG_DONE &&
4627 (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->rep->flags & CF_SHUTW))) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004628 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01004629 txn->req.msg_state == HTTP_MSG_ERROR) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004630 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004631 channel_auto_close(s->rep);
4632 channel_auto_read(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01004633 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004634 channel_abort(s->req);
4635 channel_auto_close(s->req);
4636 channel_auto_read(s->req);
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02004637 bi_erase(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004638 }
4639 else if (txn->req.msg_state == HTTP_MSG_CLOSED &&
4640 txn->rsp.msg_state == HTTP_MSG_DONE &&
4641 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)) {
4642 /* server-close: terminate this server connection and
4643 * reinitialize a fresh-new transaction.
4644 */
4645 http_end_txn_clean_session(s);
4646 }
4647
4648 http_silent_debug(__LINE__, s);
4649 return txn->req.msg_state != old_req_state ||
4650 txn->rsp.msg_state != old_res_state;
4651}
4652
Willy Tarreaud98cf932009-12-27 22:54:55 +01004653/* This function is an analyser which forwards request body (including chunk
4654 * sizes if any). It is called as soon as we must forward, even if we forward
4655 * zero byte. The only situation where it must not be called is when we're in
4656 * tunnel mode and we want to forward till the close. It's used both to forward
4657 * remaining data and to resync after end of body. It expects the msg_state to
4658 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4659 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01004660 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreau26927362012-05-18 23:22:52 +02004661 * bytes of pending data + the headers if not already done (between sol and sov).
4662 * It eventually adjusts sol to match sov after the data in between have been sent.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004663 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004664int http_request_forward_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01004665{
4666 struct http_txn *txn = &s->txn;
4667 struct http_msg *msg = &s->txn.req;
4668
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004669 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4670 return 0;
4671
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004672 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004673 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02004674 /* Output closed while we were sending data. We must abort and
4675 * wake the other side up.
4676 */
4677 msg->msg_state = HTTP_MSG_ERROR;
4678 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004679 return 1;
4680 }
4681
Willy Tarreau4fe41902010-06-07 22:27:41 +02004682 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004683 channel_auto_close(req);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004684
4685 /* Note that we don't have to send 100-continue back because we don't
4686 * need the data to complete our job, and it's up to the server to
4687 * decide whether to return 100, 417 or anything else in return of
4688 * an "Expect: 100-continue" header.
4689 */
4690
4691 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004692 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau9b28e032012-10-12 23:49:43 +02004693 * req->buf->p still points to the beginning of the message and msg->sol
Willy Tarreau26927362012-05-18 23:22:52 +02004694 * is still null. We must save the body in msg->next because it
4695 * survives buffer re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004696 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004697 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004698
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004699 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreaud98cf932009-12-27 22:54:55 +01004700 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
Willy Tarreau54d23df2012-10-25 19:04:45 +02004701 else
Willy Tarreaud98cf932009-12-27 22:54:55 +01004702 msg->msg_state = HTTP_MSG_DATA;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004703 }
4704
Willy Tarreaud98cf932009-12-27 22:54:55 +01004705 while (1) {
Willy Tarreauea953162012-05-18 23:41:28 +02004706 unsigned int bytes;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004707
Willy Tarreau610ecce2010-01-04 21:15:02 +01004708 http_silent_debug(__LINE__, s);
Willy Tarreauea953162012-05-18 23:41:28 +02004709 /* we may have some data pending between sol and sov */
Willy Tarreau26927362012-05-18 23:22:52 +02004710 bytes = msg->sov - msg->sol;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004711 if (msg->chunk_len || bytes) {
Willy Tarreau26927362012-05-18 23:22:52 +02004712 msg->sol = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004713 msg->next -= bytes; /* will be forwarded */
Willy Tarreauea953162012-05-18 23:41:28 +02004714 msg->chunk_len += bytes;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004715 msg->chunk_len -= channel_forward(req, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01004716 }
Willy Tarreau5523b322009-12-29 12:05:52 +01004717
Willy Tarreaucaabe412010-01-03 23:08:28 +01004718 if (msg->msg_state == HTTP_MSG_DATA) {
4719 /* must still forward */
4720 if (req->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004721 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004722
4723 /* nothing left to forward */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004724 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau54d23df2012-10-25 19:04:45 +02004725 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004726 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01004727 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004728 }
4729 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004730 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004731 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004732 * TRAILERS state.
4733 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004734 int ret = http_parse_chunk_size(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004735
Willy Tarreau54d23df2012-10-25 19:04:45 +02004736 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01004737 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004738 else if (ret < 0) {
4739 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004740 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004741 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004742 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004743 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004744 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004745 }
Willy Tarreau54d23df2012-10-25 19:04:45 +02004746 else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01004747 /* we want the CRLF after the data */
Willy Tarreau54d23df2012-10-25 19:04:45 +02004748 int ret = http_skip_chunk_crlf(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004749
4750 if (ret == 0)
4751 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004752 else if (ret < 0) {
4753 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004754 if (msg->err_pos >= 0)
Willy Tarreau54d23df2012-10-25 19:04:45 +02004755 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004756 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004757 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004758 /* we're in MSG_CHUNK_SIZE now */
4759 }
4760 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004761 int ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004762
4763 if (ret == 0)
4764 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004765 else if (ret < 0) {
4766 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004767 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004768 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004769 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004770 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004771 /* we're in HTTP_MSG_DONE now */
4772 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004773 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004774 int old_state = msg->msg_state;
4775
Willy Tarreau610ecce2010-01-04 21:15:02 +01004776 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02004777 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004778 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
4779 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004780 channel_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004781 if (http_resync_states(s)) {
4782 /* some state changes occurred, maybe the analyser
4783 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01004784 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004785 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004786 if (req->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004787 /* request errors are most likely due to
4788 * the server aborting the transfer.
4789 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004790 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004791 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004792 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004793 http_capture_bad_message(&s->fe->invalid_req, s, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004794 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004795 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004796 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004797 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004798
4799 /* If "option abortonclose" is set on the backend, we
4800 * want to monitor the client's connection and forward
4801 * any shutdown notification to the server, which will
4802 * decide whether to close or to go on processing the
4803 * request.
4804 */
4805 if (s->be->options & PR_O_ABRT_CLOSE) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004806 channel_auto_read(req);
4807 channel_auto_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02004808 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004809 else if (s->txn.meth == HTTP_METH_POST) {
4810 /* POST requests may require to read extra CRLF
4811 * sent by broken browsers and which could cause
4812 * an RST to be sent upon close on some systems
4813 * (eg: Linux).
4814 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004815 channel_auto_read(req);
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004816 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004817
Willy Tarreau610ecce2010-01-04 21:15:02 +01004818 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004819 }
4820 }
4821
Willy Tarreaud98cf932009-12-27 22:54:55 +01004822 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004823 /* stop waiting for data if the input is closed before the end */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004824 if (req->flags & CF_SHUTR) {
Willy Tarreau79ebac62010-06-07 13:47:49 +02004825 if (!(s->flags & SN_ERR_MASK))
4826 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004827 if (!(s->flags & SN_FINST_MASK)) {
4828 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4829 s->flags |= SN_FINST_H;
4830 else
4831 s->flags |= SN_FINST_D;
4832 }
4833
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004834 s->fe->fe_counters.cli_aborts++;
4835 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004836 if (objt_server(s->target))
4837 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004838
4839 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004840 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004841
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004842 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004843 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004844 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004845
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004846 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004847 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004848 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004849 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004850 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004851
Willy Tarreau5c620922011-05-11 19:56:11 +02004852 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004853 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02004854 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01004855 * modes are already handled by the stream sock layer. We must not do
4856 * this in content-length mode because it could present the MSG_MORE
4857 * flag with the last block of forwarded data, which would cause an
4858 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02004859 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004860 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004861 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02004862
Willy Tarreau610ecce2010-01-04 21:15:02 +01004863 http_silent_debug(__LINE__, s);
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004864 return 0;
4865
Willy Tarreaud98cf932009-12-27 22:54:55 +01004866 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004867 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004868 if (s->listener->counters)
4869 s->listener->counters->failed_req++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004870 return_bad_req_stats_ok:
4871 txn->req.msg_state = HTTP_MSG_ERROR;
4872 if (txn->status) {
4873 /* Note: we don't send any error if some data were already sent */
4874 stream_int_retnclose(req->prod, NULL);
4875 } else {
4876 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004877 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004878 }
4879 req->analysers = 0;
4880 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004881
4882 if (!(s->flags & SN_ERR_MASK))
4883 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004884 if (!(s->flags & SN_FINST_MASK)) {
4885 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4886 s->flags |= SN_FINST_H;
4887 else
4888 s->flags |= SN_FINST_D;
4889 }
4890 return 0;
4891
4892 aborted_xfer:
4893 txn->req.msg_state = HTTP_MSG_ERROR;
4894 if (txn->status) {
4895 /* Note: we don't send any error if some data were already sent */
4896 stream_int_retnclose(req->prod, NULL);
4897 } else {
4898 txn->status = 502;
Willy Tarreau783f2582012-09-04 12:19:04 +02004899 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_502));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004900 }
4901 req->analysers = 0;
4902 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
4903
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004904 s->fe->fe_counters.srv_aborts++;
4905 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004906 if (objt_server(s->target))
4907 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004908
4909 if (!(s->flags & SN_ERR_MASK))
4910 s->flags |= SN_ERR_SRVCL;
4911 if (!(s->flags & SN_FINST_MASK)) {
4912 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4913 s->flags |= SN_FINST_H;
4914 else
4915 s->flags |= SN_FINST_D;
4916 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004917 return 0;
4918}
4919
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004920/* This stream analyser waits for a complete HTTP response. It returns 1 if the
4921 * processing can continue on next analysers, or zero if it either needs more
4922 * data or wants to immediately abort the response (eg: timeout, error, ...). It
4923 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
4924 * when it has nothing left to do, and may remove any analyser when it wants to
4925 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004926 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004927int http_wait_for_response(struct session *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004928{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004929 struct http_txn *txn = &s->txn;
4930 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004931 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004932 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004933 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004934 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004935
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01004936 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02004937 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004938 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004939 rep,
4940 rep->rex, rep->wex,
4941 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004942 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004943 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02004944
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004945 /*
4946 * Now parse the partial (or complete) lines.
4947 * We will check the response syntax, and also join multi-line
4948 * headers. An index of all the lines will be elaborated while
4949 * parsing.
4950 *
4951 * For the parsing, we use a 28 states FSM.
4952 *
4953 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02004954 * rep->buf->p = beginning of response
4955 * rep->buf->p + msg->eoh = end of processed headers / start of current one
4956 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02004957 * msg->eol = end of current header or line (LF or CRLF)
4958 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004959 */
4960
Willy Tarreau83e3af02009-12-28 17:39:57 +01004961 /* There's a protected area at the end of the buffer for rewriting
4962 * purposes. We don't want to start to parse the request if the
4963 * protected area is affected, because we may have to move processed
4964 * data later, which is much more complicated.
4965 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004966 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02004967 if (unlikely(channel_full(rep) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004968 bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
4969 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite)) {
4970 if (rep->buf->o) {
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004971 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004972 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01004973 goto abort_response;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004974 channel_dont_close(rep);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004975 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004976 return 0;
4977 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02004978 if (rep->buf->i <= rep->buf->size - global.tune.maxrewrite)
4979 buffer_slow_realign(msg->chn->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004980 }
4981
Willy Tarreau9b28e032012-10-12 23:49:43 +02004982 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01004983 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004984 }
4985
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004986 /* 1: we might have to print this header in debug mode */
4987 if (unlikely((global.mode & MODE_DEBUG) &&
4988 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01004989 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004990 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004991
Willy Tarreau9b28e032012-10-12 23:49:43 +02004992 sol = rep->buf->p;
4993 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004994 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004995
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004996 sol += hdr_idx_first_pos(&txn->hdr_idx);
4997 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004998
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004999 while (cur_idx) {
5000 eol = sol + txn->hdr_idx.v[cur_idx].len;
5001 debug_hdr("srvhdr", s, sol, eol);
5002 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5003 cur_idx = txn->hdr_idx.v[cur_idx].next;
5004 }
5005 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005006
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005007 /*
5008 * Now we quickly check if we have found a full valid response.
5009 * If not so, we check the FD and buffer states before leaving.
5010 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005011 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005012 * responses are checked first.
5013 *
5014 * Depending on whether the client is still there or not, we
5015 * may send an error response back or not. Note that normally
5016 * we should only check for HTTP status there, and check I/O
5017 * errors somewhere else.
5018 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005019
Willy Tarreau655dce92009-11-08 13:10:58 +01005020 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005021 /* Invalid response */
5022 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5023 /* we detected a parsing error. We want to archive this response
5024 * in the dedicated proxy area for later troubleshooting.
5025 */
5026 hdr_response_bad:
5027 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005028 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005029
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005030 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005031 if (objt_server(s->target)) {
5032 objt_server(s->target)->counters.failed_resp++;
5033 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005034 }
Willy Tarreau64648412010-03-05 10:41:54 +01005035 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005036 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005037 rep->analysers = 0;
5038 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005039 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005040 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005041 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005042
5043 if (!(s->flags & SN_ERR_MASK))
5044 s->flags |= SN_ERR_PRXCOND;
5045 if (!(s->flags & SN_FINST_MASK))
5046 s->flags |= SN_FINST_H;
5047
5048 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005049 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005050
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005051 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005052 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02005053 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02005054 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005055 goto hdr_response_bad;
5056 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005057
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005058 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005059 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005060 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005061 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02005062
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005063 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005064 if (objt_server(s->target)) {
5065 objt_server(s->target)->counters.failed_resp++;
5066 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005067 }
Willy Tarreau461f6622008-08-15 23:43:19 +02005068
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005069 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005070 rep->analysers = 0;
5071 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005072 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005073 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005074 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02005075
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005076 if (!(s->flags & SN_ERR_MASK))
5077 s->flags |= SN_ERR_SRVCL;
5078 if (!(s->flags & SN_FINST_MASK))
5079 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02005080 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005081 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005082
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005083 /* read timeout : return a 504 to the client. */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005084 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005085 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005086 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01005087
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005088 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005089 if (objt_server(s->target)) {
5090 objt_server(s->target)->counters.failed_resp++;
5091 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005092 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005093
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005094 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005095 rep->analysers = 0;
5096 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005097 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005098 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005099 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02005100
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005101 if (!(s->flags & SN_ERR_MASK))
5102 s->flags |= SN_ERR_SRVTO;
5103 if (!(s->flags & SN_FINST_MASK))
5104 s->flags |= SN_FINST_H;
5105 return 0;
5106 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02005107
Willy Tarreauf003d372012-11-26 13:35:37 +01005108 /* client abort with an abortonclose */
5109 else if ((rep->flags & CF_SHUTR) && ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
5110 s->fe->fe_counters.cli_aborts++;
5111 s->be->be_counters.cli_aborts++;
5112 if (objt_server(s->target))
5113 objt_server(s->target)->counters.cli_aborts++;
5114
5115 rep->analysers = 0;
5116 channel_auto_close(rep);
5117
5118 txn->status = 400;
5119 bi_erase(rep);
5120 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_400));
5121
5122 if (!(s->flags & SN_ERR_MASK))
5123 s->flags |= SN_ERR_CLICL;
5124 if (!(s->flags & SN_FINST_MASK))
5125 s->flags |= SN_FINST_H;
5126
5127 /* process_session() will take care of the error */
5128 return 0;
5129 }
5130
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005131 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005132 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005133 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005134 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01005135
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005136 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005137 if (objt_server(s->target)) {
5138 objt_server(s->target)->counters.failed_resp++;
5139 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005140 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005141
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005142 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005143 rep->analysers = 0;
5144 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005145 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005146 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005147 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01005148
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005149 if (!(s->flags & SN_ERR_MASK))
5150 s->flags |= SN_ERR_SRVCL;
5151 if (!(s->flags & SN_FINST_MASK))
5152 s->flags |= SN_FINST_H;
5153 return 0;
5154 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005155
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005156 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005157 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005158 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005159 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005160
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005161 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005162 rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005163 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005164
5165 if (!(s->flags & SN_ERR_MASK))
5166 s->flags |= SN_ERR_CLICL;
5167 if (!(s->flags & SN_FINST_MASK))
5168 s->flags |= SN_FINST_H;
5169
5170 /* process_session() will take care of the error */
5171 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005172 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005173
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005174 channel_dont_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005175 return 0;
5176 }
5177
5178 /* More interesting part now : we know that we have a complete
5179 * response which at least looks like HTTP. We have an indicator
5180 * of each header's length, so we can parse them quickly.
5181 */
5182
5183 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005184 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005185
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005186 /*
5187 * 1: get the status code
5188 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005189 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005190 if (n < 1 || n > 5)
5191 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005192 /* when the client triggers a 4xx from the server, it's most often due
5193 * to a missing object or permission. These events should be tracked
5194 * because if they happen often, it may indicate a brute force or a
5195 * vulnerability scan.
5196 */
5197 if (n == 4)
5198 session_inc_http_err_ctr(s);
5199
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005200 if (objt_server(s->target))
5201 objt_server(s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005202
Willy Tarreau5b154472009-12-21 20:11:07 +01005203 /* check if the response is HTTP/1.1 or above */
5204 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005205 ((rep->buf->p[5] > '1') ||
5206 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005207 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01005208
5209 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01005210 txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_HDR_CONN_UPG|TX_CON_CLO_SET|TX_CON_KAL_SET);
Willy Tarreau5b154472009-12-21 20:11:07 +01005211
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005212 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005213 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005214
Willy Tarreau9b28e032012-10-12 23:49:43 +02005215 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005216
Willy Tarreau39650402010-03-15 19:44:39 +01005217 /* Adjust server's health based on status code. Note: status codes 501
5218 * and 505 are triggered on demand by client request, so we must not
5219 * count them as server failures.
5220 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005221 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005222 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005223 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005224 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005225 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005226 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005227
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005228 /*
5229 * 2: check for cacheability.
5230 */
5231
5232 switch (txn->status) {
5233 case 200:
5234 case 203:
5235 case 206:
5236 case 300:
5237 case 301:
5238 case 410:
5239 /* RFC2616 @13.4:
5240 * "A response received with a status code of
5241 * 200, 203, 206, 300, 301 or 410 MAY be stored
5242 * by a cache (...) unless a cache-control
5243 * directive prohibits caching."
5244 *
5245 * RFC2616 @9.5: POST method :
5246 * "Responses to this method are not cacheable,
5247 * unless the response includes appropriate
5248 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005249 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005250 if (likely(txn->meth != HTTP_METH_POST) &&
Willy Tarreau67402132012-05-31 20:40:20 +02005251 ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005252 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
5253 break;
5254 default:
5255 break;
5256 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005257
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005258 /*
5259 * 3: we may need to capture headers
5260 */
5261 s->logs.logwait &= ~LW_RESP;
Willy Tarreau42f7d892012-03-24 08:28:09 +01005262 if (unlikely((s->logs.logwait & LW_RSPHDR) && txn->rsp.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02005263 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005264 txn->rsp.cap, s->fe->rsp_cap);
5265
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005266 /* 4: determine the transfer-length.
5267 * According to RFC2616 #4.4, amended by the HTTPbis working group,
5268 * the presence of a message-body in a RESPONSE and its transfer length
5269 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005270 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005271 * All responses to the HEAD request method MUST NOT include a
5272 * message-body, even though the presence of entity-header fields
5273 * might lead one to believe they do. All 1xx (informational), 204
5274 * (No Content), and 304 (Not Modified) responses MUST NOT include a
5275 * message-body. All other responses do include a message-body,
5276 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005277 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005278 * 1. Any response which "MUST NOT" include a message-body (such as the
5279 * 1xx, 204 and 304 responses and any response to a HEAD request) is
5280 * always terminated by the first empty line after the header fields,
5281 * regardless of the entity-header fields present in the message.
5282 *
5283 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
5284 * the "chunked" transfer-coding (Section 6.2) is used, the
5285 * transfer-length is defined by the use of this transfer-coding.
5286 * If a Transfer-Encoding header field is present and the "chunked"
5287 * transfer-coding is not present, the transfer-length is defined by
5288 * the sender closing the connection.
5289 *
5290 * 3. If a Content-Length header field is present, its decimal value in
5291 * OCTETs represents both the entity-length and the transfer-length.
5292 * If a message is received with both a Transfer-Encoding header
5293 * field and a Content-Length header field, the latter MUST be ignored.
5294 *
5295 * 4. If the message uses the media type "multipart/byteranges", and
5296 * the transfer-length is not otherwise specified, then this self-
5297 * delimiting media type defines the transfer-length. This media
5298 * type MUST NOT be used unless the sender knows that the recipient
5299 * can parse it; the presence in a request of a Range header with
5300 * multiple byte-range specifiers from a 1.1 client implies that the
5301 * client can parse multipart/byteranges responses.
5302 *
5303 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005304 */
5305
5306 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01005307 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005308 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005309 * FIXME: should we parse anyway and return an error on chunked encoding ?
5310 */
5311 if (txn->meth == HTTP_METH_HEAD ||
5312 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005313 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005314 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreau91015352012-11-27 07:31:33 +01005315 s->comp_algo = NULL;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005316 goto skip_content_length;
5317 }
5318
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005319 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005320 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005321 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005322 http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005323 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005324 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
5325 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005326 /* bad transfer-encoding (chunked followed by something else) */
5327 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005328 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005329 break;
5330 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005331 }
5332
5333 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
5334 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005335 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005336 http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005337 signed long long cl;
5338
Willy Tarreauad14f752011-09-02 20:33:27 +02005339 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005340 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005341 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005342 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005343
Willy Tarreauad14f752011-09-02 20:33:27 +02005344 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005345 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005346 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02005347 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005348
Willy Tarreauad14f752011-09-02 20:33:27 +02005349 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005350 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005351 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005352 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005353
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005354 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005355 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005356 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02005357 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005358
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005359 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01005360 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005361 }
5362
William Lallemand82fe75c2012-10-23 10:25:10 +02005363 if (s->fe->comp || s->be->comp)
5364 select_compression_response_header(s, rep->buf);
5365
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005366 /* FIXME: we should also implement the multipart/byterange method.
5367 * For now on, we resort to close mode in this case (unknown length).
5368 */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005369skip_content_length:
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005370
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005371 /* end of job, return OK */
5372 rep->analysers &= ~an_bit;
5373 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005374 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005375 return 1;
5376}
5377
5378/* This function performs all the processing enabled for the current response.
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005379 * It normally returns 1 unless it wants to break. It relies on buffers flags,
5380 * and updates t->rep->analysers. It might make sense to explode it into several
5381 * other functions. It works like process_request (see indications above).
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005382 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005383int http_process_res_common(struct session *t, struct channel *rep, int an_bit, struct proxy *px)
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005384{
5385 struct http_txn *txn = &t->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005386 struct http_msg *msg = &txn->rsp;
5387 struct proxy *cur_proxy;
Willy Tarreauf4f04122010-01-28 18:10:50 +01005388 struct cond_wordlist *wl;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005389
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005390 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005391 now_ms, __FUNCTION__,
5392 t,
5393 rep,
5394 rep->rex, rep->wex,
5395 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005396 rep->buf->i,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005397 rep->analysers);
5398
Willy Tarreau655dce92009-11-08 13:10:58 +01005399 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005400 return 0;
5401
5402 rep->analysers &= ~an_bit;
5403 rep->analyse_exp = TICK_ETERNITY;
5404
Willy Tarreau5b154472009-12-21 20:11:07 +01005405 /* Now we have to check if we need to modify the Connection header.
5406 * This is more difficult on the response than it is on the request,
5407 * because we can have two different HTTP versions and we don't know
5408 * how the client will interprete a response. For instance, let's say
5409 * that the client sends a keep-alive request in HTTP/1.0 and gets an
5410 * HTTP/1.1 response without any header. Maybe it will bound itself to
5411 * HTTP/1.0 because it only knows about it, and will consider the lack
5412 * of header as a close, or maybe it knows HTTP/1.1 and can consider
5413 * the lack of header as a keep-alive. Thus we will use two flags
5414 * indicating how a request MAY be understood by the client. In case
5415 * of multiple possibilities, we'll fix the header to be explicit. If
5416 * ambiguous cases such as both close and keepalive are seen, then we
5417 * will fall back to explicit close. Note that we won't take risks with
5418 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01005419 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01005420 */
5421
Willy Tarreaudc008c52010-02-01 16:20:08 +01005422 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
5423 txn->status == 101)) {
5424 /* Either we've established an explicit tunnel, or we're
5425 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005426 * to understand the next protocols. We have to switch to tunnel
5427 * mode, so that we transfer the request and responses then let
5428 * this protocol pass unmodified. When we later implement specific
5429 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01005430 * header which contains information about that protocol for
5431 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005432 */
5433 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
5434 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01005435 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
5436 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
5437 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005438 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01005439
Willy Tarreau60466522010-01-18 19:08:45 +01005440 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005441 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01005442 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5443 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01005444
Willy Tarreau60466522010-01-18 19:08:45 +01005445 /* now adjust header transformations depending on current state */
5446 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
5447 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5448 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005449 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01005450 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005451 }
Willy Tarreau60466522010-01-18 19:08:45 +01005452 else { /* SCL / KAL */
5453 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005454 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01005455 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005456 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005457
Willy Tarreau60466522010-01-18 19:08:45 +01005458 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005459 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01005460
Willy Tarreau60466522010-01-18 19:08:45 +01005461 /* Some keep-alive responses are converted to Server-close if
5462 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01005463 */
Willy Tarreau60466522010-01-18 19:08:45 +01005464 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
5465 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005466 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01005467 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005468 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005469 }
5470
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005471 if (1) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005472 /*
5473 * 3: we will have to evaluate the filters.
5474 * As opposed to version 1.2, now they will be evaluated in the
5475 * filters order and not in the header order. This means that
5476 * each filter has to be validated among all headers.
5477 *
5478 * Filters are tried with ->be first, then with ->fe if it is
5479 * different from ->be.
5480 */
5481
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005482 cur_proxy = t->be;
5483 while (1) {
5484 struct proxy *rule_set = cur_proxy;
5485
5486 /* try headers filters */
5487 if (rule_set->rsp_exp != NULL) {
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005488 if (apply_filters_to_response(t, rep, rule_set) < 0) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005489 return_bad_resp:
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005490 if (objt_server(t->target)) {
5491 objt_server(t->target)->counters.failed_resp++;
5492 health_adjust(objt_server(t->target), HANA_STATUS_HTTP_RSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005493 }
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005494 t->be->be_counters.failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005495 return_srv_prx_502:
Willy Tarreau2df28e82008-08-17 15:20:19 +02005496 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005497 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005498 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005499 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005500 stream_int_retnclose(rep->cons, http_error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005501 if (!(t->flags & SN_ERR_MASK))
5502 t->flags |= SN_ERR_PRXCOND;
5503 if (!(t->flags & SN_FINST_MASK))
5504 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02005505 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005506 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005507 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005508
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005509 /* has the response been denied ? */
5510 if (txn->flags & TX_SVDENY) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005511 if (objt_server(t->target))
5512 objt_server(t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005513
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005514 t->be->be_counters.denied_resp++;
5515 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005516 if (t->listener->counters)
5517 t->listener->counters->denied_resp++;
5518
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005519 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01005520 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005521
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005522 /* add response headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005523 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreau816b9792009-09-15 21:25:21 +02005524 if (txn->status < 200)
5525 break;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005526 if (wl->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02005527 int ret = acl_exec_cond(wl->cond, px, t, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005528 ret = acl_pass(ret);
5529 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
5530 ret = !ret;
5531 if (!ret)
5532 continue;
5533 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005534 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005535 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02005536 }
5537
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005538 /* check whether we're already working on the frontend */
5539 if (cur_proxy == t->fe)
5540 break;
5541 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005542 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005543
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005544 /*
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005545 * We may be facing a 100-continue response, in which case this
5546 * is not the right response, and we're waiting for the next one.
5547 * Let's allow this response to go to the client and wait for the
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005548 * next one.
5549 */
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005550 if (unlikely(txn->status == 100)) {
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005551 hdr_idx_init(&txn->hdr_idx);
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005552 msg->next -= channel_forward(rep, msg->next);
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005553 msg->msg_state = HTTP_MSG_RPBEFORE;
5554 txn->status = 0;
5555 rep->analysers |= AN_RES_WAIT_HTTP | an_bit;
5556 return 1;
5557 }
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005558 else if (unlikely(txn->status < 200))
5559 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005560
5561 /* we don't have any 1xx status code now */
5562
5563 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005564 * 4: check for server cookie.
5565 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005566 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name ||
5567 (t->be->options & PR_O_CHK_CACHE))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005568 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005569
Willy Tarreaubaaee002006-06-26 02:48:02 +02005570
Willy Tarreaua15645d2007-03-18 16:22:39 +01005571 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005572 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005573 */
Willy Tarreau67402132012-05-31 20:40:20 +02005574 if ((t->be->options & PR_O_CHK_CACHE) || (t->be->ck_opts & PR_CK_NOC))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005575 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005576
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005577 /*
5578 * 6: add server cookie in the response if needed
5579 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005580 if (objt_server(t->target) && (t->be->ck_opts & PR_CK_INS) &&
Willy Tarreau67402132012-05-31 20:40:20 +02005581 !((txn->flags & TX_SCK_FOUND) && (t->be->ck_opts & PR_CK_PSV)) &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02005582 (!(t->flags & SN_DIRECT) ||
5583 ((t->be->cookie_maxidle || txn->cookie_last_date) &&
5584 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
5585 (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
5586 (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
Willy Tarreau67402132012-05-31 20:40:20 +02005587 (!(t->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02005588 !(t->flags & SN_IGNORE_PRST)) {
Willy Tarreauef4f3912010-10-07 21:00:29 +02005589 /* the server is known, it's not the one the client requested, or the
5590 * cookie's last seen date needs to be refreshed. We have to
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005591 * insert a set-cookie here, except if we want to insert only on POST
5592 * requests and this one isn't. Note that servers which don't have cookies
5593 * (eg: some backup servers) will return a full cookie removal request.
5594 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005595 if (!objt_server(t->target)->cookie) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005596 chunk_printf(&trash,
Willy Tarreauef4f3912010-10-07 21:00:29 +02005597 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5598 t->be->cookie_name);
5599 }
5600 else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005601 chunk_printf(&trash, "Set-Cookie: %s=%s", t->be->cookie_name, objt_server(t->target)->cookie);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005602
5603 if (t->be->cookie_maxidle || t->be->cookie_maxlife) {
5604 /* emit last_date, which is mandatory */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005605 trash.str[trash.len++] = COOKIE_DELIM_DATE;
5606 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
5607 trash.len += 5;
5608
Willy Tarreauef4f3912010-10-07 21:00:29 +02005609 if (t->be->cookie_maxlife) {
5610 /* emit first_date, which is either the original one or
5611 * the current date.
5612 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005613 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005614 s30tob64(txn->cookie_first_date ?
5615 txn->cookie_first_date >> 2 :
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005616 (date.tv_sec+3) >> 2, trash.str + trash.len);
5617 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005618 }
5619 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005620 chunk_appendf(&trash, "; path=/");
Willy Tarreauef4f3912010-10-07 21:00:29 +02005621 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005622
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005623 if (t->be->cookie_domain)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005624 chunk_appendf(&trash, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005625
Willy Tarreau4992dd22012-05-31 21:02:17 +02005626 if (t->be->ck_opts & PR_CK_HTTPONLY)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005627 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreau4992dd22012-05-31 21:02:17 +02005628
5629 if (t->be->ck_opts & PR_CK_SECURE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005630 chunk_appendf(&trash, "; Secure");
Willy Tarreau4992dd22012-05-31 21:02:17 +02005631
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005632 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005633 goto return_bad_resp;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005634
Willy Tarreauf1348312010-10-07 15:54:11 +02005635 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005636 if (objt_server(t->target)->cookie && (t->flags & SN_DIRECT))
Willy Tarreauef4f3912010-10-07 21:00:29 +02005637 /* the server did not change, only the date was updated */
5638 txn->flags |= TX_SCK_UPDATED;
5639 else
5640 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005641
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005642 /* Here, we will tell an eventual cache on the client side that we don't
5643 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
5644 * Some caches understand the correct form: 'no-cache="set-cookie"', but
5645 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
5646 */
Willy Tarreau67402132012-05-31 20:40:20 +02005647 if ((t->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02005648
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005649 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
5650
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005651 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005652 "Cache-control: private", 22) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005653 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005654 }
5655 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005656
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005657 /*
5658 * 7: check if result will be cacheable with a cookie.
5659 * We'll block the response if security checks have caught
5660 * nasty things such as a cacheable cookie.
5661 */
Willy Tarreauf1348312010-10-07 15:54:11 +02005662 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
5663 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005664 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005665
5666 /* we're in presence of a cacheable response containing
5667 * a set-cookie header. We'll block it as requested by
5668 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005669 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005670 if (objt_server(t->target))
5671 objt_server(t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005672
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005673 t->be->be_counters.denied_resp++;
5674 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005675 if (t->listener->counters)
5676 t->listener->counters->denied_resp++;
5677
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005678 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005679 t->be->id, objt_server(t->target) ? objt_server(t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005680 send_log(t->be, LOG_ALERT,
5681 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005682 t->be->id, objt_server(t->target) ? objt_server(t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005683 goto return_srv_prx_502;
5684 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005685
5686 /*
Willy Tarreau60466522010-01-18 19:08:45 +01005687 * 8: adjust "Connection: close" or "Connection: keep-alive" if needed.
Willy Tarreau50fc7772012-11-11 22:19:57 +01005688 * If an "Upgrade" token is found, the header is left untouched in order
5689 * not to have to deal with some client bugs : some of them fail an upgrade
5690 * if anything but "Upgrade" is present in the Connection header.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005691 */
Willy Tarreau50fc7772012-11-11 22:19:57 +01005692 if (!(txn->flags & TX_HDR_CONN_UPG) &&
5693 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
5694 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005695 unsigned int want_flags = 0;
5696
5697 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5698 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5699 /* we want a keep-alive response here. Keep-alive header
5700 * required if either side is not 1.1.
5701 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005702 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01005703 want_flags |= TX_CON_KAL_SET;
5704 }
5705 else {
5706 /* we want a close response here. Close header required if
5707 * the server is 1.1, regardless of the client.
5708 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005709 if (msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01005710 want_flags |= TX_CON_CLO_SET;
5711 }
5712
5713 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005714 http_change_connection_header(txn, msg, want_flags);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005715 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005716
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005717 skip_header_mangling:
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005718 if ((msg->flags & HTTP_MSGF_XFER_LEN) ||
Willy Tarreaudc008c52010-02-01 16:20:08 +01005719 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005720 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01005721
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005722 /*************************************************************
5723 * OK, that's finished for the headers. We have done what we *
5724 * could. Let's switch to the DATA state. *
5725 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02005726
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005727 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005728
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005729 /* if the user wants to log as soon as possible, without counting
5730 * bytes from the server, then this is the right moment. We have
5731 * to temporarily assign bytes_out to log what we currently have.
5732 */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01005733 if (!LIST_ISEMPTY(&t->fe->logformat) && !(t->logs.logwait & LW_BYTES)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005734 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
5735 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01005736 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005737 t->logs.bytes_out = 0;
5738 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005739
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005740 /* Note: we must not try to cheat by jumping directly to DATA,
5741 * otherwise we would not let the client side wake up.
5742 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01005743
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005744 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005745 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005746 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005747}
Willy Tarreaua15645d2007-03-18 16:22:39 +01005748
Willy Tarreaud98cf932009-12-27 22:54:55 +01005749/* This function is an analyser which forwards response body (including chunk
5750 * sizes if any). It is called as soon as we must forward, even if we forward
5751 * zero byte. The only situation where it must not be called is when we're in
5752 * tunnel mode and we want to forward till the close. It's used both to forward
5753 * remaining data and to resync after end of body. It expects the msg_state to
5754 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
5755 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01005756 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreau26927362012-05-18 23:22:52 +02005757 * bytes of pending data + the headers if not already done (between sol and sov).
5758 * It eventually adjusts sol to match sov after the data in between have been sent.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005759 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005760int http_response_forward_body(struct session *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005761{
5762 struct http_txn *txn = &s->txn;
5763 struct http_msg *msg = &s->txn.rsp;
Willy Tarreauea953162012-05-18 23:41:28 +02005764 unsigned int bytes;
William Lallemand82fe75c2012-10-23 10:25:10 +02005765 static struct buffer *tmpbuf = NULL;
5766 int compressing = 0;
William Lallemandbf3ae612012-11-19 12:35:37 +01005767 int consumed_data = 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005768
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005769 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5770 return 0;
5771
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005772 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02005773 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005774 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005775 /* Output closed while we were sending data. We must abort and
5776 * wake the other side up.
5777 */
5778 msg->msg_state = HTTP_MSG_ERROR;
5779 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005780 return 1;
5781 }
5782
Willy Tarreau4fe41902010-06-07 22:27:41 +02005783 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005784 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005785
William Lallemand82fe75c2012-10-23 10:25:10 +02005786 /* this is the first time we need the compression buffer */
5787 if (s->comp_algo != NULL && tmpbuf == NULL) {
5788 if ((tmpbuf = pool_alloc2(pool2_buffer)) == NULL)
5789 goto aborted_xfer; /* no memory */
5790 }
5791
Willy Tarreaud98cf932009-12-27 22:54:55 +01005792 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01005793 /* we have msg->sov which points to the first byte of message body.
William Lallemand82fe75c2012-10-23 10:25:10 +02005794 * rep->buf.p still points to the beginning of the message and msg->sol
5795 * is still null. We forward the headers, we don't need them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005796 */
William Lallemand82fe75c2012-10-23 10:25:10 +02005797 channel_forward(res, msg->sov);
5798 msg->next = 0;
5799 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01005800
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005801 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005802 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
Willy Tarreau54d23df2012-10-25 19:04:45 +02005803 else
Willy Tarreaud98cf932009-12-27 22:54:55 +01005804 msg->msg_state = HTTP_MSG_DATA;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005805 }
5806
William Lallemand82fe75c2012-10-23 10:25:10 +02005807 if (s->comp_algo != NULL) {
5808 int ret = http_compression_buffer_init(s, res->buf, tmpbuf); /* init a buffer with headers */
5809 if (ret < 0)
5810 goto missing_data; /* not enough spaces in buffers */
5811 compressing = 1;
5812 }
5813
Willy Tarreaud98cf932009-12-27 22:54:55 +01005814 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005815 http_silent_debug(__LINE__, s);
Willy Tarreauea953162012-05-18 23:41:28 +02005816 /* we may have some data pending between sol and sov */
William Lallemand82fe75c2012-10-23 10:25:10 +02005817 if (s->comp_algo == NULL) {
5818 bytes = msg->sov - msg->sol;
5819 if (msg->chunk_len || bytes) {
5820 msg->sol = msg->sov;
5821 msg->next -= bytes; /* will be forwarded */
5822 msg->chunk_len += bytes;
5823 msg->chunk_len -= channel_forward(res, msg->chunk_len);
5824 }
Willy Tarreau638cd022010-01-03 07:42:04 +01005825 }
5826
Willy Tarreaucaabe412010-01-03 23:08:28 +01005827 if (msg->msg_state == HTTP_MSG_DATA) {
William Lallemandbf3ae612012-11-19 12:35:37 +01005828 int ret;
5829
Willy Tarreaucaabe412010-01-03 23:08:28 +01005830 /* must still forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01005831 if (compressing) {
5832 consumed_data += ret = http_compression_buffer_add_data(s, res->buf, tmpbuf);
5833 if (ret < 0)
5834 goto aborted_xfer;
5835 }
William Lallemand82fe75c2012-10-23 10:25:10 +02005836
5837 if (res->to_forward || msg->chunk_len)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005838 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005839
5840 /* nothing left to forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01005841 if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau54d23df2012-10-25 19:04:45 +02005842 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
William Lallemandbf3ae612012-11-19 12:35:37 +01005843 } else {
Willy Tarreaucaabe412010-01-03 23:08:28 +01005844 msg->msg_state = HTTP_MSG_DONE;
William Lallemandbf3ae612012-11-19 12:35:37 +01005845 if (compressing && consumed_data) {
5846 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
5847 compressing = 0;
5848 }
5849 }
Willy Tarreaucaabe412010-01-03 23:08:28 +01005850 }
5851 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005852 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01005853 * set ->sov and ->next to point to the body and switch to DATA or
5854 * TRAILERS state.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005855 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005856 int ret = http_parse_chunk_size(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005857
Willy Tarreau54d23df2012-10-25 19:04:45 +02005858 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005859 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005860 else if (ret < 0) {
5861 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005862 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005863 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005864 }
William Lallemandbf3ae612012-11-19 12:35:37 +01005865 if (compressing) {
5866 if (likely(msg->chunk_len > 0)) {
5867 /* skipping data if we are in compression mode */
5868 b_adv(res->buf, msg->next);
5869 msg->next = 0;
5870 msg->sov = 0;
5871 msg->sol = 0;
5872 } else {
5873 if (consumed_data) {
5874 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
5875 compressing = 0;
5876 }
5877 }
William Lallemand82fe75c2012-10-23 10:25:10 +02005878 }
William Lallemandbf3ae612012-11-19 12:35:37 +01005879 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005880 }
Willy Tarreau54d23df2012-10-25 19:04:45 +02005881 else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005882 /* we want the CRLF after the data */
Willy Tarreau54d23df2012-10-25 19:04:45 +02005883 int ret = http_skip_chunk_crlf(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005884
Willy Tarreau54d23df2012-10-25 19:04:45 +02005885 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005886 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005887 else if (ret < 0) {
5888 if (msg->err_pos >= 0)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005889 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005890 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005891 }
William Lallemand82fe75c2012-10-23 10:25:10 +02005892 /* skipping data in buffer for compression */
5893 if (compressing) {
5894 b_adv(res->buf, msg->next);
5895 msg->next = 0;
5896 msg->sov = 0;
5897 msg->sol = 0;
5898 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005899 /* we're in MSG_CHUNK_SIZE now */
5900 }
5901 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005902 int ret = http_forward_trailers(msg);
Willy Tarreau5523b322009-12-29 12:05:52 +01005903
Willy Tarreaud98cf932009-12-27 22:54:55 +01005904 if (ret == 0)
5905 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005906 else if (ret < 0) {
5907 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005908 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005909 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005910 }
William Lallemand00bf1de2012-11-22 17:55:14 +01005911 if (s->comp_algo != NULL) {
5912 /* forwarding trailers */
5913 channel_forward(res, msg->next);
5914 msg->next = 0;
5915 }
5916 /* we're in HTTP_MSG_DONE now */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005917 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005918 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005919 int old_state = msg->msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005920 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02005921 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005922 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5923 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005924 channel_dont_close(res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005925 if (http_resync_states(s)) {
5926 http_silent_debug(__LINE__, s);
5927 /* some state changes occurred, maybe the analyser
5928 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01005929 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005930 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005931 if (res->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005932 /* response errors are most likely due to
5933 * the client aborting the transfer.
5934 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005935 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005936 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005937 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005938 http_capture_bad_message(&s->be->invalid_rep, s, msg, old_state, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005939 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005940 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005941 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01005942 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005943 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005944 }
5945 }
5946
Willy Tarreaud98cf932009-12-27 22:54:55 +01005947 missing_data:
William Lallemandbf3ae612012-11-19 12:35:37 +01005948 if (compressing && consumed_data) {
William Lallemand82fe75c2012-10-23 10:25:10 +02005949 http_compression_buffer_end(s, &res->buf, &tmpbuf, 0);
5950 compressing = 0;
5951 }
Willy Tarreauf003d372012-11-26 13:35:37 +01005952
5953 if (res->flags & CF_SHUTW)
5954 goto aborted_xfer;
5955
5956 /* stop waiting for data if the input is closed before the end. If the
5957 * client side was already closed, it means that the client has aborted,
5958 * so we don't want to count this as a server abort. Otherwise it's a
5959 * server abort.
5960 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005961 if (res->flags & CF_SHUTR) {
Willy Tarreauf003d372012-11-26 13:35:37 +01005962 if ((res->flags & CF_SHUTW_NOW) || (s->req->flags & CF_SHUTR))
5963 goto aborted_xfer;
Willy Tarreau40dba092010-03-04 18:14:51 +01005964 if (!(s->flags & SN_ERR_MASK))
5965 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005966 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005967 if (objt_server(s->target))
5968 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005969 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01005970 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005971
Willy Tarreau40dba092010-03-04 18:14:51 +01005972 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005973 if (!s->req->analysers)
5974 goto return_bad_res;
5975
Willy Tarreauea953162012-05-18 23:41:28 +02005976 /* forward any data pending between sol and sov */
William Lallemand82fe75c2012-10-23 10:25:10 +02005977 if (s->comp_algo == NULL) {
5978 bytes = msg->sov - msg->sol;
5979 if (msg->chunk_len || bytes) {
5980 msg->sol = msg->sov;
5981 msg->next -= bytes; /* will be forwarded */
5982 msg->chunk_len += bytes;
5983 msg->chunk_len -= channel_forward(res, msg->chunk_len);
5984 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005985 }
5986
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005987 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005988 * chunks even if the server has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005989 * Similarly, with keep-alive on the client side, we don't want to forward a
5990 * close.
5991 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02005992 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005993 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5994 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005995 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005996
Willy Tarreau5c620922011-05-11 19:56:11 +02005997 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005998 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005999 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01006000 * modes are already handled by the stream sock layer. We must not do
6001 * this in content-length mode because it could present the MSG_MORE
6002 * flag with the last block of forwarded data, which would cause an
6003 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02006004 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006005 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006006 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02006007
Willy Tarreaud98cf932009-12-27 22:54:55 +01006008 /* the session handler will take care of timeouts and errors */
Willy Tarreau610ecce2010-01-04 21:15:02 +01006009 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006010 return 0;
6011
Willy Tarreau40dba092010-03-04 18:14:51 +01006012 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006013 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006014 if (objt_server(s->target))
6015 objt_server(s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006016
6017 return_bad_res_stats_ok:
Willy Tarreaud98cf932009-12-27 22:54:55 +01006018 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01006019 /* don't send any error message as we're in the body */
6020 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006021 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006022 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006023 if (objt_server(s->target))
6024 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006025
6026 if (!(s->flags & SN_ERR_MASK))
6027 s->flags |= SN_ERR_PRXCOND;
6028 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01006029 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006030 return 0;
6031
6032 aborted_xfer:
6033 txn->rsp.msg_state = HTTP_MSG_ERROR;
6034 /* don't send any error message as we're in the body */
6035 stream_int_retnclose(res->cons, NULL);
6036 res->analysers = 0;
6037 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
6038
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006039 s->fe->fe_counters.cli_aborts++;
6040 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006041 if (objt_server(s->target))
6042 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006043
6044 if (!(s->flags & SN_ERR_MASK))
6045 s->flags |= SN_ERR_CLICL;
6046 if (!(s->flags & SN_FINST_MASK))
6047 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006048 return 0;
6049}
6050
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006051/* Iterate the same filter through all request headers.
6052 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006053 * Since it can manage the switch to another backend, it updates the per-proxy
6054 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006055 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006056int apply_filter_to_req_headers(struct session *t, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006057{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006058 char term;
6059 char *cur_ptr, *cur_end, *cur_next;
6060 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006061 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006062 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006063 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01006064
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006065 last_hdr = 0;
6066
Willy Tarreau9b28e032012-10-12 23:49:43 +02006067 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006068 old_idx = 0;
6069
6070 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006071 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006072 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006073 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006074 (exp->action == ACT_ALLOW ||
6075 exp->action == ACT_DENY ||
6076 exp->action == ACT_TARPIT))
6077 return 0;
6078
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006079 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006080 if (!cur_idx)
6081 break;
6082
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006083 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006084 cur_ptr = cur_next;
6085 cur_end = cur_ptr + cur_hdr->len;
6086 cur_next = cur_end + cur_hdr->cr + 1;
6087
6088 /* Now we have one header between cur_ptr and cur_end,
6089 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006090 */
6091
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006092 /* The annoying part is that pattern matching needs
6093 * that we modify the contents to null-terminate all
6094 * strings before testing them.
6095 */
6096
6097 term = *cur_end;
6098 *cur_end = '\0';
6099
6100 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6101 switch (exp->action) {
6102 case ACT_SETBE:
6103 /* It is not possible to jump a second time.
6104 * FIXME: should we return an HTTP/500 here so that
6105 * the admin knows there's a problem ?
6106 */
6107 if (t->be != t->fe)
6108 break;
6109
6110 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02006111 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006112 last_hdr = 1;
6113 break;
6114
6115 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006116 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006117 last_hdr = 1;
6118 break;
6119
6120 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006121 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006122 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006123
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006124 t->fe->fe_counters.denied_req++;
6125 if (t->fe != t->be)
6126 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006127 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02006128 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006129
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006130 break;
6131
6132 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006133 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006134 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006135
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006136 t->fe->fe_counters.denied_req++;
6137 if (t->fe != t->be)
6138 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006139 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02006140 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006141
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006142 break;
6143
6144 case ACT_REPLACE:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006145 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
6146 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006147 /* FIXME: if the user adds a newline in the replacement, the
6148 * index will not be recalculated for now, and the new line
6149 * will not be counted as a new header.
6150 */
6151
6152 cur_end += delta;
6153 cur_next += delta;
6154 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006155 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006156 break;
6157
6158 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02006159 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006160 cur_next += delta;
6161
Willy Tarreaufa355d42009-11-29 18:12:29 +01006162 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006163 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6164 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006165 cur_hdr->len = 0;
6166 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006167 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006168 break;
6169
6170 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006171 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006172 if (cur_end)
6173 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006174
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006175 /* keep the link from this header to next one in case of later
6176 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006177 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006178 old_idx = cur_idx;
6179 }
6180 return 0;
6181}
6182
6183
6184/* Apply the filter to the request line.
6185 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6186 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006187 * Since it can manage the switch to another backend, it updates the per-proxy
6188 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006189 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006190int apply_filter_to_req_line(struct session *t, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006191{
6192 char term;
6193 char *cur_ptr, *cur_end;
6194 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006195 struct http_txn *txn = &t->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006196 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006197
Willy Tarreau3d300592007-03-18 18:34:41 +01006198 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006199 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006200 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006201 (exp->action == ACT_ALLOW ||
6202 exp->action == ACT_DENY ||
6203 exp->action == ACT_TARPIT))
6204 return 0;
6205 else if (exp->action == ACT_REMOVE)
6206 return 0;
6207
6208 done = 0;
6209
Willy Tarreau9b28e032012-10-12 23:49:43 +02006210 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006211 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006212
6213 /* Now we have the request line between cur_ptr and cur_end */
6214
6215 /* The annoying part is that pattern matching needs
6216 * that we modify the contents to null-terminate all
6217 * strings before testing them.
6218 */
6219
6220 term = *cur_end;
6221 *cur_end = '\0';
6222
6223 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6224 switch (exp->action) {
6225 case ACT_SETBE:
6226 /* It is not possible to jump a second time.
6227 * FIXME: should we return an HTTP/500 here so that
6228 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01006229 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006230 if (t->be != t->fe)
6231 break;
6232
6233 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02006234 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006235 done = 1;
6236 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006237
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006238 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006239 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006240 done = 1;
6241 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006242
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006243 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006244 txn->flags |= TX_CLDENY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006245
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006246 t->fe->fe_counters.denied_req++;
6247 if (t->fe != t->be)
6248 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006249 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02006250 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006251
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006252 done = 1;
6253 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006254
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006255 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006256 txn->flags |= TX_CLTARPIT;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006257
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006258 t->fe->fe_counters.denied_req++;
6259 if (t->fe != t->be)
6260 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006261 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02006262 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006263
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006264 done = 1;
6265 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006266
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006267 case ACT_REPLACE:
6268 *cur_end = term; /* restore the string terminator */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006269 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
6270 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006271 /* FIXME: if the user adds a newline in the replacement, the
6272 * index will not be recalculated for now, and the new line
6273 * will not be counted as a new header.
6274 */
Willy Tarreaua496b602006-12-17 23:15:24 +01006275
Willy Tarreaufa355d42009-11-29 18:12:29 +01006276 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006277 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02006278 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006279 HTTP_MSG_RQMETH,
6280 cur_ptr, cur_end + 1,
6281 NULL, NULL);
6282 if (unlikely(!cur_end))
6283 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01006284
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006285 /* we have a full request and we know that we have either a CR
6286 * or an LF at <ptr>.
6287 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006288 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
6289 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006290 /* there is no point trying this regex on headers */
6291 return 1;
6292 }
6293 }
6294 *cur_end = term; /* restore the string terminator */
6295 return done;
6296}
Willy Tarreau97de6242006-12-27 17:18:38 +01006297
Willy Tarreau58f10d72006-12-04 02:26:12 +01006298
Willy Tarreau58f10d72006-12-04 02:26:12 +01006299
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006300/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01006301 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006302 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01006303 * unparsable request. Since it can manage the switch to another backend, it
6304 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006305 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006306int apply_filters_to_request(struct session *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006307{
Willy Tarreau6c123b12010-01-28 20:22:06 +01006308 struct http_txn *txn = &s->txn;
6309 struct hdr_exp *exp;
6310
6311 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006312 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006313
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006314 /*
6315 * The interleaving of transformations and verdicts
6316 * makes it difficult to decide to continue or stop
6317 * the evaluation.
6318 */
6319
Willy Tarreau6c123b12010-01-28 20:22:06 +01006320 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
6321 break;
6322
Willy Tarreau3d300592007-03-18 18:34:41 +01006323 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006324 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01006325 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006326 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01006327
6328 /* if this filter had a condition, evaluate it now and skip to
6329 * next filter if the condition does not match.
6330 */
6331 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02006332 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01006333 ret = acl_pass(ret);
6334 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6335 ret = !ret;
6336
6337 if (!ret)
6338 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006339 }
6340
6341 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01006342 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006343 if (unlikely(ret < 0))
6344 return -1;
6345
6346 if (likely(ret == 0)) {
6347 /* The filter did not match the request, it can be
6348 * iterated through all headers.
6349 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01006350 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006351 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006352 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006353 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006354}
6355
6356
Willy Tarreaua15645d2007-03-18 16:22:39 +01006357
Willy Tarreau58f10d72006-12-04 02:26:12 +01006358/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006359 * Try to retrieve the server associated to the appsession.
6360 * If the server is found, it's assigned to the session.
6361 */
Cyril Bontéb21570a2009-11-29 20:04:48 +01006362void manage_client_side_appsession(struct session *t, const char *buf, int len) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006363 struct http_txn *txn = &t->txn;
6364 appsess *asession = NULL;
6365 char *sessid_temp = NULL;
6366
Cyril Bontéb21570a2009-11-29 20:04:48 +01006367 if (len > t->be->appsession_len) {
6368 len = t->be->appsession_len;
6369 }
6370
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006371 if (t->be->options2 & PR_O2_AS_REQL) {
6372 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006373 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006374 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006375 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006376 }
6377
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006378 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006379 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6380 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6381 return;
6382 }
6383
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006384 memcpy(txn->sessid, buf, len);
6385 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006386 }
6387
6388 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
6389 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
6390 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
6391 return;
6392 }
6393
Cyril Bontéb21570a2009-11-29 20:04:48 +01006394 memcpy(sessid_temp, buf, len);
6395 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006396
6397 asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp);
6398 /* free previously allocated memory */
6399 pool_free2(apools.sessid, sessid_temp);
6400
6401 if (asession != NULL) {
6402 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
6403 if (!(t->be->options2 & PR_O2_AS_REQL))
6404 asession->request_count++;
6405
6406 if (asession->serverid != NULL) {
6407 struct server *srv = t->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02006408
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006409 while (srv) {
6410 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01006411 if ((srv->state & SRV_RUNNING) ||
6412 (t->be->options & PR_O_PERSIST) ||
6413 (t->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006414 /* we found the server and it's usable */
6415 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01006416 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006417 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006418 t->target = &srv->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +01006419
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006420 break;
6421 } else {
6422 txn->flags &= ~TX_CK_MASK;
6423 txn->flags |= TX_CK_DOWN;
6424 }
6425 }
6426 srv = srv->next;
6427 }
6428 }
6429 }
6430}
6431
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006432/* Find the end of a cookie value contained between <s> and <e>. It works the
6433 * same way as with headers above except that the semi-colon also ends a token.
6434 * See RFC2965 for more information. Note that it requires a valid header to
6435 * return a valid result.
6436 */
6437char *find_cookie_value_end(char *s, const char *e)
6438{
6439 int quoted, qdpair;
6440
6441 quoted = qdpair = 0;
6442 for (; s < e; s++) {
6443 if (qdpair) qdpair = 0;
6444 else if (quoted) {
6445 if (*s == '\\') qdpair = 1;
6446 else if (*s == '"') quoted = 0;
6447 }
6448 else if (*s == '"') quoted = 1;
6449 else if (*s == ',' || *s == ';') return s;
6450 }
6451 return s;
6452}
6453
6454/* Delete a value in a header between delimiters <from> and <next> in buffer
6455 * <buf>. The number of characters displaced is returned, and the pointer to
6456 * the first delimiter is updated if required. The function tries as much as
6457 * possible to respect the following principles :
6458 * - replace <from> delimiter by the <next> one unless <from> points to a
6459 * colon, in which case <next> is simply removed
6460 * - set exactly one space character after the new first delimiter, unless
6461 * there are not enough characters in the block being moved to do so.
6462 * - remove unneeded spaces before the previous delimiter and after the new
6463 * one.
6464 *
6465 * It is the caller's responsibility to ensure that :
6466 * - <from> points to a valid delimiter or the colon ;
6467 * - <next> points to a valid delimiter or the final CR/LF ;
6468 * - there are non-space chars before <from> ;
6469 * - there is a CR/LF at or after <next>.
6470 */
Willy Tarreauaf819352012-08-27 22:08:00 +02006471int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006472{
6473 char *prev = *from;
6474
6475 if (*prev == ':') {
6476 /* We're removing the first value, preserve the colon and add a
6477 * space if possible.
6478 */
6479 if (!http_is_crlf[(unsigned char)*next])
6480 next++;
6481 prev++;
6482 if (prev < next)
6483 *prev++ = ' ';
6484
6485 while (http_is_spht[(unsigned char)*next])
6486 next++;
6487 } else {
6488 /* Remove useless spaces before the old delimiter. */
6489 while (http_is_spht[(unsigned char)*(prev-1)])
6490 prev--;
6491 *from = prev;
6492
6493 /* copy the delimiter and if possible a space if we're
6494 * not at the end of the line.
6495 */
6496 if (!http_is_crlf[(unsigned char)*next]) {
6497 *prev++ = *next++;
6498 if (prev + 1 < next)
6499 *prev++ = ' ';
6500 while (http_is_spht[(unsigned char)*next])
6501 next++;
6502 }
6503 }
6504 return buffer_replace2(buf, prev, next, NULL, 0);
6505}
6506
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006507/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006508 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006509 * desirable to call it only when needed. This code is quite complex because
6510 * of the multiple very crappy and ambiguous syntaxes we have to support. it
6511 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01006512 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006513void manage_client_side_cookies(struct session *t, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006514{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006515 struct http_txn *txn = &t->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006516 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006517 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006518 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
6519 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006520
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006521 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01006522 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02006523 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006524
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006525 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006526 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006527 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006528
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006529 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006530 hdr_beg = hdr_next;
6531 hdr_end = hdr_beg + cur_hdr->len;
6532 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006533
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006534 /* We have one full header between hdr_beg and hdr_end, and the
6535 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01006536 * "Cookie:" headers.
6537 */
6538
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006539 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006540 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006541 old_idx = cur_idx;
6542 continue;
6543 }
6544
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006545 del_from = NULL; /* nothing to be deleted */
6546 preserve_hdr = 0; /* assume we may kill the whole header */
6547
Willy Tarreau58f10d72006-12-04 02:26:12 +01006548 /* Now look for cookies. Conforming to RFC2109, we have to support
6549 * attributes whose name begin with a '$', and associate them with
6550 * the right cookie, if we want to delete this cookie.
6551 * So there are 3 cases for each cookie read :
6552 * 1) it's a special attribute, beginning with a '$' : ignore it.
6553 * 2) it's a server id cookie that we *MAY* want to delete : save
6554 * some pointers on it (last semi-colon, beginning of cookie...)
6555 * 3) it's an application cookie : we *MAY* have to delete a previous
6556 * "special" cookie.
6557 * At the end of loop, if a "special" cookie remains, we may have to
6558 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006559 * *MUST* delete it.
6560 *
6561 * Note: RFC2965 is unclear about the processing of spaces around
6562 * the equal sign in the ATTR=VALUE form. A careful inspection of
6563 * the RFC explicitly allows spaces before it, and not within the
6564 * tokens (attrs or values). An inspection of RFC2109 allows that
6565 * too but section 10.1.3 lets one think that spaces may be allowed
6566 * after the equal sign too, resulting in some (rare) buggy
6567 * implementations trying to do that. So let's do what servers do.
6568 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
6569 * allowed quoted strings in values, with any possible character
6570 * after a backslash, including control chars and delimitors, which
6571 * causes parsing to become ambiguous. Browsers also allow spaces
6572 * within values even without quotes.
6573 *
6574 * We have to keep multiple pointers in order to support cookie
6575 * removal at the beginning, middle or end of header without
6576 * corrupting the header. All of these headers are valid :
6577 *
6578 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
6579 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
6580 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
6581 * | | | | | | | | |
6582 * | | | | | | | | hdr_end <--+
6583 * | | | | | | | +--> next
6584 * | | | | | | +----> val_end
6585 * | | | | | +-----------> val_beg
6586 * | | | | +--------------> equal
6587 * | | | +----------------> att_end
6588 * | | +---------------------> att_beg
6589 * | +--------------------------> prev
6590 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01006591 */
6592
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006593 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
6594 /* Iterate through all cookies on this line */
6595
6596 /* find att_beg */
6597 att_beg = prev + 1;
6598 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6599 att_beg++;
6600
6601 /* find att_end : this is the first character after the last non
6602 * space before the equal. It may be equal to hdr_end.
6603 */
6604 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006605
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006606 while (equal < hdr_end) {
6607 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01006608 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006609 if (http_is_spht[(unsigned char)*equal++])
6610 continue;
6611 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006612 }
6613
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006614 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6615 * is between <att_beg> and <equal>, both may be identical.
6616 */
6617
6618 /* look for end of cookie if there is an equal sign */
6619 if (equal < hdr_end && *equal == '=') {
6620 /* look for the beginning of the value */
6621 val_beg = equal + 1;
6622 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6623 val_beg++;
6624
6625 /* find the end of the value, respecting quotes */
6626 next = find_cookie_value_end(val_beg, hdr_end);
6627
6628 /* make val_end point to the first white space or delimitor after the value */
6629 val_end = next;
6630 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6631 val_end--;
6632 } else {
6633 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01006634 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006635
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006636 /* We have nothing to do with attributes beginning with '$'. However,
6637 * they will automatically be removed if a header before them is removed,
6638 * since they're supposed to be linked together.
6639 */
6640 if (*att_beg == '$')
6641 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006642
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006643 /* Ignore cookies with no equal sign */
6644 if (equal == next) {
6645 /* This is not our cookie, so we must preserve it. But if we already
6646 * scheduled another cookie for removal, we cannot remove the
6647 * complete header, but we can remove the previous block itself.
6648 */
6649 preserve_hdr = 1;
6650 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006651 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006652 val_end += delta;
6653 next += delta;
6654 hdr_end += delta;
6655 hdr_next += delta;
6656 cur_hdr->len += delta;
6657 http_msg_move_end(&txn->req, delta);
6658 prev = del_from;
6659 del_from = NULL;
6660 }
6661 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01006662 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006663
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006664 /* if there are spaces around the equal sign, we need to
6665 * strip them otherwise we'll get trouble for cookie captures,
6666 * or even for rewrites. Since this happens extremely rarely,
6667 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006668 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006669 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6670 int stripped_before = 0;
6671 int stripped_after = 0;
6672
6673 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006674 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006675 equal += stripped_before;
6676 val_beg += stripped_before;
6677 }
6678
6679 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006680 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006681 val_beg += stripped_after;
6682 stripped_before += stripped_after;
6683 }
6684
6685 val_end += stripped_before;
6686 next += stripped_before;
6687 hdr_end += stripped_before;
6688 hdr_next += stripped_before;
6689 cur_hdr->len += stripped_before;
6690 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006691 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006692 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006693
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006694 /* First, let's see if we want to capture this cookie. We check
6695 * that we don't already have a client side cookie, because we
6696 * can only capture one. Also as an optimisation, we ignore
6697 * cookies shorter than the declared name.
6698 */
6699 if (t->fe->capture_name != NULL && txn->cli_cookie == NULL &&
6700 (val_end - att_beg >= t->fe->capture_namelen) &&
6701 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
6702 int log_len = val_end - att_beg;
6703
6704 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
6705 Alert("HTTP logging : out of memory.\n");
6706 } else {
6707 if (log_len > t->fe->capture_len)
6708 log_len = t->fe->capture_len;
6709 memcpy(txn->cli_cookie, att_beg, log_len);
6710 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006711 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006712 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006713
Willy Tarreaubca99692010-10-06 19:25:55 +02006714 /* Persistence cookies in passive, rewrite or insert mode have the
6715 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006716 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006717 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006718 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006719 * For cookies in prefix mode, the form is :
6720 *
6721 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006722 */
6723 if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
6724 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
6725 struct server *srv = t->be->srv;
6726 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006727
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006728 /* if we're in cookie prefix mode, we'll search the delimitor so that we
6729 * have the server ID between val_beg and delim, and the original cookie between
6730 * delim+1 and val_end. Otherwise, delim==val_end :
6731 *
6732 * Cookie: NAME=SRV; # in all but prefix modes
6733 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
6734 * | || || | |+-> next
6735 * | || || | +--> val_end
6736 * | || || +---------> delim
6737 * | || |+------------> val_beg
6738 * | || +-------------> att_end = equal
6739 * | |+-----------------> att_beg
6740 * | +------------------> prev
6741 * +-------------------------> hdr_beg
6742 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006743
Willy Tarreau67402132012-05-31 20:40:20 +02006744 if (t->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006745 for (delim = val_beg; delim < val_end; delim++)
6746 if (*delim == COOKIE_DELIM)
6747 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02006748 } else {
6749 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006750 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02006751 /* Now check if the cookie contains a date field, which would
6752 * appear after a vertical bar ('|') just after the server name
6753 * and before the delimiter.
6754 */
6755 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
6756 if (vbar1) {
6757 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02006758 * right is the last seen date. It is a base64 encoded
6759 * 30-bit value representing the UNIX date since the
6760 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02006761 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02006762 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02006763 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02006764 if (val_end - vbar1 >= 5) {
6765 val = b64tos30(vbar1);
6766 if (val > 0)
6767 txn->cookie_last_date = val << 2;
6768 }
6769 /* look for a second vertical bar */
6770 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
6771 if (vbar1 && (val_end - vbar1 > 5)) {
6772 val = b64tos30(vbar1 + 1);
6773 if (val > 0)
6774 txn->cookie_first_date = val << 2;
6775 }
Willy Tarreaubca99692010-10-06 19:25:55 +02006776 }
6777 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006778
Willy Tarreauf64d1412010-10-07 20:06:11 +02006779 /* if the cookie has an expiration date and the proxy wants to check
6780 * it, then we do that now. We first check if the cookie is too old,
6781 * then only if it has expired. We detect strict overflow because the
6782 * time resolution here is not great (4 seconds). Cookies with dates
6783 * in the future are ignored if their offset is beyond one day. This
6784 * allows an admin to fix timezone issues without expiring everyone
6785 * and at the same time avoids keeping unwanted side effects for too
6786 * long.
6787 */
6788 if (txn->cookie_first_date && t->be->cookie_maxlife &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006789 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) ||
6790 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006791 txn->flags &= ~TX_CK_MASK;
6792 txn->flags |= TX_CK_OLD;
6793 delim = val_beg; // let's pretend we have not found the cookie
6794 txn->cookie_first_date = 0;
6795 txn->cookie_last_date = 0;
6796 }
6797 else if (txn->cookie_last_date && t->be->cookie_maxidle &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006798 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) ||
6799 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006800 txn->flags &= ~TX_CK_MASK;
6801 txn->flags |= TX_CK_EXPIRED;
6802 delim = val_beg; // let's pretend we have not found the cookie
6803 txn->cookie_first_date = 0;
6804 txn->cookie_last_date = 0;
6805 }
6806
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006807 /* Here, we'll look for the first running server which supports the cookie.
6808 * This allows to share a same cookie between several servers, for example
6809 * to dedicate backup servers to specific servers only.
6810 * However, to prevent clients from sticking to cookie-less backup server
6811 * when they have incidentely learned an empty cookie, we simply ignore
6812 * empty cookies and mark them as invalid.
6813 * The same behaviour is applied when persistence must be ignored.
6814 */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02006815 if ((delim == val_beg) || (t->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006816 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006817
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006818 while (srv) {
6819 if (srv->cookie && (srv->cklen == delim - val_beg) &&
6820 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
6821 if ((srv->state & SRV_RUNNING) ||
6822 (t->be->options & PR_O_PERSIST) ||
6823 (t->flags & SN_FORCE_PRST)) {
6824 /* we found the server and we can use it */
6825 txn->flags &= ~TX_CK_MASK;
6826 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
6827 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006828 t->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006829 break;
6830 } else {
6831 /* we found a server, but it's down,
6832 * mark it as such and go on in case
6833 * another one is available.
6834 */
6835 txn->flags &= ~TX_CK_MASK;
6836 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006837 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006838 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006839 srv = srv->next;
6840 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006841
Willy Tarreauf64d1412010-10-07 20:06:11 +02006842 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02006843 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006844 txn->flags &= ~TX_CK_MASK;
Willy Tarreauc89ccb62012-04-05 21:18:22 +02006845 if ((t->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
6846 txn->flags |= TX_CK_UNUSED;
6847 else
6848 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006849 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006850
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006851 /* depending on the cookie mode, we may have to either :
6852 * - delete the complete cookie if we're in insert+indirect mode, so that
6853 * the server never sees it ;
6854 * - remove the server id from the cookie value, and tag the cookie as an
6855 * application cookie so that it does not get accidentely removed later,
6856 * if we're in cookie prefix mode
6857 */
Willy Tarreau67402132012-05-31 20:40:20 +02006858 if ((t->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006859 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006860
Willy Tarreau9b28e032012-10-12 23:49:43 +02006861 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006862 val_end += delta;
6863 next += delta;
6864 hdr_end += delta;
6865 hdr_next += delta;
6866 cur_hdr->len += delta;
6867 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006868
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006869 del_from = NULL;
6870 preserve_hdr = 1; /* we want to keep this cookie */
6871 }
6872 else if (del_from == NULL &&
Willy Tarreau67402132012-05-31 20:40:20 +02006873 (t->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006874 del_from = prev;
6875 }
6876 } else {
6877 /* This is not our cookie, so we must preserve it. But if we already
6878 * scheduled another cookie for removal, we cannot remove the
6879 * complete header, but we can remove the previous block itself.
6880 */
6881 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006882
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006883 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006884 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01006885 if (att_beg >= del_from)
6886 att_beg += delta;
6887 if (att_end >= del_from)
6888 att_end += delta;
6889 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006890 val_end += delta;
6891 next += delta;
6892 hdr_end += delta;
6893 hdr_next += delta;
6894 cur_hdr->len += delta;
6895 http_msg_move_end(&txn->req, delta);
6896 prev = del_from;
6897 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006898 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006899 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006900
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006901 /* Look for the appsession cookie unless persistence must be ignored */
6902 if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
6903 int cmp_len, value_len;
6904 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02006905
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006906 if (t->be->options2 & PR_O2_AS_PFX) {
6907 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
6908 value_begin = att_beg + t->be->appsession_name_len;
6909 value_len = val_end - att_beg - t->be->appsession_name_len;
6910 } else {
6911 cmp_len = att_end - att_beg;
6912 value_begin = val_beg;
6913 value_len = val_end - val_beg;
6914 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01006915
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006916 /* let's see if the cookie is our appcookie */
6917 if (cmp_len == t->be->appsession_name_len &&
6918 memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) {
6919 manage_client_side_appsession(t, value_begin, value_len);
6920 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006921 }
6922
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006923 /* continue with next cookie on this header line */
6924 att_beg = next;
6925 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006926
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006927 /* There are no more cookies on this line.
6928 * We may still have one (or several) marked for deletion at the
6929 * end of the line. We must do this now in two ways :
6930 * - if some cookies must be preserved, we only delete from the
6931 * mark to the end of line ;
6932 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01006933 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006934 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006935 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006936 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006937 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006938 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006939 cur_hdr->len += delta;
6940 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006941 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006942
6943 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006944 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6945 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006946 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01006947 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006948 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006949 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006950 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006951 }
6952
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006953 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006954 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006955 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006956}
6957
6958
Willy Tarreaua15645d2007-03-18 16:22:39 +01006959/* Iterate the same filter through all response headers contained in <rtr>.
6960 * Returns 1 if this filter can be stopped upon return, otherwise 0.
6961 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006962int apply_filter_to_resp_headers(struct session *t, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006963{
6964 char term;
6965 char *cur_ptr, *cur_end, *cur_next;
6966 int cur_idx, old_idx, last_hdr;
6967 struct http_txn *txn = &t->txn;
6968 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006969 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006970
6971 last_hdr = 0;
6972
Willy Tarreau9b28e032012-10-12 23:49:43 +02006973 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006974 old_idx = 0;
6975
6976 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006977 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006978 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006979 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006980 (exp->action == ACT_ALLOW ||
6981 exp->action == ACT_DENY))
6982 return 0;
6983
6984 cur_idx = txn->hdr_idx.v[old_idx].next;
6985 if (!cur_idx)
6986 break;
6987
6988 cur_hdr = &txn->hdr_idx.v[cur_idx];
6989 cur_ptr = cur_next;
6990 cur_end = cur_ptr + cur_hdr->len;
6991 cur_next = cur_end + cur_hdr->cr + 1;
6992
6993 /* Now we have one header between cur_ptr and cur_end,
6994 * and the next header starts at cur_next.
6995 */
6996
6997 /* The annoying part is that pattern matching needs
6998 * that we modify the contents to null-terminate all
6999 * strings before testing them.
7000 */
7001
7002 term = *cur_end;
7003 *cur_end = '\0';
7004
7005 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
7006 switch (exp->action) {
7007 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007008 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007009 last_hdr = 1;
7010 break;
7011
7012 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007013 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007014 last_hdr = 1;
7015 break;
7016
7017 case ACT_REPLACE:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007018 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
7019 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007020 /* FIXME: if the user adds a newline in the replacement, the
7021 * index will not be recalculated for now, and the new line
7022 * will not be counted as a new header.
7023 */
7024
7025 cur_end += delta;
7026 cur_next += delta;
7027 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007028 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007029 break;
7030
7031 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007032 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007033 cur_next += delta;
7034
Willy Tarreaufa355d42009-11-29 18:12:29 +01007035 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007036 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7037 txn->hdr_idx.used--;
7038 cur_hdr->len = 0;
7039 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007040 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007041 break;
7042
7043 }
7044 }
7045 if (cur_end)
7046 *cur_end = term; /* restore the string terminator */
7047
7048 /* keep the link from this header to next one in case of later
7049 * removal of next header.
7050 */
7051 old_idx = cur_idx;
7052 }
7053 return 0;
7054}
7055
7056
7057/* Apply the filter to the status line in the response buffer <rtr>.
7058 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7059 * or -1 if a replacement resulted in an invalid status line.
7060 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007061int apply_filter_to_sts_line(struct session *t, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007062{
7063 char term;
7064 char *cur_ptr, *cur_end;
7065 int done;
7066 struct http_txn *txn = &t->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007067 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007068
7069
Willy Tarreau3d300592007-03-18 18:34:41 +01007070 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007071 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007072 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007073 (exp->action == ACT_ALLOW ||
7074 exp->action == ACT_DENY))
7075 return 0;
7076 else if (exp->action == ACT_REMOVE)
7077 return 0;
7078
7079 done = 0;
7080
Willy Tarreau9b28e032012-10-12 23:49:43 +02007081 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007082 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007083
7084 /* Now we have the status line between cur_ptr and cur_end */
7085
7086 /* The annoying part is that pattern matching needs
7087 * that we modify the contents to null-terminate all
7088 * strings before testing them.
7089 */
7090
7091 term = *cur_end;
7092 *cur_end = '\0';
7093
7094 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
7095 switch (exp->action) {
7096 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007097 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007098 done = 1;
7099 break;
7100
7101 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007102 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007103 done = 1;
7104 break;
7105
7106 case ACT_REPLACE:
7107 *cur_end = term; /* restore the string terminator */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007108 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
7109 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007110 /* FIXME: if the user adds a newline in the replacement, the
7111 * index will not be recalculated for now, and the new line
7112 * will not be counted as a new header.
7113 */
7114
Willy Tarreaufa355d42009-11-29 18:12:29 +01007115 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007116 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007117 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02007118 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01007119 cur_ptr, cur_end + 1,
7120 NULL, NULL);
7121 if (unlikely(!cur_end))
7122 return -1;
7123
7124 /* we have a full respnse and we know that we have either a CR
7125 * or an LF at <ptr>.
7126 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007127 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007128 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01007129 /* there is no point trying this regex on headers */
7130 return 1;
7131 }
7132 }
7133 *cur_end = term; /* restore the string terminator */
7134 return done;
7135}
7136
7137
7138
7139/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007140 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007141 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
7142 * unparsable response.
7143 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007144int apply_filters_to_response(struct session *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007145{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007146 struct http_txn *txn = &s->txn;
7147 struct hdr_exp *exp;
7148
7149 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007150 int ret;
7151
7152 /*
7153 * The interleaving of transformations and verdicts
7154 * makes it difficult to decide to continue or stop
7155 * the evaluation.
7156 */
7157
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007158 if (txn->flags & TX_SVDENY)
7159 break;
7160
Willy Tarreau3d300592007-03-18 18:34:41 +01007161 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007162 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
7163 exp->action == ACT_PASS)) {
7164 exp = exp->next;
7165 continue;
7166 }
7167
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007168 /* if this filter had a condition, evaluate it now and skip to
7169 * next filter if the condition does not match.
7170 */
7171 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02007172 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007173 ret = acl_pass(ret);
7174 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7175 ret = !ret;
7176 if (!ret)
7177 continue;
7178 }
7179
Willy Tarreaua15645d2007-03-18 16:22:39 +01007180 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007181 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007182 if (unlikely(ret < 0))
7183 return -1;
7184
7185 if (likely(ret == 0)) {
7186 /* The filter did not match the response, it can be
7187 * iterated through all headers.
7188 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007189 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007190 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007191 }
7192 return 0;
7193}
7194
7195
Willy Tarreaua15645d2007-03-18 16:22:39 +01007196/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007197 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02007198 * desirable to call it only when needed. This function is also used when we
7199 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01007200 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007201void manage_server_side_cookies(struct session *t, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007202{
7203 struct http_txn *txn = &t->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01007204 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007205 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007206 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007207 char *hdr_beg, *hdr_end, *hdr_next;
7208 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007209
Willy Tarreaua15645d2007-03-18 16:22:39 +01007210 /* Iterate through the headers.
7211 * we start with the start line.
7212 */
7213 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007214 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007215
7216 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
7217 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007218 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007219
7220 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02007221 hdr_beg = hdr_next;
7222 hdr_end = hdr_beg + cur_hdr->len;
7223 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007224
Willy Tarreau24581ba2010-08-31 22:39:35 +02007225 /* We have one full header between hdr_beg and hdr_end, and the
7226 * next header starts at hdr_next. We're only interested in
7227 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007228 */
7229
Willy Tarreau24581ba2010-08-31 22:39:35 +02007230 is_cookie2 = 0;
7231 prev = hdr_beg + 10;
7232 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007233 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007234 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
7235 if (!val) {
7236 old_idx = cur_idx;
7237 continue;
7238 }
7239 is_cookie2 = 1;
7240 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007241 }
7242
Willy Tarreau24581ba2010-08-31 22:39:35 +02007243 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
7244 * <prev> points to the colon.
7245 */
Willy Tarreauf1348312010-10-07 15:54:11 +02007246 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007247
Willy Tarreau24581ba2010-08-31 22:39:35 +02007248 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
7249 * check-cache is enabled) and we are not interested in checking
7250 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007251 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007252 if (t->be->cookie_name == NULL &&
7253 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007254 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007255 return;
7256
Willy Tarreau24581ba2010-08-31 22:39:35 +02007257 /* OK so now we know we have to process this response cookie.
7258 * The format of the Set-Cookie header is slightly different
7259 * from the format of the Cookie header in that it does not
7260 * support the comma as a cookie delimiter (thus the header
7261 * cannot be folded) because the Expires attribute described in
7262 * the original Netscape's spec may contain an unquoted date
7263 * with a comma inside. We have to live with this because
7264 * many browsers don't support Max-Age and some browsers don't
7265 * support quoted strings. However the Set-Cookie2 header is
7266 * clean.
7267 *
7268 * We have to keep multiple pointers in order to support cookie
7269 * removal at the beginning, middle or end of header without
7270 * corrupting the header (in case of set-cookie2). A special
7271 * pointer, <scav> points to the beginning of the set-cookie-av
7272 * fields after the first semi-colon. The <next> pointer points
7273 * either to the end of line (set-cookie) or next unquoted comma
7274 * (set-cookie2). All of these headers are valid :
7275 *
7276 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
7277 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7278 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7279 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
7280 * | | | | | | | | | |
7281 * | | | | | | | | +-> next hdr_end <--+
7282 * | | | | | | | +------------> scav
7283 * | | | | | | +--------------> val_end
7284 * | | | | | +--------------------> val_beg
7285 * | | | | +----------------------> equal
7286 * | | | +------------------------> att_end
7287 * | | +----------------------------> att_beg
7288 * | +------------------------------> prev
7289 * +-----------------------------------------> hdr_beg
7290 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007291
Willy Tarreau24581ba2010-08-31 22:39:35 +02007292 for (; prev < hdr_end; prev = next) {
7293 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007294
Willy Tarreau24581ba2010-08-31 22:39:35 +02007295 /* find att_beg */
7296 att_beg = prev + 1;
7297 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
7298 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007299
Willy Tarreau24581ba2010-08-31 22:39:35 +02007300 /* find att_end : this is the first character after the last non
7301 * space before the equal. It may be equal to hdr_end.
7302 */
7303 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007304
Willy Tarreau24581ba2010-08-31 22:39:35 +02007305 while (equal < hdr_end) {
7306 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
7307 break;
7308 if (http_is_spht[(unsigned char)*equal++])
7309 continue;
7310 att_end = equal;
7311 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007312
Willy Tarreau24581ba2010-08-31 22:39:35 +02007313 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7314 * is between <att_beg> and <equal>, both may be identical.
7315 */
7316
7317 /* look for end of cookie if there is an equal sign */
7318 if (equal < hdr_end && *equal == '=') {
7319 /* look for the beginning of the value */
7320 val_beg = equal + 1;
7321 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
7322 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007323
Willy Tarreau24581ba2010-08-31 22:39:35 +02007324 /* find the end of the value, respecting quotes */
7325 next = find_cookie_value_end(val_beg, hdr_end);
7326
7327 /* make val_end point to the first white space or delimitor after the value */
7328 val_end = next;
7329 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
7330 val_end--;
7331 } else {
7332 /* <equal> points to next comma, semi-colon or EOL */
7333 val_beg = val_end = next = equal;
7334 }
7335
7336 if (next < hdr_end) {
7337 /* Set-Cookie2 supports multiple cookies, and <next> points to
7338 * a colon or semi-colon before the end. So skip all attr-value
7339 * pairs and look for the next comma. For Set-Cookie, since
7340 * commas are permitted in values, skip to the end.
7341 */
7342 if (is_cookie2)
7343 next = find_hdr_value_end(next, hdr_end);
7344 else
7345 next = hdr_end;
7346 }
7347
7348 /* Now everything is as on the diagram above */
7349
7350 /* Ignore cookies with no equal sign */
7351 if (equal == val_end)
7352 continue;
7353
7354 /* If there are spaces around the equal sign, we need to
7355 * strip them otherwise we'll get trouble for cookie captures,
7356 * or even for rewrites. Since this happens extremely rarely,
7357 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007358 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007359 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7360 int stripped_before = 0;
7361 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007362
Willy Tarreau24581ba2010-08-31 22:39:35 +02007363 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007364 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007365 equal += stripped_before;
7366 val_beg += stripped_before;
7367 }
7368
7369 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007370 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007371 val_beg += stripped_after;
7372 stripped_before += stripped_after;
7373 }
7374
7375 val_end += stripped_before;
7376 next += stripped_before;
7377 hdr_end += stripped_before;
7378 hdr_next += stripped_before;
7379 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02007380 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007381 }
7382
7383 /* First, let's see if we want to capture this cookie. We check
7384 * that we don't already have a server side cookie, because we
7385 * can only capture one. Also as an optimisation, we ignore
7386 * cookies shorter than the declared name.
7387 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007388 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01007389 txn->srv_cookie == NULL &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007390 (val_end - att_beg >= t->fe->capture_namelen) &&
7391 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
7392 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02007393 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007394 Alert("HTTP logging : out of memory.\n");
7395 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01007396 else {
7397 if (log_len > t->fe->capture_len)
7398 log_len = t->fe->capture_len;
7399 memcpy(txn->srv_cookie, att_beg, log_len);
7400 txn->srv_cookie[log_len] = 0;
7401 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007402 }
7403
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007404 srv = objt_server(t->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007405 /* now check if we need to process it for persistence */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007406 if (!(t->flags & SN_IGNORE_PRST) &&
7407 (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
7408 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02007409 /* assume passive cookie by default */
7410 txn->flags &= ~TX_SCK_MASK;
7411 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007412
7413 /* If the cookie is in insert mode on a known server, we'll delete
7414 * this occurrence because we'll insert another one later.
7415 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02007416 * a direct access.
7417 */
Willy Tarreau67402132012-05-31 20:40:20 +02007418 if (t->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02007419 /* The "preserve" flag was set, we don't want to touch the
7420 * server's cookie.
7421 */
7422 }
Willy Tarreau67402132012-05-31 20:40:20 +02007423 else if ((srv && (t->be->ck_opts & PR_CK_INS)) ||
7424 ((t->flags & SN_DIRECT) && (t->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007425 /* this cookie must be deleted */
7426 if (*prev == ':' && next == hdr_end) {
7427 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007428 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007429 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7430 txn->hdr_idx.used--;
7431 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007432 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007433 hdr_next += delta;
7434 http_msg_move_end(&txn->rsp, delta);
7435 /* note: while both invalid now, <next> and <hdr_end>
7436 * are still equal, so the for() will stop as expected.
7437 */
7438 } else {
7439 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007440 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007441 next = prev;
7442 hdr_end += delta;
7443 hdr_next += delta;
7444 cur_hdr->len += delta;
7445 http_msg_move_end(&txn->rsp, delta);
7446 }
Willy Tarreauf1348312010-10-07 15:54:11 +02007447 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01007448 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007449 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007450 }
Willy Tarreau67402132012-05-31 20:40:20 +02007451 else if (srv && srv->cookie && (t->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007452 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01007453 * with this server since we know it.
7454 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007455 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007456 next += delta;
7457 hdr_end += delta;
7458 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007459 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007460 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007461
Willy Tarreauf1348312010-10-07 15:54:11 +02007462 txn->flags &= ~TX_SCK_MASK;
7463 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007464 }
Willy Tarreaua0590312012-06-06 16:07:00 +02007465 else if (srv && srv->cookie && (t->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007466 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02007467 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01007468 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007469 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007470 next += delta;
7471 hdr_end += delta;
7472 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007473 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007474 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007475
Willy Tarreau827aee92011-03-10 16:55:02 +01007476 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02007477 txn->flags &= ~TX_SCK_MASK;
7478 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007479 }
7480 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007481 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
7482 else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007483 int cmp_len, value_len;
7484 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007485
Cyril Bontéb21570a2009-11-29 20:04:48 +01007486 if (t->be->options2 & PR_O2_AS_PFX) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007487 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
7488 value_begin = att_beg + t->be->appsession_name_len;
7489 value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01007490 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007491 cmp_len = att_end - att_beg;
7492 value_begin = val_beg;
7493 value_len = MIN(t->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007494 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007495
Cyril Bonté17530c32010-04-06 21:11:10 +02007496 if ((cmp_len == t->be->appsession_name_len) &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007497 (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7498 /* free a possibly previously allocated memory */
7499 pool_free2(apools.sessid, txn->sessid);
7500
Cyril Bontéb21570a2009-11-29 20:04:48 +01007501 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007502 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007503 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7504 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
7505 return;
7506 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007507 memcpy(txn->sessid, value_begin, value_len);
7508 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007509 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02007510 }
7511 /* that's done for this cookie, check the next one on the same
7512 * line when next != hdr_end (only if is_cookie2).
7513 */
7514 }
7515 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007516 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007517 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007518
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007519 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007520 appsess *asession = NULL;
7521 /* only do insert, if lookup fails */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007522 asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007523 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01007524 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007525 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
7526 Alert("Not enough Memory process_srv():asession:calloc().\n");
7527 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
7528 return;
7529 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007530 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
7531
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007532 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
7533 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7534 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007535 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007536 return;
7537 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007538 memcpy(asession->sessid, txn->sessid, t->be->appsession_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007539 asession->sessid[t->be->appsession_len] = 0;
7540
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007541 server_id_len = strlen(objt_server(t->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007542 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007543 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007544 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007545 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007546 return;
7547 }
7548 asession->serverid[0] = '\0';
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007549 memcpy(asession->serverid, objt_server(t->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007550
7551 asession->request_count = 0;
7552 appsession_hash_insert(&(t->be->htbl_proxy), asession);
7553 }
7554
7555 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
7556 asession->request_count++;
7557 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007558}
7559
7560
Willy Tarreaua15645d2007-03-18 16:22:39 +01007561/*
7562 * Check if response is cacheable or not. Updates t->flags.
7563 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007564void check_response_for_cacheability(struct session *t, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007565{
7566 struct http_txn *txn = &t->txn;
7567 char *p1, *p2;
7568
7569 char *cur_ptr, *cur_end, *cur_next;
7570 int cur_idx;
7571
Willy Tarreau5df51872007-11-25 16:20:08 +01007572 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007573 return;
7574
7575 /* Iterate through the headers.
7576 * we start with the start line.
7577 */
7578 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007579 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007580
7581 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7582 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007583 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007584
7585 cur_hdr = &txn->hdr_idx.v[cur_idx];
7586 cur_ptr = cur_next;
7587 cur_end = cur_ptr + cur_hdr->len;
7588 cur_next = cur_end + cur_hdr->cr + 1;
7589
7590 /* We have one full header between cur_ptr and cur_end, and the
7591 * next header starts at cur_next. We're only interested in
7592 * "Cookie:" headers.
7593 */
7594
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007595 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7596 if (val) {
7597 if ((cur_end - (cur_ptr + val) >= 8) &&
7598 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7599 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7600 return;
7601 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007602 }
7603
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007604 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7605 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007606 continue;
7607
7608 /* OK, right now we know we have a cache-control header at cur_ptr */
7609
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007610 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007611
7612 if (p1 >= cur_end) /* no more info */
7613 continue;
7614
7615 /* p1 is at the beginning of the value */
7616 p2 = p1;
7617
Willy Tarreau8f8e6452007-06-17 21:51:38 +02007618 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007619 p2++;
7620
7621 /* we have a complete value between p1 and p2 */
7622 if (p2 < cur_end && *p2 == '=') {
7623 /* we have something of the form no-cache="set-cookie" */
7624 if ((cur_end - p1 >= 21) &&
7625 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
7626 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01007627 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007628 continue;
7629 }
7630
7631 /* OK, so we know that either p2 points to the end of string or to a comma */
7632 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
7633 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
7634 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
7635 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007636 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007637 return;
7638 }
7639
7640 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007641 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007642 continue;
7643 }
7644 }
7645}
7646
7647
Willy Tarreau58f10d72006-12-04 02:26:12 +01007648/*
7649 * Try to retrieve a known appsession in the URI, then the associated server.
7650 * If the server is found, it's assigned to the session.
7651 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007652void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007653{
Cyril Bontéb21570a2009-11-29 20:04:48 +01007654 char *end_params, *first_param, *cur_param, *next_param;
7655 char separator;
7656 int value_len;
7657
7658 int mode = t->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007659
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007660 if (t->be->appsession_name == NULL ||
Cyril Bonté17530c32010-04-06 21:11:10 +02007661 (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 +01007662 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007663 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007664
Cyril Bontéb21570a2009-11-29 20:04:48 +01007665 first_param = NULL;
7666 switch (mode) {
7667 case PR_O2_AS_M_PP:
7668 first_param = memchr(begin, ';', len);
7669 break;
7670 case PR_O2_AS_M_QS:
7671 first_param = memchr(begin, '?', len);
7672 break;
7673 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007674
Cyril Bontéb21570a2009-11-29 20:04:48 +01007675 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007676 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007677 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007678
Cyril Bontéb21570a2009-11-29 20:04:48 +01007679 switch (mode) {
7680 case PR_O2_AS_M_PP:
7681 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
7682 end_params = (char *) begin + len;
7683 }
7684 separator = ';';
7685 break;
7686 case PR_O2_AS_M_QS:
7687 end_params = (char *) begin + len;
7688 separator = '&';
7689 break;
7690 default:
7691 /* unknown mode, shouldn't happen */
7692 return;
7693 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007694
Cyril Bontéb21570a2009-11-29 20:04:48 +01007695 cur_param = next_param = end_params;
7696 while (cur_param > first_param) {
7697 cur_param--;
7698 if ((cur_param[0] == separator) || (cur_param == first_param)) {
7699 /* let's see if this is the appsession parameter */
7700 if ((cur_param + t->be->appsession_name_len + 1 < next_param) &&
7701 ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') &&
7702 (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7703 /* Cool... it's the right one */
7704 cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2);
7705 value_len = MIN(t->be->appsession_len, next_param - cur_param);
7706 if (value_len > 0) {
7707 manage_client_side_appsession(t, cur_param, value_len);
7708 }
7709 break;
7710 }
7711 next_param = cur_param;
7712 }
7713 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007714#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007715 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02007716 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01007717#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01007718}
7719
Willy Tarreaub2513902006-12-17 14:52:38 +01007720/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02007721 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007722 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01007723 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02007724 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01007725 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01007726 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007727 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01007728 */
Willy Tarreau295a8372011-03-10 11:25:07 +01007729int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01007730{
7731 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01007732 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007733 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreau3a215be2012-03-09 21:39:51 +01007734 const char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01007735
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007736 if (!uri_auth)
7737 return 0;
7738
Cyril Bonté70be45d2010-10-12 00:14:35 +02007739 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007740 return 0;
7741
Willy Tarreau295a8372011-03-10 11:25:07 +01007742 memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats));
Cyril Bonté19979e12012-04-04 12:57:21 +02007743 si->applet.ctx.stats.st_code = STAT_STATUS_INIT;
Willy Tarreau354898b2012-12-23 18:15:23 +01007744 si->applet.ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007745
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007746 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01007747 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01007748 return 0;
7749
Willy Tarreau3a215be2012-03-09 21:39:51 +01007750 h = uri;
Willy Tarreau0214c3a2007-01-07 13:47:30 +01007751 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01007752 return 0;
7753
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007754 h += uri_auth->uri_len;
Willy Tarreau3a215be2012-03-09 21:39:51 +01007755 while (h <= uri + msg->sl.rq.u_l - 3) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007756 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007757 si->applet.ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007758 break;
7759 }
7760 h++;
7761 }
7762
7763 if (uri_auth->refresh) {
Willy Tarreau3a215be2012-03-09 21:39:51 +01007764 h = uri + uri_auth->uri_len;
7765 while (h <= uri + msg->sl.rq.u_l - 10) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007766 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007767 si->applet.ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007768 break;
7769 }
7770 h++;
7771 }
7772 }
7773
Willy Tarreau3a215be2012-03-09 21:39:51 +01007774 h = uri + uri_auth->uri_len;
7775 while (h <= uri + msg->sl.rq.u_l - 4) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02007776 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau354898b2012-12-23 18:15:23 +01007777 si->applet.ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau55bb8452007-10-17 18:44:57 +02007778 break;
7779 }
7780 h++;
7781 }
7782
Willy Tarreau3a215be2012-03-09 21:39:51 +01007783 h = uri + uri_auth->uri_len;
7784 while (h <= uri + msg->sl.rq.u_l - 8) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02007785 if (memcmp(h, ";st=", 4) == 0) {
Cyril Bonté19979e12012-04-04 12:57:21 +02007786 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007787 h += 4;
Cyril Bonté20a804a2012-05-10 19:42:52 +02007788 si->applet.ctx.stats.st_code = STAT_STATUS_UNKN;
Cyril Bonté19979e12012-04-04 12:57:21 +02007789 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
7790 if (strncmp(stat_status_codes[i], h, 4) == 0) {
7791 si->applet.ctx.stats.st_code = i;
7792 break;
7793 }
7794 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02007795 break;
7796 }
7797 h++;
7798 }
Willy Tarreaub2513902006-12-17 14:52:38 +01007799 return 1;
7800}
7801
Willy Tarreau4076a152009-04-02 15:18:36 +02007802/*
7803 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007804 * By default it tries to report the error position as msg->err_pos. However if
7805 * this one is not set, it will then report msg->next, which is the last known
7806 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007807 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02007808 */
7809void http_capture_bad_message(struct error_snapshot *es, struct session *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01007810 struct http_msg *msg,
Willy Tarreau078272e2010-12-12 12:46:33 +01007811 int state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02007812{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007813 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007814 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01007815
Willy Tarreau9b28e032012-10-12 23:49:43 +02007816 es->len = MIN(chn->buf->i, sizeof(es->buf));
7817 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007818 len1 = MIN(len1, es->len);
7819 len2 = es->len - len1; /* remaining data if buffer wraps */
7820
Willy Tarreau9b28e032012-10-12 23:49:43 +02007821 memcpy(es->buf, chn->buf->p, len1);
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007822 if (len2)
Willy Tarreau9b28e032012-10-12 23:49:43 +02007823 memcpy(es->buf + len1, chn->buf->data, len2);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007824
Willy Tarreau4076a152009-04-02 15:18:36 +02007825 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007826 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007827 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007828 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007829
Willy Tarreau4076a152009-04-02 15:18:36 +02007830 es->when = date; // user-visible date
7831 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007832 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02007833 es->oe = other_end;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02007834 es->src = s->req->prod->conn->addr.from;
Willy Tarreau078272e2010-12-12 12:46:33 +01007835 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01007836 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007837 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02007838 es->s_flags = s->flags;
7839 es->t_flags = s->txn.flags;
7840 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007841 es->b_out = chn->buf->o;
7842 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007843 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02007844 es->m_clen = msg->chunk_len;
7845 es->m_blen = msg->body_len;
Willy Tarreau4076a152009-04-02 15:18:36 +02007846}
Willy Tarreaub2513902006-12-17 14:52:38 +01007847
Willy Tarreau294c4732011-12-16 21:35:50 +01007848/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
7849 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
7850 * performed over the whole headers. Otherwise it must contain a valid header
7851 * context, initialised with ctx->idx=0 for the first lookup in a series. If
7852 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
7853 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
7854 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
7855 * -1.
7856 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02007857 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02007858unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01007859 struct hdr_idx *idx, int occ,
7860 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02007861{
Willy Tarreau294c4732011-12-16 21:35:50 +01007862 struct hdr_ctx local_ctx;
7863 char *ptr_hist[MAX_HDR_HISTORY];
7864 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02007865 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01007866 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02007867
Willy Tarreau294c4732011-12-16 21:35:50 +01007868 if (!ctx) {
7869 local_ctx.idx = 0;
7870 ctx = &local_ctx;
7871 }
7872
Willy Tarreaubce70882009-09-07 11:51:47 +02007873 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01007874 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007875 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02007876 occ--;
7877 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01007878 *vptr = ctx->line + ctx->val;
7879 *vlen = ctx->vlen;
7880 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02007881 }
7882 }
Willy Tarreau294c4732011-12-16 21:35:50 +01007883 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02007884 }
7885
7886 /* negative occurrence, we scan all the list then walk back */
7887 if (-occ > MAX_HDR_HISTORY)
7888 return 0;
7889
Willy Tarreau294c4732011-12-16 21:35:50 +01007890 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007891 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01007892 ptr_hist[hist_ptr] = ctx->line + ctx->val;
7893 len_hist[hist_ptr] = ctx->vlen;
7894 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02007895 hist_ptr = 0;
7896 found++;
7897 }
7898 if (-occ > found)
7899 return 0;
7900 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
7901 * find occurrence -occ, so we have to check [hist_ptr+occ].
7902 */
7903 hist_ptr += occ;
7904 if (hist_ptr >= MAX_HDR_HISTORY)
7905 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01007906 *vptr = ptr_hist[hist_ptr];
7907 *vlen = len_hist[hist_ptr];
7908 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02007909}
7910
Willy Tarreaubaaee002006-06-26 02:48:02 +02007911/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02007912 * Print a debug line with a header. Always stop at the first CR or LF char,
7913 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
7914 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007915 */
7916void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
7917{
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007918 int max;
7919 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01007920 dir, (unsigned short)t->req->prod->conn->t.sock.fd,
7921 (unsigned short)t->req->cons->conn->t.sock.fd);
Willy Tarreaue92693a2012-09-24 21:13:39 +02007922
7923 for (max = 0; start + max < end; max++)
7924 if (start[max] == '\r' || start[max] == '\n')
7925 break;
7926
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007927 UBOUND(max, trash.size - trash.len - 3);
7928 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
7929 trash.str[trash.len++] = '\n';
7930 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007931}
7932
Willy Tarreau0937bc42009-12-22 15:03:09 +01007933/*
7934 * Initialize a new HTTP transaction for session <s>. It is assumed that all
7935 * the required fields are properly allocated and that we only need to (re)init
7936 * them. This should be used before processing any new request.
7937 */
7938void http_init_txn(struct session *s)
7939{
7940 struct http_txn *txn = &s->txn;
7941 struct proxy *fe = s->fe;
7942
7943 txn->flags = 0;
7944 txn->status = -1;
7945
William Lallemand5f232402012-04-05 18:02:55 +02007946 global.req_count++;
7947
Willy Tarreauf64d1412010-10-07 20:06:11 +02007948 txn->cookie_first_date = 0;
7949 txn->cookie_last_date = 0;
7950
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01007951 txn->req.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02007952 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01007953 txn->req.next = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01007954 txn->rsp.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02007955 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01007956 txn->rsp.next = 0;
Willy Tarreau124d9912011-03-01 20:30:48 +01007957 txn->req.chunk_len = 0LL;
7958 txn->req.body_len = 0LL;
7959 txn->rsp.chunk_len = 0LL;
7960 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007961 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
7962 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreau394db372012-10-12 22:40:39 +02007963 txn->req.chn = s->req;
7964 txn->rsp.chn = s->rep;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007965
7966 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007967
7968 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
7969 if (fe->options2 & PR_O2_REQBUG_OK)
7970 txn->req.err_pos = -1; /* let buggy requests pass */
7971
Willy Tarreau46023632010-01-07 22:51:47 +01007972 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007973 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
7974
Willy Tarreau46023632010-01-07 22:51:47 +01007975 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007976 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
7977
7978 if (txn->hdr_idx.v)
7979 hdr_idx_init(&txn->hdr_idx);
7980}
7981
7982/* to be used at the end of a transaction */
7983void http_end_txn(struct session *s)
7984{
7985 struct http_txn *txn = &s->txn;
7986
7987 /* these ones will have been dynamically allocated */
7988 pool_free2(pool2_requri, txn->uri);
7989 pool_free2(pool2_capture, txn->cli_cookie);
7990 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007991 pool_free2(apools.sessid, txn->sessid);
William Lallemanda73203e2012-03-12 12:48:57 +01007992 pool_free2(pool2_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007993
William Lallemanda73203e2012-03-12 12:48:57 +01007994 s->unique_id = NULL;
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007995 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007996 txn->uri = NULL;
7997 txn->srv_cookie = NULL;
7998 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01007999
8000 if (txn->req.cap) {
8001 struct cap_hdr *h;
8002 for (h = s->fe->req_cap; h; h = h->next)
8003 pool_free2(h->pool, txn->req.cap[h->index]);
8004 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
8005 }
8006
8007 if (txn->rsp.cap) {
8008 struct cap_hdr *h;
8009 for (h = s->fe->rsp_cap; h; h = h->next)
8010 pool_free2(h->pool, txn->rsp.cap[h->index]);
8011 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
8012 }
8013
Willy Tarreau0937bc42009-12-22 15:03:09 +01008014}
8015
8016/* to be used at the end of a transaction to prepare a new one */
8017void http_reset_txn(struct session *s)
8018{
8019 http_end_txn(s);
8020 http_init_txn(s);
8021
8022 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008023 s->logs.logwait = s->fe->to_log;
Simon Hormanaf514952011-06-21 14:34:57 +09008024 session_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008025 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008026 /* re-init store persistence */
8027 s->store_count = 0;
8028
Willy Tarreau0937bc42009-12-22 15:03:09 +01008029 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008030
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02008031 s->req->flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008032
Willy Tarreau739cfba2010-01-25 23:11:14 +01008033 /* We must trim any excess data from the response buffer, because we
8034 * may have blocked an invalid response from a server that we don't
8035 * want to accidentely forward once we disable the analysers, nor do
8036 * we want those data to come along with next response. A typical
8037 * example of such data would be from a buggy server responding to
8038 * a HEAD with some data, or sending more than the advertised
8039 * content-length.
8040 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008041 if (unlikely(s->rep->buf->i))
8042 s->rep->buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008043
Willy Tarreau0937bc42009-12-22 15:03:09 +01008044 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02008045 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008046
Willy Tarreaud04e8582010-05-31 12:31:35 +02008047 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008048 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008049
8050 s->req->rex = TICK_ETERNITY;
8051 s->req->wex = TICK_ETERNITY;
8052 s->req->analyse_exp = TICK_ETERNITY;
8053 s->rep->rex = TICK_ETERNITY;
8054 s->rep->wex = TICK_ETERNITY;
8055 s->rep->analyse_exp = TICK_ETERNITY;
8056}
Willy Tarreau58f10d72006-12-04 02:26:12 +01008057
Willy Tarreauff011f22011-01-06 17:51:27 +01008058void free_http_req_rules(struct list *r) {
8059 struct http_req_rule *tr, *pr;
8060
8061 list_for_each_entry_safe(pr, tr, r, list) {
8062 LIST_DEL(&pr->list);
Willy Tarreau20b0de52012-12-24 15:45:22 +01008063 if (pr->action == HTTP_REQ_ACT_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008064 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01008065
8066 free(pr);
8067 }
8068}
8069
8070struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
8071{
8072 struct http_req_rule *rule;
8073 int cur_arg;
8074
8075 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
8076 if (!rule) {
8077 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008078 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008079 }
8080
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008081 if (!strcmp(args[0], "allow")) {
Willy Tarreauff011f22011-01-06 17:51:27 +01008082 rule->action = HTTP_REQ_ACT_ALLOW;
8083 cur_arg = 1;
8084 } else if (!strcmp(args[0], "deny")) {
8085 rule->action = HTTP_REQ_ACT_DENY;
8086 cur_arg = 1;
Willy Tarreauccbcc372012-12-27 12:37:57 +01008087 } else if (!strcmp(args[0], "tarpit")) {
8088 rule->action = HTTP_REQ_ACT_TARPIT;
8089 cur_arg = 1;
Willy Tarreauff011f22011-01-06 17:51:27 +01008090 } else if (!strcmp(args[0], "auth")) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01008091 rule->action = HTTP_REQ_ACT_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01008092 cur_arg = 1;
8093
8094 while(*args[cur_arg]) {
8095 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008096 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01008097 cur_arg+=2;
8098 continue;
8099 } else
8100 break;
8101 }
Willy Tarreau20b0de52012-12-24 15:45:22 +01008102 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
8103 rule->action = *args[0] == 'a' ? HTTP_REQ_ACT_ADD_HDR : HTTP_REQ_ACT_SET_HDR;
8104 cur_arg = 1;
8105
8106 if (!*args[cur_arg] || !*args[cur_arg+1] || *args[cur_arg+2]) {
8107 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
8108 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008109 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008110 }
8111
8112 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8113 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8114 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreau3bfeadb2013-03-24 07:33:22 +01008115 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, 0);
Willy Tarreau20b0de52012-12-24 15:45:22 +01008116 cur_arg += 2;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008117 } else if (strcmp(args[0], "redirect") == 0) {
8118 struct redirect_rule *redir;
8119 char *errmsg;
8120
8121 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg)) == NULL) {
8122 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
8123 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
8124 goto out_err;
8125 }
8126
8127 /* this redirect rule might already contain a parsed condition which
8128 * we'll pass to the http-request rule.
8129 */
8130 rule->action = HTTP_REQ_ACT_REDIR;
8131 rule->arg.redir = redir;
8132 rule->cond = redir->cond;
8133 redir->cond = NULL;
8134 cur_arg = 2;
8135 return rule;
Willy Tarreauff011f22011-01-06 17:51:27 +01008136 } else {
Baptiste Assmann116eefe2013-01-05 16:02:07 +01008137 Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', but got '%s'%s.\n",
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008138 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01008139 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008140 }
8141
8142 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
8143 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02008144 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008145
Willy Tarreaub7451bb2012-04-27 12:38:15 +02008146 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
8147 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
8148 file, linenum, args[0], errmsg);
8149 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008150 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008151 }
8152 rule->cond = cond;
8153 }
8154 else if (*args[cur_arg]) {
8155 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
8156 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
8157 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008158 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008159 }
8160
8161 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008162 out_err:
8163 free(rule);
8164 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008165}
8166
Willy Tarreau4baae242012-12-27 12:00:31 +01008167/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
8168 * with <err> filled with the error message.
8169 */
8170struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
8171 const char **args, char **errmsg)
8172{
8173 struct redirect_rule *rule;
8174 int cur_arg;
8175 int type = REDIRECT_TYPE_NONE;
8176 int code = 302;
8177 const char *destination = NULL;
8178 const char *cookie = NULL;
8179 int cookie_set = 0;
8180 unsigned int flags = REDIRECT_FLAG_NONE;
8181 struct acl_cond *cond = NULL;
8182
8183 cur_arg = 0;
8184 while (*(args[cur_arg])) {
8185 if (strcmp(args[cur_arg], "location") == 0) {
8186 if (!*args[cur_arg + 1])
8187 goto missing_arg;
8188
8189 type = REDIRECT_TYPE_LOCATION;
8190 cur_arg++;
8191 destination = args[cur_arg];
8192 }
8193 else if (strcmp(args[cur_arg], "prefix") == 0) {
8194 if (!*args[cur_arg + 1])
8195 goto missing_arg;
8196
8197 type = REDIRECT_TYPE_PREFIX;
8198 cur_arg++;
8199 destination = args[cur_arg];
8200 }
8201 else if (strcmp(args[cur_arg], "scheme") == 0) {
8202 if (!*args[cur_arg + 1])
8203 goto missing_arg;
8204
8205 type = REDIRECT_TYPE_SCHEME;
8206 cur_arg++;
8207 destination = args[cur_arg];
8208 }
8209 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
8210 if (!*args[cur_arg + 1])
8211 goto missing_arg;
8212
8213 cur_arg++;
8214 cookie = args[cur_arg];
8215 cookie_set = 1;
8216 }
8217 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
8218 if (!*args[cur_arg + 1])
8219 goto missing_arg;
8220
8221 cur_arg++;
8222 cookie = args[cur_arg];
8223 cookie_set = 0;
8224 }
8225 else if (strcmp(args[cur_arg], "code") == 0) {
8226 if (!*args[cur_arg + 1])
8227 goto missing_arg;
8228
8229 cur_arg++;
8230 code = atol(args[cur_arg]);
8231 if (code < 301 || code > 303) {
8232 memprintf(errmsg,
8233 "'%s': unsupported HTTP code '%s' (must be a number between 301 and 303)",
8234 args[cur_arg - 1], args[cur_arg]);
8235 return NULL;
8236 }
8237 }
8238 else if (!strcmp(args[cur_arg],"drop-query")) {
8239 flags |= REDIRECT_FLAG_DROP_QS;
8240 }
8241 else if (!strcmp(args[cur_arg],"append-slash")) {
8242 flags |= REDIRECT_FLAG_APPEND_SLASH;
8243 }
8244 else if (strcmp(args[cur_arg], "if") == 0 ||
8245 strcmp(args[cur_arg], "unless") == 0) {
8246 cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg);
8247 if (!cond) {
8248 memprintf(errmsg, "error in condition: %s", *errmsg);
8249 return NULL;
8250 }
8251 break;
8252 }
8253 else {
8254 memprintf(errmsg,
8255 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
8256 args[cur_arg]);
8257 return NULL;
8258 }
8259 cur_arg++;
8260 }
8261
8262 if (type == REDIRECT_TYPE_NONE) {
8263 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
8264 return NULL;
8265 }
8266
8267 rule = (struct redirect_rule *)calloc(1, sizeof(*rule));
8268 rule->cond = cond;
8269 rule->rdr_str = strdup(destination);
8270 rule->rdr_len = strlen(destination);
8271 if (cookie) {
8272 /* depending on cookie_set, either we want to set the cookie, or to clear it.
8273 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
8274 */
8275 rule->cookie_len = strlen(cookie);
8276 if (cookie_set) {
8277 rule->cookie_str = malloc(rule->cookie_len + 10);
8278 memcpy(rule->cookie_str, cookie, rule->cookie_len);
8279 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
8280 rule->cookie_len += 9;
8281 } else {
8282 rule->cookie_str = malloc(rule->cookie_len + 21);
8283 memcpy(rule->cookie_str, cookie, rule->cookie_len);
8284 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
8285 rule->cookie_len += 20;
8286 }
8287 }
8288 rule->type = type;
8289 rule->code = code;
8290 rule->flags = flags;
8291 LIST_INIT(&rule->list);
8292 return rule;
8293
8294 missing_arg:
8295 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
8296 return NULL;
8297}
8298
Willy Tarreau8797c062007-05-07 00:55:35 +02008299/************************************************************************/
8300/* The code below is dedicated to ACL parsing and matching */
8301/************************************************************************/
8302
8303
Willy Tarreau14174bc2012-04-16 14:34:04 +02008304/* This function ensures that the prerequisites for an L7 fetch are ready,
8305 * which means that a request or response is ready. If some data is missing,
8306 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +02008307 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
8308 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +02008309 *
8310 * The function returns :
8311 * 0 if some data is missing or if the requested data cannot be fetched
8312 * -1 if it is certain that we'll never have any HTTP message there
8313 * 1 if an HTTP message is ready
8314 */
8315static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008316acl_prefetch_http(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008317 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +02008318{
8319 struct http_txn *txn = l7;
8320 struct http_msg *msg = &txn->req;
8321
8322 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
8323 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
8324 */
8325
8326 if (unlikely(!s || !txn))
8327 return 0;
8328
8329 /* Check for a dependency on a request */
Willy Tarreauf853c462012-04-23 18:53:56 +02008330 smp->type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +02008331
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008332 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02008333 if (unlikely(!s->req))
8334 return 0;
8335
8336 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02008337 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02008338 buffer_full(s->req->buf, global.tune.maxrewrite)) {
Willy Tarreau197e10a2012-04-23 19:18:42 +02008339 smp->data.uint = 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02008340 return -1;
8341 }
8342
8343 /* Try to decode HTTP request */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008344 if (likely(msg->next < s->req->buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +02008345 http_msg_analyzer(msg, &txn->hdr_idx);
8346
8347 /* Still no valid request ? */
8348 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02008349 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02008350 buffer_full(s->req->buf, global.tune.maxrewrite)) {
Willy Tarreau197e10a2012-04-23 19:18:42 +02008351 smp->data.uint = 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02008352 return -1;
8353 }
8354 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +02008355 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02008356 return 0;
8357 }
8358
8359 /* OK we just got a valid HTTP request. We have some minor
8360 * preparation to perform so that further checks can rely
8361 * on HTTP tests.
8362 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008363 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +02008364 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
8365 s->flags |= SN_REDIRECTABLE;
8366
8367 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn)) {
Willy Tarreau197e10a2012-04-23 19:18:42 +02008368 smp->data.uint = 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02008369 return -1;
8370 }
8371 }
8372
Willy Tarreau24e32d82012-04-23 23:55:44 +02008373 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
Willy Tarreau14174bc2012-04-16 14:34:04 +02008374 return 0; /* data might have moved and indexes changed */
8375
8376 /* otherwise everything's ready for the request */
8377 }
Willy Tarreau24e32d82012-04-23 23:55:44 +02008378 else {
8379 /* Check for a dependency on a response */
Willy Tarreau14174bc2012-04-16 14:34:04 +02008380 if (txn->rsp.msg_state < HTTP_MSG_BODY)
8381 return 0;
8382 }
8383
8384 /* everything's OK */
8385 return 1;
8386}
Willy Tarreau8797c062007-05-07 00:55:35 +02008387
Willy Tarreauc0239e02012-04-16 14:42:55 +02008388#define CHECK_HTTP_MESSAGE_FIRST() \
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008389 do { int r = acl_prefetch_http(px, l4, l7, opt, args, smp, 1); if (r <= 0) return r; } while (0)
Willy Tarreauc0239e02012-04-16 14:42:55 +02008390
Willy Tarreau24e32d82012-04-23 23:55:44 +02008391#define CHECK_HTTP_MESSAGE_FIRST_PERM() \
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008392 do { int r = acl_prefetch_http(px, l4, l7, opt, args, smp, 0); if (r <= 0) return r; } while (0)
Willy Tarreau24e32d82012-04-23 23:55:44 +02008393
Willy Tarreau8797c062007-05-07 00:55:35 +02008394
8395/* 1. Check on METHOD
8396 * We use the pre-parsed method if it is known, and store its number as an
8397 * integer. If it is unknown, we use the pointer and the length.
8398 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02008399static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +02008400{
8401 int len, meth;
8402
Willy Tarreauae8b7962007-06-09 23:10:04 +02008403 len = strlen(*text);
8404 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02008405
8406 pattern->val.i = meth;
8407 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02008408 pattern->ptr.str = strdup(*text);
Willy Tarreau7dcb6482012-04-27 17:52:25 +02008409 if (!pattern->ptr.str) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02008410 memprintf(err, "out of memory while loading pattern");
Willy Tarreau8797c062007-05-07 00:55:35 +02008411 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02008412 }
Willy Tarreau8797c062007-05-07 00:55:35 +02008413 pattern->len = len;
8414 }
8415 return 1;
8416}
8417
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008418/* This function fetches the method of current HTTP request and stores
8419 * it in the global pattern struct as a chunk. There are two possibilities :
8420 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
8421 * in <len> and <ptr> is NULL ;
8422 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
8423 * <len> to its length.
8424 * This is intended to be used with acl_match_meth() only.
8425 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02008426static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008427acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008428 const struct arg *args, struct sample *smp)
Willy Tarreau8797c062007-05-07 00:55:35 +02008429{
8430 int meth;
8431 struct http_txn *txn = l7;
8432
Willy Tarreau24e32d82012-04-23 23:55:44 +02008433 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +02008434
Willy Tarreau8797c062007-05-07 00:55:35 +02008435 meth = txn->meth;
Willy Tarreauf853c462012-04-23 18:53:56 +02008436 smp->type = SMP_T_UINT;
8437 smp->data.uint = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +02008438 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02008439 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8440 /* ensure the indexes are not affected */
8441 return 0;
Willy Tarreauf853c462012-04-23 18:53:56 +02008442 smp->type = SMP_T_CSTR;
8443 smp->data.str.len = txn->req.sl.rq.m_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008444 smp->data.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02008445 }
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02008446 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02008447 return 1;
8448}
8449
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008450/* See above how the method is stored in the global pattern */
Willy Tarreau37406352012-04-23 16:16:37 +02008451static int acl_match_meth(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreau8797c062007-05-07 00:55:35 +02008452{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02008453 int icase;
8454
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008455
Willy Tarreauf853c462012-04-23 18:53:56 +02008456 if (smp->type == SMP_T_UINT) {
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008457 /* well-known method */
Willy Tarreauf853c462012-04-23 18:53:56 +02008458 if (smp->data.uint == pattern->val.i)
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008459 return ACL_PAT_PASS;
Willy Tarreau11382812008-07-09 16:18:21 +02008460 return ACL_PAT_FAIL;
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008461 }
Willy Tarreau8797c062007-05-07 00:55:35 +02008462
Willy Tarreau8e5e9552011-12-16 15:38:49 +01008463 /* Uncommon method, only HTTP_METH_OTHER is accepted now */
8464 if (pattern->val.i != HTTP_METH_OTHER)
8465 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02008466
8467 /* Other method, we must compare the strings */
Willy Tarreauf853c462012-04-23 18:53:56 +02008468 if (pattern->len != smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +02008469 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02008470
8471 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +02008472 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) != 0) ||
8473 (!icase && strncmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02008474 return ACL_PAT_FAIL;
8475 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02008476}
8477
8478/* 2. Check on Request/Status Version
8479 * We simply compare strings here.
8480 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02008481static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +02008482{
Willy Tarreauae8b7962007-06-09 23:10:04 +02008483 pattern->ptr.str = strdup(*text);
Willy Tarreau7dcb6482012-04-27 17:52:25 +02008484 if (!pattern->ptr.str) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02008485 memprintf(err, "out of memory while loading pattern");
Willy Tarreau8797c062007-05-07 00:55:35 +02008486 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02008487 }
Willy Tarreauae8b7962007-06-09 23:10:04 +02008488 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02008489 return 1;
8490}
8491
Willy Tarreaud41f8d82007-06-10 10:06:18 +02008492static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008493acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008494 const struct arg *args, struct sample *smp)
Willy Tarreau8797c062007-05-07 00:55:35 +02008495{
8496 struct http_txn *txn = l7;
8497 char *ptr;
8498 int len;
8499
Willy Tarreauc0239e02012-04-16 14:42:55 +02008500 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02008501
Willy Tarreau8797c062007-05-07 00:55:35 +02008502 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008503 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02008504
8505 while ((len-- > 0) && (*ptr++ != '/'));
8506 if (len <= 0)
8507 return 0;
8508
Willy Tarreauf853c462012-04-23 18:53:56 +02008509 smp->type = SMP_T_CSTR;
8510 smp->data.str.str = ptr;
8511 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02008512
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02008513 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02008514 return 1;
8515}
8516
Willy Tarreaud41f8d82007-06-10 10:06:18 +02008517static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008518acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008519 const struct arg *args, struct sample *smp)
Willy Tarreau8797c062007-05-07 00:55:35 +02008520{
8521 struct http_txn *txn = l7;
8522 char *ptr;
8523 int len;
8524
Willy Tarreauc0239e02012-04-16 14:42:55 +02008525 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02008526
Willy Tarreauf26b2522012-12-14 08:33:14 +01008527 if (txn->rsp.msg_state < HTTP_MSG_BODY)
8528 return 0;
8529
Willy Tarreau8797c062007-05-07 00:55:35 +02008530 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008531 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02008532
8533 while ((len-- > 0) && (*ptr++ != '/'));
8534 if (len <= 0)
8535 return 0;
8536
Willy Tarreauf853c462012-04-23 18:53:56 +02008537 smp->type = SMP_T_CSTR;
8538 smp->data.str.str = ptr;
8539 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02008540
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02008541 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02008542 return 1;
8543}
8544
8545/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02008546static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008547acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008548 const struct arg *args, struct sample *smp)
Willy Tarreau8797c062007-05-07 00:55:35 +02008549{
8550 struct http_txn *txn = l7;
8551 char *ptr;
8552 int len;
8553
Willy Tarreauc0239e02012-04-16 14:42:55 +02008554 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02008555
Willy Tarreauf26b2522012-12-14 08:33:14 +01008556 if (txn->rsp.msg_state < HTTP_MSG_BODY)
8557 return 0;
8558
Willy Tarreau8797c062007-05-07 00:55:35 +02008559 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008560 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02008561
Willy Tarreauf853c462012-04-23 18:53:56 +02008562 smp->type = SMP_T_UINT;
8563 smp->data.uint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +02008564 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02008565 return 1;
8566}
8567
8568/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02008569static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02008570smp_fetch_url(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008571 const struct arg *args, struct sample *smp)
Willy Tarreau8797c062007-05-07 00:55:35 +02008572{
8573 struct http_txn *txn = l7;
8574
Willy Tarreauc0239e02012-04-16 14:42:55 +02008575 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02008576
Willy Tarreauf853c462012-04-23 18:53:56 +02008577 smp->type = SMP_T_CSTR;
8578 smp->data.str.len = txn->req.sl.rq.u_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008579 smp->data.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau37406352012-04-23 16:16:37 +02008580 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02008581 return 1;
8582}
8583
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008584static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02008585smp_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008586 const struct arg *args, struct sample *smp)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008587{
8588 struct http_txn *txn = l7;
8589
Willy Tarreauc0239e02012-04-16 14:42:55 +02008590 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008591
8592 /* Parse HTTP request */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02008593 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->conn->addr.to);
8594 if (((struct sockaddr_in *)&l4->req->cons->conn->addr.to)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +01008595 return 0;
Willy Tarreauf853c462012-04-23 18:53:56 +02008596 smp->type = SMP_T_IPV4;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02008597 smp->data.ipv4 = ((struct sockaddr_in *)&l4->req->cons->conn->addr.to)->sin_addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008598
8599 /*
8600 * If we are parsing url in frontend space, we prepare backend stage
8601 * to not parse again the same url ! optimization lazyness...
8602 */
8603 if (px->options & PR_O_HTTP_PROXY)
8604 l4->flags |= SN_ADDR_SET;
8605
Willy Tarreau37406352012-04-23 16:16:37 +02008606 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008607 return 1;
8608}
8609
8610static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02008611smp_fetch_url_port(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008612 const struct arg *args, struct sample *smp)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008613{
8614 struct http_txn *txn = l7;
8615
Willy Tarreauc0239e02012-04-16 14:42:55 +02008616 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008617
8618 /* Same optimization as url_ip */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02008619 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->conn->addr.to);
Willy Tarreauf853c462012-04-23 18:53:56 +02008620 smp->type = SMP_T_UINT;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02008621 smp->data.uint = ntohs(((struct sockaddr_in *)&l4->req->cons->conn->addr.to)->sin_port);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008622
8623 if (px->options & PR_O_HTTP_PROXY)
8624 l4->flags |= SN_ADDR_SET;
8625
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02008626 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01008627 return 1;
8628}
8629
Willy Tarreau185b5c42012-04-26 15:11:51 +02008630/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
8631 * Accepts an optional argument of type string containing the header field name,
8632 * and an optional argument of type signed or unsigned integer to request an
8633 * explicit occurrence of the header. Note that in the event of a missing name,
8634 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +02008635 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02008636static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02008637smp_fetch_hdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008638 const struct arg *args, struct sample *smp)
Willy Tarreau33a7e692007-06-10 19:45:56 +02008639{
8640 struct http_txn *txn = l7;
8641 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreau37406352012-04-23 16:16:37 +02008642 struct hdr_ctx *ctx = (struct hdr_ctx *)smp->ctx.a;
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008643 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau185b5c42012-04-26 15:11:51 +02008644 int occ = 0;
8645 const char *name_str = NULL;
8646 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +02008647
Willy Tarreau185b5c42012-04-26 15:11:51 +02008648 if (args) {
8649 if (args[0].type != ARGT_STR)
8650 return 0;
8651 name_str = args[0].data.str.str;
8652 name_len = args[0].data.str.len;
8653
8654 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
8655 occ = args[1].data.uint;
8656 }
Willy Tarreau34db1082012-04-19 17:16:54 +02008657
Willy Tarreaue333ec92012-04-16 16:26:40 +02008658 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +02008659
Willy Tarreau185b5c42012-04-26 15:11:51 +02008660 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +02008661 /* search for header from the beginning */
8662 ctx->idx = 0;
8663
Willy Tarreau185b5c42012-04-26 15:11:51 +02008664 if (!occ && !(opt & SMP_OPT_ITERATE))
8665 /* no explicit occurrence and single fetch => last header by default */
8666 occ = -1;
8667
8668 if (!occ)
8669 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +02008670 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +01008671
Willy Tarreau185b5c42012-04-26 15:11:51 +02008672 smp->type = SMP_T_CSTR;
8673 smp->flags |= SMP_F_VOL_HDR;
8674 if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len))
Willy Tarreau33a7e692007-06-10 19:45:56 +02008675 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008676
Willy Tarreau37406352012-04-23 16:16:37 +02008677 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008678 return 0;
8679}
8680
Willy Tarreauc11416f2007-06-17 16:58:38 +02008681/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +02008682 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +02008683 */
8684static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02008685smp_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008686 const struct arg *args, struct sample *smp)
Willy Tarreau33a7e692007-06-10 19:45:56 +02008687{
8688 struct http_txn *txn = l7;
8689 struct hdr_idx *idx = &txn->hdr_idx;
8690 struct hdr_ctx ctx;
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008691 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008692 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02008693
Willy Tarreau24e32d82012-04-23 23:55:44 +02008694 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +02008695 return 0;
8696
Willy Tarreaue333ec92012-04-16 16:26:40 +02008697 CHECK_HTTP_MESSAGE_FIRST();
8698
Willy Tarreau33a7e692007-06-10 19:45:56 +02008699 ctx.idx = 0;
8700 cnt = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008701 while (http_find_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau33a7e692007-06-10 19:45:56 +02008702 cnt++;
8703
Willy Tarreauf853c462012-04-23 18:53:56 +02008704 smp->type = SMP_T_UINT;
8705 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +02008706 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008707 return 1;
8708}
8709
Willy Tarreau185b5c42012-04-26 15:11:51 +02008710/* Fetch an HTTP header's integer value. The integer value is returned. It
8711 * takes a mandatory argument of type string and an optional one of type int
8712 * to designate a specific occurrence. It returns an unsigned integer, which
8713 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +02008714 */
8715static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02008716smp_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008717 const struct arg *args, struct sample *smp)
Willy Tarreau33a7e692007-06-10 19:45:56 +02008718{
Willy Tarreau185b5c42012-04-26 15:11:51 +02008719 int ret = smp_fetch_hdr(px, l4, l7, opt, args, smp);
Willy Tarreaue333ec92012-04-16 16:26:40 +02008720
Willy Tarreauf853c462012-04-23 18:53:56 +02008721 if (ret > 0) {
8722 smp->type = SMP_T_UINT;
8723 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
8724 }
Willy Tarreau33a7e692007-06-10 19:45:56 +02008725
Willy Tarreaud53e2422012-04-16 17:21:11 +02008726 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008727}
8728
Cyril Bonté69fa9922012-10-25 00:01:06 +02008729/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
8730 * and an optional one of type int to designate a specific occurrence.
8731 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +02008732 */
8733static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02008734smp_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008735 const struct arg *args, struct sample *smp)
Willy Tarreau106f9792009-09-19 07:54:16 +02008736{
Willy Tarreaud53e2422012-04-16 17:21:11 +02008737 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +02008738
Willy Tarreau185b5c42012-04-26 15:11:51 +02008739 while ((ret = smp_fetch_hdr(px, l4, l7, opt, args, smp)) > 0) {
Cyril Bonté69fa9922012-10-25 00:01:06 +02008740 if (url2ipv4((char *)smp->data.str.str, &smp->data.ipv4)) {
8741 smp->type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +02008742 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +02008743 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +01008744 struct chunk *temp = get_trash_chunk();
Cyril Bonté69fa9922012-10-25 00:01:06 +02008745 if (smp->data.str.len < temp->size - 1) {
8746 memcpy(temp->str, smp->data.str.str, smp->data.str.len);
8747 temp->str[smp->data.str.len] = '\0';
8748 if (inet_pton(AF_INET6, temp->str, &smp->data.ipv6)) {
8749 smp->type = SMP_T_IPV6;
8750 break;
8751 }
8752 }
8753 }
8754
Willy Tarreaud53e2422012-04-16 17:21:11 +02008755 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +02008756 if (!(smp->flags & SMP_F_NOT_LAST))
8757 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +02008758 }
Willy Tarreaud53e2422012-04-16 17:21:11 +02008759 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +02008760}
8761
Willy Tarreau737b0c12007-06-10 21:28:46 +02008762/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
8763 * the first '/' after the possible hostname, and ends before the possible '?'.
8764 */
8765static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02008766smp_fetch_path(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008767 const struct arg *args, struct sample *smp)
Willy Tarreau737b0c12007-06-10 21:28:46 +02008768{
8769 struct http_txn *txn = l7;
8770 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008771
Willy Tarreauc0239e02012-04-16 14:42:55 +02008772 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02008773
Willy Tarreau9b28e032012-10-12 23:49:43 +02008774 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +01008775 ptr = http_get_path(txn);
8776 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02008777 return 0;
8778
8779 /* OK, we got the '/' ! */
Willy Tarreauf853c462012-04-23 18:53:56 +02008780 smp->type = SMP_T_CSTR;
8781 smp->data.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +02008782
8783 while (ptr < end && *ptr != '?')
8784 ptr++;
8785
Willy Tarreauf853c462012-04-23 18:53:56 +02008786 smp->data.str.len = ptr - smp->data.str.str;
Willy Tarreau37406352012-04-23 16:16:37 +02008787 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau737b0c12007-06-10 21:28:46 +02008788 return 1;
8789}
8790
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02008791/* This produces a concatenation of the first occurrence of the Host header
8792 * followed by the path component if it begins with a slash ('/'). This means
8793 * that '*' will not be added, resulting in exactly the first Host entry.
8794 * If no Host header is found, then the path is returned as-is. The returned
8795 * value is stored in the trash so it does not need to be marked constant.
8796 */
8797static int
8798smp_fetch_base(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
8799 const struct arg *args, struct sample *smp)
8800{
8801 struct http_txn *txn = l7;
8802 char *ptr, *end, *beg;
8803 struct hdr_ctx ctx;
8804
8805 CHECK_HTTP_MESSAGE_FIRST();
8806
8807 ctx.idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008808 if (!http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx) ||
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02008809 !ctx.vlen)
8810 return smp_fetch_path(px, l4, l7, opt, args, smp);
8811
8812 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008813 memcpy(trash.str, ctx.line + ctx.val, ctx.vlen);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02008814 smp->type = SMP_T_STR;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008815 smp->data.str.str = trash.str;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02008816 smp->data.str.len = ctx.vlen;
8817
8818 /* now retrieve the path */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008819 end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02008820 beg = http_get_path(txn);
8821 if (!beg)
8822 beg = end;
8823
8824 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
8825
8826 if (beg < ptr && *beg == '/') {
8827 memcpy(smp->data.str.str + smp->data.str.len, beg, ptr - beg);
8828 smp->data.str.len += ptr - beg;
8829 }
8830
8831 smp->flags = SMP_F_VOL_1ST;
8832 return 1;
8833}
8834
Willy Tarreauab1f7b72012-12-09 13:38:54 +01008835/* This produces a 32-bit hash of the concatenation of the first occurrence of
8836 * the Host header followed by the path component if it begins with a slash ('/').
8837 * This means that '*' will not be added, resulting in exactly the first Host
8838 * entry. If no Host header is found, then the path is used. The resulting value
8839 * is hashed using the url hash followed by a full avalanche hash and provides a
8840 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
8841 * high-traffic sites without having to store whole paths.
8842 */
8843static int
8844smp_fetch_base32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
8845 const struct arg *args, struct sample *smp)
8846{
8847 struct http_txn *txn = l7;
8848 struct hdr_ctx ctx;
8849 unsigned int hash = 0;
8850 char *ptr, *beg, *end;
8851 int len;
8852
8853 CHECK_HTTP_MESSAGE_FIRST();
8854
8855 ctx.idx = 0;
8856 if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) {
8857 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
8858 ptr = ctx.line + ctx.val;
8859 len = ctx.vlen;
8860 while (len--)
8861 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
8862 }
8863
8864 /* now retrieve the path */
8865 end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
8866 beg = http_get_path(txn);
8867 if (!beg)
8868 beg = end;
8869
8870 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
8871
8872 if (beg < ptr && *beg == '/') {
8873 while (beg < ptr)
8874 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
8875 }
8876 hash = full_hash(hash);
8877
8878 smp->type = SMP_T_UINT;
8879 smp->data.uint = hash;
8880 smp->flags = SMP_F_VOL_1ST;
8881 return 1;
8882}
8883
Willy Tarreau4a550602012-12-09 14:53:32 +01008884/* This concatenates the source address with the 32-bit hash of the Host and
8885 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
8886 * per-url counters. The result is a binary block from 8 to 20 bytes depending
8887 * on the source address length. The URL hash is stored before the address so
8888 * that in environments where IPv6 is insignificant, truncating the output to
8889 * 8 bytes would still work.
8890 */
8891static int
8892smp_fetch_base32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
8893 const struct arg *args, struct sample *smp)
8894{
Willy Tarreau47ca5452012-12-23 20:22:19 +01008895 struct chunk *temp;
Willy Tarreau4a550602012-12-09 14:53:32 +01008896
8897 if (!smp_fetch_base32(px, l4, l7, opt, args, smp))
8898 return 0;
8899
Willy Tarreau47ca5452012-12-23 20:22:19 +01008900 temp = get_trash_chunk();
Willy Tarreau4a550602012-12-09 14:53:32 +01008901 memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint));
8902 temp->len += sizeof(smp->data.uint);
8903
8904 switch (l4->si[0].conn->addr.from.ss_family) {
8905 case AF_INET:
8906 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&l4->si[0].conn->addr.from)->sin_addr, 4);
8907 temp->len += 4;
8908 break;
8909 case AF_INET6:
8910 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)(&l4->si[0].conn->addr.from))->sin6_addr, 16);
8911 temp->len += 16;
8912 break;
8913 default:
8914 return 0;
8915 }
8916
8917 smp->data.str = *temp;
8918 smp->type = SMP_T_BIN;
8919 return 1;
8920}
8921
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008922static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008923acl_fetch_proto_http(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008924 const struct arg *args, struct sample *smp)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008925{
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008926 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
8927 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
8928 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008929
Willy Tarreau24e32d82012-04-23 23:55:44 +02008930 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008931
Willy Tarreauf853c462012-04-23 18:53:56 +02008932 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +02008933 smp->data.uint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008934 return 1;
8935}
8936
Willy Tarreau7f18e522010-10-22 20:04:13 +02008937/* return a valid test if the current request is the first one on the connection */
8938static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008939acl_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008940 const struct arg *args, struct sample *smp)
Willy Tarreau7f18e522010-10-22 20:04:13 +02008941{
8942 if (!s)
8943 return 0;
8944
Willy Tarreauf853c462012-04-23 18:53:56 +02008945 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +02008946 smp->data.uint = !(s->txn.flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +02008947 return 1;
8948}
8949
Willy Tarreau34db1082012-04-19 17:16:54 +02008950/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008951static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02008952acl_fetch_http_auth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02008953 const struct arg *args, struct sample *smp)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008954{
8955
Willy Tarreau24e32d82012-04-23 23:55:44 +02008956 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +02008957 return 0;
8958
Willy Tarreauc0239e02012-04-16 14:42:55 +02008959 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008960
Willy Tarreauc0239e02012-04-16 14:42:55 +02008961 if (!get_http_auth(l4))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008962 return 0;
8963
Willy Tarreauf853c462012-04-23 18:53:56 +02008964 smp->type = SMP_T_BOOL;
Willy Tarreau24e32d82012-04-23 23:55:44 +02008965 smp->data.uint = check_user(args->data.usr, 0, l4->txn.auth.user, l4->txn.auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008966 return 1;
8967}
Willy Tarreau8797c062007-05-07 00:55:35 +02008968
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02008969/* Accepts exactly 1 argument of type userlist */
8970static int
8971acl_fetch_http_auth_grp(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
8972 const struct arg *args, struct sample *smp)
8973{
8974
8975 if (!args || args->type != ARGT_USR)
8976 return 0;
8977
8978 CHECK_HTTP_MESSAGE_FIRST();
8979
8980 if (!get_http_auth(l4))
8981 return 0;
8982
8983 /* acl_match_auth() will need several information at once */
8984 smp->ctx.a[0] = args->data.usr; /* user list */
8985 smp->ctx.a[1] = l4->txn.auth.user; /* user name */
8986 smp->ctx.a[2] = l4->txn.auth.pass; /* password */
8987
8988 /* if the user does not belong to the userlist or has a wrong password,
8989 * report that it unconditionally does not match. Otherwise we return
8990 * a non-zero integer which will be ignored anyway since all the params
8991 * that acl_match_auth() will use are in test->ctx.a[0,1,2].
8992 */
8993 smp->type = SMP_T_BOOL;
8994 smp->data.uint = check_user(args->data.usr, 0, l4->txn.auth.user, l4->txn.auth.pass);
8995 if (smp->data.uint)
8996 smp->type = SMP_T_UINT;
8997
8998 return 1;
8999}
9000
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009001/* Try to find the next occurrence of a cookie name in a cookie header value.
9002 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
9003 * the cookie value is returned into *value and *value_l, and the function
9004 * returns a pointer to the next pointer to search from if the value was found.
9005 * Otherwise if the cookie was not found, NULL is returned and neither value
9006 * nor value_l are touched. The input <hdr> string should first point to the
9007 * header's value, and the <hdr_end> pointer must point to the first character
9008 * not part of the value. <list> must be non-zero if value may represent a list
9009 * of values (cookie headers). This makes it faster to abort parsing when no
9010 * list is expected.
9011 */
9012static char *
9013extract_cookie_value(char *hdr, const char *hdr_end,
9014 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +02009015 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009016{
9017 char *equal, *att_end, *att_beg, *val_beg, *val_end;
9018 char *next;
9019
9020 /* we search at least a cookie name followed by an equal, and more
9021 * generally something like this :
9022 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
9023 */
9024 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
9025 /* Iterate through all cookies on this line */
9026
9027 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
9028 att_beg++;
9029
9030 /* find att_end : this is the first character after the last non
9031 * space before the equal. It may be equal to hdr_end.
9032 */
9033 equal = att_end = att_beg;
9034
9035 while (equal < hdr_end) {
9036 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
9037 break;
9038 if (http_is_spht[(unsigned char)*equal++])
9039 continue;
9040 att_end = equal;
9041 }
9042
9043 /* here, <equal> points to '=', a delimitor or the end. <att_end>
9044 * is between <att_beg> and <equal>, both may be identical.
9045 */
9046
9047 /* look for end of cookie if there is an equal sign */
9048 if (equal < hdr_end && *equal == '=') {
9049 /* look for the beginning of the value */
9050 val_beg = equal + 1;
9051 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
9052 val_beg++;
9053
9054 /* find the end of the value, respecting quotes */
9055 next = find_cookie_value_end(val_beg, hdr_end);
9056
9057 /* make val_end point to the first white space or delimitor after the value */
9058 val_end = next;
9059 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
9060 val_end--;
9061 } else {
9062 val_beg = val_end = next = equal;
9063 }
9064
9065 /* We have nothing to do with attributes beginning with '$'. However,
9066 * they will automatically be removed if a header before them is removed,
9067 * since they're supposed to be linked together.
9068 */
9069 if (*att_beg == '$')
9070 continue;
9071
9072 /* Ignore cookies with no equal sign */
9073 if (equal == next)
9074 continue;
9075
9076 /* Now we have the cookie name between att_beg and att_end, and
9077 * its value between val_beg and val_end.
9078 */
9079
9080 if (att_end - att_beg == cookie_name_l &&
9081 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
9082 /* let's return this value and indicate where to go on from */
9083 *value = val_beg;
9084 *value_l = val_end - val_beg;
9085 return next + 1;
9086 }
9087
9088 /* Set-Cookie headers only have the name in the first attr=value part */
9089 if (!list)
9090 break;
9091 }
9092
9093 return NULL;
9094}
9095
Willy Tarreaue333ec92012-04-16 16:26:40 +02009096/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +02009097 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
9098 * end-of-header-value, and smp->ctx.a[2] for the hdr_idx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +02009099 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +02009100 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +02009101 * Accepts exactly 1 argument of type string. If the input options indicate
9102 * that no iterating is desired, then only last value is fetched if any.
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009103 */
9104static int
Willy Tarreau51539362012-05-08 12:46:28 +02009105smp_fetch_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9106 const struct arg *args, struct sample *smp)
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009107{
9108 struct http_txn *txn = l7;
9109 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreau37406352012-04-23 16:16:37 +02009110 struct hdr_ctx *ctx = (struct hdr_ctx *)&smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +02009111 const struct http_msg *msg;
9112 const char *hdr_name;
9113 int hdr_name_len;
9114 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +02009115 int occ = 0;
9116 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +02009117
Willy Tarreau24e32d82012-04-23 23:55:44 +02009118 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +02009119 return 0;
9120
Willy Tarreaue333ec92012-04-16 16:26:40 +02009121 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009122
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009123 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +02009124 msg = &txn->req;
9125 hdr_name = "Cookie";
9126 hdr_name_len = 6;
9127 } else {
9128 msg = &txn->rsp;
9129 hdr_name = "Set-Cookie";
9130 hdr_name_len = 10;
9131 }
9132
Willy Tarreau28376d62012-04-26 21:26:10 +02009133 if (!occ && !(opt & SMP_OPT_ITERATE))
9134 /* no explicit occurrence and single fetch => last cookie by default */
9135 occ = -1;
9136
9137 /* OK so basically here, either we want only one value and it's the
9138 * last one, or we want to iterate over all of them and we fetch the
9139 * next one.
9140 */
9141
Willy Tarreau9b28e032012-10-12 23:49:43 +02009142 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +02009143 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009144 /* search for the header from the beginning, we must first initialize
9145 * the search parameters.
9146 */
Willy Tarreau37406352012-04-23 16:16:37 +02009147 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009148 ctx->idx = 0;
9149 }
9150
Willy Tarreau28376d62012-04-26 21:26:10 +02009151 smp->flags |= SMP_F_VOL_HDR;
9152
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009153 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +02009154 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
9155 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009156 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
9157 goto out;
9158
Willy Tarreau24e32d82012-04-23 23:55:44 +02009159 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009160 continue;
9161
Willy Tarreau37406352012-04-23 16:16:37 +02009162 smp->ctx.a[0] = ctx->line + ctx->val;
9163 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009164 }
9165
Willy Tarreauf853c462012-04-23 18:53:56 +02009166 smp->type = SMP_T_CSTR;
Willy Tarreau37406352012-04-23 16:16:37 +02009167 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +02009168 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009169 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +02009170 &smp->data.str.str,
9171 &smp->data.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +02009172 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +02009173 found = 1;
9174 if (occ >= 0) {
9175 /* one value was returned into smp->data.str.{str,len} */
9176 smp->flags |= SMP_F_NOT_LAST;
9177 return 1;
9178 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009179 }
Willy Tarreau28376d62012-04-26 21:26:10 +02009180 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009181 }
Willy Tarreau28376d62012-04-26 21:26:10 +02009182 /* all cookie headers and values were scanned. If we're looking for the
9183 * last occurrence, we may return it now.
9184 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009185 out:
Willy Tarreau37406352012-04-23 16:16:37 +02009186 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +02009187 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009188}
9189
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009190/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +02009191 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009192 * multiple cookies may be parsed on the same line.
Willy Tarreau34db1082012-04-19 17:16:54 +02009193 * Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009194 */
9195static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009196acl_fetch_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009197 const struct arg *args, struct sample *smp)
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009198{
9199 struct http_txn *txn = l7;
9200 struct hdr_idx *idx = &txn->hdr_idx;
9201 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +02009202 const struct http_msg *msg;
9203 const char *hdr_name;
9204 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009205 int cnt;
9206 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +02009207 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009208
Willy Tarreau24e32d82012-04-23 23:55:44 +02009209 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +02009210 return 0;
9211
Willy Tarreaue333ec92012-04-16 16:26:40 +02009212 CHECK_HTTP_MESSAGE_FIRST();
9213
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009214 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +02009215 msg = &txn->req;
9216 hdr_name = "Cookie";
9217 hdr_name_len = 6;
9218 } else {
9219 msg = &txn->rsp;
9220 hdr_name = "Set-Cookie";
9221 hdr_name_len = 10;
9222 }
9223
Willy Tarreau9b28e032012-10-12 23:49:43 +02009224 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +02009225 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009226 ctx.idx = 0;
9227 cnt = 0;
9228
9229 while (1) {
9230 /* Note: val_beg == NULL every time we need to fetch a new header */
9231 if (!val_beg) {
9232 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
9233 break;
9234
Willy Tarreau24e32d82012-04-23 23:55:44 +02009235 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009236 continue;
9237
9238 val_beg = ctx.line + ctx.val;
9239 val_end = val_beg + ctx.vlen;
9240 }
9241
Willy Tarreauf853c462012-04-23 18:53:56 +02009242 smp->type = SMP_T_CSTR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009243 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009244 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009245 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +02009246 &smp->data.str.str,
9247 &smp->data.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009248 cnt++;
9249 }
9250 }
9251
Willy Tarreauf853c462012-04-23 18:53:56 +02009252 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +02009253 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009254 return 1;
9255}
9256
Willy Tarreau51539362012-05-08 12:46:28 +02009257/* Fetch an cookie's integer value. The integer value is returned. It
9258 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
9259 */
9260static int
9261smp_fetch_cookie_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9262 const struct arg *args, struct sample *smp)
9263{
9264 int ret = smp_fetch_cookie(px, l4, l7, opt, args, smp);
9265
9266 if (ret > 0) {
9267 smp->type = SMP_T_UINT;
9268 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
9269 }
9270
9271 return ret;
9272}
9273
Willy Tarreau8797c062007-05-07 00:55:35 +02009274/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +02009275/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +02009276/************************************************************************/
9277
David Cournapeau16023ee2010-12-23 20:55:41 +09009278/*
9279 * Given a path string and its length, find the position of beginning of the
9280 * query string. Returns NULL if no query string is found in the path.
9281 *
9282 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
9283 *
9284 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
9285 */
bedis4c75cca2012-10-05 08:38:24 +02009286static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +09009287{
9288 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +02009289
bedis4c75cca2012-10-05 08:38:24 +02009290 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +09009291 return p ? p + 1 : NULL;
9292}
9293
bedis4c75cca2012-10-05 08:38:24 +02009294static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +09009295{
bedis4c75cca2012-10-05 08:38:24 +02009296 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +09009297}
9298
9299/*
9300 * Given a url parameter, find the starting position of the first occurence,
9301 * or NULL if the parameter is not found.
9302 *
9303 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
9304 * the function will return query_string+8.
9305 */
9306static char*
9307find_url_param_pos(char* query_string, size_t query_string_l,
bedis4c75cca2012-10-05 08:38:24 +02009308 char* url_param_name, size_t url_param_name_l,
9309 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +09009310{
9311 char *pos, *last;
9312
9313 pos = query_string;
9314 last = query_string + query_string_l - url_param_name_l - 1;
9315
9316 while (pos <= last) {
9317 if (pos[url_param_name_l] == '=') {
9318 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
9319 return pos;
9320 pos += url_param_name_l + 1;
9321 }
bedis4c75cca2012-10-05 08:38:24 +02009322 while (pos <= last && !is_param_delimiter(*pos, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +09009323 pos++;
9324 pos++;
9325 }
9326 return NULL;
9327}
9328
9329/*
9330 * Given a url parameter name, returns its value and size into *value and
9331 * *value_l respectively, and returns non-zero. If the parameter is not found,
9332 * zero is returned and value/value_l are not touched.
9333 */
9334static int
9335find_url_param_value(char* path, size_t path_l,
9336 char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +02009337 char** value, int* value_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +09009338{
9339 char *query_string, *qs_end;
9340 char *arg_start;
9341 char *value_start, *value_end;
9342
bedis4c75cca2012-10-05 08:38:24 +02009343 query_string = find_param_list(path, path_l, delim);
David Cournapeau16023ee2010-12-23 20:55:41 +09009344 if (!query_string)
9345 return 0;
9346
9347 qs_end = path + path_l;
9348 arg_start = find_url_param_pos(query_string, qs_end - query_string,
bedis4c75cca2012-10-05 08:38:24 +02009349 url_param_name, url_param_name_l,
9350 delim);
David Cournapeau16023ee2010-12-23 20:55:41 +09009351 if (!arg_start)
9352 return 0;
9353
9354 value_start = arg_start + url_param_name_l + 1;
9355 value_end = value_start;
9356
bedis4c75cca2012-10-05 08:38:24 +02009357 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +09009358 value_end++;
9359
9360 *value = value_start;
9361 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +01009362 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +09009363}
9364
9365static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009366smp_fetch_url_param(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9367 const struct arg *args, struct sample *smp)
David Cournapeau16023ee2010-12-23 20:55:41 +09009368{
bedis4c75cca2012-10-05 08:38:24 +02009369 char delim = '?';
David Cournapeau16023ee2010-12-23 20:55:41 +09009370 struct http_txn *txn = l7;
9371 struct http_msg *msg = &txn->req;
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009372
bedis4c75cca2012-10-05 08:38:24 +02009373 if (!args || args[0].type != ARGT_STR ||
9374 (args[1].type && args[1].type != ARGT_STR))
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009375 return 0;
9376
9377 CHECK_HTTP_MESSAGE_FIRST();
David Cournapeau16023ee2010-12-23 20:55:41 +09009378
bedis4c75cca2012-10-05 08:38:24 +02009379 if (args[1].type)
9380 delim = *args[1].data.str.str;
9381
Willy Tarreau9b28e032012-10-12 23:49:43 +02009382 if (!find_url_param_value(msg->chn->buf->p + msg->sl.rq.u, msg->sl.rq.u_l,
bedis4c75cca2012-10-05 08:38:24 +02009383 args->data.str.str, args->data.str.len,
9384 &smp->data.str.str, &smp->data.str.len,
9385 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +09009386 return 0;
9387
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02009388 smp->type = SMP_T_CSTR;
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009389 smp->flags = SMP_F_VOL_1ST;
David Cournapeau16023ee2010-12-23 20:55:41 +09009390 return 1;
9391}
9392
Willy Tarreaua9fddca2012-07-31 07:51:48 +02009393/* Return the signed integer value for the specified url parameter (see url_param
9394 * above).
9395 */
9396static int
9397smp_fetch_url_param_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
9398 const struct arg *args, struct sample *smp)
9399{
9400 int ret = smp_fetch_url_param(px, l4, l7, opt, args, smp);
9401
9402 if (ret > 0) {
9403 smp->type = SMP_T_UINT;
9404 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
9405 }
9406
9407 return ret;
9408}
9409
Willy Tarreau185b5c42012-04-26 15:11:51 +02009410/* This function is used to validate the arguments passed to any "hdr" fetch
9411 * keyword. These keywords support an optional positive or negative occurrence
9412 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
9413 * is assumed that the types are already the correct ones. Returns 0 on error,
9414 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
9415 * error message in case of error, that the caller is responsible for freeing.
9416 * The initial location must either be freeable or NULL.
9417 */
9418static int val_hdr(struct arg *arg, char **err_msg)
9419{
9420 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02009421 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +02009422 return 0;
9423 }
9424 return 1;
9425}
9426
Willy Tarreau4a568972010-05-12 08:08:50 +02009427/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009428/* All supported ACL keywords must be declared here. */
9429/************************************************************************/
9430
9431/* Note: must not be declared <const> as its list will be overwritten.
9432 * Please take care of keeping this list alphabetically sorted.
9433 */
9434static struct acl_kw_list acl_kws = {{ },{
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009435 { "base", acl_parse_str, smp_fetch_base, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
9436 { "base_beg", acl_parse_str, smp_fetch_base, acl_match_beg, ACL_USE_L7REQ_VOLATILE, 0 },
9437 { "base_dir", acl_parse_str, smp_fetch_base, acl_match_dir, ACL_USE_L7REQ_VOLATILE, 0 },
9438 { "base_dom", acl_parse_str, smp_fetch_base, acl_match_dom, ACL_USE_L7REQ_VOLATILE, 0 },
9439 { "base_end", acl_parse_str, smp_fetch_base, acl_match_end, ACL_USE_L7REQ_VOLATILE, 0 },
9440 { "base_len", acl_parse_int, smp_fetch_base, acl_match_len, ACL_USE_L7REQ_VOLATILE, 0 },
9441 { "base_reg", acl_parse_reg, smp_fetch_base, acl_match_reg, ACL_USE_L7REQ_VOLATILE, 0 },
9442 { "base_sub", acl_parse_str, smp_fetch_base, acl_match_sub, ACL_USE_L7REQ_VOLATILE, 0 },
9443
Willy Tarreau51539362012-05-08 12:46:28 +02009444 { "cook", acl_parse_str, smp_fetch_cookie, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, ARG1(0,STR) },
9445 { "cook_beg", acl_parse_str, smp_fetch_cookie, acl_match_beg, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009446 { "cook_cnt", acl_parse_int, acl_fetch_cookie_cnt, acl_match_int, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
Willy Tarreau51539362012-05-08 12:46:28 +02009447 { "cook_dir", acl_parse_str, smp_fetch_cookie, acl_match_dir, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9448 { "cook_dom", acl_parse_str, smp_fetch_cookie, acl_match_dom, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9449 { "cook_end", acl_parse_str, smp_fetch_cookie, acl_match_end, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9450 { "cook_len", acl_parse_int, smp_fetch_cookie, acl_match_len, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9451 { "cook_reg", acl_parse_reg, smp_fetch_cookie, acl_match_reg, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9452 { "cook_sub", acl_parse_str, smp_fetch_cookie, acl_match_sub, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9453 { "cook_val", acl_parse_int, smp_fetch_cookie_val, acl_match_int, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009454
Willy Tarreau185b5c42012-04-26 15:11:51 +02009455 { "hdr", acl_parse_str, smp_fetch_hdr, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(0,STR,SINT), val_hdr },
9456 { "hdr_beg", acl_parse_str, smp_fetch_hdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9457 { "hdr_cnt", acl_parse_int, smp_fetch_hdr_cnt, acl_match_int, ACL_USE_L7REQ_VOLATILE, ARG1(0,STR) },
9458 { "hdr_dir", acl_parse_str, smp_fetch_hdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9459 { "hdr_dom", acl_parse_str, smp_fetch_hdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9460 { "hdr_end", acl_parse_str, smp_fetch_hdr, acl_match_end, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9461 { "hdr_ip", acl_parse_ip, smp_fetch_hdr_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(0,STR,SINT), val_hdr },
9462 { "hdr_len", acl_parse_int, smp_fetch_hdr, acl_match_len, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9463 { "hdr_reg", acl_parse_reg, smp_fetch_hdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9464 { "hdr_sub", acl_parse_str, smp_fetch_hdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9465 { "hdr_val", acl_parse_int, smp_fetch_hdr_val, acl_match_int, ACL_USE_L7REQ_VOLATILE, ARG2(0,STR,SINT), val_hdr },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009466
9467 { "http_auth", acl_parse_nothing, acl_fetch_http_auth, acl_match_nothing, ACL_USE_L7REQ_VOLATILE, ARG1(0,USR) },
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +02009468 { "http_auth_group", acl_parse_strcat, acl_fetch_http_auth_grp, acl_match_auth, ACL_USE_L7REQ_VOLATILE, ARG1(0,USR) },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009469 { "http_first_req", acl_parse_nothing, acl_fetch_http_first_req, acl_match_nothing, ACL_USE_L7REQ_PERMANENT, 0 },
9470
9471 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT, 0 },
9472
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009473 { "path", acl_parse_str, smp_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
9474 { "path_beg", acl_parse_str, smp_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE, 0 },
9475 { "path_dir", acl_parse_str, smp_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE, 0 },
9476 { "path_dom", acl_parse_str, smp_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE, 0 },
9477 { "path_end", acl_parse_str, smp_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE, 0 },
9478 { "path_len", acl_parse_int, smp_fetch_path, acl_match_len, ACL_USE_L7REQ_VOLATILE, 0 },
9479 { "path_reg", acl_parse_reg, smp_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE, 0 },
9480 { "path_sub", acl_parse_str, smp_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE, 0 },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009481
9482 { "req_proto_http", acl_parse_nothing, acl_fetch_proto_http, acl_match_nothing, ACL_USE_L7REQ_PERMANENT, 0 },
9483 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
9484 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP, 0 },
9485
Willy Tarreau51539362012-05-08 12:46:28 +02009486 { "scook", acl_parse_str, smp_fetch_cookie, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP, ARG1(0,STR) },
9487 { "scook_beg", acl_parse_str, smp_fetch_cookie, acl_match_beg, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009488 { "scook_cnt", acl_parse_int, acl_fetch_cookie_cnt, acl_match_int, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
Willy Tarreau51539362012-05-08 12:46:28 +02009489 { "scook_dir", acl_parse_str, smp_fetch_cookie, acl_match_dir, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9490 { "scook_dom", acl_parse_str, smp_fetch_cookie, acl_match_dom, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9491 { "scook_end", acl_parse_str, smp_fetch_cookie, acl_match_end, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9492 { "scook_len", acl_parse_int, smp_fetch_cookie, acl_match_len, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9493 { "scook_reg", acl_parse_reg, smp_fetch_cookie, acl_match_reg, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9494 { "scook_sub", acl_parse_str, smp_fetch_cookie, acl_match_sub, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9495 { "scook_val", acl_parse_int, smp_fetch_cookie_val, acl_match_int, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009496
Willy Tarreau185b5c42012-04-26 15:11:51 +02009497 { "shdr", acl_parse_str, smp_fetch_hdr, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP, ARG2(0,STR,SINT), val_hdr },
9498 { "shdr_beg", acl_parse_str, smp_fetch_hdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9499 { "shdr_cnt", acl_parse_int, smp_fetch_hdr_cnt, acl_match_int, ACL_USE_L7RTR_VOLATILE, ARG1(0,STR) },
9500 { "shdr_dir", acl_parse_str, smp_fetch_hdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9501 { "shdr_dom", acl_parse_str, smp_fetch_hdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9502 { "shdr_end", acl_parse_str, smp_fetch_hdr, acl_match_end, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9503 { "shdr_ip", acl_parse_ip, smp_fetch_hdr_ip, acl_match_ip, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP, ARG2(0,STR,SINT), val_hdr },
9504 { "shdr_len", acl_parse_int, smp_fetch_hdr, acl_match_len, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9505 { "shdr_reg", acl_parse_reg, smp_fetch_hdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9506 { "shdr_sub", acl_parse_str, smp_fetch_hdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
9507 { "shdr_val", acl_parse_int, smp_fetch_hdr_val, acl_match_int, ACL_USE_L7RTR_VOLATILE, ARG2(0,STR,SINT), val_hdr },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009508
9509 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT, 0 },
9510
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009511 { "url", acl_parse_str, smp_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
9512 { "url_beg", acl_parse_str, smp_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE, 0 },
9513 { "url_dir", acl_parse_str, smp_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE, 0 },
9514 { "url_dom", acl_parse_str, smp_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE, 0 },
9515 { "url_end", acl_parse_str, smp_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE, 0 },
9516 { "url_ip", acl_parse_ip, smp_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
9517 { "url_len", acl_parse_int, smp_fetch_url, acl_match_len, ACL_USE_L7REQ_VOLATILE, 0 },
9518 { "url_port", acl_parse_int, smp_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE, 0 },
9519 { "url_reg", acl_parse_reg, smp_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE, 0 },
9520 { "url_sub", acl_parse_str, smp_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE, 0 },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009521
9522 { "urlp", acl_parse_str, smp_fetch_url_param, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, ARG1(1,STR) },
9523 { "urlp_beg", acl_parse_str, smp_fetch_url_param, acl_match_beg, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
9524 { "urlp_dir", acl_parse_str, smp_fetch_url_param, acl_match_dir, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
9525 { "urlp_dom", acl_parse_str, smp_fetch_url_param, acl_match_dom, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
9526 { "urlp_end", acl_parse_str, smp_fetch_url_param, acl_match_end, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
9527 { "urlp_ip", acl_parse_ip, smp_fetch_url_param, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP, ARG1(1,STR) },
9528 { "urlp_len", acl_parse_int, smp_fetch_url_param, acl_match_len, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
9529 { "urlp_reg", acl_parse_reg, smp_fetch_url_param, acl_match_reg, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
9530 { "urlp_sub", acl_parse_str, smp_fetch_url_param, acl_match_sub, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
Willy Tarreaua9fddca2012-07-31 07:51:48 +02009531 { "urlp_val", acl_parse_int, smp_fetch_url_param_val, acl_match_int, ACL_USE_L7REQ_VOLATILE, ARG1(1,STR) },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02009532
9533 { NULL, NULL, NULL, NULL },
9534}};
9535
9536/************************************************************************/
9537/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +02009538/************************************************************************/
9539/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreau12785782012-04-27 21:37:17 +02009540static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{
Willy Tarreau1b6c00c2012-10-05 22:41:26 +02009541 { "hdr", smp_fetch_hdr, ARG2(1,STR,SINT), val_hdr, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_REQ },
9542 { "base", smp_fetch_base, 0, NULL, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_REQ },
Willy Tarreauab1f7b72012-12-09 13:38:54 +01009543 { "base32", smp_fetch_base32, 0, NULL, SMP_T_UINT, SMP_CAP_L7|SMP_CAP_REQ },
Willy Tarreau4a550602012-12-09 14:53:32 +01009544 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_CAP_L7|SMP_CAP_REQ },
Willy Tarreau1b6c00c2012-10-05 22:41:26 +02009545 { "path", smp_fetch_path, 0, NULL, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_REQ },
9546 { "url", smp_fetch_url, 0, NULL, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_REQ },
9547 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_CAP_L7|SMP_CAP_REQ },
9548 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_UINT, SMP_CAP_L7|SMP_CAP_REQ },
9549 { "url_param", smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_REQ },
9550 { "cookie", smp_fetch_cookie, ARG1(1,STR), NULL, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_REQ|SMP_CAP_RES },
9551 { "set-cookie", smp_fetch_cookie, ARG1(1,STR), NULL, SMP_T_CSTR, SMP_CAP_L7|SMP_CAP_RES }, /* deprecated */
Willy Tarreau9fcb9842012-04-20 14:45:49 +02009552 { NULL, NULL, 0, 0, 0 },
Willy Tarreau4a568972010-05-12 08:08:50 +02009553}};
9554
Willy Tarreau8797c062007-05-07 00:55:35 +02009555
9556__attribute__((constructor))
9557static void __http_protocol_init(void)
9558{
9559 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +02009560 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau8797c062007-05-07 00:55:35 +02009561}
9562
9563
Willy Tarreau58f10d72006-12-04 02:26:12 +01009564/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02009565 * Local variables:
9566 * c-indent-level: 8
9567 * c-basic-offset: 8
9568 * End:
9569 */