blob: 504a0a94d073fdd96d3f2fb7daf523b4e1494eef [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>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010057#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020058#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010060#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020062#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010063#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020064#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010065#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/task.h>
Baptiste Assmannfabcbe02014-04-24 22:16:59 +020067#include <proto/pattern.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau522d6c02009-12-06 18:49:18 +010069const char HTTP_100[] =
70 "HTTP/1.1 100 Continue\r\n\r\n";
71
72const struct chunk http_100_chunk = {
73 .str = (char *)&HTTP_100,
74 .len = sizeof(HTTP_100)-1
75};
76
Willy Tarreaua9679ac2010-01-03 17:32:57 +010077/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020078const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010080 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020081 "Location: "; /* not terminated since it will be concatenated with the URL */
82
Willy Tarreau0f772532006-12-23 20:51:41 +010083const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010084 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010085 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010087 "Location: "; /* not terminated since it will be concatenated with the URL */
88
89/* same as 302 except that the browser MUST retry with the GET method */
90const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010091 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010092 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010093 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010094 "Location: "; /* not terminated since it will be concatenated with the URL */
95
Yves Lafon3e8d1ae2013-03-11 11:06:05 -040096
97/* same as 302 except that the browser MUST retry with the same method */
98const char *HTTP_307 =
99 "HTTP/1.1 307 Temporary Redirect\r\n"
100 "Cache-Control: no-cache\r\n"
101 "Content-length: 0\r\n"
102 "Location: "; /* not terminated since it will be concatenated with the URL */
103
104/* same as 301 except that the browser MUST retry with the same method */
105const char *HTTP_308 =
106 "HTTP/1.1 308 Permanent Redirect\r\n"
107 "Content-length: 0\r\n"
108 "Location: "; /* not terminated since it will be concatenated with the URL */
109
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
111const char *HTTP_401_fmt =
112 "HTTP/1.0 401 Unauthorized\r\n"
113 "Cache-Control: no-cache\r\n"
114 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200115 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
117 "\r\n"
118 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
119
Willy Tarreau844a7e72010-01-31 21:46:18 +0100120const char *HTTP_407_fmt =
121 "HTTP/1.0 407 Unauthorized\r\n"
122 "Cache-Control: no-cache\r\n"
123 "Connection: close\r\n"
124 "Content-Type: text/html\r\n"
125 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
126 "\r\n"
Godbach1f1fae62014-12-17 16:32:05 +0800127 "<html><body><h1>407 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
Willy Tarreau844a7e72010-01-31 21:46:18 +0100128
Willy Tarreau0f772532006-12-23 20:51:41 +0100129
130const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200131 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100132 [HTTP_ERR_400] = 400,
133 [HTTP_ERR_403] = 403,
134 [HTTP_ERR_408] = 408,
135 [HTTP_ERR_500] = 500,
136 [HTTP_ERR_502] = 502,
137 [HTTP_ERR_503] = 503,
138 [HTTP_ERR_504] = 504,
139};
140
Willy Tarreau80587432006-12-24 17:47:20 +0100141static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200142 [HTTP_ERR_200] =
143 "HTTP/1.0 200 OK\r\n"
144 "Cache-Control: no-cache\r\n"
145 "Connection: close\r\n"
146 "Content-Type: text/html\r\n"
147 "\r\n"
148 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
149
Willy Tarreau0f772532006-12-23 20:51:41 +0100150 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100151 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100152 "Cache-Control: no-cache\r\n"
153 "Connection: close\r\n"
154 "Content-Type: text/html\r\n"
155 "\r\n"
156 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
157
158 [HTTP_ERR_403] =
159 "HTTP/1.0 403 Forbidden\r\n"
160 "Cache-Control: no-cache\r\n"
161 "Connection: close\r\n"
162 "Content-Type: text/html\r\n"
163 "\r\n"
164 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
165
166 [HTTP_ERR_408] =
167 "HTTP/1.0 408 Request Time-out\r\n"
168 "Cache-Control: no-cache\r\n"
169 "Connection: close\r\n"
170 "Content-Type: text/html\r\n"
171 "\r\n"
172 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
173
174 [HTTP_ERR_500] =
175 "HTTP/1.0 500 Server Error\r\n"
176 "Cache-Control: no-cache\r\n"
177 "Connection: close\r\n"
178 "Content-Type: text/html\r\n"
179 "\r\n"
180 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
181
182 [HTTP_ERR_502] =
183 "HTTP/1.0 502 Bad Gateway\r\n"
184 "Cache-Control: no-cache\r\n"
185 "Connection: close\r\n"
186 "Content-Type: text/html\r\n"
187 "\r\n"
188 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
189
190 [HTTP_ERR_503] =
191 "HTTP/1.0 503 Service Unavailable\r\n"
192 "Cache-Control: no-cache\r\n"
193 "Connection: close\r\n"
194 "Content-Type: text/html\r\n"
195 "\r\n"
196 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
197
198 [HTTP_ERR_504] =
199 "HTTP/1.0 504 Gateway Time-out\r\n"
200 "Cache-Control: no-cache\r\n"
201 "Connection: close\r\n"
202 "Content-Type: text/html\r\n"
203 "\r\n"
204 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
205
206};
207
Cyril Bonté19979e12012-04-04 12:57:21 +0200208/* status codes available for the stats admin page (strictly 4 chars length) */
209const char *stat_status_codes[STAT_STATUS_SIZE] = {
210 [STAT_STATUS_DENY] = "DENY",
211 [STAT_STATUS_DONE] = "DONE",
212 [STAT_STATUS_ERRP] = "ERRP",
213 [STAT_STATUS_EXCD] = "EXCD",
214 [STAT_STATUS_NONE] = "NONE",
215 [STAT_STATUS_PART] = "PART",
216 [STAT_STATUS_UNKN] = "UNKN",
217};
218
219
William Lallemand73025dd2014-04-24 14:38:37 +0200220/* List head of all known action keywords for "http-request" */
221struct http_req_action_kw_list http_req_keywords = {
222 .list = LIST_HEAD_INIT(http_req_keywords.list)
223};
224
225/* List head of all known action keywords for "http-response" */
226struct http_res_action_kw_list http_res_keywords = {
227 .list = LIST_HEAD_INIT(http_res_keywords.list)
228};
229
Willy Tarreau80587432006-12-24 17:47:20 +0100230/* We must put the messages here since GCC cannot initialize consts depending
231 * on strlen().
232 */
233struct chunk http_err_chunks[HTTP_ERR_SIZE];
234
Willy Tarreaua890d072013-04-02 12:01:06 +0200235/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
236static struct hdr_ctx static_hdr_ctx;
237
Willy Tarreau42250582007-04-01 01:30:43 +0200238#define FD_SETS_ARE_BITFIELDS
239#ifdef FD_SETS_ARE_BITFIELDS
240/*
241 * This map is used with all the FD_* macros to check whether a particular bit
242 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
243 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
244 * byte should be encoded. Be careful to always pass bytes from 0 to 255
245 * exclusively to the macros.
246 */
247fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
248fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100249fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Willy Tarreau42250582007-04-01 01:30:43 +0200250
251#else
252#error "Check if your OS uses bitfields for fd_sets"
253#endif
254
Willy Tarreau0b748332014-04-29 00:13:29 +0200255static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn);
256
Willy Tarreau80587432006-12-24 17:47:20 +0100257void init_proto_http()
258{
Willy Tarreau42250582007-04-01 01:30:43 +0200259 int i;
260 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100261 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200262
Willy Tarreau80587432006-12-24 17:47:20 +0100263 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
264 if (!http_err_msgs[msg]) {
265 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
266 abort();
267 }
268
269 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
270 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
271 }
Willy Tarreau42250582007-04-01 01:30:43 +0200272
273 /* initialize the log header encoding map : '{|}"#' should be encoded with
274 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
275 * URL encoding only requires '"', '#' to be encoded as well as non-
276 * printable characters above.
277 */
278 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
279 memset(url_encode_map, 0, sizeof(url_encode_map));
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100280 memset(http_encode_map, 0, sizeof(url_encode_map));
Willy Tarreau42250582007-04-01 01:30:43 +0200281 for (i = 0; i < 32; i++) {
282 FD_SET(i, hdr_encode_map);
283 FD_SET(i, url_encode_map);
284 }
285 for (i = 127; i < 256; i++) {
286 FD_SET(i, hdr_encode_map);
287 FD_SET(i, url_encode_map);
288 }
289
290 tmp = "\"#{|}";
291 while (*tmp) {
292 FD_SET(*tmp, hdr_encode_map);
293 tmp++;
294 }
295
296 tmp = "\"#";
297 while (*tmp) {
298 FD_SET(*tmp, url_encode_map);
299 tmp++;
300 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200301
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100302 /* initialize the http header encoding map. The draft httpbis define the
303 * header content as:
304 *
305 * HTTP-message = start-line
306 * *( header-field CRLF )
307 * CRLF
308 * [ message-body ]
309 * header-field = field-name ":" OWS field-value OWS
310 * field-value = *( field-content / obs-fold )
311 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
312 * obs-fold = CRLF 1*( SP / HTAB )
313 * field-vchar = VCHAR / obs-text
314 * VCHAR = %x21-7E
315 * obs-text = %x80-FF
316 *
317 * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB.
318 * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The
319 * "obs-fold" is volontary forgotten because haproxy remove this.
320 */
321 memset(http_encode_map, 0, sizeof(http_encode_map));
322 for (i = 0x00; i <= 0x08; i++)
323 FD_SET(i, http_encode_map);
324 for (i = 0x0a; i <= 0x1f; i++)
325 FD_SET(i, http_encode_map);
326 FD_SET(0x7f, http_encode_map);
327
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200328 /* memory allocations */
329 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
William Lallemanda73203e2012-03-12 12:48:57 +0100330 pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100331}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200332
Willy Tarreau53b6c742006-12-17 13:37:46 +0100333/*
334 * We have 26 list of methods (1 per first letter), each of which can have
335 * up to 3 entries (2 valid, 1 null).
336 */
337struct http_method_desc {
Willy Tarreauc8987b32013-12-06 23:43:17 +0100338 enum http_meth_t meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100339 int len;
340 const char text[8];
341};
342
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100343const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100344 ['C' - 'A'] = {
345 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
346 },
347 ['D' - 'A'] = {
348 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
349 },
350 ['G' - 'A'] = {
351 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
352 },
353 ['H' - 'A'] = {
354 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
355 },
356 ['P' - 'A'] = {
357 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
358 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
359 },
360 ['T' - 'A'] = {
361 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
362 },
363 /* rest is empty like this :
364 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
365 */
366};
367
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100368const struct http_method_name http_known_methods[HTTP_METH_OTHER] = {
369 [HTTP_METH_NONE] = { "", 0 },
370 [HTTP_METH_OPTIONS] = { "OPTIONS", 7 },
371 [HTTP_METH_GET] = { "GET", 3 },
372 [HTTP_METH_HEAD] = { "HEAD", 4 },
373 [HTTP_METH_POST] = { "POST", 4 },
374 [HTTP_METH_PUT] = { "PUT", 3 },
375 [HTTP_METH_DELETE] = { "DELETE", 6 },
376 [HTTP_METH_TRACE] = { "TRACE", 5 },
377 [HTTP_METH_CONNECT] = { "CONNECT", 7 },
378};
379
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100380/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200381 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100382 * RFC2616 for those chars.
383 */
384
385const char http_is_spht[256] = {
386 [' '] = 1, ['\t'] = 1,
387};
388
389const char http_is_crlf[256] = {
390 ['\r'] = 1, ['\n'] = 1,
391};
392
393const char http_is_lws[256] = {
394 [' '] = 1, ['\t'] = 1,
395 ['\r'] = 1, ['\n'] = 1,
396};
397
398const char http_is_sep[256] = {
399 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
400 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
401 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
402 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
403 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
404};
405
406const char http_is_ctl[256] = {
407 [0 ... 31] = 1,
408 [127] = 1,
409};
410
411/*
412 * A token is any ASCII char that is neither a separator nor a CTL char.
413 * Do not overwrite values in assignment since gcc-2.95 will not handle
414 * them correctly. Instead, define every non-CTL char's status.
415 */
416const char http_is_token[256] = {
417 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
418 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
419 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
420 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
421 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
422 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
423 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
424 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
425 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
426 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
427 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
428 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
429 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
430 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
431 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
432 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
433 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
434 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
435 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
436 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
437 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
438 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
439 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
440 ['|'] = 1, ['}'] = 0, ['~'] = 1,
441};
442
443
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100444/*
445 * An http ver_token is any ASCII which can be found in an HTTP version,
446 * which includes 'H', 'T', 'P', '/', '.' and any digit.
447 */
448const char http_is_ver_token[256] = {
449 ['.'] = 1, ['/'] = 1,
450 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
451 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
452 ['H'] = 1, ['P'] = 1, ['T'] = 1,
453};
454
455
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100456/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100457 * Adds a header and its CRLF at the tail of the message's buffer, just before
458 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100459 * The header is also automatically added to the index <hdr_idx>, and the end
460 * of headers is automatically adjusted. The number of bytes added is returned
461 * on success, otherwise <0 is returned indicating an error.
462 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100463int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100464{
465 int bytes, len;
466
467 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200468 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100469 if (!bytes)
470 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100471 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100472 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
473}
474
475/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100476 * Adds a header and its CRLF at the tail of the message's buffer, just before
477 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100478 * the buffer is only opened and the space reserved, but nothing is copied.
479 * The header is also automatically added to the index <hdr_idx>, and the end
480 * of headers is automatically adjusted. The number of bytes added is returned
481 * on success, otherwise <0 is returned indicating an error.
482 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100483int http_header_add_tail2(struct http_msg *msg,
484 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100485{
486 int bytes;
487
Willy Tarreau9b28e032012-10-12 23:49:43 +0200488 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100489 if (!bytes)
490 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100491 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100492 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
493}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200494
495/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100496 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
497 * If so, returns the position of the first non-space character relative to
498 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
499 * to return a pointer to the place after the first space. Returns 0 if the
500 * header name does not match. Checks are case-insensitive.
501 */
502int http_header_match2(const char *hdr, const char *end,
503 const char *name, int len)
504{
505 const char *val;
506
507 if (hdr + len >= end)
508 return 0;
509 if (hdr[len] != ':')
510 return 0;
511 if (strncasecmp(hdr, name, len) != 0)
512 return 0;
513 val = hdr + len + 1;
514 while (val < end && HTTP_IS_SPHT(*val))
515 val++;
516 if ((val >= end) && (len + 2 <= end - hdr))
517 return len + 2; /* we may replace starting from second space */
518 return val - hdr;
519}
520
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200521/* Find the first or next occurrence of header <name> in message buffer <sol>
522 * using headers index <idx>, and return it in the <ctx> structure. This
523 * structure holds everything necessary to use the header and find next
524 * occurrence. If its <idx> member is 0, the header is searched from the
525 * beginning. Otherwise, the next occurrence is returned. The function returns
526 * 1 when it finds a value, and 0 when there is no more. It is very similar to
527 * http_find_header2() except that it is designed to work with full-line headers
528 * whose comma is not a delimiter but is part of the syntax. As a special case,
529 * if ctx->val is NULL when searching for a new values of a header, the current
530 * header is rescanned. This allows rescanning after a header deletion.
531 */
532int http_find_full_header2(const char *name, int len,
533 char *sol, struct hdr_idx *idx,
534 struct hdr_ctx *ctx)
535{
536 char *eol, *sov;
537 int cur_idx, old_idx;
538
539 cur_idx = ctx->idx;
540 if (cur_idx) {
541 /* We have previously returned a header, let's search another one */
542 sol = ctx->line;
543 eol = sol + idx->v[cur_idx].len;
544 goto next_hdr;
545 }
546
547 /* first request for this header */
548 sol += hdr_idx_first_pos(idx);
549 old_idx = 0;
550 cur_idx = hdr_idx_first_idx(idx);
551 while (cur_idx) {
552 eol = sol + idx->v[cur_idx].len;
553
554 if (len == 0) {
555 /* No argument was passed, we want any header.
556 * To achieve this, we simply build a fake request. */
557 while (sol + len < eol && sol[len] != ':')
558 len++;
559 name = sol;
560 }
561
562 if ((len < eol - sol) &&
563 (sol[len] == ':') &&
564 (strncasecmp(sol, name, len) == 0)) {
565 ctx->del = len;
566 sov = sol + len + 1;
567 while (sov < eol && http_is_lws[(unsigned char)*sov])
568 sov++;
569
570 ctx->line = sol;
571 ctx->prev = old_idx;
572 ctx->idx = cur_idx;
573 ctx->val = sov - sol;
574 ctx->tws = 0;
575 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
576 eol--;
577 ctx->tws++;
578 }
579 ctx->vlen = eol - sov;
580 return 1;
581 }
582 next_hdr:
583 sol = eol + idx->v[cur_idx].cr + 1;
584 old_idx = cur_idx;
585 cur_idx = idx->v[cur_idx].next;
586 }
587 return 0;
588}
589
Willy Tarreau68085d82010-01-18 14:54:04 +0100590/* Find the end of the header value contained between <s> and <e>. See RFC2616,
591 * par 2.2 for more information. Note that it requires a valid header to return
592 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200593 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100594char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200595{
596 int quoted, qdpair;
597
598 quoted = qdpair = 0;
599 for (; s < e; s++) {
600 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200601 else if (quoted) {
602 if (*s == '\\') qdpair = 1;
603 else if (*s == '"') quoted = 0;
604 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200605 else if (*s == '"') quoted = 1;
606 else if (*s == ',') return s;
607 }
608 return s;
609}
610
611/* Find the first or next occurrence of header <name> in message buffer <sol>
612 * using headers index <idx>, and return it in the <ctx> structure. This
613 * structure holds everything necessary to use the header and find next
614 * occurrence. If its <idx> member is 0, the header is searched from the
615 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100616 * 1 when it finds a value, and 0 when there is no more. It is designed to work
617 * with headers defined as comma-separated lists. As a special case, if ctx->val
618 * is NULL when searching for a new values of a header, the current header is
619 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200620 */
621int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100622 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200623 struct hdr_ctx *ctx)
624{
Willy Tarreau68085d82010-01-18 14:54:04 +0100625 char *eol, *sov;
626 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200627
Willy Tarreau68085d82010-01-18 14:54:04 +0100628 cur_idx = ctx->idx;
629 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200630 /* We have previously returned a value, let's search
631 * another one on the same line.
632 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200633 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200634 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100635 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200636 eol = sol + idx->v[cur_idx].len;
637
638 if (sov >= eol)
639 /* no more values in this header */
640 goto next_hdr;
641
Willy Tarreau68085d82010-01-18 14:54:04 +0100642 /* values remaining for this header, skip the comma but save it
643 * for later use (eg: for header deletion).
644 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200645 sov++;
646 while (sov < eol && http_is_lws[(unsigned char)*sov])
647 sov++;
648
649 goto return_hdr;
650 }
651
652 /* first request for this header */
653 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100654 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200655 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200656 while (cur_idx) {
657 eol = sol + idx->v[cur_idx].len;
658
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200659 if (len == 0) {
660 /* No argument was passed, we want any header.
661 * To achieve this, we simply build a fake request. */
662 while (sol + len < eol && sol[len] != ':')
663 len++;
664 name = sol;
665 }
666
Willy Tarreau33a7e692007-06-10 19:45:56 +0200667 if ((len < eol - sol) &&
668 (sol[len] == ':') &&
669 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100670 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200671 sov = sol + len + 1;
672 while (sov < eol && http_is_lws[(unsigned char)*sov])
673 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100674
Willy Tarreau33a7e692007-06-10 19:45:56 +0200675 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100676 ctx->prev = old_idx;
677 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200678 ctx->idx = cur_idx;
679 ctx->val = sov - sol;
680
681 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200682 ctx->tws = 0;
Willy Tarreau275600b2011-09-16 08:11:26 +0200683 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200684 eol--;
685 ctx->tws++;
686 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200687 ctx->vlen = eol - sov;
688 return 1;
689 }
690 next_hdr:
691 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100692 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200693 cur_idx = idx->v[cur_idx].next;
694 }
695 return 0;
696}
697
698int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100699 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200700 struct hdr_ctx *ctx)
701{
702 return http_find_header2(name, strlen(name), sol, idx, ctx);
703}
704
Willy Tarreau68085d82010-01-18 14:54:04 +0100705/* Remove one value of a header. This only works on a <ctx> returned by one of
706 * the http_find_header functions. The value is removed, as well as surrounding
707 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100708 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100709 * message <msg>. The new index is returned. If it is zero, it means there is
710 * no more header, so any processing may stop. The ctx is always left in a form
711 * that can be handled by http_find_header2() to find next occurrence.
712 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100713int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100714{
715 int cur_idx = ctx->idx;
716 char *sol = ctx->line;
717 struct hdr_idx_elem *hdr;
718 int delta, skip_comma;
719
720 if (!cur_idx)
721 return 0;
722
723 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200724 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100725 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200726 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +0100727 http_msg_move_end(msg, delta);
728 idx->used--;
729 hdr->len = 0; /* unused entry */
730 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100731 if (idx->tail == ctx->idx)
732 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100733 ctx->idx = ctx->prev; /* walk back to the end of previous header */
Willy Tarreau7c1c2172015-01-07 17:23:50 +0100734 ctx->line -= idx->v[ctx->idx].len + idx->v[ctx->idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100735 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200736 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100737 return ctx->idx;
738 }
739
740 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200741 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
742 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100743 */
744
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200745 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200746 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200747 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100748 NULL, 0);
749 hdr->len += delta;
750 http_msg_move_end(msg, delta);
751 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200752 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100753 return ctx->idx;
754}
755
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100756/* This function handles a server error at the stream interface level. The
757 * stream interface is assumed to be already in a closed state. An optional
758 * message is copied into the input buffer, and an HTTP status code stored.
759 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100760 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200761 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200762static void http_server_error(struct session *s, struct stream_interface *si,
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100763 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200764{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200765 channel_auto_read(si->ob);
766 channel_abort(si->ob);
767 channel_auto_close(si->ob);
768 channel_erase(si->ob);
769 channel_auto_close(si->ib);
770 channel_auto_read(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100771 if (status > 0 && msg) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200772 s->txn.status = status;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200773 bo_inject(si->ib, msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200775 if (!(s->flags & SN_ERR_MASK))
776 s->flags |= err;
777 if (!(s->flags & SN_FINST_MASK))
778 s->flags |= finst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200779}
780
Willy Tarreau80587432006-12-24 17:47:20 +0100781/* This function returns the appropriate error location for the given session
782 * and message.
783 */
784
Willy Tarreau783f2582012-09-04 12:19:04 +0200785struct chunk *http_error_message(struct session *s, int msgnum)
Willy Tarreau80587432006-12-24 17:47:20 +0100786{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200787 if (s->be->errmsg[msgnum].str)
788 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100789 else if (s->fe->errmsg[msgnum].str)
790 return &s->fe->errmsg[msgnum];
791 else
792 return &http_err_chunks[msgnum];
793}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200794
Willy Tarreau53b6c742006-12-17 13:37:46 +0100795/*
796 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
797 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
798 */
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100799enum http_meth_t find_http_meth(const char *str, const int len)
Willy Tarreau53b6c742006-12-17 13:37:46 +0100800{
801 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100802 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100803
804 m = ((unsigned)*str - 'A');
805
806 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100807 for (h = http_methods[m]; h->len > 0; h++) {
808 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100809 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100810 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100811 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100812 };
813 return HTTP_METH_OTHER;
814 }
815 return HTTP_METH_NONE;
816
817}
818
Willy Tarreau21d2af32008-02-14 20:25:24 +0100819/* Parse the URI from the given transaction (which is assumed to be in request
820 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
821 * It is returned otherwise.
822 */
823static char *
824http_get_path(struct http_txn *txn)
825{
826 char *ptr, *end;
827
Willy Tarreau9b28e032012-10-12 23:49:43 +0200828 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100829 end = ptr + txn->req.sl.rq.u_l;
830
831 if (ptr >= end)
832 return NULL;
833
834 /* RFC2616, par. 5.1.2 :
835 * Request-URI = "*" | absuri | abspath | authority
836 */
837
838 if (*ptr == '*')
839 return NULL;
840
841 if (isalpha((unsigned char)*ptr)) {
842 /* this is a scheme as described by RFC3986, par. 3.1 */
843 ptr++;
844 while (ptr < end &&
845 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
846 ptr++;
847 /* skip '://' */
848 if (ptr == end || *ptr++ != ':')
849 return NULL;
850 if (ptr == end || *ptr++ != '/')
851 return NULL;
852 if (ptr == end || *ptr++ != '/')
853 return NULL;
854 }
855 /* skip [user[:passwd]@]host[:[port]] */
856
857 while (ptr < end && *ptr != '/')
858 ptr++;
859
860 if (ptr == end)
861 return NULL;
862
863 /* OK, we got the '/' ! */
864 return ptr;
865}
866
William Lallemand65ad6e12014-01-31 15:08:02 +0100867/* Parse the URI from the given string and look for the "/" beginning the PATH.
868 * If not found, return NULL. It is returned otherwise.
869 */
870static char *
871http_get_path_from_string(char *str)
872{
873 char *ptr = str;
874
875 /* RFC2616, par. 5.1.2 :
876 * Request-URI = "*" | absuri | abspath | authority
877 */
878
879 if (*ptr == '*')
880 return NULL;
881
882 if (isalpha((unsigned char)*ptr)) {
883 /* this is a scheme as described by RFC3986, par. 3.1 */
884 ptr++;
885 while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')
886 ptr++;
887 /* skip '://' */
888 if (*ptr == '\0' || *ptr++ != ':')
889 return NULL;
890 if (*ptr == '\0' || *ptr++ != '/')
891 return NULL;
892 if (*ptr == '\0' || *ptr++ != '/')
893 return NULL;
894 }
895 /* skip [user[:passwd]@]host[:[port]] */
896
897 while (*ptr != '\0' && *ptr != ' ' && *ptr != '/')
898 ptr++;
899
900 if (*ptr == '\0' || *ptr == ' ')
901 return NULL;
902
903 /* OK, we got the '/' ! */
904 return ptr;
905}
906
Willy Tarreau71241ab2012-12-27 11:30:54 +0100907/* Returns a 302 for a redirectable request that reaches a server working in
908 * in redirect mode. This may only be called just after the stream interface
909 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
910 * follow normal proxy processing. NOTE: this function is designed to support
911 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100912 */
Willy Tarreau71241ab2012-12-27 11:30:54 +0100913void http_perform_server_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100914{
915 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +0100916 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100917 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200918 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100919
920 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100921 trash.len = strlen(HTTP_302);
922 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100923
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100924 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100925
Willy Tarreauefb453c2008-10-26 20:49:47 +0100926 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100927 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100928 return;
929
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100930 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100931 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100932 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
933 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100934 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100935
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200936 /* 3: add the request URI. Since it was already forwarded, we need
937 * to temporarily rewind the buffer.
938 */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100939 txn = &s->txn;
Willy Tarreau211cdec2014-04-17 20:18:08 +0200940 b_rew(s->req->buf, rewind = http_hdr_rewind(&txn->req));
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200941
Willy Tarreauefb453c2008-10-26 20:49:47 +0100942 path = http_get_path(txn);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200943 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 +0200944
Willy Tarreau9b28e032012-10-12 23:49:43 +0200945 b_adv(s->req->buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200946
Willy Tarreauefb453c2008-10-26 20:49:47 +0100947 if (!path)
948 return;
949
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100950 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100951 return;
952
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100953 memcpy(trash.str + trash.len, path, len);
954 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100955
956 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100957 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
958 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100959 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100960 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
961 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100962 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100963
964 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200965 si_shutr(si);
966 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100967 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100968 si->state = SI_ST_CLO;
969
970 /* send the message */
Willy Tarreau570f2212013-06-10 16:42:09 +0200971 http_server_error(s, si, SN_ERR_LOCAL, SN_FINST_C, 302, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100972
973 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +0100974 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500975 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100976}
977
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100978/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100979 * that the server side is closed. Note that err_type is actually a
980 * bitmask, where almost only aborts may be cumulated with other
981 * values. We consider that aborted operations are more important
982 * than timeouts or errors due to the fact that nobody else in the
983 * logs might explain incomplete retries. All others should avoid
984 * being cumulated. It should normally not be possible to have multiple
985 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +0100986 * Note that connection errors appearing on the second request of a keep-alive
987 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100988 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100989void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100990{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100991 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100992
993 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100994 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +0200995 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100996 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100997 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +0100998 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
999 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001000 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001001 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001002 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001003 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001004 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001005 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001006 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001007 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001008 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1009 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001010 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001011 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
Willy Tarreau36346242014-02-24 18:26:30 +01001012 503, (s->flags & SN_SRV_REUSED) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001013 http_error_message(s, HTTP_ERR_503));
Willy Tarreau2d400bb2012-05-14 12:11:47 +02001014 else if (err_type & SI_ET_CONN_RES)
1015 http_server_error(s, si, SN_ERR_RESOURCE, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001016 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1017 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001018 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001019 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +02001020 500, http_error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001021}
1022
Willy Tarreau42250582007-04-01 01:30:43 +02001023extern const char sess_term_cond[8];
1024extern const char sess_fin_state[8];
1025extern const char *monthname[12];
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001026struct pool_head *pool2_requri;
Willy Tarreau193b8c62012-11-22 00:17:38 +01001027struct pool_head *pool2_capture = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001028struct pool_head *pool2_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001029
Willy Tarreau117f59e2007-03-04 18:17:17 +01001030/*
1031 * Capture headers from message starting at <som> according to header list
Willy Tarreau54da8db2014-06-13 16:11:48 +02001032 * <cap_hdr>, and fill the <cap> pointers appropriately.
Willy Tarreau117f59e2007-03-04 18:17:17 +01001033 */
1034void capture_headers(char *som, struct hdr_idx *idx,
1035 char **cap, struct cap_hdr *cap_hdr)
1036{
1037 char *eol, *sol, *col, *sov;
1038 int cur_idx;
1039 struct cap_hdr *h;
1040 int len;
1041
1042 sol = som + hdr_idx_first_pos(idx);
1043 cur_idx = hdr_idx_first_idx(idx);
1044
1045 while (cur_idx) {
1046 eol = sol + idx->v[cur_idx].len;
1047
1048 col = sol;
1049 while (col < eol && *col != ':')
1050 col++;
1051
1052 sov = col + 1;
1053 while (sov < eol && http_is_lws[(unsigned char)*sov])
1054 sov++;
1055
1056 for (h = cap_hdr; h; h = h->next) {
Willy Tarreau54da8db2014-06-13 16:11:48 +02001057 if (h->namelen && (h->namelen == col - sol) &&
Willy Tarreau117f59e2007-03-04 18:17:17 +01001058 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1059 if (cap[h->index] == NULL)
1060 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001061 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001062
1063 if (cap[h->index] == NULL) {
1064 Alert("HTTP capture : out of memory.\n");
1065 continue;
1066 }
1067
1068 len = eol - sov;
1069 if (len > h->len)
1070 len = h->len;
1071
1072 memcpy(cap[h->index], sov, len);
1073 cap[h->index][len]=0;
1074 }
1075 }
1076 sol = eol + idx->v[cur_idx].cr + 1;
1077 cur_idx = idx->v[cur_idx].next;
1078 }
1079}
1080
1081
Willy Tarreau42250582007-04-01 01:30:43 +02001082/* either we find an LF at <ptr> or we jump to <bad>.
1083 */
1084#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1085
1086/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1087 * otherwise to <http_msg_ood> with <state> set to <st>.
1088 */
1089#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1090 ptr++; \
1091 if (likely(ptr < end)) \
1092 goto good; \
1093 else { \
1094 state = (st); \
1095 goto http_msg_ood; \
1096 } \
1097 } while (0)
1098
1099
Willy Tarreaubaaee002006-06-26 02:48:02 +02001100/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001101 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001102 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1103 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1104 * will give undefined results.
1105 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1106 * and that msg->sol points to the beginning of the response.
1107 * If a complete line is found (which implies that at least one CR or LF is
1108 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1109 * returned indicating an incomplete line (which does not mean that parts have
1110 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1111 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1112 * upon next call.
1113 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001114 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001115 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1116 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001117 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001118 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001119const char *http_parse_stsline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001120 enum ht_state state, const char *ptr, const char *end,
1121 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001122{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001123 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001124
Willy Tarreau8973c702007-01-21 23:58:29 +01001125 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001126 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001127 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001128 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001129 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1130
1131 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001132 msg->sl.st.v_l = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001133 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1134 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001135 state = HTTP_MSG_ERROR;
1136 break;
1137
Willy Tarreau8973c702007-01-21 23:58:29 +01001138 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001139 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001140 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001141 msg->sl.st.c = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001142 goto http_msg_rpcode;
1143 }
1144 if (likely(HTTP_IS_SPHT(*ptr)))
1145 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1146 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001147 state = HTTP_MSG_ERROR;
1148 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001149
Willy Tarreau8973c702007-01-21 23:58:29 +01001150 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001151 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001152 if (likely(!HTTP_IS_LWS(*ptr)))
1153 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1154
1155 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001156 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001157 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1158 }
1159
1160 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001161 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001162 http_msg_rsp_reason:
1163 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001164 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001165 msg->sl.st.r_l = 0;
1166 goto http_msg_rpline_eol;
1167
Willy Tarreau8973c702007-01-21 23:58:29 +01001168 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001169 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001170 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001171 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001172 goto http_msg_rpreason;
1173 }
1174 if (likely(HTTP_IS_SPHT(*ptr)))
1175 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1176 /* so it's a CR/LF, so there is no reason phrase */
1177 goto http_msg_rsp_reason;
1178
Willy Tarreau8973c702007-01-21 23:58:29 +01001179 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001180 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001181 if (likely(!HTTP_IS_CRLF(*ptr)))
1182 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreauea1175a2012-03-05 15:52:30 +01001183 msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001184 http_msg_rpline_eol:
1185 /* We have seen the end of line. Note that we do not
1186 * necessarily have the \n yet, but at least we know that we
1187 * have EITHER \r OR \n, otherwise the response would not be
1188 * complete. We can then record the response length and return
1189 * to the caller which will be able to register it.
1190 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001191 msg->sl.st.l = ptr - msg_start - msg->sol;
Willy Tarreau8973c702007-01-21 23:58:29 +01001192 return ptr;
1193
Willy Tarreau8973c702007-01-21 23:58:29 +01001194 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001195#ifdef DEBUG_FULL
Willy Tarreau8973c702007-01-21 23:58:29 +01001196 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1197 exit(1);
1198#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001199 ;
Willy Tarreau8973c702007-01-21 23:58:29 +01001200 }
1201
1202 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001203 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001204 if (ret_state)
1205 *ret_state = state;
1206 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001207 *ret_ptr = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001208 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001209}
1210
Willy Tarreau8973c702007-01-21 23:58:29 +01001211/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001212 * This function parses a request line between <ptr> and <end>, starting with
1213 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1214 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1215 * will give undefined results.
1216 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1217 * and that msg->sol points to the beginning of the request.
1218 * If a complete line is found (which implies that at least one CR or LF is
1219 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1220 * returned indicating an incomplete line (which does not mean that parts have
1221 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1222 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1223 * upon next call.
1224 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001225 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001226 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1227 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001228 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001229 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001230const char *http_parse_reqline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001231 enum ht_state state, const char *ptr, const char *end,
1232 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001233{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001234 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001235
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001236 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001237 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001238 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001239 if (likely(HTTP_IS_TOKEN(*ptr)))
1240 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001241
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001242 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001243 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001244 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1245 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001246
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001247 if (likely(HTTP_IS_CRLF(*ptr))) {
1248 /* HTTP 0.9 request */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001249 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001250 http_msg_req09_uri:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001251 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001252 http_msg_req09_uri_e:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001253 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001254 http_msg_req09_ver:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001255 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001256 msg->sl.rq.v_l = 0;
1257 goto http_msg_rqline_eol;
1258 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001259 state = HTTP_MSG_ERROR;
1260 break;
1261
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001262 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001263 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001264 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001265 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001266 goto http_msg_rquri;
1267 }
1268 if (likely(HTTP_IS_SPHT(*ptr)))
1269 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1270 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1271 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001272
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001273 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001274 http_msg_rquri:
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001275 if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001276 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001277
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001278 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001279 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001280 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1281 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001282
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001283 if (likely((unsigned char)*ptr >= 128)) {
Willy Tarreau422246e2012-01-07 23:54:13 +01001284 /* non-ASCII chars are forbidden unless option
1285 * accept-invalid-http-request is enabled in the frontend.
1286 * In any case, we capture the faulty char.
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001287 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001288 if (msg->err_pos < -1)
1289 goto invalid_char;
1290 if (msg->err_pos == -1)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001291 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001292 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
1293 }
1294
1295 if (likely(HTTP_IS_CRLF(*ptr))) {
1296 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1297 goto http_msg_req09_uri_e;
1298 }
1299
1300 /* OK forbidden chars, 0..31 or 127 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001301 invalid_char:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001302 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001303 state = HTTP_MSG_ERROR;
1304 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001305
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001306 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001307 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001308 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001309 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001310 goto http_msg_rqver;
1311 }
1312 if (likely(HTTP_IS_SPHT(*ptr)))
1313 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1314 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1315 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001316
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001317 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001318 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001319 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001320 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001321
1322 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001323 msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001324 http_msg_rqline_eol:
1325 /* We have seen the end of line. Note that we do not
1326 * necessarily have the \n yet, but at least we know that we
1327 * have EITHER \r OR \n, otherwise the request would not be
1328 * complete. We can then record the request length and return
1329 * to the caller which will be able to register it.
1330 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001331 msg->sl.rq.l = ptr - msg_start - msg->sol;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001332 return ptr;
1333 }
1334
1335 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001336 state = HTTP_MSG_ERROR;
1337 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001338
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001339 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001340#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001341 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1342 exit(1);
1343#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001344 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001345 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001346
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001347 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001348 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001349 if (ret_state)
1350 *ret_state = state;
1351 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001352 *ret_ptr = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001353 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001354}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001355
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001356/*
1357 * Returns the data from Authorization header. Function may be called more
1358 * than once so data is stored in txn->auth_data. When no header is found
1359 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
Thierry FOURNIER98d96952014-01-23 12:13:02 +01001360 * searching again for something we are unable to find anyway. However, if
1361 * the result if valid, the cache is not reused because we would risk to
1362 * have the credentials overwritten by another session in parallel.
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001363 */
1364
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001365/* This bufffer is initialized in the file 'src/haproxy.c'. This length is
1366 * set according to global.tune.bufsize.
1367 */
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001368char *get_http_auth_buff;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001369
1370int
1371get_http_auth(struct session *s)
1372{
1373
1374 struct http_txn *txn = &s->txn;
1375 struct chunk auth_method;
1376 struct hdr_ctx ctx;
1377 char *h, *p;
1378 int len;
1379
1380#ifdef DEBUG_AUTH
1381 printf("Auth for session %p: %d\n", s, txn->auth.method);
1382#endif
1383
1384 if (txn->auth.method == HTTP_AUTH_WRONG)
1385 return 0;
1386
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001387 txn->auth.method = HTTP_AUTH_WRONG;
1388
1389 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001390
1391 if (txn->flags & TX_USE_PX_CONN) {
1392 h = "Proxy-Authorization";
1393 len = strlen(h);
1394 } else {
1395 h = "Authorization";
1396 len = strlen(h);
1397 }
1398
Willy Tarreau9b28e032012-10-12 23:49:43 +02001399 if (!http_find_header2(h, len, s->req->buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001400 return 0;
1401
1402 h = ctx.line + ctx.val;
1403
1404 p = memchr(h, ' ', ctx.vlen);
1405 if (!p || p == h)
1406 return 0;
1407
1408 chunk_initlen(&auth_method, h, 0, p-h);
1409 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1410
1411 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1412
1413 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001414 get_http_auth_buff, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001415
1416 if (len < 0)
1417 return 0;
1418
1419
1420 get_http_auth_buff[len] = '\0';
1421
1422 p = strchr(get_http_auth_buff, ':');
1423
1424 if (!p)
1425 return 0;
1426
1427 txn->auth.user = get_http_auth_buff;
1428 *p = '\0';
1429 txn->auth.pass = p+1;
1430
1431 txn->auth.method = HTTP_AUTH_BASIC;
1432 return 1;
1433 }
1434
1435 return 0;
1436}
1437
Willy Tarreau58f10d72006-12-04 02:26:12 +01001438
Willy Tarreau8973c702007-01-21 23:58:29 +01001439/*
1440 * This function parses an HTTP message, either a request or a response,
Willy Tarreau8b1323e2012-03-09 14:46:19 +01001441 * depending on the initial msg->msg_state. The caller is responsible for
1442 * ensuring that the message does not wrap. The function can be preempted
1443 * everywhere when data are missing and recalled at the exact same location
1444 * with no information loss. The message may even be realigned between two
1445 * calls. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001446 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau26927362012-05-18 23:22:52 +02001447 * fields. Note that msg->sol will be initialized after completing the first
1448 * state, so that none of the msg pointers has to be initialized prior to the
1449 * first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001450 */
Willy Tarreaua560c212012-03-09 13:50:57 +01001451void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001452{
Willy Tarreau3770f232013-12-07 00:01:53 +01001453 enum ht_state state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001454 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001455 struct buffer *buf;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001456
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001457 state = msg->msg_state;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001458 buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001459 ptr = buf->p + msg->next;
1460 end = buf->p + buf->i;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001461
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001462 if (unlikely(ptr >= end))
1463 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001464
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001465 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001466 /*
1467 * First, states that are specific to the response only.
1468 * We check them first so that request and headers are
1469 * closer to each other (accessed more often).
1470 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001471 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001472 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001473 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001474 /* we have a start of message, but we have to check
1475 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001476 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001477 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001478 if (unlikely(ptr != buf->p)) {
1479 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001480 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001481 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001482 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8973c702007-01-21 23:58:29 +01001483 }
Willy Tarreau26927362012-05-18 23:22:52 +02001484 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001485 msg->sl.st.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001486 hdr_idx_init(idx);
1487 state = HTTP_MSG_RPVER;
1488 goto http_msg_rpver;
1489 }
1490
1491 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1492 goto http_msg_invalid;
1493
1494 if (unlikely(*ptr == '\n'))
1495 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1496 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1497 /* stop here */
1498
Willy Tarreau8973c702007-01-21 23:58:29 +01001499 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001500 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001501 EXPECT_LF_HERE(ptr, http_msg_invalid);
1502 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1503 /* stop here */
1504
Willy Tarreau8973c702007-01-21 23:58:29 +01001505 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001506 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001507 case HTTP_MSG_RPVER_SP:
1508 case HTTP_MSG_RPCODE:
1509 case HTTP_MSG_RPCODE_SP:
1510 case HTTP_MSG_RPREASON:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001511 ptr = (char *)http_parse_stsline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001512 state, ptr, end,
1513 &msg->next, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001514 if (unlikely(!ptr))
1515 return;
1516
1517 /* we have a full response and we know that we have either a CR
1518 * or an LF at <ptr>.
1519 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001520 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1521
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001522 msg->sol = ptr - buf->p;
Willy Tarreau8973c702007-01-21 23:58:29 +01001523 if (likely(*ptr == '\r'))
1524 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1525 goto http_msg_rpline_end;
1526
Willy Tarreau8973c702007-01-21 23:58:29 +01001527 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001528 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001529 /* msg->sol must point to the first of CR or LF. */
1530 EXPECT_LF_HERE(ptr, http_msg_invalid);
1531 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1532 /* stop here */
1533
1534 /*
1535 * Second, states that are specific to the request only
1536 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001537 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001538 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001539 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001540 /* we have a start of message, but we have to check
1541 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001542 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001543 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001544 if (likely(ptr != buf->p)) {
1545 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001546 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001547 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001548 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001549 }
Willy Tarreau26927362012-05-18 23:22:52 +02001550 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001551 msg->sl.rq.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001552 state = HTTP_MSG_RQMETH;
1553 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001554 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001555
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001556 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1557 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001558
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001559 if (unlikely(*ptr == '\n'))
1560 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1561 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001562 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001563
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001564 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001565 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001566 EXPECT_LF_HERE(ptr, http_msg_invalid);
1567 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001568 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001569
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001570 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001571 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001572 case HTTP_MSG_RQMETH_SP:
1573 case HTTP_MSG_RQURI:
1574 case HTTP_MSG_RQURI_SP:
1575 case HTTP_MSG_RQVER:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001576 ptr = (char *)http_parse_reqline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001577 state, ptr, end,
1578 &msg->next, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001579 if (unlikely(!ptr))
1580 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001581
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001582 /* we have a full request and we know that we have either a CR
1583 * or an LF at <ptr>.
1584 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001585 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001586
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001587 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001588 if (likely(*ptr == '\r'))
1589 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001590 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001591
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001592 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001593 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001594 /* check for HTTP/0.9 request : no version information available.
1595 * msg->sol must point to the first of CR or LF.
1596 */
1597 if (unlikely(msg->sl.rq.v_l == 0))
1598 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001599
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001600 EXPECT_LF_HERE(ptr, http_msg_invalid);
1601 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001602 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001603
Willy Tarreau8973c702007-01-21 23:58:29 +01001604 /*
1605 * Common states below
1606 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001607 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001608 http_msg_hdr_first:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001609 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001610 if (likely(!HTTP_IS_CRLF(*ptr))) {
1611 goto http_msg_hdr_name;
1612 }
1613
1614 if (likely(*ptr == '\r'))
1615 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1616 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001617
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001618 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001619 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001620 /* assumes msg->sol points to the first char */
1621 if (likely(HTTP_IS_TOKEN(*ptr)))
1622 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001623
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001624 if (likely(*ptr == ':'))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001625 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001626
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001627 if (likely(msg->err_pos < -1) || *ptr == '\n')
1628 goto http_msg_invalid;
1629
1630 if (msg->err_pos == -1) /* capture error pointer */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001631 msg->err_pos = ptr - buf->p; /* >= 0 now */
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001632
1633 /* and we still accept this non-token character */
1634 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001635
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001636 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001637 http_msg_hdr_l1_sp:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001638 /* assumes msg->sol points to the first char */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001639 if (likely(HTTP_IS_SPHT(*ptr)))
1640 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001641
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001642 /* header value can be basically anything except CR/LF */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001643 msg->sov = ptr - buf->p;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001644
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001645 if (likely(!HTTP_IS_CRLF(*ptr))) {
1646 goto http_msg_hdr_val;
1647 }
1648
1649 if (likely(*ptr == '\r'))
1650 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1651 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001652
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001653 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001654 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001655 EXPECT_LF_HERE(ptr, http_msg_invalid);
1656 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001657
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001658 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001659 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001660 if (likely(HTTP_IS_SPHT(*ptr))) {
1661 /* replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001662 for (; buf->p + msg->sov < ptr; msg->sov++)
1663 buf->p[msg->sov] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001664 goto http_msg_hdr_l1_sp;
1665 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001666 /* we had a header consisting only in spaces ! */
Willy Tarreau12e48b32012-03-05 16:57:34 +01001667 msg->eol = msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001668 goto http_msg_complete_header;
1669
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001670 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001671 http_msg_hdr_val:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001672 /* assumes msg->sol points to the first char, and msg->sov
1673 * points to the first character of the value.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001674 */
1675 if (likely(!HTTP_IS_CRLF(*ptr)))
1676 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001677
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001678 msg->eol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001679 /* Note: we could also copy eol into ->eoh so that we have the
1680 * real header end in case it ends with lots of LWS, but is this
1681 * really needed ?
1682 */
1683 if (likely(*ptr == '\r'))
1684 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1685 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001686
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001687 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001688 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001689 EXPECT_LF_HERE(ptr, http_msg_invalid);
1690 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001691
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001692 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001693 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001694 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1695 /* LWS: replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001696 for (; buf->p + msg->eol < ptr; msg->eol++)
1697 buf->p[msg->eol] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001698 goto http_msg_hdr_val;
1699 }
1700 http_msg_complete_header:
1701 /*
1702 * It was a new header, so the last one is finished.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001703 * Assumes msg->sol points to the first char, msg->sov points
1704 * to the first character of the value and msg->eol to the
1705 * first CR or LF so we know how the line ends. We insert last
1706 * header into the index.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001707 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001708 if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r',
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001709 idx, idx->tail) < 0))
1710 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001711
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001712 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001713 if (likely(!HTTP_IS_CRLF(*ptr))) {
1714 goto http_msg_hdr_name;
1715 }
1716
1717 if (likely(*ptr == '\r'))
1718 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1719 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001720
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001721 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001722 http_msg_last_lf:
Willy Tarreau0558a022014-03-13 15:48:45 +01001723 /* Assumes msg->sol points to the first of either CR or LF.
1724 * Sets ->sov and ->next to the total header length, ->eoh to
1725 * the last CRLF, and ->eol to the last CRLF length (1 or 2).
1726 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001727 EXPECT_LF_HERE(ptr, http_msg_invalid);
1728 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001729 msg->sov = msg->next = ptr - buf->p;
Willy Tarreau3a215be2012-03-09 21:39:51 +01001730 msg->eoh = msg->sol;
1731 msg->sol = 0;
Willy Tarreau0558a022014-03-13 15:48:45 +01001732 msg->eol = msg->sov - msg->eoh;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001733 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001734 return;
Willy Tarreaub56928a2012-04-16 14:51:55 +02001735
1736 case HTTP_MSG_ERROR:
1737 /* this may only happen if we call http_msg_analyser() twice with an error */
1738 break;
1739
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001740 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001741#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001742 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1743 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001744#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001745 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001746 }
1747 http_msg_ood:
1748 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001749 msg->msg_state = state;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001750 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001751 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001752
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001753 http_msg_invalid:
1754 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001755 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001756 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001757 return;
1758}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001759
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001760/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1761 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1762 * nothing is done and 1 is returned.
1763 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001764static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001765{
1766 int delta;
1767 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001768 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001769
1770 if (msg->sl.rq.v_l != 0)
1771 return 1;
1772
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001773 /* RFC 1945 allows only GET for HTTP/0.9 requests */
1774 if (txn->meth != HTTP_METH_GET)
1775 return 0;
1776
Willy Tarreau9b28e032012-10-12 23:49:43 +02001777 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001778 delta = 0;
1779
1780 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001781 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
1782 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001783 }
1784 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001785 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001786 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001787 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001788 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001789 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001790 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001791 NULL, NULL);
1792 if (unlikely(!cur_end))
1793 return 0;
1794
1795 /* we have a full HTTP/1.0 request now and we know that
1796 * we have either a CR or an LF at <ptr>.
1797 */
1798 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1799 return 1;
1800}
1801
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001802/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001803 * and "keep-alive" values. If we already know that some headers may safely
1804 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001805 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1806 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01001807 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001808 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1809 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1810 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001811 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001812 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001813void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001814{
Willy Tarreau5b154472009-12-21 20:11:07 +01001815 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001816 const char *hdr_val = "Connection";
1817 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001818
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001819 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001820 return;
1821
Willy Tarreau88d349d2010-01-25 12:15:43 +01001822 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1823 hdr_val = "Proxy-Connection";
1824 hdr_len = 16;
1825 }
1826
Willy Tarreau5b154472009-12-21 20:11:07 +01001827 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001828 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001829 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001830 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1831 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001832 if (to_del & 2)
1833 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001834 else
1835 txn->flags |= TX_CON_KAL_SET;
1836 }
1837 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1838 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001839 if (to_del & 1)
1840 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001841 else
1842 txn->flags |= TX_CON_CLO_SET;
1843 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01001844 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
1845 txn->flags |= TX_HDR_CONN_UPG;
1846 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001847 }
1848
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001849 txn->flags |= TX_HDR_CONN_PRS;
1850 return;
1851}
Willy Tarreau5b154472009-12-21 20:11:07 +01001852
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001853/* Apply desired changes on the Connection: header. Values may be removed and/or
1854 * added depending on the <wanted> flags, which are exclusively composed of
1855 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1856 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1857 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001858void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001859{
1860 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001861 const char *hdr_val = "Connection";
1862 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001863
1864 ctx.idx = 0;
1865
Willy Tarreau88d349d2010-01-25 12:15:43 +01001866
1867 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1868 hdr_val = "Proxy-Connection";
1869 hdr_len = 16;
1870 }
1871
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001872 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001873 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001874 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1875 if (wanted & TX_CON_KAL_SET)
1876 txn->flags |= TX_CON_KAL_SET;
1877 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001878 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01001879 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001880 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1881 if (wanted & TX_CON_CLO_SET)
1882 txn->flags |= TX_CON_CLO_SET;
1883 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001884 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01001885 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001886 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001887
1888 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
1889 return;
1890
1891 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
1892 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001893 hdr_val = "Connection: close";
1894 hdr_len = 17;
1895 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1896 hdr_val = "Proxy-Connection: close";
1897 hdr_len = 23;
1898 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001899 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001900 }
1901
1902 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
1903 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001904 hdr_val = "Connection: keep-alive";
1905 hdr_len = 22;
1906 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1907 hdr_val = "Proxy-Connection: keep-alive";
1908 hdr_len = 28;
1909 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001910 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001911 }
1912 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01001913}
1914
Willy Tarreauc24715e2014-04-17 15:21:20 +02001915/* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to
1916 * the first byte of data after the chunk size, so that we know we can forward
1917 * exactly msg->next bytes. msg->sol contains the exact number of bytes forming
1918 * the chunk size. That way it is always possible to differentiate between the
1919 * start of the body and the start of the data.
Willy Tarreau115acb92009-12-26 13:56:06 +01001920 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01001921 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01001922 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02001923static inline int http_parse_chunk_size(struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01001924{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001925 const struct buffer *buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001926 const char *ptr = b_ptr(buf, msg->next);
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001927 const char *ptr_old = ptr;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001928 const char *end = buf->data + buf->size;
1929 const char *stop = bi_end(buf);
Willy Tarreau115acb92009-12-26 13:56:06 +01001930 unsigned int chunk = 0;
1931
1932 /* The chunk size is in the following form, though we are only
1933 * interested in the size and CRLF :
1934 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
1935 */
1936 while (1) {
1937 int c;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001938 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001939 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001940 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01001941 if (c < 0) /* not a hex digit anymore */
1942 break;
Willy Tarreau0161d622013-04-02 01:26:55 +02001943 if (unlikely(++ptr >= end))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001944 ptr = buf->data;
Willy Tarreau431946e2012-02-24 19:20:12 +01001945 if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001946 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001947 chunk = (chunk << 4) + c;
1948 }
1949
Willy Tarreaud98cf932009-12-27 22:54:55 +01001950 /* empty size not allowed */
Willy Tarreau0161d622013-04-02 01:26:55 +02001951 if (unlikely(ptr == ptr_old))
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001952 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001953
1954 while (http_is_spht[(unsigned char)*ptr]) {
1955 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001956 ptr = buf->data;
Willy Tarreau0161d622013-04-02 01:26:55 +02001957 if (unlikely(ptr == stop))
Willy Tarreau115acb92009-12-26 13:56:06 +01001958 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01001959 }
1960
Willy Tarreaud98cf932009-12-27 22:54:55 +01001961 /* Up to there, we know that at least one byte is present at *ptr. Check
1962 * for the end of chunk size.
1963 */
1964 while (1) {
1965 if (likely(HTTP_IS_CRLF(*ptr))) {
1966 /* we now have a CR or an LF at ptr */
1967 if (likely(*ptr == '\r')) {
1968 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001969 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001970 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001971 return 0;
1972 }
Willy Tarreau115acb92009-12-26 13:56:06 +01001973
Willy Tarreaud98cf932009-12-27 22:54:55 +01001974 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001975 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001976 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001977 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001978 /* done */
1979 break;
1980 }
1981 else if (*ptr == ';') {
1982 /* chunk extension, ends at next CRLF */
1983 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001984 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001985 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001986 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001987
1988 while (!HTTP_IS_CRLF(*ptr)) {
1989 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001990 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001991 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001992 return 0;
1993 }
1994 /* we have a CRLF now, loop above */
1995 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01001996 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001997 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001998 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001999 }
2000
Willy Tarreaud98cf932009-12-27 22:54:55 +01002001 /* OK we found our CRLF and now <ptr> points to the next byte,
Willy Tarreauc24715e2014-04-17 15:21:20 +02002002 * which may or may not be present. We save that into ->next,
2003 * and the number of bytes parsed into msg->sol.
Willy Tarreau115acb92009-12-26 13:56:06 +01002004 */
Willy Tarreauc24715e2014-04-17 15:21:20 +02002005 msg->sol = ptr - ptr_old;
Willy Tarreau0161d622013-04-02 01:26:55 +02002006 if (unlikely(ptr < ptr_old))
Willy Tarreauc24715e2014-04-17 15:21:20 +02002007 msg->sol += buf->size;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002008 msg->next = buffer_count(buf, buf->p, ptr);
Willy Tarreau124d9912011-03-01 20:30:48 +01002009 msg->chunk_len = chunk;
2010 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002011 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002012 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002013 error:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002014 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002015 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002016}
2017
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002018/* This function skips trailers in the buffer associated with HTTP
Willy Tarreaua458b672012-03-05 11:17:50 +01002019 * message <msg>. The first visited position is msg->next. If the end of
Willy Tarreaud98cf932009-12-27 22:54:55 +01002020 * the trailers is found, it is automatically scheduled to be forwarded,
2021 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2022 * If not enough data are available, the function does not change anything
Willy Tarreauc24715e2014-04-17 15:21:20 +02002023 * except maybe msg->next if it could parse some lines, and returns zero.
2024 * If a parse error is encountered, the function returns < 0 and does not
2025 * change anything except maybe msg->next. Note that the message must
2026 * already be in HTTP_MSG_TRAILERS state before calling this function,
Willy Tarreau638cd022010-01-03 07:42:04 +01002027 * which implies that all non-trailers data have already been scheduled for
Willy Tarreauc24715e2014-04-17 15:21:20 +02002028 * forwarding, and that msg->next exactly matches the length of trailers
2029 * already parsed and not forwarded. It is also important to note that this
2030 * function is designed to be able to parse wrapped headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002031 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002032static int http_forward_trailers(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002033{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002034 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002035
Willy Tarreaua458b672012-03-05 11:17:50 +01002036 /* we have msg->next which points to next line. Look for CRLF. */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002037 while (1) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002038 const char *p1 = NULL, *p2 = NULL;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002039 const char *ptr = b_ptr(buf, msg->next);
2040 const char *stop = bi_end(buf);
Willy Tarreau638cd022010-01-03 07:42:04 +01002041 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002042
2043 /* scan current line and stop at LF or CRLF */
2044 while (1) {
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002045 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002046 return 0;
2047
2048 if (*ptr == '\n') {
2049 if (!p1)
2050 p1 = ptr;
2051 p2 = ptr;
2052 break;
2053 }
2054
2055 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002056 if (p1) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002057 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002058 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002059 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002060 p1 = ptr;
2061 }
2062
2063 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002064 if (ptr >= buf->data + buf->size)
2065 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002066 }
2067
2068 /* after LF; point to beginning of next line */
2069 p2++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002070 if (p2 >= buf->data + buf->size)
2071 p2 = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002072
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002073 bytes = p2 - b_ptr(buf, msg->next);
Willy Tarreau638cd022010-01-03 07:42:04 +01002074 if (bytes < 0)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002075 bytes += buf->size;
Willy Tarreau638cd022010-01-03 07:42:04 +01002076
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002077 if (p1 == b_ptr(buf, msg->next)) {
Willy Tarreau638cd022010-01-03 07:42:04 +01002078 /* LF/CRLF at beginning of line => end of trailers at p2.
2079 * Everything was scheduled for forwarding, there's nothing
2080 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002081 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002082 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002083 msg->msg_state = HTTP_MSG_DONE;
2084 return 1;
2085 }
2086 /* OK, next line then */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002087 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002088 }
2089}
2090
Willy Tarreauc24715e2014-04-17 15:21:20 +02002091/* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF
2092 * or a possible LF alone at the end of a chunk. It automatically adjusts
2093 * msg->next in order to include this part into the next forwarding phase.
Willy Tarreaua458b672012-03-05 11:17:50 +01002094 * Note that the caller must ensure that ->p points to the first byte to parse.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002095 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2096 * not enough data are available, the function does not change anything and
2097 * returns zero. If a parse error is encountered, the function returns < 0 and
2098 * does not change anything. Note: this function is designed to parse wrapped
2099 * CRLF at the end of the buffer.
2100 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002101static inline int http_skip_chunk_crlf(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002102{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002103 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002104 const char *ptr;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002105 int bytes;
2106
2107 /* NB: we'll check data availabilty at the end. It's not a
2108 * problem because whatever we match first will be checked
2109 * against the correct length.
2110 */
2111 bytes = 1;
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002112 ptr = b_ptr(buf, msg->next);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002113 if (*ptr == '\r') {
2114 bytes++;
2115 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002116 if (ptr >= buf->data + buf->size)
2117 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002118 }
2119
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002120 if (msg->next + bytes > buf->i)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002121 return 0;
2122
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002123 if (*ptr != '\n') {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002124 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002125 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002126 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002127
2128 ptr++;
Willy Tarreau0161d622013-04-02 01:26:55 +02002129 if (unlikely(ptr >= buf->data + buf->size))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002130 ptr = buf->data;
Willy Tarreauc24715e2014-04-17 15:21:20 +02002131 /* Advance ->next to allow the CRLF to be forwarded */
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002132 msg->next += bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002133 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2134 return 1;
2135}
Willy Tarreau5b154472009-12-21 20:11:07 +01002136
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002137/* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the
2138 * value is larger than 1000, it is bound to 1000. The parser consumes up to
2139 * 1 digit, one dot and 3 digits and stops on the first invalid character.
2140 * Unparsable qvalues return 1000 as "q=1.000".
2141 */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002142int parse_qvalue(const char *qvalue, const char **end)
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002143{
2144 int q = 1000;
2145
Willy Tarreau506c69a2014-07-08 00:59:48 +02002146 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002147 goto out;
2148 q = (*qvalue++ - '0') * 1000;
2149
2150 if (*qvalue++ != '.')
2151 goto out;
2152
Willy Tarreau506c69a2014-07-08 00:59:48 +02002153 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002154 goto out;
2155 q += (*qvalue++ - '0') * 100;
2156
Willy Tarreau506c69a2014-07-08 00:59:48 +02002157 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002158 goto out;
2159 q += (*qvalue++ - '0') * 10;
2160
Willy Tarreau506c69a2014-07-08 00:59:48 +02002161 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002162 goto out;
2163 q += (*qvalue++ - '0') * 1;
2164 out:
2165 if (q > 1000)
2166 q = 1000;
Willy Tarreau38b3aa52014-04-22 23:32:05 +02002167 if (end)
Thierry FOURNIERad903512014-04-11 17:51:01 +02002168 *end = qvalue;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002169 return q;
2170}
William Lallemand82fe75c2012-10-23 10:25:10 +02002171
2172/*
2173 * Selects a compression algorithm depending on the client request.
Willy Tarreau05d84602012-10-26 02:11:25 +02002174 */
William Lallemand82fe75c2012-10-23 10:25:10 +02002175int select_compression_request_header(struct session *s, struct buffer *req)
2176{
2177 struct http_txn *txn = &s->txn;
Willy Tarreau70737d12012-10-27 00:34:28 +02002178 struct http_msg *msg = &txn->req;
William Lallemand82fe75c2012-10-23 10:25:10 +02002179 struct hdr_ctx ctx;
2180 struct comp_algo *comp_algo = NULL;
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002181 struct comp_algo *comp_algo_back = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002182
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002183 /* Disable compression for older user agents announcing themselves as "Mozilla/4"
2184 * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later).
Willy Tarreau05d84602012-10-26 02:11:25 +02002185 * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details.
2186 */
2187 ctx.idx = 0;
2188 if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) &&
2189 ctx.vlen >= 9 &&
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002190 memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 &&
2191 (ctx.vlen < 31 ||
2192 memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 ||
2193 ctx.line[ctx.val + 30] < '6' ||
2194 (ctx.line[ctx.val + 30] == '6' &&
2195 (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) {
2196 s->comp_algo = NULL;
2197 return 0;
Willy Tarreau05d84602012-10-26 02:11:25 +02002198 }
2199
William Lallemand82fe75c2012-10-23 10:25:10 +02002200 /* search for the algo in the backend in priority or the frontend */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002201 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002202 int best_q = 0;
2203
William Lallemand82fe75c2012-10-23 10:25:10 +02002204 ctx.idx = 0;
2205 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002206 const char *qval;
2207 int q;
2208 int toklen;
2209
2210 /* try to isolate the token from the optional q-value */
2211 toklen = 0;
2212 while (toklen < ctx.vlen && http_is_token[(unsigned char)*(ctx.line + ctx.val + toklen)])
2213 toklen++;
2214
2215 qval = ctx.line + ctx.val + toklen;
2216 while (1) {
2217 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2218 qval++;
2219
2220 if (qval >= ctx.line + ctx.val + ctx.vlen || *qval != ';') {
2221 qval = NULL;
2222 break;
2223 }
2224 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002225
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002226 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2227 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002228
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002229 if (qval >= ctx.line + ctx.val + ctx.vlen) {
2230 qval = NULL;
2231 break;
William Lallemand82fe75c2012-10-23 10:25:10 +02002232 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002233 if (strncmp(qval, "q=", MIN(ctx.line + ctx.val + ctx.vlen - qval, 2)) == 0)
2234 break;
2235
2236 while (qval < ctx.line + ctx.val + ctx.vlen && *qval != ';')
2237 qval++;
2238 }
2239
2240 /* here we have qval pointing to the first "q=" attribute or NULL if not found */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002241 q = qval ? parse_qvalue(qval + 2, NULL) : 1000;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002242
2243 if (q <= best_q)
2244 continue;
2245
2246 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
2247 if (*(ctx.line + ctx.val) == '*' ||
2248 word_match(ctx.line + ctx.val, toklen, comp_algo->name, comp_algo->name_len)) {
2249 s->comp_algo = comp_algo;
2250 best_q = q;
2251 break;
2252 }
2253 }
2254 }
2255 }
2256
2257 /* remove all occurrences of the header when "compression offload" is set */
2258 if (s->comp_algo) {
2259 if ((s->be->comp && s->be->comp->offload) || (s->fe->comp && s->fe->comp->offload)) {
2260 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2261 ctx.idx = 0;
2262 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
2263 http_remove_header2(msg, &txn->hdr_idx, &ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +02002264 }
2265 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002266 return 1;
William Lallemand82fe75c2012-10-23 10:25:10 +02002267 }
2268
2269 /* identity is implicit does not require headers */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002270 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
2271 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002272 if (comp_algo->add_data == identity_add_data) {
2273 s->comp_algo = comp_algo;
2274 return 1;
2275 }
2276 }
2277 }
2278
2279 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002280 return 0;
2281}
2282
2283/*
2284 * Selects a comression algorithm depending of the server response.
2285 */
2286int select_compression_response_header(struct session *s, struct buffer *res)
2287{
2288 struct http_txn *txn = &s->txn;
2289 struct http_msg *msg = &txn->rsp;
2290 struct hdr_ctx ctx;
2291 struct comp_type *comp_type;
William Lallemand82fe75c2012-10-23 10:25:10 +02002292
2293 /* no common compression algorithm was found in request header */
2294 if (s->comp_algo == NULL)
2295 goto fail;
2296
2297 /* HTTP < 1.1 should not be compressed */
Willy Tarreau72575502013-12-24 14:41:35 +01002298 if (!(msg->flags & HTTP_MSGF_VER_11) || !(txn->req.flags & HTTP_MSGF_VER_11))
William Lallemand82fe75c2012-10-23 10:25:10 +02002299 goto fail;
2300
William Lallemandd3002612012-11-26 14:34:47 +01002301 /* 200 only */
2302 if (txn->status != 200)
2303 goto fail;
2304
William Lallemand82fe75c2012-10-23 10:25:10 +02002305 /* Content-Length is null */
2306 if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0)
2307 goto fail;
2308
2309 /* content is already compressed */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002310 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002311 if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx))
2312 goto fail;
2313
Willy Tarreau56e9ffa2013-01-05 16:20:35 +01002314 /* no compression when Cache-Control: no-transform is present in the message */
2315 ctx.idx = 0;
2316 while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) {
2317 if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12))
2318 goto fail;
2319 }
2320
William Lallemand82fe75c2012-10-23 10:25:10 +02002321 comp_type = NULL;
2322
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002323 /* we don't want to compress multipart content-types, nor content-types that are
2324 * not listed in the "compression type" directive if any. If no content-type was
2325 * found but configuration requires one, we don't compress either. Backend has
2326 * the priority.
William Lallemand82fe75c2012-10-23 10:25:10 +02002327 */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002328 ctx.idx = 0;
2329 if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) {
2330 if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0)
2331 goto fail;
2332
2333 if ((s->be->comp && (comp_type = s->be->comp->types)) ||
2334 (s->fe->comp && (comp_type = s->fe->comp->types))) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002335 for (; comp_type; comp_type = comp_type->next) {
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002336 if (ctx.vlen >= comp_type->name_len &&
2337 strncasecmp(ctx.line+ctx.val, comp_type->name, comp_type->name_len) == 0)
William Lallemand82fe75c2012-10-23 10:25:10 +02002338 /* this Content-Type should be compressed */
2339 break;
2340 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002341 /* this Content-Type should not be compressed */
2342 if (comp_type == NULL)
2343 goto fail;
William Lallemand82fe75c2012-10-23 10:25:10 +02002344 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002345 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002346 else { /* no content-type header */
2347 if ((s->be->comp && s->be->comp->types) || (s->fe->comp && s->fe->comp->types))
2348 goto fail; /* a content-type was required */
William Lallemandd3002612012-11-26 14:34:47 +01002349 }
2350
William Lallemandd85f9172012-11-09 17:05:39 +01002351 /* limit compression rate */
2352 if (global.comp_rate_lim > 0)
2353 if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim)
2354 goto fail;
2355
William Lallemand072a2bf2012-11-20 17:01:01 +01002356 /* limit cpu usage */
2357 if (idle_pct < compress_min_idle)
2358 goto fail;
2359
William Lallemand4c49fae2012-11-07 15:00:23 +01002360 /* initialize compression */
William Lallemandf3747832012-11-09 12:33:10 +01002361 if (s->comp_algo->init(&s->comp_ctx, global.tune.comp_maxlevel) < 0)
William Lallemand4c49fae2012-11-07 15:00:23 +01002362 goto fail;
2363
William Lallemandec3e3892012-11-12 17:02:18 +01002364 s->flags |= SN_COMP_READY;
2365
William Lallemand82fe75c2012-10-23 10:25:10 +02002366 /* remove Content-Length header */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002367 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002368 if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx))
2369 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2370
2371 /* add Transfer-Encoding header */
2372 if (!(msg->flags & HTTP_MSGF_TE_CHNK))
2373 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26);
2374
2375 /*
2376 * Add Content-Encoding header when it's not identity encoding.
2377 * RFC 2616 : Identity encoding: This content-coding is used only in the
2378 * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding
2379 * header.
2380 */
2381 if (s->comp_algo->add_data != identity_add_data) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002382 trash.len = 18;
2383 memcpy(trash.str, "Content-Encoding: ", trash.len);
2384 memcpy(trash.str + trash.len, s->comp_algo->name, s->comp_algo->name_len);
2385 trash.len += s->comp_algo->name_len;
2386 trash.str[trash.len] = '\0';
2387 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
William Lallemand82fe75c2012-10-23 10:25:10 +02002388 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002389 return 1;
2390
2391fail:
Willy Tarreaub97b6192012-11-19 14:55:02 +01002392 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002393 return 0;
2394}
2395
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002396void http_adjust_conn_mode(struct session *s, struct http_txn *txn, struct http_msg *msg)
2397{
2398 int tmp = TX_CON_WANT_KAL;
2399
2400 if (!((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) {
2401 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
2402 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
2403 tmp = TX_CON_WANT_TUN;
2404
2405 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
2406 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2407 tmp = TX_CON_WANT_TUN;
2408 }
2409
2410 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
2411 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) {
2412 /* option httpclose + server_close => forceclose */
2413 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
2414 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2415 tmp = TX_CON_WANT_CLO;
2416 else
2417 tmp = TX_CON_WANT_SCL;
2418 }
2419
2420 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL ||
2421 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
2422 tmp = TX_CON_WANT_CLO;
2423
2424 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
2425 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
2426
2427 if (!(txn->flags & TX_HDR_CONN_PRS) &&
2428 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
2429 /* parse the Connection header and possibly clean it */
2430 int to_del = 0;
2431 if ((msg->flags & HTTP_MSGF_VER_11) ||
2432 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
2433 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
2434 to_del |= 2; /* remove "keep-alive" */
2435 if (!(msg->flags & HTTP_MSGF_VER_11))
2436 to_del |= 1; /* remove "close" */
2437 http_parse_connection_header(txn, msg, to_del);
2438 }
2439
2440 /* check if client or config asks for explicit close in KAL/SCL */
2441 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
2442 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
2443 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
2444 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
2445 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
2446 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
2447 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
2448}
William Lallemand82fe75c2012-10-23 10:25:10 +02002449
Willy Tarreaud787e662009-07-07 10:14:51 +02002450/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2451 * processing can continue on next analysers, or zero if it either needs more
2452 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2453 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2454 * when it has nothing left to do, and may remove any analyser when it wants to
2455 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002456 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02002457int http_wait_for_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002458{
Willy Tarreau59234e92008-11-30 23:51:27 +01002459 /*
2460 * We will parse the partial (or complete) lines.
2461 * We will check the request syntax, and also join multi-line
2462 * headers. An index of all the lines will be elaborated while
2463 * parsing.
2464 *
2465 * For the parsing, we use a 28 states FSM.
2466 *
2467 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02002468 * req->buf->p = beginning of request
2469 * req->buf->p + msg->eoh = end of processed headers / start of current one
2470 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02002471 * msg->eol = end of current header or line (LF or CRLF)
2472 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02002473 *
2474 * At end of parsing, we may perform a capture of the error (if any), and
Willy Tarreau877e78d2013-04-07 18:48:08 +02002475 * we will set a few fields (txn->meth, sn->flags/SN_REDIRECTABLE).
Willy Tarreaud787e662009-07-07 10:14:51 +02002476 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2477 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002478 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002479
Willy Tarreau59234e92008-11-30 23:51:27 +01002480 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002481 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002482 struct http_txn *txn = &s->txn;
2483 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002484 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002485
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002486 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 +01002487 now_ms, __FUNCTION__,
2488 s,
2489 req,
2490 req->rex, req->wex,
2491 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002492 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01002493 req->analysers);
2494
Willy Tarreau52a0c602009-08-16 22:45:38 +02002495 /* we're speaking HTTP here, so let's speak HTTP to the client */
2496 s->srv_error = http_return_srv_error;
2497
Willy Tarreau83e3af02009-12-28 17:39:57 +01002498 /* There's a protected area at the end of the buffer for rewriting
2499 * purposes. We don't want to start to parse the request if the
2500 * protected area is affected, because we may have to move processed
2501 * data later, which is much more complicated.
2502 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002503 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +02002504 if (txn->flags & TX_NOT_FIRST) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01002505 if (unlikely(!channel_is_rewritable(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002506 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002507 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002508 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002509 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002510 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002511 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002512 return 0;
2513 }
Willy Tarreau379357a2013-06-08 12:55:46 +02002514 if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2515 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite))
2516 buffer_slow_realign(req->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002517 }
2518
Willy Tarreau065e8332010-01-08 00:30:20 +01002519 /* Note that we have the same problem with the response ; we
2520 * may want to send a redirect, error or anything which requires
2521 * some spare space. So we'll ensure that we have at least
2522 * maxrewrite bytes available in the response buffer before
2523 * processing that one. This will only affect pipelined
2524 * keep-alive requests.
2525 */
2526 if ((txn->flags & TX_NOT_FIRST) &&
Willy Tarreauba0902e2015-01-13 14:39:16 +01002527 unlikely(!channel_is_rewritable(s->rep) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02002528 bi_end(s->rep->buf) < b_ptr(s->rep->buf, txn->rsp.next) ||
2529 bi_end(s->rep->buf) > s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)) {
2530 if (s->rep->buf->o) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002531 if (s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002532 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002533 /* don't let a connection request be initiated */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002534 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002535 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002536 s->rep->flags |= CF_WAKE_WRITE;
Willy Tarreau0499e352010-12-17 07:13:42 +01002537 s->rep->analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002538 return 0;
2539 }
2540 }
2541
Willy Tarreau9b28e032012-10-12 23:49:43 +02002542 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01002543 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002544 }
2545
Willy Tarreau59234e92008-11-30 23:51:27 +01002546 /* 1: we might have to print this header in debug mode */
2547 if (unlikely((global.mode & MODE_DEBUG) &&
2548 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02002549 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002550 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002551
Willy Tarreau9b28e032012-10-12 23:49:43 +02002552 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02002553 /* this is a bit complex : in case of error on the request line,
2554 * we know that rq.l is still zero, so we display only the part
2555 * up to the end of the line (truncated by debug_hdr).
2556 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002557 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01002558 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002559
Willy Tarreau59234e92008-11-30 23:51:27 +01002560 sol += hdr_idx_first_pos(&txn->hdr_idx);
2561 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002562
Willy Tarreau59234e92008-11-30 23:51:27 +01002563 while (cur_idx) {
2564 eol = sol + txn->hdr_idx.v[cur_idx].len;
2565 debug_hdr("clihdr", s, sol, eol);
2566 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2567 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002568 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002569 }
2570
Willy Tarreau58f10d72006-12-04 02:26:12 +01002571
Willy Tarreau59234e92008-11-30 23:51:27 +01002572 /*
2573 * Now we quickly check if we have found a full valid request.
2574 * If not so, we check the FD and buffer states before leaving.
2575 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002576 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002577 * requests are checked first. When waiting for a second request
2578 * on a keep-alive session, if we encounter and error, close, t/o,
2579 * we note the error in the session flags but don't set any state.
2580 * Since the error will be noted there, it will not be counted by
2581 * process_session() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002582 * Last, we may increase some tracked counters' http request errors on
2583 * the cases that are deliberately the client's fault. For instance,
2584 * a timeout or connection reset is not counted as an error. However
2585 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002586 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002587
Willy Tarreau655dce92009-11-08 13:10:58 +01002588 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002589 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002590 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002591 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002592 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02002593 session_inc_http_req_ctr(s);
2594 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002595 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002596 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002597 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002598
Willy Tarreau59234e92008-11-30 23:51:27 +01002599 /* 1: Since we are in header mode, if there's no space
2600 * left for headers, we won't be able to free more
2601 * later, so the session will never terminate. We
2602 * must terminate it now.
2603 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002604 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002605 /* FIXME: check if URI is set and return Status
2606 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002607 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002608 session_inc_http_req_ctr(s);
2609 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002610 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002611 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02002612 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01002613 goto return_bad_req;
2614 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002615
Willy Tarreau59234e92008-11-30 23:51:27 +01002616 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002617 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002618 if (!(s->flags & SN_ERR_MASK))
2619 s->flags |= SN_ERR_CLICL;
2620
Willy Tarreaufcffa692010-01-10 14:21:19 +01002621 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002622 goto failed_keep_alive;
2623
Willy Tarreau59234e92008-11-30 23:51:27 +01002624 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002625 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002626 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002627 session_inc_http_err_ctr(s);
2628 }
2629
Willy Tarreaudc979f22012-12-04 10:39:01 +01002630 txn->status = 400;
2631 stream_int_retnclose(req->prod, NULL);
Willy Tarreau59234e92008-11-30 23:51:27 +01002632 msg->msg_state = HTTP_MSG_ERROR;
2633 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002634
Willy Tarreauda7ff642010-06-23 11:44:09 +02002635 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002636 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002637 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002638 if (s->listener->counters)
2639 s->listener->counters->failed_req++;
2640
Willy Tarreau59234e92008-11-30 23:51:27 +01002641 if (!(s->flags & SN_FINST_MASK))
2642 s->flags |= SN_FINST_R;
2643 return 0;
2644 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002645
Willy Tarreau59234e92008-11-30 23:51:27 +01002646 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002647 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002648 if (!(s->flags & SN_ERR_MASK))
2649 s->flags |= SN_ERR_CLITO;
2650
Willy Tarreaufcffa692010-01-10 14:21:19 +01002651 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002652 goto failed_keep_alive;
2653
Willy Tarreau59234e92008-11-30 23:51:27 +01002654 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002655 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002656 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002657 session_inc_http_err_ctr(s);
2658 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002659 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02002660 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau59234e92008-11-30 23:51:27 +01002661 msg->msg_state = HTTP_MSG_ERROR;
2662 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002663
Willy Tarreauda7ff642010-06-23 11:44:09 +02002664 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002665 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002666 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002667 if (s->listener->counters)
2668 s->listener->counters->failed_req++;
2669
Willy Tarreau59234e92008-11-30 23:51:27 +01002670 if (!(s->flags & SN_FINST_MASK))
2671 s->flags |= SN_FINST_R;
2672 return 0;
2673 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002674
Willy Tarreau59234e92008-11-30 23:51:27 +01002675 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002676 else if (req->flags & CF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002677 if (!(s->flags & SN_ERR_MASK))
2678 s->flags |= SN_ERR_CLICL;
2679
Willy Tarreaufcffa692010-01-10 14:21:19 +01002680 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002681 goto failed_keep_alive;
2682
Willy Tarreau4076a152009-04-02 15:18:36 +02002683 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002684 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002685 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02002686 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau59234e92008-11-30 23:51:27 +01002687 msg->msg_state = HTTP_MSG_ERROR;
2688 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002689
Willy Tarreauda7ff642010-06-23 11:44:09 +02002690 session_inc_http_err_ctr(s);
2691 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002692 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002693 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002694 if (s->listener->counters)
2695 s->listener->counters->failed_req++;
2696
Willy Tarreau59234e92008-11-30 23:51:27 +01002697 if (!(s->flags & SN_FINST_MASK))
2698 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002699 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002700 }
2701
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002702 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002703 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2704 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01002705#ifdef TCP_QUICKACK
Willy Tarreau3c728722014-01-23 13:50:42 +01002706 if (s->listener->options & LI_O_NOQUICKACK && req->buf->i && objt_conn(s->req->prod->end) && conn_ctrl_ready(__objt_conn(s->req->prod->end))) {
Willy Tarreau5e205522011-12-17 16:34:27 +01002707 /* We need more data, we have to re-enable quick-ack in case we
2708 * previously disabled it, otherwise we might cause the client
2709 * to delay next data.
2710 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002711 setsockopt(__objt_conn(s->req->prod->end)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01002712 }
2713#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002714
Willy Tarreaufcffa692010-01-10 14:21:19 +01002715 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2716 /* If the client starts to talk, let's fall back to
2717 * request timeout processing.
2718 */
2719 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002720 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002721 }
2722
Willy Tarreau59234e92008-11-30 23:51:27 +01002723 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002724 if (!tick_isset(req->analyse_exp)) {
2725 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2726 (txn->flags & TX_WAIT_NEXT_RQ) &&
2727 tick_isset(s->be->timeout.httpka))
2728 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2729 else
2730 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2731 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002732
Willy Tarreau59234e92008-11-30 23:51:27 +01002733 /* we're not ready yet */
2734 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002735
2736 failed_keep_alive:
2737 /* Here we process low-level errors for keep-alive requests. In
2738 * short, if the request is not the first one and it experiences
2739 * a timeout, read error or shutdown, we just silently close so
2740 * that the client can try again.
2741 */
2742 txn->status = 0;
2743 msg->msg_state = HTTP_MSG_RQBEFORE;
2744 req->analysers = 0;
2745 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +02002746 s->logs.level = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002747 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002748 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002749 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002750 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002751
Willy Tarreaud787e662009-07-07 10:14:51 +02002752 /* OK now we have a complete HTTP request with indexed headers. Let's
2753 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02002754 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01002755 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01002756 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002757 * byte after the last LF. msg->sov points to the first byte of data.
2758 * msg->eol cannot be trusted because it may have been left uninitialized
2759 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002760 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002761
Willy Tarreauda7ff642010-06-23 11:44:09 +02002762 session_inc_http_req_ctr(s);
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002763 proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */
2764
Willy Tarreaub16a5742010-01-10 14:46:16 +01002765 if (txn->flags & TX_WAIT_NEXT_RQ) {
2766 /* kill the pending keep-alive timeout */
2767 txn->flags &= ~TX_WAIT_NEXT_RQ;
2768 req->analyse_exp = TICK_ETERNITY;
2769 }
2770
2771
Willy Tarreaud787e662009-07-07 10:14:51 +02002772 /* Maybe we found in invalid header name while we were configured not
2773 * to block on that, so we have to capture it now.
2774 */
2775 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002776 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002777
Willy Tarreau59234e92008-11-30 23:51:27 +01002778 /*
2779 * 1: identify the method
2780 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002781 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002782
2783 /* we can make use of server redirect on GET and HEAD */
2784 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2785 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002786
Willy Tarreau59234e92008-11-30 23:51:27 +01002787 /*
2788 * 2: check if the URI matches the monitor_uri.
2789 * We have to do this for every request which gets in, because
2790 * the monitor-uri is defined by the frontend.
2791 */
2792 if (unlikely((s->fe->monitor_uri_len != 0) &&
2793 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002794 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002795 s->fe->monitor_uri,
2796 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002797 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002798 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002799 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002800 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002801
Willy Tarreau59234e92008-11-30 23:51:27 +01002802 s->flags |= SN_MONITOR;
Willy Tarreaueabea072011-09-10 23:29:44 +02002803 s->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002804
Willy Tarreau59234e92008-11-30 23:51:27 +01002805 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002806 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002807 int ret = acl_exec_cond(cond, s->fe, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02002808
Willy Tarreau59234e92008-11-30 23:51:27 +01002809 ret = acl_pass(ret);
2810 if (cond->pol == ACL_COND_UNLESS)
2811 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002812
Willy Tarreau59234e92008-11-30 23:51:27 +01002813 if (ret) {
2814 /* we fail this request, let's return 503 service unavail */
2815 txn->status = 503;
Willy Tarreau783f2582012-09-04 12:19:04 +02002816 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_503));
Willy Tarreau570f2212013-06-10 16:42:09 +02002817 if (!(s->flags & SN_ERR_MASK))
2818 s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002819 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002820 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002821 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002822
Willy Tarreau59234e92008-11-30 23:51:27 +01002823 /* nothing to fail, let's reply normaly */
2824 txn->status = 200;
Willy Tarreau783f2582012-09-04 12:19:04 +02002825 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_200));
Willy Tarreau570f2212013-06-10 16:42:09 +02002826 if (!(s->flags & SN_ERR_MASK))
2827 s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002828 goto return_prx_cond;
2829 }
2830
2831 /*
2832 * 3: Maybe we have to copy the original REQURI for the logs ?
2833 * Note: we cannot log anymore if the request has been
2834 * classified as invalid.
2835 */
2836 if (unlikely(s->logs.logwait & LW_REQ)) {
2837 /* we have a complete HTTP request that we must log */
2838 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2839 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002840
Willy Tarreau59234e92008-11-30 23:51:27 +01002841 if (urilen >= REQURI_LEN)
2842 urilen = REQURI_LEN - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02002843 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01002844 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002845
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002846 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01002847 s->do_log(s);
2848 } else {
2849 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002850 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002851 }
Willy Tarreau06619262006-12-17 08:37:22 +01002852
Willy Tarreau59234e92008-11-30 23:51:27 +01002853 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01002854 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002855 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002856
Willy Tarreau5b154472009-12-21 20:11:07 +01002857 /* ... and check if the request is HTTP/1.1 or above */
2858 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002859 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
2860 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
2861 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002862 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01002863
2864 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01002865 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 +01002866
Willy Tarreau88d349d2010-01-25 12:15:43 +01002867 /* if the frontend has "option http-use-proxy-header", we'll check if
2868 * we have what looks like a proxied connection instead of a connection,
2869 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2870 * Note that this is *not* RFC-compliant, however browsers and proxies
2871 * happen to do that despite being non-standard :-(
2872 * We consider that a request not beginning with either '/' or '*' is
2873 * a proxied connection, which covers both "scheme://location" and
2874 * CONNECT ip:port.
2875 */
2876 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002877 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01002878 txn->flags |= TX_USE_PX_CONN;
2879
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002880 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002881 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002882
Willy Tarreau59234e92008-11-30 23:51:27 +01002883 /* 5: we may need to capture headers */
Willy Tarreau42f7d892012-03-24 08:28:09 +01002884 if (unlikely((s->logs.logwait & LW_REQHDR) && txn->req.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02002885 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002886 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002887
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002888 /* 6: determine the transfer-length.
2889 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2890 * the presence of a message-body in a REQUEST and its transfer length
2891 * must be determined that way (in order of precedence) :
2892 * 1. The presence of a message-body in a request is signaled by the
2893 * inclusion of a Content-Length or Transfer-Encoding header field
2894 * in the request's header fields. When a request message contains
2895 * both a message-body of non-zero length and a method that does
2896 * not define any semantics for that request message-body, then an
2897 * origin server SHOULD either ignore the message-body or respond
2898 * with an appropriate error message (e.g., 413). A proxy or
2899 * gateway, when presented the same request, SHOULD either forward
2900 * the request inbound with the message- body or ignore the
2901 * message-body when determining a response.
2902 *
2903 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2904 * and the "chunked" transfer-coding (Section 6.2) is used, the
2905 * transfer-length is defined by the use of this transfer-coding.
2906 * If a Transfer-Encoding header field is present and the "chunked"
2907 * transfer-coding is not present, the transfer-length is defined
2908 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002909 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002910 * 3. If a Content-Length header field is present, its decimal value in
2911 * OCTETs represents both the entity-length and the transfer-length.
2912 * If a message is received with both a Transfer-Encoding header
2913 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002914 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002915 * 4. By the server closing the connection. (Closing the connection
2916 * cannot be used to indicate the end of a request body, since that
2917 * would leave no possibility for the server to send back a response.)
2918 *
2919 * Whenever a transfer-coding is applied to a message-body, the set of
2920 * transfer-codings MUST include "chunked", unless the message indicates
2921 * it is terminated by closing the connection. When the "chunked"
2922 * transfer-coding is used, it MUST be the last transfer-coding applied
2923 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002924 */
2925
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002926 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002927 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002928 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002929 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002930 http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002931 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002932 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
2933 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002934 /* bad transfer-encoding (chunked followed by something else) */
2935 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002936 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002937 break;
2938 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002939 }
2940
Willy Tarreau32b47f42009-10-18 20:55:02 +02002941 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002942 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002943 http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02002944 signed long long cl;
2945
Willy Tarreauad14f752011-09-02 20:33:27 +02002946 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002947 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002948 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002949 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002950
Willy Tarreauad14f752011-09-02 20:33:27 +02002951 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002952 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002953 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002954 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002955
Willy Tarreauad14f752011-09-02 20:33:27 +02002956 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002957 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002958 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002959 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002960
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002961 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002962 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002963 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002964 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002965
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002966 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002967 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002968 }
2969
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002970 /* bodyless requests have a known length */
2971 if (!use_close_only)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002972 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002973
Willy Tarreau179085c2014-04-28 16:48:56 +02002974 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
2975 * only change if both the request and the config reference something else.
2976 * Option httpclose by itself sets tunnel mode where headers are mangled.
2977 * However, if another mode is set, it will affect it (eg: server-close/
2978 * keep-alive + httpclose = close). Note that we avoid to redo the same work
2979 * if FE and BE have the same settings (common). The method consists in
2980 * checking if options changed between the two calls (implying that either
2981 * one is non-null, or one of them is non-null and we are there for the first
2982 * time.
2983 */
2984 if (!(txn->flags & TX_HDR_CONN_PRS) ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002985 ((s->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE)))
2986 http_adjust_conn_mode(s, txn, msg);
Willy Tarreau179085c2014-04-28 16:48:56 +02002987
Willy Tarreaud787e662009-07-07 10:14:51 +02002988 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002989 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002990 req->analyse_exp = TICK_ETERNITY;
2991 return 1;
2992
2993 return_bad_req:
2994 /* We centralize bad requests processing here */
2995 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2996 /* we detected a parsing error. We want to archive this request
2997 * in the dedicated proxy area for later troubleshooting.
2998 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002999 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02003000 }
3001
3002 txn->req.msg_state = HTTP_MSG_ERROR;
3003 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02003004 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003005
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003006 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003007 if (s->listener->counters)
3008 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02003009
3010 return_prx_cond:
3011 if (!(s->flags & SN_ERR_MASK))
3012 s->flags |= SN_ERR_PRXCOND;
3013 if (!(s->flags & SN_FINST_MASK))
3014 s->flags |= SN_FINST_R;
3015
3016 req->analysers = 0;
3017 req->analyse_exp = TICK_ETERNITY;
3018 return 0;
3019}
3020
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02003021
Willy Tarreau347a35d2013-11-22 17:51:09 +01003022/* This function prepares an applet to handle the stats. It can deal with the
3023 * "100-continue" expectation, check that admin rules are met for POST requests,
3024 * and program a response message if something was unexpected. It cannot fail
3025 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003026 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003027 * s->target which is supposed to already point to the stats applet. The caller
3028 * is expected to have already assigned an appctx to the session.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003029 */
3030int http_handle_stats(struct session *s, struct channel *req)
3031{
3032 struct stats_admin_rule *stats_admin_rule;
3033 struct stream_interface *si = s->rep->prod;
3034 struct http_txn *txn = &s->txn;
3035 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003036 struct uri_auth *uri_auth = s->be->uri_auth;
3037 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003038 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003039
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003040 appctx = si_appctx(si);
3041 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
3042 appctx->st1 = appctx->st2 = 0;
3043 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
3044 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreauaf3cf702014-04-22 22:19:53 +02003045 if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn.meth != HTTP_METH_HEAD))
3046 appctx->ctx.stats.flags |= STAT_CHUNKED;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003047
3048 uri = msg->chn->buf->p + msg->sl.rq.u;
3049 lookup = uri + uri_auth->uri_len;
3050
3051 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
3052 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003053 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003054 break;
3055 }
3056 }
3057
3058 if (uri_auth->refresh) {
3059 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
3060 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003061 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003062 break;
3063 }
3064 }
3065 }
3066
3067 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
3068 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003069 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003070 break;
3071 }
3072 }
3073
3074 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3075 if (memcmp(h, ";st=", 4) == 0) {
3076 int i;
3077 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003078 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003079 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
3080 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003081 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003082 break;
3083 }
3084 }
3085 break;
3086 }
3087 }
3088
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003089 appctx->ctx.stats.scope_str = 0;
3090 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003091 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3092 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
3093 int itx = 0;
3094 const char *h2;
3095 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
3096 const char *err;
3097
3098 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
3099 h2 = h;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003100 appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003101 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
3102 itx++;
3103 h++;
3104 }
3105
3106 if (itx > STAT_SCOPE_TXT_MAXLEN)
3107 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003108 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003109
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003110 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003111 memcpy(scope_txt, h2, itx);
3112 scope_txt[itx] = '\0';
3113 err = invalid_char(scope_txt);
3114 if (err) {
3115 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003116 appctx->ctx.stats.scope_str = 0;
3117 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003118 }
3119 break;
3120 }
3121 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003122
3123 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003124 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003125 int ret = 1;
3126
3127 if (stats_admin_rule->cond) {
3128 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
3129 ret = acl_pass(ret);
3130 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3131 ret = !ret;
3132 }
3133
3134 if (ret) {
3135 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003136 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003137 break;
3138 }
3139 }
3140
3141 /* Was the status page requested with a POST ? */
Willy Tarreau347a35d2013-11-22 17:51:09 +01003142 if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003143 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Willy Tarreaucfe7fdd2014-04-26 22:08:32 +02003144 /* we'll need the request body, possibly after sending 100-continue */
3145 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003146 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003147 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003148 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003149 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
3150 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003151 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003152 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003153 else {
3154 /* So it was another method (GET/HEAD) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003155 appctx->st0 = STAT_HTTP_HEAD;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003156 }
3157
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003158 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003159 return 1;
3160}
3161
Lukas Tribus67db8df2013-06-23 17:37:13 +02003162/* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets
3163 * (as per RFC3260 #4 and BCP37 #4.2 and #5.2).
3164 */
3165static inline void inet_set_tos(int fd, struct sockaddr_storage from, int tos)
3166{
3167#ifdef IP_TOS
3168 if (from.ss_family == AF_INET)
3169 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3170#endif
3171#ifdef IPV6_TCLASS
3172 if (from.ss_family == AF_INET6) {
3173 if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&from)->sin6_addr))
3174 /* v4-mapped addresses need IP_TOS */
3175 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3176 else
3177 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos));
3178 }
3179#endif
3180}
3181
Sasha Pachev218f0642014-06-16 12:05:59 -06003182/* Returns the number of characters written to destination,
3183 * -1 on internal error and -2 if no replacement took place.
3184 */
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003185static int http_replace_header(struct my_regex *re, char *dst, uint dst_size, char *val, int len,
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02003186 const char *rep_str)
Sasha Pachev218f0642014-06-16 12:05:59 -06003187{
Willy Tarreau15a53a42015-01-21 13:39:42 +01003188 if (!regex_exec_match2(re, val, len, MAX_MATCH, pmatch, 0))
Sasha Pachev218f0642014-06-16 12:05:59 -06003189 return -2;
3190
3191 return exp_replace(dst, dst_size, val, rep_str, pmatch);
3192}
3193
3194/* Returns the number of characters written to destination,
3195 * -1 on internal error and -2 if no replacement took place.
3196 */
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003197static int http_replace_value(struct my_regex *re, char *dst, uint dst_size, char *val, int len, char delim,
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02003198 const char *rep_str)
Sasha Pachev218f0642014-06-16 12:05:59 -06003199{
3200 char* p = val;
3201 char* dst_end = dst + dst_size;
3202 char* dst_p = dst;
3203
3204 for (;;) {
3205 char *p_delim;
Sasha Pachev218f0642014-06-16 12:05:59 -06003206
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003207 /* look for delim. */
3208 p_delim = p;
3209 while (p_delim < p + len && *p_delim != delim)
3210 p_delim++;
Sasha Pachev218f0642014-06-16 12:05:59 -06003211
Willy Tarreau15a53a42015-01-21 13:39:42 +01003212 if (regex_exec_match2(re, p, p_delim-p, MAX_MATCH, pmatch, 0)) {
Sasha Pachev218f0642014-06-16 12:05:59 -06003213 int replace_n = exp_replace(dst_p, dst_end - dst_p, p, rep_str, pmatch);
3214
3215 if (replace_n < 0)
3216 return -1;
3217
3218 dst_p += replace_n;
3219 } else {
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003220 uint len = p_delim - p;
Sasha Pachev218f0642014-06-16 12:05:59 -06003221
3222 if (dst_p + len >= dst_end)
3223 return -1;
3224
3225 memcpy(dst_p, p, len);
3226 dst_p += len;
3227 }
3228
3229 if (dst_p >= dst_end)
3230 return -1;
3231
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003232 /* end of the replacements. */
3233 if (p_delim >= p + len)
Sasha Pachev218f0642014-06-16 12:05:59 -06003234 break;
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003235
3236 /* Next part. */
3237 *dst_p++ = delim;
3238 p = p_delim + 1;
Sasha Pachev218f0642014-06-16 12:05:59 -06003239 }
3240
3241 return dst_p - dst;
3242}
3243
3244static int http_transform_header(struct session* s, struct http_msg *msg, const char* name, uint name_len,
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02003245 char* buf, struct hdr_idx* idx, struct list *fmt, struct my_regex *re,
Sasha Pachev218f0642014-06-16 12:05:59 -06003246 struct hdr_ctx* ctx, int action)
3247{
3248 ctx->idx = 0;
3249
3250 while (http_find_full_header2(name, name_len, buf, idx, ctx)) {
3251 struct hdr_idx_elem *hdr = idx->v + ctx->idx;
3252 int delta;
Willy Tarreauaa435e72015-01-29 14:01:34 +01003253 char* val = (char*)ctx->line + ctx->val;
Sasha Pachev218f0642014-06-16 12:05:59 -06003254 char* val_end = (char*)ctx->line + hdr->len;
Sasha Pachev218f0642014-06-16 12:05:59 -06003255 char* reg_dst_buf;
3256 uint reg_dst_buf_size;
3257 int n_replaced;
3258
Sasha Pachev218f0642014-06-16 12:05:59 -06003259 trash.len = build_logline(s, trash.str, trash.size, fmt);
3260
3261 if (trash.len >= trash.size - 1)
3262 return -1;
3263
3264 reg_dst_buf = trash.str + trash.len + 1;
3265 reg_dst_buf_size = trash.size - trash.len - 1;
3266
3267 switch (action) {
3268 case HTTP_REQ_ACT_REPLACE_VAL:
3269 case HTTP_RES_ACT_REPLACE_VAL:
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003270 n_replaced = http_replace_value(re, reg_dst_buf, reg_dst_buf_size, val, val_end-val, ',', trash.str);
Sasha Pachev218f0642014-06-16 12:05:59 -06003271 break;
3272 case HTTP_REQ_ACT_REPLACE_HDR:
3273 case HTTP_RES_ACT_REPLACE_HDR:
Thierry FOURNIERc9c2daf2014-06-18 11:53:08 +02003274 n_replaced = http_replace_header(re, reg_dst_buf, reg_dst_buf_size, val, val_end-val, trash.str);
Sasha Pachev218f0642014-06-16 12:05:59 -06003275 break;
3276 default: /* impossible */
3277 return -1;
3278 }
3279
Sasha Pachev218f0642014-06-16 12:05:59 -06003280 switch (n_replaced) {
3281 case -1: return -1;
3282 case -2: continue;
3283 }
3284
3285 delta = buffer_replace2(msg->chn->buf, val, val_end, reg_dst_buf, n_replaced);
3286
3287 hdr->len += delta;
3288 http_msg_move_end(msg, delta);
3289 }
3290
3291 return 0;
3292}
3293
Willy Tarreau20b0de52012-12-24 15:45:22 +01003294/* Executes the http-request rules <rules> for session <s>, proxy <px> and
Willy Tarreau0b748332014-04-29 00:13:29 +02003295 * transaction <txn>. Returns the verdict of the first rule that prevents
3296 * further processing of the request (auth, deny, ...), and defaults to
3297 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
3298 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
3299 * on txn->flags if it encounters a tarpit rule.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003300 */
Willy Tarreau0b748332014-04-29 00:13:29 +02003301enum rule_result
Willy Tarreau96257ec2012-12-27 10:46:37 +01003302http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003303{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003304 struct connection *cli_conn;
Willy Tarreauff011f22011-01-06 17:51:27 +01003305 struct http_req_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01003306 struct hdr_ctx ctx;
Willy Tarreauae3c0102014-04-28 23:22:08 +02003307 const char *auth_realm;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003308
Willy Tarreauff011f22011-01-06 17:51:27 +01003309 list_for_each_entry(rule, rules, list) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003310 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003311 continue;
3312
Willy Tarreau96257ec2012-12-27 10:46:37 +01003313 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01003314 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01003315 int ret;
3316
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003317 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003318 ret = acl_pass(ret);
3319
Willy Tarreauff011f22011-01-06 17:51:27 +01003320 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003321 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003322
3323 if (!ret) /* condition not matched */
3324 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003325 }
3326
Willy Tarreau20b0de52012-12-24 15:45:22 +01003327
Willy Tarreau96257ec2012-12-27 10:46:37 +01003328 switch (rule->action) {
3329 case HTTP_REQ_ACT_ALLOW:
Willy Tarreau0b748332014-04-29 00:13:29 +02003330 return HTTP_RULE_RES_STOP;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003331
3332 case HTTP_REQ_ACT_DENY:
Willy Tarreau0b748332014-04-29 00:13:29 +02003333 return HTTP_RULE_RES_DENY;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003334
Willy Tarreauccbcc372012-12-27 12:37:57 +01003335 case HTTP_REQ_ACT_TARPIT:
3336 txn->flags |= TX_CLTARPIT;
Willy Tarreau0b748332014-04-29 00:13:29 +02003337 return HTTP_RULE_RES_DENY;
Willy Tarreauccbcc372012-12-27 12:37:57 +01003338
Willy Tarreau96257ec2012-12-27 10:46:37 +01003339 case HTTP_REQ_ACT_AUTH:
Willy Tarreauae3c0102014-04-28 23:22:08 +02003340 /* Auth might be performed on regular http-req rules as well as on stats */
3341 auth_realm = rule->arg.auth.realm;
3342 if (!auth_realm) {
3343 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
3344 auth_realm = STATS_DEFAULT_REALM;
3345 else
3346 auth_realm = px->id;
3347 }
3348 /* send 401/407 depending on whether we use a proxy or not. We still
3349 * count one error, because normal browsing won't significantly
3350 * increase the counter but brute force attempts will.
3351 */
3352 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm);
3353 txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401;
3354 stream_int_retnclose(&s->si[0], &trash);
3355 session_inc_http_err_ctr(s);
Willy Tarreau0b748332014-04-29 00:13:29 +02003356 return HTTP_RULE_RES_ABRT;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003357
Willy Tarreau81499eb2012-12-27 12:19:02 +01003358 case HTTP_REQ_ACT_REDIR:
Willy Tarreau0b748332014-04-29 00:13:29 +02003359 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3360 return HTTP_RULE_RES_BADREQ;
3361 return HTTP_RULE_RES_DONE;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003362
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003363 case HTTP_REQ_ACT_SET_NICE:
3364 s->task->nice = rule->arg.nice;
3365 break;
3366
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003367 case HTTP_REQ_ACT_SET_TOS:
Willy Tarreau3c728722014-01-23 13:50:42 +01003368 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003369 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003370 break;
3371
Willy Tarreau51347ed2013-06-11 19:34:13 +02003372 case HTTP_REQ_ACT_SET_MARK:
3373#ifdef SO_MARK
Willy Tarreau3c728722014-01-23 13:50:42 +01003374 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003375 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003376#endif
3377 break;
3378
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003379 case HTTP_REQ_ACT_SET_LOGL:
3380 s->logs.level = rule->arg.loglevel;
3381 break;
3382
Sasha Pachev218f0642014-06-16 12:05:59 -06003383 case HTTP_REQ_ACT_REPLACE_HDR:
3384 case HTTP_REQ_ACT_REPLACE_VAL:
3385 if (http_transform_header(s, &txn->req, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3386 txn->req.chn->buf->p, &txn->hdr_idx, &rule->arg.hdr_add.fmt,
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02003387 &rule->arg.hdr_add.re, &ctx, rule->action))
Sasha Pachev218f0642014-06-16 12:05:59 -06003388 return HTTP_RULE_RES_BADREQ;
3389 break;
3390
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003391 case HTTP_REQ_ACT_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003392 ctx.idx = 0;
3393 /* remove all occurrences of the header */
3394 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3395 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3396 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01003397 }
Willy Tarreau85603282015-01-21 20:39:27 +01003398 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003399
Willy Tarreau85603282015-01-21 20:39:27 +01003400 case HTTP_REQ_ACT_SET_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003401 case HTTP_REQ_ACT_ADD_HDR:
3402 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3403 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3404 trash.len = rule->arg.hdr_add.name_len;
3405 trash.str[trash.len++] = ':';
3406 trash.str[trash.len++] = ' ';
3407 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01003408
3409 if (rule->action == HTTP_REQ_ACT_SET_HDR) {
3410 /* remove all occurrences of the header */
3411 ctx.idx = 0;
3412 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3413 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3414 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
3415 }
3416 }
3417
Willy Tarreau96257ec2012-12-27 10:46:37 +01003418 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len);
3419 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003420
3421 case HTTP_REQ_ACT_DEL_ACL:
3422 case HTTP_REQ_ACT_DEL_MAP: {
3423 struct pat_ref *ref;
3424 char *key;
3425 int len;
3426
3427 /* collect reference */
3428 ref = pat_ref_lookup(rule->arg.map.ref);
3429 if (!ref)
3430 continue;
3431
3432 /* collect key */
3433 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3434 key = trash.str;
3435 key[len] = '\0';
3436
3437 /* perform update */
3438 /* returned code: 1=ok, 0=ko */
3439 pat_ref_delete(ref, key);
3440
3441 break;
3442 }
3443
3444 case HTTP_REQ_ACT_ADD_ACL: {
3445 struct pat_ref *ref;
3446 char *key;
3447 struct chunk *trash_key;
3448 int len;
3449
3450 trash_key = get_trash_chunk();
3451
3452 /* collect reference */
3453 ref = pat_ref_lookup(rule->arg.map.ref);
3454 if (!ref)
3455 continue;
3456
3457 /* collect key */
3458 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3459 key = trash_key->str;
3460 key[len] = '\0';
3461
3462 /* perform update */
3463 /* add entry only if it does not already exist */
3464 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003465 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003466
3467 break;
3468 }
3469
3470 case HTTP_REQ_ACT_SET_MAP: {
3471 struct pat_ref *ref;
3472 char *key, *value;
3473 struct chunk *trash_key, *trash_value;
3474 int len;
3475
3476 trash_key = get_trash_chunk();
3477 trash_value = get_trash_chunk();
3478
3479 /* collect reference */
3480 ref = pat_ref_lookup(rule->arg.map.ref);
3481 if (!ref)
3482 continue;
3483
3484 /* collect key */
3485 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3486 key = trash_key->str;
3487 key[len] = '\0';
3488
3489 /* collect value */
3490 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3491 value = trash_value->str;
3492 value[len] = '\0';
3493
3494 /* perform update */
3495 if (pat_ref_find_elt(ref, key) != NULL)
3496 /* update entry if it exists */
3497 pat_ref_set(ref, key, value, NULL);
3498 else
3499 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003500 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003501
3502 break;
3503 }
William Lallemand73025dd2014-04-24 14:38:37 +02003504
3505 case HTTP_REQ_ACT_CUSTOM_CONT:
3506 rule->action_ptr(rule, px, s, txn);
3507 break;
3508
3509 case HTTP_REQ_ACT_CUSTOM_STOP:
3510 rule->action_ptr(rule, px, s, txn);
Willy Tarreau0b748332014-04-29 00:13:29 +02003511 return HTTP_RULE_RES_DONE;
Willy Tarreau09448f72014-06-25 18:12:15 +02003512
3513 case HTTP_REQ_ACT_TRK_SC0 ... HTTP_REQ_ACT_TRK_SCMAX:
3514 /* Note: only the first valid tracking parameter of each
3515 * applies.
3516 */
3517
3518 if (stkctr_entry(&s->stkctr[http_req_trk_idx(rule->action)]) == NULL) {
3519 struct stktable *t;
3520 struct stksess *ts;
3521 struct stktable_key *key;
3522 void *ptr;
3523
3524 t = rule->act_prm.trk_ctr.table.t;
3525 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr, NULL);
3526
3527 if (key && (ts = stktable_get_entry(t, key))) {
3528 session_track_stkctr(&s->stkctr[http_req_trk_idx(rule->action)], t, ts);
3529
3530 /* let's count a new HTTP request as it's the first time we do it */
3531 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3532 if (ptr)
3533 stktable_data_cast(ptr, http_req_cnt)++;
3534
3535 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3536 if (ptr)
3537 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
3538 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3539
3540 stkctr_set_flags(&s->stkctr[http_req_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
3541 if (s->fe != s->be)
3542 stkctr_set_flags(&s->stkctr[http_req_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
3543 }
3544 }
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003545 }
3546 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003547
3548 /* we reached the end of the rules, nothing to report */
Willy Tarreau0b748332014-04-29 00:13:29 +02003549 return HTTP_RULE_RES_CONT;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003550}
3551
Willy Tarreau71241ab2012-12-27 11:30:54 +01003552
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003553/* Executes the http-response rules <rules> for session <s>, proxy <px> and
3554 * transaction <txn>. Returns the first rule that prevents further processing
3555 * of the response (deny, ...) or NULL if it executed all rules or stopped
3556 * on an allow. It may set the TX_SVDENY on txn->flags if it encounters a deny
3557 * rule.
3558 */
3559static struct http_res_rule *
3560http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
3561{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003562 struct connection *cli_conn;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003563 struct http_res_rule *rule;
3564 struct hdr_ctx ctx;
3565
3566 list_for_each_entry(rule, rules, list) {
3567 if (rule->action >= HTTP_RES_ACT_MAX)
3568 continue;
3569
3570 /* check optional condition */
3571 if (rule->cond) {
3572 int ret;
3573
3574 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3575 ret = acl_pass(ret);
3576
3577 if (rule->cond->pol == ACL_COND_UNLESS)
3578 ret = !ret;
3579
3580 if (!ret) /* condition not matched */
3581 continue;
3582 }
3583
3584
3585 switch (rule->action) {
3586 case HTTP_RES_ACT_ALLOW:
3587 return NULL; /* "allow" rules are OK */
3588
3589 case HTTP_RES_ACT_DENY:
3590 txn->flags |= TX_SVDENY;
3591 return rule;
3592
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003593 case HTTP_RES_ACT_SET_NICE:
3594 s->task->nice = rule->arg.nice;
3595 break;
3596
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003597 case HTTP_RES_ACT_SET_TOS:
Willy Tarreau3c728722014-01-23 13:50:42 +01003598 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003599 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003600 break;
3601
Willy Tarreau51347ed2013-06-11 19:34:13 +02003602 case HTTP_RES_ACT_SET_MARK:
3603#ifdef SO_MARK
Willy Tarreau3c728722014-01-23 13:50:42 +01003604 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003605 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003606#endif
3607 break;
3608
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003609 case HTTP_RES_ACT_SET_LOGL:
3610 s->logs.level = rule->arg.loglevel;
3611 break;
3612
Sasha Pachev218f0642014-06-16 12:05:59 -06003613 case HTTP_RES_ACT_REPLACE_HDR:
3614 case HTTP_RES_ACT_REPLACE_VAL:
3615 if (http_transform_header(s, &txn->rsp, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3616 txn->rsp.chn->buf->p, &txn->hdr_idx, &rule->arg.hdr_add.fmt,
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02003617 &rule->arg.hdr_add.re, &ctx, rule->action))
Sasha Pachev218f0642014-06-16 12:05:59 -06003618 return NULL; /* note: we should report an error here */
3619 break;
3620
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003621 case HTTP_RES_ACT_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003622 ctx.idx = 0;
3623 /* remove all occurrences of the header */
3624 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3625 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3626 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3627 }
Willy Tarreau85603282015-01-21 20:39:27 +01003628 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003629
Willy Tarreau85603282015-01-21 20:39:27 +01003630 case HTTP_RES_ACT_SET_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003631 case HTTP_RES_ACT_ADD_HDR:
3632 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3633 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3634 trash.len = rule->arg.hdr_add.name_len;
3635 trash.str[trash.len++] = ':';
3636 trash.str[trash.len++] = ' ';
3637 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01003638
3639 if (rule->action == HTTP_RES_ACT_SET_HDR) {
3640 /* remove all occurrences of the header */
3641 ctx.idx = 0;
3642 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3643 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3644 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3645 }
3646 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003647 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
3648 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003649
3650 case HTTP_RES_ACT_DEL_ACL:
3651 case HTTP_RES_ACT_DEL_MAP: {
3652 struct pat_ref *ref;
3653 char *key;
3654 int len;
3655
3656 /* collect reference */
3657 ref = pat_ref_lookup(rule->arg.map.ref);
3658 if (!ref)
3659 continue;
3660
3661 /* collect key */
3662 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3663 key = trash.str;
3664 key[len] = '\0';
3665
3666 /* perform update */
3667 /* returned code: 1=ok, 0=ko */
3668 pat_ref_delete(ref, key);
3669
3670 break;
3671 }
3672
3673 case HTTP_RES_ACT_ADD_ACL: {
3674 struct pat_ref *ref;
3675 char *key;
3676 struct chunk *trash_key;
3677 int len;
3678
3679 trash_key = get_trash_chunk();
3680
3681 /* collect reference */
3682 ref = pat_ref_lookup(rule->arg.map.ref);
3683 if (!ref)
3684 continue;
3685
3686 /* collect key */
3687 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3688 key = trash_key->str;
3689 key[len] = '\0';
3690
3691 /* perform update */
3692 /* check if the entry already exists */
3693 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003694 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003695
3696 break;
3697 }
3698
3699 case HTTP_RES_ACT_SET_MAP: {
3700 struct pat_ref *ref;
3701 char *key, *value;
3702 struct chunk *trash_key, *trash_value;
3703 int len;
3704
3705 trash_key = get_trash_chunk();
3706 trash_value = get_trash_chunk();
3707
3708 /* collect reference */
3709 ref = pat_ref_lookup(rule->arg.map.ref);
3710 if (!ref)
3711 continue;
3712
3713 /* collect key */
3714 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3715 key = trash_key->str;
3716 key[len] = '\0';
3717
3718 /* collect value */
3719 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3720 value = trash_value->str;
3721 value[len] = '\0';
3722
3723 /* perform update */
3724 if (pat_ref_find_elt(ref, key) != NULL)
3725 /* update entry if it exists */
3726 pat_ref_set(ref, key, value, NULL);
3727 else
3728 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003729 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003730
3731 break;
3732 }
William Lallemand73025dd2014-04-24 14:38:37 +02003733
3734 case HTTP_RES_ACT_CUSTOM_CONT:
3735 rule->action_ptr(rule, px, s, txn);
3736 break;
3737
3738 case HTTP_RES_ACT_CUSTOM_STOP:
3739 rule->action_ptr(rule, px, s, txn);
3740 return rule;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003741 }
3742 }
3743
3744 /* we reached the end of the rules, nothing to report */
3745 return NULL;
3746}
3747
3748
Willy Tarreau71241ab2012-12-27 11:30:54 +01003749/* Perform an HTTP redirect based on the information in <rule>. The function
3750 * returns non-zero on success, or zero in case of a, irrecoverable error such
3751 * as too large a request to build a valid response.
3752 */
3753static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn)
3754{
3755 struct http_msg *msg = &txn->req;
3756 const char *msg_fmt;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003757 const char *location;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003758
3759 /* build redirect message */
3760 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04003761 case 308:
3762 msg_fmt = HTTP_308;
3763 break;
3764 case 307:
3765 msg_fmt = HTTP_307;
3766 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003767 case 303:
3768 msg_fmt = HTTP_303;
3769 break;
3770 case 301:
3771 msg_fmt = HTTP_301;
3772 break;
3773 case 302:
3774 default:
3775 msg_fmt = HTTP_302;
3776 break;
3777 }
3778
3779 if (unlikely(!chunk_strcpy(&trash, msg_fmt)))
3780 return 0;
3781
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003782 location = trash.str + trash.len;
3783
Willy Tarreau71241ab2012-12-27 11:30:54 +01003784 switch(rule->type) {
3785 case REDIRECT_TYPE_SCHEME: {
3786 const char *path;
3787 const char *host;
3788 struct hdr_ctx ctx;
3789 int pathlen;
3790 int hostlen;
3791
3792 host = "";
3793 hostlen = 0;
3794 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +02003795 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003796 host = ctx.line + ctx.val;
3797 hostlen = ctx.vlen;
3798 }
3799
3800 path = http_get_path(txn);
3801 /* build message using path */
3802 if (path) {
3803 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3804 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3805 int qs = 0;
3806 while (qs < pathlen) {
3807 if (path[qs] == '?') {
3808 pathlen = qs;
3809 break;
3810 }
3811 qs++;
3812 }
3813 }
3814 } else {
3815 path = "/";
3816 pathlen = 1;
3817 }
3818
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003819 if (rule->rdr_str) { /* this is an old "redirect" rule */
3820 /* check if we can add scheme + "://" + host + path */
3821 if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4)
3822 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003823
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003824 /* add scheme */
3825 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3826 trash.len += rule->rdr_len;
3827 }
3828 else {
3829 /* add scheme with executing log format */
3830 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003831
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003832 /* check if we can add scheme + "://" + host + path */
3833 if (trash.len + 3 + hostlen + pathlen > trash.size - 4)
3834 return 0;
3835 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003836 /* add "://" */
3837 memcpy(trash.str + trash.len, "://", 3);
3838 trash.len += 3;
3839
3840 /* add host */
3841 memcpy(trash.str + trash.len, host, hostlen);
3842 trash.len += hostlen;
3843
3844 /* add path */
3845 memcpy(trash.str + trash.len, path, pathlen);
3846 trash.len += pathlen;
3847
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003848 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003849 if (trash.len && trash.str[trash.len - 1] != '/' &&
3850 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3851 if (trash.len > trash.size - 5)
3852 return 0;
3853 trash.str[trash.len] = '/';
3854 trash.len++;
3855 }
3856
3857 break;
3858 }
3859 case REDIRECT_TYPE_PREFIX: {
3860 const char *path;
3861 int pathlen;
3862
3863 path = http_get_path(txn);
3864 /* build message using path */
3865 if (path) {
3866 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3867 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3868 int qs = 0;
3869 while (qs < pathlen) {
3870 if (path[qs] == '?') {
3871 pathlen = qs;
3872 break;
3873 }
3874 qs++;
3875 }
3876 }
3877 } else {
3878 path = "/";
3879 pathlen = 1;
3880 }
3881
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003882 if (rule->rdr_str) { /* this is an old "redirect" rule */
3883 if (trash.len + rule->rdr_len + pathlen > trash.size - 4)
3884 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003885
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003886 /* add prefix. Note that if prefix == "/", we don't want to
3887 * add anything, otherwise it makes it hard for the user to
3888 * configure a self-redirection.
3889 */
3890 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
3891 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3892 trash.len += rule->rdr_len;
3893 }
3894 }
3895 else {
3896 /* add prefix with executing log format */
3897 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
3898
3899 /* Check length */
3900 if (trash.len + pathlen > trash.size - 4)
3901 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003902 }
3903
3904 /* add path */
3905 memcpy(trash.str + trash.len, path, pathlen);
3906 trash.len += pathlen;
3907
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003908 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003909 if (trash.len && trash.str[trash.len - 1] != '/' &&
3910 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3911 if (trash.len > trash.size - 5)
3912 return 0;
3913 trash.str[trash.len] = '/';
3914 trash.len++;
3915 }
3916
3917 break;
3918 }
3919 case REDIRECT_TYPE_LOCATION:
3920 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003921 if (rule->rdr_str) { /* this is an old "redirect" rule */
3922 if (trash.len + rule->rdr_len > trash.size - 4)
3923 return 0;
3924
3925 /* add location */
3926 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3927 trash.len += rule->rdr_len;
3928 }
3929 else {
3930 /* add location with executing log format */
3931 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003932
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003933 /* Check left length */
3934 if (trash.len > trash.size - 4)
3935 return 0;
3936 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003937 break;
3938 }
3939
3940 if (rule->cookie_len) {
3941 memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14);
3942 trash.len += 14;
3943 memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len);
3944 trash.len += rule->cookie_len;
3945 memcpy(trash.str + trash.len, "\r\n", 2);
3946 trash.len += 2;
3947 }
3948
3949 /* add end of headers and the keep-alive/close status.
3950 * We may choose to set keep-alive if the Location begins
3951 * with a slash, because the client will come back to the
3952 * same server.
3953 */
3954 txn->status = rule->code;
3955 /* let's log the request time */
3956 s->logs.tv_request = now;
3957
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003958 if (*location == '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01003959 (msg->flags & HTTP_MSGF_XFER_LEN) &&
3960 !(msg->flags & HTTP_MSGF_TE_CHNK) && !txn->req.body_len &&
3961 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3962 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3963 /* keep-alive possible */
3964 if (!(msg->flags & HTTP_MSGF_VER_11)) {
3965 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3966 memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30);
3967 trash.len += 30;
3968 } else {
3969 memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24);
3970 trash.len += 24;
3971 }
3972 }
3973 memcpy(trash.str + trash.len, "\r\n\r\n", 4);
3974 trash.len += 4;
3975 bo_inject(txn->rsp.chn, trash.str, trash.len);
3976 /* "eat" the request */
3977 bi_fast_delete(txn->req.chn->buf, msg->sov);
Willy Tarreau6d8bac72014-04-25 12:19:32 +02003978 msg->next -= msg->sov;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003979 msg->sov = 0;
3980 txn->req.chn->analysers = AN_REQ_HTTP_XFER_BODY;
3981 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3982 txn->req.msg_state = HTTP_MSG_CLOSED;
3983 txn->rsp.msg_state = HTTP_MSG_DONE;
3984 } else {
3985 /* keep-alive not possible */
3986 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3987 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3988 trash.len += 29;
3989 } else {
3990 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
3991 trash.len += 23;
3992 }
3993 stream_int_retnclose(txn->req.chn->prod, &trash);
3994 txn->req.chn->analysers = 0;
3995 }
3996
3997 if (!(s->flags & SN_ERR_MASK))
Willy Tarreau570f2212013-06-10 16:42:09 +02003998 s->flags |= SN_ERR_LOCAL;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003999 if (!(s->flags & SN_FINST_MASK))
4000 s->flags |= SN_FINST_R;
4001
4002 return 1;
4003}
4004
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004005/* This stream analyser runs all HTTP request processing which is common to
4006 * frontends and backends, which means blocking ACLs, filters, connection-close,
4007 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02004008 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004009 * either needs more data or wants to immediately abort the request (eg: deny,
4010 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02004011 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004012int http_process_req_common(struct session *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02004013{
Willy Tarreaud787e662009-07-07 10:14:51 +02004014 struct http_txn *txn = &s->txn;
4015 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004016 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01004017 struct cond_wordlist *wl;
Willy Tarreau0b748332014-04-29 00:13:29 +02004018 enum rule_result verdict;
Willy Tarreaud787e662009-07-07 10:14:51 +02004019
Willy Tarreau655dce92009-11-08 13:10:58 +01004020 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004021 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004022 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02004023 return 0;
4024 }
4025
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01004026 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 +02004027 now_ms, __FUNCTION__,
4028 s,
4029 req,
4030 req->rex, req->wex,
4031 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004032 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02004033 req->analysers);
4034
Willy Tarreau65410832014-04-28 21:25:43 +02004035 /* just in case we have some per-backend tracking */
4036 session_inc_be_http_req_ctr(s);
4037
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004038 /* evaluate http-request rules */
Willy Tarreau0b748332014-04-29 00:13:29 +02004039 if (!LIST_ISEMPTY(&px->http_req_rules)) {
4040 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01004041
Willy Tarreau0b748332014-04-29 00:13:29 +02004042 switch (verdict) {
4043 case HTTP_RULE_RES_CONT:
4044 case HTTP_RULE_RES_STOP: /* nothing to do */
4045 break;
Willy Tarreau52542592014-04-28 18:33:26 +02004046
Willy Tarreau0b748332014-04-29 00:13:29 +02004047 case HTTP_RULE_RES_DENY: /* deny or tarpit */
4048 if (txn->flags & TX_CLTARPIT)
4049 goto tarpit;
4050 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02004051
Willy Tarreau0b748332014-04-29 00:13:29 +02004052 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
4053 goto return_prx_cond;
Willy Tarreau52542592014-04-28 18:33:26 +02004054
Willy Tarreau0b748332014-04-29 00:13:29 +02004055 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Willy Tarreau52542592014-04-28 18:33:26 +02004056 goto done;
4057
Willy Tarreau0b748332014-04-29 00:13:29 +02004058 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
4059 goto return_bad_req;
4060 }
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004061 }
4062
Willy Tarreau52542592014-04-28 18:33:26 +02004063 /* OK at this stage, we know that the request was accepted according to
4064 * the http-request rules, we can check for the stats. Note that the
4065 * URI is detected *before* the req* rules in order not to be affected
4066 * by a possible reqrep, while they are processed *after* so that a
4067 * reqdeny can still block them. This clearly needs to change in 1.6!
4068 */
4069 if (stats_check_uri(s->rep->prod, txn, px)) {
4070 s->target = &http_stats_applet.obj_type;
4071 if (unlikely(!stream_int_register_handler(s->rep->prod, objt_applet(s->target)))) {
4072 txn->status = 500;
4073 s->logs.tv_request = now;
4074 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004075
Willy Tarreau52542592014-04-28 18:33:26 +02004076 if (!(s->flags & SN_ERR_MASK))
4077 s->flags |= SN_ERR_RESOURCE;
4078 goto return_prx_cond;
4079 }
4080
4081 /* parse the whole stats request and extract the relevant information */
4082 http_handle_stats(s, req);
Willy Tarreau0b748332014-04-29 00:13:29 +02004083 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, txn);
4084 /* not all actions implemented: deny, allow, auth */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004085
Willy Tarreau0b748332014-04-29 00:13:29 +02004086 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
4087 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02004088
Willy Tarreau0b748332014-04-29 00:13:29 +02004089 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
4090 goto return_prx_cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01004091 }
4092
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004093 /* evaluate the req* rules except reqadd */
4094 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01004095 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004096 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01004097
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004098 if (txn->flags & TX_CLDENY)
4099 goto deny;
Willy Tarreauc465fd72009-08-31 00:17:18 +02004100
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004101 if (txn->flags & TX_CLTARPIT)
4102 goto tarpit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004103 }
Willy Tarreau06619262006-12-17 08:37:22 +01004104
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004105 /* add request headers from the rule sets in the same order */
4106 list_for_each_entry(wl, &px->req_add, list) {
4107 if (wl->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02004108 int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004109 ret = acl_pass(ret);
4110 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
4111 ret = !ret;
4112 if (!ret)
4113 continue;
4114 }
4115
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004116 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004117 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01004118 }
4119
Willy Tarreau52542592014-04-28 18:33:26 +02004120
4121 /* Proceed with the stats now. */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01004122 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01004123 /* process the stats request now */
Willy Tarreau347a35d2013-11-22 17:51:09 +01004124 if (s->fe == s->be) /* report it if the request was intercepted by the frontend */
4125 s->fe->fe_counters.intercepted_req++;
4126
4127 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
4128 s->flags |= SN_ERR_LOCAL; // to mark that it comes from the proxy
4129 if (!(s->flags & SN_FINST_MASK))
4130 s->flags |= SN_FINST_R;
4131
Willy Tarreau70730dd2014-04-24 18:06:27 +02004132 /* we may want to compress the stats page */
4133 if (s->fe->comp || s->be->comp)
4134 select_compression_request_header(s, req->buf);
4135
4136 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
Willy Tarreau5506e3f2014-11-20 22:23:10 +01004137 req->analysers = (req->analysers & AN_REQ_HTTP_BODY) | AN_REQ_HTTP_XFER_BODY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004138 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004139 }
Willy Tarreaub2513902006-12-17 14:52:38 +01004140
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004141 /* check whether we have some ACLs set to redirect this request */
4142 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01004143 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01004144 int ret;
4145
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02004146 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01004147 ret = acl_pass(ret);
4148 if (rule->cond->pol == ACL_COND_UNLESS)
4149 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004150 if (!ret)
4151 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01004152 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004153 if (!http_apply_redirect_rule(rule, s, txn))
4154 goto return_bad_req;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004155 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004156 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004157
Willy Tarreau2be39392010-01-03 17:24:51 +01004158 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
4159 * If this happens, then the data will not come immediately, so we must
4160 * send all what we have without waiting. Note that due to the small gain
4161 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004162 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01004163 * itself once used.
4164 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004165 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01004166
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004167 done: /* done with this analyser, continue with next ones that the calling
4168 * points will have set, if any.
4169 */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004170 req->analyse_exp = TICK_ETERNITY;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02004171 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
4172 req->analysers &= ~an_bit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004173 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02004174
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004175 tarpit:
4176 /* When a connection is tarpitted, we use the tarpit timeout,
4177 * which may be the same as the connect timeout if unspecified.
4178 * If unset, then set it to zero because we really want it to
4179 * eventually expire. We build the tarpit as an analyser.
4180 */
4181 channel_erase(s->req);
4182
4183 /* wipe the request out so that we can drop the connection early
4184 * if the client closes first.
4185 */
4186 channel_dont_connect(req);
4187 req->analysers = 0; /* remove switching rules etc... */
4188 req->analysers |= AN_REQ_HTTP_TARPIT;
4189 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
4190 if (!req->analyse_exp)
4191 req->analyse_exp = tick_add(now_ms, 0);
4192 session_inc_http_err_ctr(s);
4193 s->fe->fe_counters.denied_req++;
4194 if (s->fe != s->be)
4195 s->be->be_counters.denied_req++;
4196 if (s->listener->counters)
4197 s->listener->counters->denied_req++;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02004198 goto done_without_exp;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004199
4200 deny: /* this request was blocked (denied) */
Willy Tarreau0b748332014-04-29 00:13:29 +02004201 txn->flags |= TX_CLDENY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004202 txn->status = 403;
4203 s->logs.tv_request = now;
4204 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
4205 session_inc_http_err_ctr(s);
4206 s->fe->fe_counters.denied_req++;
4207 if (s->fe != s->be)
4208 s->be->be_counters.denied_req++;
4209 if (s->listener->counters)
4210 s->listener->counters->denied_req++;
4211 goto return_prx_cond;
4212
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004213 return_bad_req:
4214 /* We centralize bad requests processing here */
4215 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
4216 /* we detected a parsing error. We want to archive this request
4217 * in the dedicated proxy area for later troubleshooting.
4218 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004219 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004220 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004221
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004222 txn->req.msg_state = HTTP_MSG_ERROR;
4223 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004224 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004225
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004226 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004227 if (s->listener->counters)
4228 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02004229
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004230 return_prx_cond:
4231 if (!(s->flags & SN_ERR_MASK))
4232 s->flags |= SN_ERR_PRXCOND;
4233 if (!(s->flags & SN_FINST_MASK))
4234 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01004235
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004236 req->analysers = 0;
4237 req->analyse_exp = TICK_ETERNITY;
4238 return 0;
4239}
Willy Tarreau58f10d72006-12-04 02:26:12 +01004240
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004241/* This function performs all the processing enabled for the current request.
4242 * It returns 1 if the processing can continue on next analysers, or zero if it
4243 * needs more data, encounters an error, or wants to immediately abort the
4244 * request. It relies on buffers flags, and updates s->req->analysers.
4245 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004246int http_process_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004247{
4248 struct http_txn *txn = &s->txn;
4249 struct http_msg *msg = &txn->req;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004250 struct connection *cli_conn = objt_conn(req->prod->end);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004251
Willy Tarreau655dce92009-11-08 13:10:58 +01004252 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004253 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004254 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02004255 return 0;
4256 }
4257
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01004258 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 +02004259 now_ms, __FUNCTION__,
4260 s,
4261 req,
4262 req->rex, req->wex,
4263 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004264 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004265 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01004266
William Lallemand82fe75c2012-10-23 10:25:10 +02004267 if (s->fe->comp || s->be->comp)
4268 select_compression_request_header(s, req->buf);
4269
Willy Tarreau59234e92008-11-30 23:51:27 +01004270 /*
4271 * Right now, we know that we have processed the entire headers
4272 * and that unwanted requests have been filtered out. We can do
4273 * whatever we want with the remaining request. Also, now we
4274 * may have separate values for ->fe, ->be.
4275 */
Willy Tarreau06619262006-12-17 08:37:22 +01004276
Willy Tarreau59234e92008-11-30 23:51:27 +01004277 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004278 * If HTTP PROXY is set we simply get remote server address parsing
4279 * incoming request. Note that this requires that a connection is
4280 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01004281 */
4282 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004283 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004284 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004285
Willy Tarreau9471b8c2013-12-15 13:31:35 +01004286 /* Note that for now we don't reuse existing proxy connections */
4287 if (unlikely((conn = si_alloc_conn(req->cons, 0)) == NULL)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004288 txn->req.msg_state = HTTP_MSG_ERROR;
4289 txn->status = 500;
4290 req->analysers = 0;
4291 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
4292
4293 if (!(s->flags & SN_ERR_MASK))
4294 s->flags |= SN_ERR_RESOURCE;
4295 if (!(s->flags & SN_FINST_MASK))
4296 s->flags |= SN_FINST_R;
4297
4298 return 0;
4299 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004300
4301 path = http_get_path(txn);
4302 url2sa(req->buf->p + msg->sl.rq.u,
4303 path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l,
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01004304 &conn->addr.to, NULL);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004305 /* if the path was found, we have to remove everything between
4306 * req->buf->p + msg->sl.rq.u and path (excluded). If it was not
4307 * found, we need to replace from req->buf->p + msg->sl.rq.u for
4308 * u_l characters by a single "/".
4309 */
4310 if (path) {
4311 char *cur_ptr = req->buf->p;
4312 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4313 int delta;
4314
4315 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0);
4316 http_msg_move_end(&txn->req, delta);
4317 cur_end += delta;
4318 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4319 goto return_bad_req;
4320 }
4321 else {
4322 char *cur_ptr = req->buf->p;
4323 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4324 int delta;
4325
4326 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u,
4327 req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
4328 http_msg_move_end(&txn->req, delta);
4329 cur_end += delta;
4330 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4331 goto return_bad_req;
4332 }
Willy Tarreau59234e92008-11-30 23:51:27 +01004333 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004334
Willy Tarreau59234e92008-11-30 23:51:27 +01004335 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01004336 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01004337 * Note that doing so might move headers in the request, but
4338 * the fields will stay coherent and the URI will not move.
4339 * This should only be performed in the backend.
4340 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02004341 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01004342 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
4343 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02004344
Willy Tarreau59234e92008-11-30 23:51:27 +01004345 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01004346 * 8: the appsession cookie was looked up very early in 1.2,
4347 * so let's do the same now.
4348 */
4349
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004350 /* It needs to look into the URI unless persistence must be ignored */
4351 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02004352 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 +01004353 }
4354
William Lallemanda73203e2012-03-12 12:48:57 +01004355 /* add unique-id if "header-unique-id" is specified */
4356
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004357 if (!LIST_ISEMPTY(&s->fe->format_unique_id)) {
4358 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL)
4359 goto return_bad_req;
4360 s->unique_id[0] = '\0';
William Lallemanda73203e2012-03-12 12:48:57 +01004361 build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004362 }
William Lallemanda73203e2012-03-12 12:48:57 +01004363
4364 if (s->fe->header_unique_id && s->unique_id) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004365 chunk_printf(&trash, "%s: %s", s->fe->header_unique_id, s->unique_id);
4366 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01004367 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004368 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01004369 goto return_bad_req;
4370 }
4371
Cyril Bontéb21570a2009-11-29 20:04:48 +01004372 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01004373 * 9: add X-Forwarded-For if either the frontend or the backend
4374 * asks for it.
4375 */
4376 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004377 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreau87cf5142011-08-19 22:57:24 +02004378 if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Cyril Bontéa32d2752012-05-29 23:27:41 +02004379 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : s->fe->fwdfor_hdr_name,
4380 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : s->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004381 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004382 /* The header is set to be added only if none is present
4383 * and we found it, so don't do anything.
4384 */
4385 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004386 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004387 /* Add an X-Forwarded-For header unless the source IP is
4388 * in the 'except' network range.
4389 */
4390 if ((!s->fe->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004391 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->fe->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004392 != s->fe->except_net.s_addr) &&
4393 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004394 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004395 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01004396 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01004397 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004398 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02004399
4400 /* Note: we rely on the backend to get the header name to be used for
4401 * x-forwarded-for, because the header is really meant for the backends.
4402 * However, if the backend did not specify any option, we have to rely
4403 * on the frontend's header name.
4404 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004405 if (s->be->fwdfor_hdr_len) {
4406 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004407 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02004408 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01004409 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004410 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004411 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004412 len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01004413
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004414 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01004415 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01004416 }
4417 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004418 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004419 /* FIXME: for the sake of completeness, we should also support
4420 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004421 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004422 int len;
4423 char pn[INET6_ADDRSTRLEN];
4424 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004425 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01004426 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004427
Willy Tarreau59234e92008-11-30 23:51:27 +01004428 /* Note: we rely on the backend to get the header name to be used for
4429 * x-forwarded-for, because the header is really meant for the backends.
4430 * However, if the backend did not specify any option, we have to rely
4431 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004432 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004433 if (s->be->fwdfor_hdr_len) {
4434 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004435 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01004436 } else {
4437 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004438 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004439 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004440 len += snprintf(trash.str + len, trash.size - len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02004441
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004442 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01004443 goto return_bad_req;
4444 }
4445 }
4446
4447 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02004448 * 10: add X-Original-To if either the frontend or the backend
4449 * asks for it.
4450 */
4451 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
4452
4453 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004454 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004455 /* Add an X-Original-To header unless the destination IP is
4456 * in the 'except' network range.
4457 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004458 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02004459
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004460 if (cli_conn->addr.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02004461 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004462 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02004463 != s->fe->except_to.s_addr) &&
4464 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004465 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02004466 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004467 int len;
4468 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004469 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02004470
4471 /* Note: we rely on the backend to get the header name to be used for
4472 * x-original-to, because the header is really meant for the backends.
4473 * However, if the backend did not specify any option, we have to rely
4474 * on the frontend's header name.
4475 */
4476 if (s->be->orgto_hdr_len) {
4477 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004478 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02004479 } else {
4480 len = s->fe->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004481 memcpy(trash.str, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004482 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004483 len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Maik Broemme2850cb42009-04-17 18:53:21 +02004484
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004485 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02004486 goto return_bad_req;
4487 }
4488 }
4489 }
4490
Willy Tarreau50fc7772012-11-11 22:19:57 +01004491 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
4492 * If an "Upgrade" token is found, the header is left untouched in order not to have
4493 * to deal with some servers bugs : some of them fail an Upgrade if anything but
4494 * "Upgrade" is present in the Connection header.
4495 */
4496 if (!(txn->flags & TX_HDR_CONN_UPG) &&
4497 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004498 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
4499 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004500 unsigned int want_flags = 0;
4501
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004502 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02004503 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004504 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
4505 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) &&
Willy Tarreau22a95342010-09-29 14:31:41 +02004506 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004507 want_flags |= TX_CON_CLO_SET;
4508 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02004509 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004510 ((s->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL &&
4511 (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) ||
Willy Tarreau22a95342010-09-29 14:31:41 +02004512 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004513 want_flags |= TX_CON_KAL_SET;
4514 }
4515
4516 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004517 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01004518 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004519
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004520
Willy Tarreau522d6c02009-12-06 18:49:18 +01004521 /* If we have no server assigned yet and we're balancing on url_param
4522 * with a POST request, we may be interested in checking the body for
4523 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01004524 */
4525 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
4526 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004527 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004528 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004529 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01004530 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004531
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004532 if (msg->flags & HTTP_MSGF_XFER_LEN) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01004533 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01004534#ifdef TCP_QUICKACK
4535 /* We expect some data from the client. Unless we know for sure
4536 * we already have a full request, we have to re-enable quick-ack
4537 * in case we previously disabled it, otherwise we might cause
4538 * the client to delay further data.
4539 */
4540 if ((s->listener->options & LI_O_NOQUICKACK) &&
Willy Tarreau3c728722014-01-23 13:50:42 +01004541 cli_conn && conn_ctrl_ready(cli_conn) &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004542 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004543 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004544 setsockopt(cli_conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01004545#endif
4546 }
Willy Tarreau03945942009-12-22 16:50:27 +01004547
Willy Tarreau59234e92008-11-30 23:51:27 +01004548 /*************************************************************
4549 * OK, that's finished for the headers. We have done what we *
4550 * could. Let's switch to the DATA state. *
4551 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01004552 req->analyse_exp = TICK_ETERNITY;
4553 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004554
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004555 /* if the server closes the connection, we want to immediately react
4556 * and close the socket to save packets and syscalls.
4557 */
Willy Tarreau40f151a2012-12-20 12:10:09 +01004558 if (!(req->analysers & AN_REQ_HTTP_XFER_BODY))
4559 req->cons->flags |= SI_FL_NOHALF;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004560
Willy Tarreau59234e92008-11-30 23:51:27 +01004561 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01004562 /* OK let's go on with the BODY now */
4563 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01004564
Willy Tarreau59234e92008-11-30 23:51:27 +01004565 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02004566 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01004567 /* we detected a parsing error. We want to archive this request
4568 * in the dedicated proxy area for later troubleshooting.
4569 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004570 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01004571 }
Willy Tarreau4076a152009-04-02 15:18:36 +02004572
Willy Tarreau59234e92008-11-30 23:51:27 +01004573 txn->req.msg_state = HTTP_MSG_ERROR;
4574 txn->status = 400;
4575 req->analysers = 0;
Willy Tarreau783f2582012-09-04 12:19:04 +02004576 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004577
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004578 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004579 if (s->listener->counters)
4580 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004581
Willy Tarreau59234e92008-11-30 23:51:27 +01004582 if (!(s->flags & SN_ERR_MASK))
4583 s->flags |= SN_ERR_PRXCOND;
4584 if (!(s->flags & SN_FINST_MASK))
4585 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02004586 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004587}
Willy Tarreauadfb8562008-08-11 15:24:42 +02004588
Willy Tarreau60b85b02008-11-30 23:28:40 +01004589/* This function is an analyser which processes the HTTP tarpit. It always
4590 * returns zero, at the beginning because it prevents any other processing
4591 * from occurring, and at the end because it terminates the request.
4592 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004593int http_process_tarpit(struct session *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01004594{
4595 struct http_txn *txn = &s->txn;
4596
4597 /* This connection is being tarpitted. The CLIENT side has
4598 * already set the connect expiration date to the right
4599 * timeout. We just have to check that the client is still
4600 * there and that the timeout has not expired.
4601 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004602 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004603 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01004604 !tick_is_expired(req->analyse_exp, now_ms))
4605 return 0;
4606
4607 /* We will set the queue timer to the time spent, just for
4608 * logging purposes. We fake a 500 server error, so that the
4609 * attacker will not suspect his connection has been tarpitted.
4610 * It will not cause trouble to the logs because we can exclude
4611 * the tarpitted connections by filtering on the 'PT' status flags.
4612 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01004613 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
4614
4615 txn->status = 500;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004616 if (!(req->flags & CF_READ_ERROR))
Willy Tarreau783f2582012-09-04 12:19:04 +02004617 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau60b85b02008-11-30 23:28:40 +01004618
4619 req->analysers = 0;
4620 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004621
Willy Tarreau60b85b02008-11-30 23:28:40 +01004622 if (!(s->flags & SN_ERR_MASK))
4623 s->flags |= SN_ERR_PRXCOND;
4624 if (!(s->flags & SN_FINST_MASK))
4625 s->flags |= SN_FINST_T;
4626 return 0;
4627}
4628
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004629/* This function is an analyser which waits for the HTTP request body. It waits
4630 * for either the buffer to be full, or the full advertised contents to have
4631 * reached the buffer. It must only be called after the standard HTTP request
4632 * processing has occurred, because it expects the request to be parsed and will
4633 * look for the Expect header. It may send a 100-Continue interim response. It
4634 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
4635 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
4636 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01004637 */
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004638int http_wait_for_request_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01004639{
Willy Tarreau522d6c02009-12-06 18:49:18 +01004640 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01004641 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004642
4643 /* We have to parse the HTTP request body to find any required data.
4644 * "balance url_param check_post" should have been the only way to get
4645 * into this. We were brought here after HTTP header analysis, so all
4646 * related structures are ready.
4647 */
4648
Willy Tarreau890988f2014-04-10 11:59:33 +02004649 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4650 /* This is the first call */
4651 if (msg->msg_state < HTTP_MSG_BODY)
4652 goto missing_data;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004653
Willy Tarreau890988f2014-04-10 11:59:33 +02004654 if (msg->msg_state < HTTP_MSG_100_SENT) {
4655 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4656 * send an HTTP/1.1 100 Continue intermediate response.
4657 */
4658 if (msg->flags & HTTP_MSGF_VER_11) {
4659 struct hdr_ctx ctx;
4660 ctx.idx = 0;
4661 /* Expect is allowed in 1.1, look for it */
4662 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
4663 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
4664 bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len);
4665 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004666 }
Willy Tarreau890988f2014-04-10 11:59:33 +02004667 msg->msg_state = HTTP_MSG_100_SENT;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004668 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004669
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004670 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau877e78d2013-04-07 18:48:08 +02004671 * req->buf->p still points to the beginning of the message. We
4672 * must save the body in msg->next because it survives buffer
4673 * re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004674 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004675 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004676
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004677 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004678 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4679 else
4680 msg->msg_state = HTTP_MSG_DATA;
4681 }
4682
Willy Tarreau890988f2014-04-10 11:59:33 +02004683 if (!(msg->flags & HTTP_MSGF_TE_CHNK)) {
4684 /* We're in content-length mode, we just have to wait for enough data. */
4685 if (req->buf->i - msg->sov < msg->body_len)
4686 goto missing_data;
4687
4688 /* OK we have everything we need now */
4689 goto http_end;
4690 }
4691
4692 /* OK here we're parsing a chunked-encoded message */
4693
Willy Tarreau522d6c02009-12-06 18:49:18 +01004694 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004695 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004696 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004697 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004698 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004699 int ret = http_parse_chunk_size(msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01004700
Willy Tarreau115acb92009-12-26 13:56:06 +01004701 if (!ret)
4702 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004703 else if (ret < 0) {
4704 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004705 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004706 }
Willy Tarreaud34af782008-11-30 23:36:37 +01004707 }
4708
Willy Tarreaud98cf932009-12-27 22:54:55 +01004709 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004710 * We have the first data byte is in msg->sov. We're waiting for at
Willy Tarreau226071e2014-04-10 11:55:45 +02004711 * least a whole chunk or the whole content length bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01004712 */
Willy Tarreau890988f2014-04-10 11:59:33 +02004713 if (msg->msg_state == HTTP_MSG_TRAILERS)
4714 goto http_end;
4715
Willy Tarreau226071e2014-04-10 11:55:45 +02004716 if (req->buf->i - msg->sov >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004717 goto http_end;
4718
4719 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02004720 /* we get here if we need to wait for more data. If the buffer is full,
4721 * we have the maximum we can expect.
4722 */
4723 if (buffer_full(req->buf, global.tune.maxrewrite))
4724 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01004725
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004726 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004727 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02004728 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02004729
4730 if (!(s->flags & SN_ERR_MASK))
4731 s->flags |= SN_ERR_CLITO;
4732 if (!(s->flags & SN_FINST_MASK))
4733 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004734 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01004735 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004736
4737 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02004738 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01004739 /* Not enough data. We'll re-use the http-request
4740 * timeout here. Ideally, we should set the timeout
4741 * relative to the accept() date. We just set the
4742 * request timeout once at the beginning of the
4743 * request.
4744 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004745 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01004746 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02004747 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01004748 return 0;
4749 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004750
4751 http_end:
4752 /* The situation will not evolve, so let's give up on the analysis. */
4753 s->logs.tv_request = now; /* update the request timer to reflect full request */
4754 req->analysers &= ~an_bit;
4755 req->analyse_exp = TICK_ETERNITY;
4756 return 1;
4757
4758 return_bad_req: /* let's centralize all bad requests */
4759 txn->req.msg_state = HTTP_MSG_ERROR;
4760 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004761 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau522d6c02009-12-06 18:49:18 +01004762
Willy Tarreau79ebac62010-06-07 13:47:49 +02004763 if (!(s->flags & SN_ERR_MASK))
4764 s->flags |= SN_ERR_PRXCOND;
4765 if (!(s->flags & SN_FINST_MASK))
4766 s->flags |= SN_FINST_R;
4767
Willy Tarreau522d6c02009-12-06 18:49:18 +01004768 return_err_msg:
4769 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004770 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004771 if (s->listener->counters)
4772 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004773 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01004774}
4775
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004776/* send a server's name with an outgoing request over an established connection.
4777 * Note: this function is designed to be called once the request has been scheduled
4778 * for being forwarded. This is the reason why it rewinds the buffer before
4779 * proceeding.
4780 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01004781int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004782
4783 struct hdr_ctx ctx;
4784
Mark Lamourinec2247f02012-01-04 13:02:01 -05004785 char *hdr_name = be->server_id_hdr_name;
4786 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02004787 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004788 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004789 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004790
William Lallemandd9e90662012-01-30 17:27:17 +01004791 ctx.idx = 0;
4792
Willy Tarreau211cdec2014-04-17 20:18:08 +02004793 old_o = http_hdr_rewind(&txn->req);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004794 if (old_o) {
4795 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004796 b_rew(chn->buf, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02004797 txn->req.next += old_o;
4798 txn->req.sov += old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004799 }
4800
Willy Tarreau9b28e032012-10-12 23:49:43 +02004801 old_i = chn->buf->i;
4802 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 -05004803 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004804 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004805 }
4806
4807 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004808 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004809 memcpy(hdr_val, hdr_name, hdr_name_len);
4810 hdr_val += hdr_name_len;
4811 *hdr_val++ = ':';
4812 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004813 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
4814 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004815
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004816 if (old_o) {
4817 /* If this was a forwarded request, we must readjust the amount of
4818 * data to be forwarded in order to take into account the size
Willy Tarreau877e78d2013-04-07 18:48:08 +02004819 * variations. Note that the current state is >= HTTP_MSG_BODY,
4820 * so we don't have to adjust ->sol.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004821 */
Willy Tarreau877e78d2013-04-07 18:48:08 +02004822 old_o += chn->buf->i - old_i;
4823 b_adv(chn->buf, old_o);
4824 txn->req.next -= old_o;
4825 txn->req.sov -= old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004826 }
4827
Mark Lamourinec2247f02012-01-04 13:02:01 -05004828 return 0;
4829}
4830
Willy Tarreau610ecce2010-01-04 21:15:02 +01004831/* Terminate current transaction and prepare a new one. This is very tricky
4832 * right now but it works.
4833 */
4834void http_end_txn_clean_session(struct session *s)
4835{
Willy Tarreau068621e2013-12-23 15:11:25 +01004836 int prev_status = s->txn.status;
4837
Willy Tarreau610ecce2010-01-04 21:15:02 +01004838 /* FIXME: We need a more portable way of releasing a backend's and a
4839 * server's connections. We need a safer way to reinitialize buffer
4840 * flags. We also need a more accurate method for computing per-request
4841 * data.
4842 */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004843
Willy Tarreau4213a112013-12-15 10:25:42 +01004844 /* unless we're doing keep-alive, we want to quickly close the connection
4845 * to the server.
4846 */
4847 if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
4848 !si_conn_ready(s->req->cons)) {
4849 s->req->cons->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
4850 si_shutr(s->req->cons);
4851 si_shutw(s->req->cons);
4852 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004853
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004854 if (s->flags & SN_BE_ASSIGNED) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004855 s->be->beconn--;
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004856 if (unlikely(s->srv_conn))
4857 sess_change_server(s, NULL);
4858 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004859
4860 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
4861 session_process_counters(s);
4862
4863 if (s->txn.status) {
4864 int n;
4865
4866 n = s->txn.status / 100;
4867 if (n < 1 || n > 5)
4868 n = 0;
4869
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004870 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004871 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004872 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004873 s->fe->fe_counters.p.http.comp_rsp++;
4874 }
Willy Tarreau24657792010-02-26 10:30:28 +01004875 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004876 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004877 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004878 s->be->be_counters.p.http.cum_req++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004879 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004880 s->be->be_counters.p.http.comp_rsp++;
4881 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004882 }
4883
4884 /* don't count other requests' data */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004885 s->logs.bytes_in -= s->req->buf->i;
4886 s->logs.bytes_out -= s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004887
4888 /* let's do a final log if we need it */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01004889 if (!LIST_ISEMPTY(&s->fe->logformat) && s->logs.logwait &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01004890 !(s->flags & SN_MONITOR) &&
4891 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
4892 s->do_log(s);
4893 }
4894
Willy Tarreaud713bcc2014-06-25 15:36:04 +02004895 /* stop tracking content-based counters */
4896 session_stop_content_counters(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02004897 session_update_time_stats(s);
4898
Willy Tarreau610ecce2010-01-04 21:15:02 +01004899 s->logs.accept_date = date; /* user-visible date for logging */
4900 s->logs.tv_accept = now; /* corrected date for internal use */
4901 tv_zero(&s->logs.tv_request);
4902 s->logs.t_queue = -1;
4903 s->logs.t_connect = -1;
4904 s->logs.t_data = -1;
4905 s->logs.t_close = 0;
4906 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
4907 s->logs.srv_queue_size = 0; /* we will get this number soon */
4908
Willy Tarreau9b28e032012-10-12 23:49:43 +02004909 s->logs.bytes_in = s->req->total = s->req->buf->i;
4910 s->logs.bytes_out = s->rep->total = s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004911
4912 if (s->pend_pos)
4913 pendconn_free(s->pend_pos);
4914
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004915 if (objt_server(s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004916 if (s->flags & SN_CURR_SESS) {
4917 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004918 objt_server(s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004919 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004920 if (may_dequeue_tasks(objt_server(s->target), s->be))
4921 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01004922 }
4923
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004924 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004925
Willy Tarreau4213a112013-12-15 10:25:42 +01004926 /* only release our endpoint if we don't intend to reuse the
4927 * connection.
4928 */
4929 if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
4930 !si_conn_ready(s->req->cons)) {
4931 si_release_endpoint(s->req->cons);
4932 }
4933
Willy Tarreau610ecce2010-01-04 21:15:02 +01004934 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004935 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02004936 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004937 s->req->cons->exp = TICK_ETERNITY;
Willy Tarreauc9200962013-12-31 23:03:09 +01004938 s->req->cons->flags &= SI_FL_DONT_WAKE; /* we're in the context of process_session */
Willy Tarreau9dc1c612014-09-01 20:35:55 +02004939 s->req->flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT|CF_WAKE_CONNECT|CF_WROTE_DATA);
4940 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|CF_WROTE_DATA);
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004941 s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST);
Willy Tarreau36346242014-02-24 18:26:30 +01004942 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE|SN_SRV_REUSED);
Cyril Bontéa83a50b2014-10-22 22:30:13 +02004943 s->flags &= ~(SN_ERR_MASK|SN_FINST_MASK|SN_REDISP);
Willy Tarreau543db622012-11-15 16:41:22 +01004944
Willy Tarreau610ecce2010-01-04 21:15:02 +01004945 s->txn.meth = 0;
4946 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01004947 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01004948
4949 if (prev_status == 401 || prev_status == 407) {
4950 /* In HTTP keep-alive mode, if we receive a 401, we still have
4951 * a chance of being able to send the visitor again to the same
4952 * server over the same connection. This is required by some
4953 * broken protocols such as NTLM, and anyway whenever there is
4954 * an opportunity for sending the challenge to the proper place,
4955 * it's better to do it (at least it helps with debugging).
4956 */
4957 s->txn.flags |= TX_PREFER_LAST;
4958 }
4959
Willy Tarreauee55dc02010-06-01 10:56:34 +02004960 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004961 s->req->cons->flags |= SI_FL_INDEP_STR;
4962
Willy Tarreau96e31212011-05-30 18:10:30 +02004963 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004964 s->req->flags |= CF_NEVER_WAIT;
4965 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02004966 }
4967
Willy Tarreau610ecce2010-01-04 21:15:02 +01004968 /* if the request buffer is not empty, it means we're
4969 * about to process another request, so send pending
4970 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004971 * Just don't do this if the buffer is close to be full,
4972 * because the request will wait for it to flush a little
4973 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004974 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004975 if (s->req->buf->i) {
4976 if (s->rep->buf->o &&
4977 !buffer_full(s->rep->buf, global.tune.maxrewrite) &&
4978 bi_end(s->rep->buf) <= s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004979 s->rep->flags |= CF_EXPECT_MORE;
Willy Tarreau065e8332010-01-08 00:30:20 +01004980 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004981
4982 /* we're removing the analysers, we MUST re-enable events detection */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004983 channel_auto_read(s->req);
4984 channel_auto_close(s->req);
4985 channel_auto_read(s->rep);
4986 channel_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004987
Willy Tarreau27375622013-12-17 00:00:28 +01004988 /* we're in keep-alive with an idle connection, monitor it */
4989 si_idle_conn(s->req->cons);
4990
Willy Tarreau342b11c2010-11-24 16:22:09 +01004991 s->req->analysers = s->listener->analysers;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004992 s->rep->analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004993}
4994
4995
4996/* This function updates the request state machine according to the response
4997 * state machine and buffer flags. It returns 1 if it changes anything (flag
4998 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4999 * it is only used to find when a request/response couple is complete. Both
5000 * this function and its equivalent should loop until both return zero. It
5001 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
5002 */
5003int http_sync_req_state(struct session *s)
5004{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005005 struct channel *chn = s->req;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005006 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005007 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005008 unsigned int old_state = txn->req.msg_state;
5009
Willy Tarreau610ecce2010-01-04 21:15:02 +01005010 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
5011 return 0;
5012
5013 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01005014 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005015 * We can shut the read side unless we want to abort_on_close,
5016 * or we have a POST request. The issue with POST requests is
5017 * that some browsers still send a CRLF after the request, and
5018 * this CRLF must be read so that it does not remain in the kernel
5019 * buffers, otherwise a close could cause an RST on some systems
5020 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01005021 * Note that if we're using keep-alive on the client side, we'd
5022 * rather poll now and keep the polling enabled for the whole
5023 * session's life than enabling/disabling it between each
5024 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01005025 */
Willy Tarreau3988d932013-12-27 23:03:08 +01005026 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
5027 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
5028 !(s->be->options & PR_O_ABRT_CLOSE) &&
5029 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005030 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005031
Willy Tarreau40f151a2012-12-20 12:10:09 +01005032 /* if the server closes the connection, we want to immediately react
5033 * and close the socket to save packets and syscalls.
5034 */
5035 chn->cons->flags |= SI_FL_NOHALF;
5036
Willy Tarreau610ecce2010-01-04 21:15:02 +01005037 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
5038 goto wait_other_side;
5039
5040 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
5041 /* The server has not finished to respond, so we
5042 * don't want to move in order not to upset it.
5043 */
5044 goto wait_other_side;
5045 }
5046
5047 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
5048 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005049 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005050 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02005051 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005052 goto wait_other_side;
5053 }
5054
5055 /* When we get here, it means that both the request and the
5056 * response have finished receiving. Depending on the connection
5057 * mode, we'll have to wait for the last bytes to leave in either
5058 * direction, and sometimes for a close to be effective.
5059 */
5060
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005061 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5062 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005063 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
5064 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005065 }
5066 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5067 /* Option forceclose is set, or either side wants to close,
5068 * let's enforce it now that we're not expecting any new
5069 * data to come. The caller knows the session is complete
5070 * once both states are CLOSED.
5071 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005072 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5073 channel_shutr_now(chn);
5074 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005075 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005076 }
5077 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005078 /* The last possible modes are keep-alive and tunnel. Tunnel mode
5079 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005080 */
Willy Tarreau4213a112013-12-15 10:25:42 +01005081 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
5082 channel_auto_read(chn);
5083 txn->req.msg_state = HTTP_MSG_TUNNEL;
5084 chn->flags |= CF_NEVER_WAIT;
5085 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005086 }
5087
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005088 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005089 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005090 chn->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005091
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005092 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005093 txn->req.msg_state = HTTP_MSG_CLOSING;
5094 goto http_msg_closing;
5095 }
5096 else {
5097 txn->req.msg_state = HTTP_MSG_CLOSED;
5098 goto http_msg_closed;
5099 }
5100 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005101 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005102 }
5103
5104 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
5105 http_msg_closing:
5106 /* nothing else to forward, just waiting for the output buffer
5107 * to be empty and for the shutw_now to take effect.
5108 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005109 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005110 txn->req.msg_state = HTTP_MSG_CLOSED;
5111 goto http_msg_closed;
5112 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005113 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005114 txn->req.msg_state = HTTP_MSG_ERROR;
5115 goto wait_other_side;
5116 }
5117 }
5118
5119 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
5120 http_msg_closed:
Willy Tarreau3988d932013-12-27 23:03:08 +01005121 /* see above in MSG_DONE why we only do this in these states */
5122 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
5123 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
5124 !(s->be->options & PR_O_ABRT_CLOSE))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01005125 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005126 goto wait_other_side;
5127 }
5128
5129 wait_other_side:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005130 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005131}
5132
5133
5134/* This function updates the response state machine according to the request
5135 * state machine and buffer flags. It returns 1 if it changes anything (flag
5136 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
5137 * it is only used to find when a request/response couple is complete. Both
5138 * this function and its equivalent should loop until both return zero. It
5139 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
5140 */
5141int http_sync_res_state(struct session *s)
5142{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005143 struct channel *chn = s->rep;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005144 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005145 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005146 unsigned int old_state = txn->rsp.msg_state;
5147
Willy Tarreau610ecce2010-01-04 21:15:02 +01005148 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
5149 return 0;
5150
5151 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
5152 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01005153 * still monitor the server connection for a possible close
5154 * while the request is being uploaded, so we don't disable
5155 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005156 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005157 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005158
5159 if (txn->req.msg_state == HTTP_MSG_ERROR)
5160 goto wait_other_side;
5161
5162 if (txn->req.msg_state < HTTP_MSG_DONE) {
5163 /* The client seems to still be sending data, probably
5164 * because we got an error response during an upload.
5165 * We have the choice of either breaking the connection
5166 * or letting it pass through. Let's do the later.
5167 */
5168 goto wait_other_side;
5169 }
5170
5171 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
5172 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005173 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005174 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02005175 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005176 goto wait_other_side;
5177 }
5178
5179 /* When we get here, it means that both the request and the
5180 * response have finished receiving. Depending on the connection
5181 * mode, we'll have to wait for the last bytes to leave in either
5182 * direction, and sometimes for a close to be effective.
5183 */
5184
5185 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5186 /* Server-close mode : shut read and wait for the request
5187 * side to close its output buffer. The caller will detect
5188 * when we're in DONE and the other is in CLOSED and will
5189 * catch that for the final cleanup.
5190 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005191 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
5192 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005193 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005194 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5195 /* Option forceclose is set, or either side wants to close,
5196 * let's enforce it now that we're not expecting any new
5197 * data to come. The caller knows the session is complete
5198 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005199 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005200 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5201 channel_shutr_now(chn);
5202 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005203 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005204 }
5205 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005206 /* The last possible modes are keep-alive and tunnel. Tunnel will
5207 * need to forward remaining data. Keep-alive will need to monitor
5208 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005209 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005210 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02005211 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01005212 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
5213 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005214 }
5215
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005216 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005217 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005218 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005219 txn->rsp.msg_state = HTTP_MSG_CLOSING;
5220 goto http_msg_closing;
5221 }
5222 else {
5223 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5224 goto http_msg_closed;
5225 }
5226 }
5227 goto wait_other_side;
5228 }
5229
5230 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
5231 http_msg_closing:
5232 /* nothing else to forward, just waiting for the output buffer
5233 * to be empty and for the shutw_now to take effect.
5234 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005235 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005236 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5237 goto http_msg_closed;
5238 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005239 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005240 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005241 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005242 if (objt_server(s->target))
5243 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005244 goto wait_other_side;
5245 }
5246 }
5247
5248 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
5249 http_msg_closed:
5250 /* drop any pending data */
Willy Tarreau319f7452015-01-14 20:32:59 +01005251 channel_truncate(chn);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005252 channel_auto_close(chn);
5253 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005254 goto wait_other_side;
5255 }
5256
5257 wait_other_side:
Willy Tarreaufc47f912012-10-20 10:38:09 +02005258 /* We force the response to leave immediately if we're waiting for the
5259 * other side, since there is no pending shutdown to push it out.
5260 */
5261 if (!channel_is_empty(chn))
5262 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005263 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005264}
5265
5266
5267/* Resync the request and response state machines. Return 1 if either state
5268 * changes.
5269 */
5270int http_resync_states(struct session *s)
5271{
5272 struct http_txn *txn = &s->txn;
5273 int old_req_state = txn->req.msg_state;
5274 int old_res_state = txn->rsp.msg_state;
5275
Willy Tarreau610ecce2010-01-04 21:15:02 +01005276 http_sync_req_state(s);
5277 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005278 if (!http_sync_res_state(s))
5279 break;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005280 if (!http_sync_req_state(s))
5281 break;
5282 }
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02005283
Willy Tarreau610ecce2010-01-04 21:15:02 +01005284 /* OK, both state machines agree on a compatible state.
5285 * There are a few cases we're interested in :
5286 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
5287 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
5288 * directions, so let's simply disable both analysers.
5289 * - HTTP_MSG_CLOSED on the response only means we must abort the
5290 * request.
5291 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
5292 * with server-close mode means we've completed one request and we
5293 * must re-initialize the server connection.
5294 */
5295
5296 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
5297 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
5298 (txn->req.msg_state == HTTP_MSG_CLOSED &&
5299 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
5300 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005301 channel_auto_close(s->req);
5302 channel_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005303 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005304 channel_auto_close(s->rep);
5305 channel_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005306 }
Willy Tarreau40f151a2012-12-20 12:10:09 +01005307 else if ((txn->req.msg_state >= HTTP_MSG_DONE &&
5308 (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->rep->flags & CF_SHUTW))) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005309 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01005310 txn->req.msg_state == HTTP_MSG_ERROR) {
Willy Tarreau90deb182010-01-07 00:20:41 +01005311 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005312 channel_auto_close(s->rep);
5313 channel_auto_read(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01005314 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005315 channel_abort(s->req);
5316 channel_auto_close(s->req);
5317 channel_auto_read(s->req);
Willy Tarreau319f7452015-01-14 20:32:59 +01005318 channel_truncate(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005319 }
Willy Tarreau4213a112013-12-15 10:25:42 +01005320 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
5321 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01005322 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01005323 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
5324 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
5325 /* server-close/keep-alive: terminate this transaction,
5326 * possibly killing the server connection and reinitialize
5327 * a fresh-new transaction.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005328 */
5329 http_end_txn_clean_session(s);
5330 }
5331
Willy Tarreau610ecce2010-01-04 21:15:02 +01005332 return txn->req.msg_state != old_req_state ||
5333 txn->rsp.msg_state != old_res_state;
5334}
5335
Willy Tarreaud98cf932009-12-27 22:54:55 +01005336/* This function is an analyser which forwards request body (including chunk
5337 * sizes if any). It is called as soon as we must forward, even if we forward
5338 * zero byte. The only situation where it must not be called is when we're in
5339 * tunnel mode and we want to forward till the close. It's used both to forward
5340 * remaining data and to resync after end of body. It expects the msg_state to
5341 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
5342 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01005343 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreauc24715e2014-04-17 15:21:20 +02005344 * bytes of pending data + the headers if not already done.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005345 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005346int http_request_forward_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005347{
5348 struct http_txn *txn = &s->txn;
5349 struct http_msg *msg = &s->txn.req;
5350
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005351 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5352 return 0;
5353
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005354 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02005355 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005356 /* Output closed while we were sending data. We must abort and
5357 * wake the other side up.
5358 */
5359 msg->msg_state = HTTP_MSG_ERROR;
5360 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005361 return 1;
5362 }
5363
Willy Tarreaud98cf932009-12-27 22:54:55 +01005364 /* Note that we don't have to send 100-continue back because we don't
5365 * need the data to complete our job, and it's up to the server to
5366 * decide whether to return 100, 417 or anything else in return of
5367 * an "Expect: 100-continue" header.
5368 */
5369
Willy Tarreaubb2e6692014-07-10 19:06:10 +02005370 if (msg->sov > 0) {
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005371 /* we have msg->sov which points to the first byte of message
5372 * body, and req->buf.p still points to the beginning of the
5373 * message. We forward the headers now, as we don't need them
5374 * anymore, and we want to flush them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005375 */
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005376 b_adv(req->buf, msg->sov);
5377 msg->next -= msg->sov;
5378 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01005379
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005380 /* The previous analysers guarantee that the state is somewhere
5381 * between MSG_BODY and the first MSG_DATA. So msg->sol and
5382 * msg->next are always correct.
5383 */
5384 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
5385 if (msg->flags & HTTP_MSGF_TE_CHNK)
5386 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5387 else
5388 msg->msg_state = HTTP_MSG_DATA;
5389 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005390 }
5391
Willy Tarreau7ba23542014-04-17 21:50:00 +02005392 /* Some post-connect processing might want us to refrain from starting to
5393 * forward data. Currently, the only reason for this is "balance url_param"
5394 * whichs need to parse/process the request after we've enabled forwarding.
5395 */
5396 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
5397 if (!(s->rep->flags & CF_READ_ATTACHED)) {
5398 channel_auto_connect(req);
Willy Tarreau644c1012014-04-30 18:11:11 +02005399 req->flags |= CF_WAKE_CONNECT;
Willy Tarreau7ba23542014-04-17 21:50:00 +02005400 goto missing_data;
5401 }
5402 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
5403 }
5404
Willy Tarreau80a92c02014-03-12 10:41:13 +01005405 /* in most states, we should abort in case of early close */
5406 channel_auto_close(req);
5407
Willy Tarreauefdf0942014-04-24 20:08:57 +02005408 if (req->to_forward) {
5409 /* We can't process the buffer's contents yet */
5410 req->flags |= CF_WAKE_WRITE;
5411 goto missing_data;
5412 }
5413
Willy Tarreaud98cf932009-12-27 22:54:55 +01005414 while (1) {
Willy Tarreaucaabe412010-01-03 23:08:28 +01005415 if (msg->msg_state == HTTP_MSG_DATA) {
5416 /* must still forward */
Willy Tarreaubed410e2014-04-22 08:19:34 +02005417 /* we may have some pending data starting at req->buf->p */
5418 if (msg->chunk_len > req->buf->i - msg->next) {
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005419 req->flags |= CF_WAKE_WRITE;
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005420 goto missing_data;
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005421 }
Willy Tarreaubed410e2014-04-22 08:19:34 +02005422 msg->next += msg->chunk_len;
5423 msg->chunk_len = 0;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005424
5425 /* nothing left to forward */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005426 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005427 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005428 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01005429 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005430 }
5431 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005432 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreauc24715e2014-04-17 15:21:20 +02005433 * set ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01005434 * TRAILERS state.
5435 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005436 int ret = http_parse_chunk_size(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005437
Willy Tarreau54d23df2012-10-25 19:04:45 +02005438 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005439 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005440 else if (ret < 0) {
5441 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005442 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005443 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005444 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005445 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005446 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005447 }
Willy Tarreau54d23df2012-10-25 19:04:45 +02005448 else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005449 /* we want the CRLF after the data */
Willy Tarreau54d23df2012-10-25 19:04:45 +02005450 int ret = http_skip_chunk_crlf(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005451
5452 if (ret == 0)
5453 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005454 else if (ret < 0) {
5455 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005456 if (msg->err_pos >= 0)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005457 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005458 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005459 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005460 /* we're in MSG_CHUNK_SIZE now */
5461 }
5462 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005463 int ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005464
5465 if (ret == 0)
5466 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005467 else if (ret < 0) {
5468 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005469 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005470 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005471 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005472 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005473 /* we're in HTTP_MSG_DONE now */
5474 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005475 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005476 int old_state = msg->msg_state;
5477
Willy Tarreau610ecce2010-01-04 21:15:02 +01005478 /* other states, DONE...TUNNEL */
Willy Tarreaubed410e2014-04-22 08:19:34 +02005479
5480 /* we may have some pending data starting at req->buf->p
5481 * such as last chunk of data or trailers.
5482 */
5483 b_adv(req->buf, msg->next);
Willy Tarreau9dc1c612014-09-01 20:35:55 +02005484 if (unlikely(!(s->req->flags & CF_WROTE_DATA)))
Willy Tarreaubb2e6692014-07-10 19:06:10 +02005485 msg->sov -= msg->next;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005486 msg->next = 0;
5487
Willy Tarreau4fe41902010-06-07 22:27:41 +02005488 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005489 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5490 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005491 channel_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005492 if (http_resync_states(s)) {
5493 /* some state changes occurred, maybe the analyser
5494 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01005495 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005496 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005497 if (req->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005498 /* request errors are most likely due to
5499 * the server aborting the transfer.
5500 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005501 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005502 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005503 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005504 http_capture_bad_message(&s->fe->invalid_req, s, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005505 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005506 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005507 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005508 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005509
5510 /* If "option abortonclose" is set on the backend, we
5511 * want to monitor the client's connection and forward
5512 * any shutdown notification to the server, which will
5513 * decide whether to close or to go on processing the
5514 * request.
5515 */
5516 if (s->be->options & PR_O_ABRT_CLOSE) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005517 channel_auto_read(req);
5518 channel_auto_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02005519 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005520 else if (s->txn.meth == HTTP_METH_POST) {
5521 /* POST requests may require to read extra CRLF
5522 * sent by broken browsers and which could cause
5523 * an RST to be sent upon close on some systems
5524 * (eg: Linux).
5525 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005526 channel_auto_read(req);
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005527 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005528
Willy Tarreau610ecce2010-01-04 21:15:02 +01005529 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005530 }
5531 }
5532
Willy Tarreaud98cf932009-12-27 22:54:55 +01005533 missing_data:
Willy Tarreaubed410e2014-04-22 08:19:34 +02005534 /* we may have some pending data starting at req->buf->p */
5535 b_adv(req->buf, msg->next);
Willy Tarreau9dc1c612014-09-01 20:35:55 +02005536 if (unlikely(!(s->req->flags & CF_WROTE_DATA)))
Willy Tarreaubb2e6692014-07-10 19:06:10 +02005537 msg->sov -= msg->next + MIN(msg->chunk_len, req->buf->i);
5538
Willy Tarreaubed410e2014-04-22 08:19:34 +02005539 msg->next = 0;
5540 msg->chunk_len -= channel_forward(req, msg->chunk_len);
5541
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005542 /* stop waiting for data if the input is closed before the end */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005543 if (req->flags & CF_SHUTR) {
Willy Tarreau79ebac62010-06-07 13:47:49 +02005544 if (!(s->flags & SN_ERR_MASK))
5545 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005546 if (!(s->flags & SN_FINST_MASK)) {
5547 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5548 s->flags |= SN_FINST_H;
5549 else
5550 s->flags |= SN_FINST_D;
5551 }
5552
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005553 s->fe->fe_counters.cli_aborts++;
5554 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005555 if (objt_server(s->target))
5556 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005557
5558 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02005559 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005560
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005561 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005562 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005563 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005564
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005565 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005566 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005567 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005568 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005569 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005570
Willy Tarreau5c620922011-05-11 19:56:11 +02005571 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005572 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005573 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01005574 * modes are already handled by the stream sock layer. We must not do
5575 * this in content-length mode because it could present the MSG_MORE
5576 * flag with the last block of forwarded data, which would cause an
5577 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02005578 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005579 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005580 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005581
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005582 return 0;
5583
Willy Tarreaud98cf932009-12-27 22:54:55 +01005584 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005585 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005586 if (s->listener->counters)
5587 s->listener->counters->failed_req++;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005588
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005589 return_bad_req_stats_ok:
Willy Tarreaubed410e2014-04-22 08:19:34 +02005590 /* we may have some pending data starting at req->buf->p */
5591 b_adv(req->buf, msg->next);
5592 msg->next = 0;
5593
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005594 txn->req.msg_state = HTTP_MSG_ERROR;
5595 if (txn->status) {
5596 /* Note: we don't send any error if some data were already sent */
5597 stream_int_retnclose(req->prod, NULL);
5598 } else {
5599 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02005600 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005601 }
5602 req->analysers = 0;
5603 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005604
5605 if (!(s->flags & SN_ERR_MASK))
5606 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005607 if (!(s->flags & SN_FINST_MASK)) {
5608 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5609 s->flags |= SN_FINST_H;
5610 else
5611 s->flags |= SN_FINST_D;
5612 }
5613 return 0;
5614
5615 aborted_xfer:
5616 txn->req.msg_state = HTTP_MSG_ERROR;
5617 if (txn->status) {
5618 /* Note: we don't send any error if some data were already sent */
5619 stream_int_retnclose(req->prod, NULL);
5620 } else {
5621 txn->status = 502;
Willy Tarreau783f2582012-09-04 12:19:04 +02005622 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_502));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005623 }
5624 req->analysers = 0;
5625 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
5626
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005627 s->fe->fe_counters.srv_aborts++;
5628 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005629 if (objt_server(s->target))
5630 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005631
5632 if (!(s->flags & SN_ERR_MASK))
5633 s->flags |= SN_ERR_SRVCL;
5634 if (!(s->flags & SN_FINST_MASK)) {
5635 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5636 s->flags |= SN_FINST_H;
5637 else
5638 s->flags |= SN_FINST_D;
5639 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005640 return 0;
5641}
5642
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005643/* This stream analyser waits for a complete HTTP response. It returns 1 if the
5644 * processing can continue on next analysers, or zero if it either needs more
5645 * data or wants to immediately abort the response (eg: timeout, error, ...). It
5646 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
5647 * when it has nothing left to do, and may remove any analyser when it wants to
5648 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005649 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005650int http_wait_for_response(struct session *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005651{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005652 struct http_txn *txn = &s->txn;
5653 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005654 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005655 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005656 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005657 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02005658
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005659 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 +02005660 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005661 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005662 rep,
5663 rep->rex, rep->wex,
5664 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005665 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005666 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02005667
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005668 /*
5669 * Now parse the partial (or complete) lines.
5670 * We will check the response syntax, and also join multi-line
5671 * headers. An index of all the lines will be elaborated while
5672 * parsing.
5673 *
5674 * For the parsing, we use a 28 states FSM.
5675 *
5676 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02005677 * rep->buf->p = beginning of response
5678 * rep->buf->p + msg->eoh = end of processed headers / start of current one
5679 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02005680 * msg->eol = end of current header or line (LF or CRLF)
5681 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005682 */
5683
Willy Tarreau628c40c2014-04-24 19:11:26 +02005684 next_one:
Willy Tarreau83e3af02009-12-28 17:39:57 +01005685 /* There's a protected area at the end of the buffer for rewriting
5686 * purposes. We don't want to start to parse the request if the
5687 * protected area is affected, because we may have to move processed
5688 * data later, which is much more complicated.
5689 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005690 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01005691 if (unlikely(!channel_is_rewritable(rep))) {
Willy Tarreau379357a2013-06-08 12:55:46 +02005692 /* some data has still not left the buffer, wake us once that's done */
5693 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
5694 goto abort_response;
5695 channel_dont_close(rep);
5696 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01005697 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02005698 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01005699 }
5700
Willy Tarreau379357a2013-06-08 12:55:46 +02005701 if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
5702 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite))
5703 buffer_slow_realign(rep->buf);
5704
Willy Tarreau9b28e032012-10-12 23:49:43 +02005705 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01005706 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01005707 }
5708
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005709 /* 1: we might have to print this header in debug mode */
5710 if (unlikely((global.mode & MODE_DEBUG) &&
5711 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02005712 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005713 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005714
Willy Tarreau9b28e032012-10-12 23:49:43 +02005715 sol = rep->buf->p;
5716 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005717 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005718
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005719 sol += hdr_idx_first_pos(&txn->hdr_idx);
5720 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005721
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005722 while (cur_idx) {
5723 eol = sol + txn->hdr_idx.v[cur_idx].len;
5724 debug_hdr("srvhdr", s, sol, eol);
5725 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5726 cur_idx = txn->hdr_idx.v[cur_idx].next;
5727 }
5728 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005729
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005730 /*
5731 * Now we quickly check if we have found a full valid response.
5732 * If not so, we check the FD and buffer states before leaving.
5733 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005734 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005735 * responses are checked first.
5736 *
5737 * Depending on whether the client is still there or not, we
5738 * may send an error response back or not. Note that normally
5739 * we should only check for HTTP status there, and check I/O
5740 * errors somewhere else.
5741 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005742
Willy Tarreau655dce92009-11-08 13:10:58 +01005743 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005744 /* Invalid response */
5745 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5746 /* we detected a parsing error. We want to archive this response
5747 * in the dedicated proxy area for later troubleshooting.
5748 */
5749 hdr_response_bad:
5750 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005751 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005752
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005753 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005754 if (objt_server(s->target)) {
5755 objt_server(s->target)->counters.failed_resp++;
5756 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005757 }
Willy Tarreau64648412010-03-05 10:41:54 +01005758 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005759 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005760 rep->analysers = 0;
5761 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005762 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005763 channel_truncate(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005764 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005765
5766 if (!(s->flags & SN_ERR_MASK))
5767 s->flags |= SN_ERR_PRXCOND;
5768 if (!(s->flags & SN_FINST_MASK))
5769 s->flags |= SN_FINST_H;
5770
5771 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005772 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005773
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005774 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005775 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02005776 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02005777 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005778 goto hdr_response_bad;
5779 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005780
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005781 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005782 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005783 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005784 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005785 else if (txn->flags & TX_NOT_FIRST)
5786 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02005787
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005788 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005789 if (objt_server(s->target)) {
5790 objt_server(s->target)->counters.failed_resp++;
5791 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005792 }
Willy Tarreau461f6622008-08-15 23:43:19 +02005793
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005794 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005795 rep->analysers = 0;
5796 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005797 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005798 channel_truncate(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005799 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02005800
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005801 if (!(s->flags & SN_ERR_MASK))
5802 s->flags |= SN_ERR_SRVCL;
5803 if (!(s->flags & SN_FINST_MASK))
5804 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02005805 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005806 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005807
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02005808 /* read timeout : return a 504 to the client. */
5809 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005810 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005811 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005812 else if (txn->flags & TX_NOT_FIRST)
5813 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005814
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005815 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005816 if (objt_server(s->target)) {
5817 objt_server(s->target)->counters.failed_resp++;
5818 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005819 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005820
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005821 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005822 rep->analysers = 0;
5823 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005824 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005825 channel_truncate(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005826 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02005827
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005828 if (!(s->flags & SN_ERR_MASK))
5829 s->flags |= SN_ERR_SRVTO;
5830 if (!(s->flags & SN_FINST_MASK))
5831 s->flags |= SN_FINST_H;
5832 return 0;
5833 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02005834
Willy Tarreauf003d372012-11-26 13:35:37 +01005835 /* client abort with an abortonclose */
5836 else if ((rep->flags & CF_SHUTR) && ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
5837 s->fe->fe_counters.cli_aborts++;
5838 s->be->be_counters.cli_aborts++;
5839 if (objt_server(s->target))
5840 objt_server(s->target)->counters.cli_aborts++;
5841
5842 rep->analysers = 0;
5843 channel_auto_close(rep);
5844
5845 txn->status = 400;
Willy Tarreau319f7452015-01-14 20:32:59 +01005846 channel_truncate(rep);
Willy Tarreauf003d372012-11-26 13:35:37 +01005847 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_400));
5848
5849 if (!(s->flags & SN_ERR_MASK))
5850 s->flags |= SN_ERR_CLICL;
5851 if (!(s->flags & SN_FINST_MASK))
5852 s->flags |= SN_FINST_H;
5853
5854 /* process_session() will take care of the error */
5855 return 0;
5856 }
5857
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005858 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005859 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005860 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005861 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005862 else if (txn->flags & TX_NOT_FIRST)
5863 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005864
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005865 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005866 if (objt_server(s->target)) {
5867 objt_server(s->target)->counters.failed_resp++;
5868 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005869 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005870
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005871 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005872 rep->analysers = 0;
5873 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005874 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005875 channel_truncate(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005876 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01005877
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005878 if (!(s->flags & SN_ERR_MASK))
5879 s->flags |= SN_ERR_SRVCL;
5880 if (!(s->flags & SN_FINST_MASK))
5881 s->flags |= SN_FINST_H;
5882 return 0;
5883 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005884
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005885 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005886 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005887 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005888 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005889 else if (txn->flags & TX_NOT_FIRST)
5890 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005891
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005892 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005893 rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005894 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005895
5896 if (!(s->flags & SN_ERR_MASK))
5897 s->flags |= SN_ERR_CLICL;
5898 if (!(s->flags & SN_FINST_MASK))
5899 s->flags |= SN_FINST_H;
5900
5901 /* process_session() will take care of the error */
5902 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005903 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005904
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005905 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01005906 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005907 return 0;
5908 }
5909
5910 /* More interesting part now : we know that we have a complete
5911 * response which at least looks like HTTP. We have an indicator
5912 * of each header's length, so we can parse them quickly.
5913 */
5914
5915 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005916 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005917
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005918 /*
5919 * 1: get the status code
5920 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005921 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005922 if (n < 1 || n > 5)
5923 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005924 /* when the client triggers a 4xx from the server, it's most often due
5925 * to a missing object or permission. These events should be tracked
5926 * because if they happen often, it may indicate a brute force or a
5927 * vulnerability scan.
5928 */
5929 if (n == 4)
5930 session_inc_http_err_ctr(s);
5931
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005932 if (objt_server(s->target))
5933 objt_server(s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005934
Willy Tarreau5b154472009-12-21 20:11:07 +01005935 /* check if the response is HTTP/1.1 or above */
5936 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005937 ((rep->buf->p[5] > '1') ||
5938 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005939 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01005940
5941 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01005942 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 +01005943
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005944 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005945 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005946
Willy Tarreau9b28e032012-10-12 23:49:43 +02005947 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005948
Willy Tarreau39650402010-03-15 19:44:39 +01005949 /* Adjust server's health based on status code. Note: status codes 501
5950 * and 505 are triggered on demand by client request, so we must not
5951 * count them as server failures.
5952 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005953 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005954 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005955 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005956 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005957 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005958 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005959
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005960 /*
5961 * 2: check for cacheability.
5962 */
5963
5964 switch (txn->status) {
Willy Tarreau628c40c2014-04-24 19:11:26 +02005965 case 100:
5966 /*
5967 * We may be facing a 100-continue response, in which case this
5968 * is not the right response, and we're waiting for the next one.
5969 * Let's allow this response to go to the client and wait for the
5970 * next one.
5971 */
5972 hdr_idx_init(&txn->hdr_idx);
5973 msg->next -= channel_forward(rep, msg->next);
5974 msg->msg_state = HTTP_MSG_RPBEFORE;
5975 txn->status = 0;
5976 s->logs.t_data = -1; /* was not a response yet */
5977 goto next_one;
5978
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005979 case 200:
5980 case 203:
5981 case 206:
5982 case 300:
5983 case 301:
5984 case 410:
5985 /* RFC2616 @13.4:
5986 * "A response received with a status code of
5987 * 200, 203, 206, 300, 301 or 410 MAY be stored
5988 * by a cache (...) unless a cache-control
5989 * directive prohibits caching."
5990 *
5991 * RFC2616 @9.5: POST method :
5992 * "Responses to this method are not cacheable,
5993 * unless the response includes appropriate
5994 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005995 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005996 if (likely(txn->meth != HTTP_METH_POST) &&
Willy Tarreau67402132012-05-31 20:40:20 +02005997 ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005998 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
5999 break;
6000 default:
6001 break;
6002 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006003
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006004 /*
6005 * 3: we may need to capture headers
6006 */
6007 s->logs.logwait &= ~LW_RESP;
Willy Tarreau42f7d892012-03-24 08:28:09 +01006008 if (unlikely((s->logs.logwait & LW_RSPHDR) && txn->rsp.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02006009 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006010 txn->rsp.cap, s->fe->rsp_cap);
6011
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006012 /* 4: determine the transfer-length.
6013 * According to RFC2616 #4.4, amended by the HTTPbis working group,
6014 * the presence of a message-body in a RESPONSE and its transfer length
6015 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006016 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006017 * All responses to the HEAD request method MUST NOT include a
6018 * message-body, even though the presence of entity-header fields
6019 * might lead one to believe they do. All 1xx (informational), 204
6020 * (No Content), and 304 (Not Modified) responses MUST NOT include a
6021 * message-body. All other responses do include a message-body,
6022 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006023 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006024 * 1. Any response which "MUST NOT" include a message-body (such as the
6025 * 1xx, 204 and 304 responses and any response to a HEAD request) is
6026 * always terminated by the first empty line after the header fields,
6027 * regardless of the entity-header fields present in the message.
6028 *
6029 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
6030 * the "chunked" transfer-coding (Section 6.2) is used, the
6031 * transfer-length is defined by the use of this transfer-coding.
6032 * If a Transfer-Encoding header field is present and the "chunked"
6033 * transfer-coding is not present, the transfer-length is defined by
6034 * the sender closing the connection.
6035 *
6036 * 3. If a Content-Length header field is present, its decimal value in
6037 * OCTETs represents both the entity-length and the transfer-length.
6038 * If a message is received with both a Transfer-Encoding header
6039 * field and a Content-Length header field, the latter MUST be ignored.
6040 *
6041 * 4. If the message uses the media type "multipart/byteranges", and
6042 * the transfer-length is not otherwise specified, then this self-
6043 * delimiting media type defines the transfer-length. This media
6044 * type MUST NOT be used unless the sender knows that the recipient
6045 * can parse it; the presence in a request of a Range header with
6046 * multiple byte-range specifiers from a 1.1 client implies that the
6047 * client can parse multipart/byteranges responses.
6048 *
6049 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006050 */
6051
6052 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01006053 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006054 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006055 * FIXME: should we parse anyway and return an error on chunked encoding ?
6056 */
6057 if (txn->meth == HTTP_METH_HEAD ||
6058 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006059 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006060 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreau91015352012-11-27 07:31:33 +01006061 s->comp_algo = NULL;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006062 goto skip_content_length;
6063 }
6064
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006065 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006066 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006067 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02006068 http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006069 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006070 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
6071 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006072 /* bad transfer-encoding (chunked followed by something else) */
6073 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006074 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006075 break;
6076 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006077 }
6078
6079 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
6080 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006081 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02006082 http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006083 signed long long cl;
6084
Willy Tarreauad14f752011-09-02 20:33:27 +02006085 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006086 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006087 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02006088 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006089
Willy Tarreauad14f752011-09-02 20:33:27 +02006090 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006091 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006092 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02006093 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006094
Willy Tarreauad14f752011-09-02 20:33:27 +02006095 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006096 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006097 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02006098 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006099
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006100 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006101 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006102 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02006103 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006104
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006105 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01006106 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006107 }
6108
William Lallemand82fe75c2012-10-23 10:25:10 +02006109 if (s->fe->comp || s->be->comp)
6110 select_compression_response_header(s, rep->buf);
6111
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006112skip_content_length:
Willy Tarreau5b154472009-12-21 20:11:07 +01006113 /* Now we have to check if we need to modify the Connection header.
6114 * This is more difficult on the response than it is on the request,
6115 * because we can have two different HTTP versions and we don't know
6116 * how the client will interprete a response. For instance, let's say
6117 * that the client sends a keep-alive request in HTTP/1.0 and gets an
6118 * HTTP/1.1 response without any header. Maybe it will bound itself to
6119 * HTTP/1.0 because it only knows about it, and will consider the lack
6120 * of header as a close, or maybe it knows HTTP/1.1 and can consider
6121 * the lack of header as a keep-alive. Thus we will use two flags
6122 * indicating how a request MAY be understood by the client. In case
6123 * of multiple possibilities, we'll fix the header to be explicit. If
6124 * ambiguous cases such as both close and keepalive are seen, then we
6125 * will fall back to explicit close. Note that we won't take risks with
6126 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01006127 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01006128 */
6129
Willy Tarreaudc008c52010-02-01 16:20:08 +01006130 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
6131 txn->status == 101)) {
6132 /* Either we've established an explicit tunnel, or we're
6133 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006134 * to understand the next protocols. We have to switch to tunnel
6135 * mode, so that we transfer the request and responses then let
6136 * this protocol pass unmodified. When we later implement specific
6137 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01006138 * header which contains information about that protocol for
6139 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006140 */
6141 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
6142 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01006143 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
6144 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006145 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6146 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01006147 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01006148
Willy Tarreau70dffda2014-01-30 03:07:23 +01006149 /* this situation happens when combining pretend-keepalive with httpclose. */
6150 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006151 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6152 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))
Willy Tarreau70dffda2014-01-30 03:07:23 +01006153 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
6154
Willy Tarreau60466522010-01-18 19:08:45 +01006155 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006156 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01006157 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
6158 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01006159
Willy Tarreau60466522010-01-18 19:08:45 +01006160 /* now adjust header transformations depending on current state */
6161 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
6162 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
6163 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006164 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01006165 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006166 }
Willy Tarreau60466522010-01-18 19:08:45 +01006167 else { /* SCL / KAL */
6168 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006169 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01006170 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006171 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006172
Willy Tarreau60466522010-01-18 19:08:45 +01006173 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01006174 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01006175
Willy Tarreau60466522010-01-18 19:08:45 +01006176 /* Some keep-alive responses are converted to Server-close if
6177 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01006178 */
Willy Tarreau60466522010-01-18 19:08:45 +01006179 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
6180 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006181 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01006182 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01006183 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006184 }
6185
Willy Tarreau7959a552013-09-23 16:44:27 +02006186 /* we want to have the response time before we start processing it */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006187 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau7959a552013-09-23 16:44:27 +02006188
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006189 /* end of job, return OK */
6190 rep->analysers &= ~an_bit;
6191 rep->analyse_exp = TICK_ETERNITY;
6192 channel_auto_close(rep);
6193 return 1;
6194
6195 abort_keep_alive:
6196 /* A keep-alive request to the server failed on a network error.
6197 * The client is required to retry. We need to close without returning
6198 * any other information so that the client retries.
6199 */
6200 txn->status = 0;
6201 rep->analysers = 0;
6202 s->req->analysers = 0;
6203 channel_auto_close(rep);
6204 s->logs.logwait = 0;
6205 s->logs.level = 0;
6206 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau319f7452015-01-14 20:32:59 +01006207 channel_truncate(rep);
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006208 stream_int_retnclose(rep->cons, NULL);
6209 return 0;
6210}
6211
6212/* This function performs all the processing enabled for the current response.
6213 * It normally returns 1 unless it wants to break. It relies on buffers flags,
6214 * and updates s->rep->analysers. It might make sense to explode it into several
6215 * other functions. It works like process_request (see indications above).
6216 */
6217int http_process_res_common(struct session *s, struct channel *rep, int an_bit, struct proxy *px)
6218{
6219 struct http_txn *txn = &s->txn;
6220 struct http_msg *msg = &txn->rsp;
6221 struct proxy *cur_proxy;
6222 struct cond_wordlist *wl;
6223 struct http_res_rule *http_res_last_rule = NULL;
6224
6225 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
6226 now_ms, __FUNCTION__,
6227 s,
6228 rep,
6229 rep->rex, rep->wex,
6230 rep->flags,
6231 rep->buf->i,
6232 rep->analysers);
6233
6234 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
6235 return 0;
6236
6237 rep->analysers &= ~an_bit;
6238 rep->analyse_exp = TICK_ETERNITY;
6239
Willy Tarreau70730dd2014-04-24 18:06:27 +02006240 /* The stats applet needs to adjust the Connection header but we don't
6241 * apply any filter there.
6242 */
6243 if (unlikely(objt_applet(s->target) == &http_stats_applet))
6244 goto skip_filters;
6245
Willy Tarreau58975672014-04-24 21:13:57 +02006246 /*
6247 * We will have to evaluate the filters.
6248 * As opposed to version 1.2, now they will be evaluated in the
6249 * filters order and not in the header order. This means that
6250 * each filter has to be validated among all headers.
6251 *
6252 * Filters are tried with ->be first, then with ->fe if it is
6253 * different from ->be.
6254 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006255
Willy Tarreau58975672014-04-24 21:13:57 +02006256 cur_proxy = s->be;
6257 while (1) {
6258 struct proxy *rule_set = cur_proxy;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006259
Willy Tarreau58975672014-04-24 21:13:57 +02006260 /* evaluate http-response rules */
6261 if (!http_res_last_rule)
6262 http_res_last_rule = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s, txn);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02006263
Willy Tarreau58975672014-04-24 21:13:57 +02006264 /* try headers filters */
6265 if (rule_set->rsp_exp != NULL) {
6266 if (apply_filters_to_response(s, rep, rule_set) < 0) {
6267 return_bad_resp:
6268 if (objt_server(s->target)) {
6269 objt_server(s->target)->counters.failed_resp++;
6270 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_RSP);
Willy Tarreau21d2af32008-02-14 20:25:24 +01006271 }
Willy Tarreau58975672014-04-24 21:13:57 +02006272 s->be->be_counters.failed_resp++;
6273 return_srv_prx_502:
6274 rep->analysers = 0;
6275 txn->status = 502;
6276 s->logs.t_data = -1; /* was not a valid response */
6277 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006278 channel_truncate(rep);
Willy Tarreau58975672014-04-24 21:13:57 +02006279 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
6280 if (!(s->flags & SN_ERR_MASK))
6281 s->flags |= SN_ERR_PRXCOND;
6282 if (!(s->flags & SN_FINST_MASK))
6283 s->flags |= SN_FINST_H;
6284 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006285 }
Willy Tarreau58975672014-04-24 21:13:57 +02006286 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006287
Willy Tarreau58975672014-04-24 21:13:57 +02006288 /* has the response been denied ? */
6289 if (txn->flags & TX_SVDENY) {
6290 if (objt_server(s->target))
6291 objt_server(s->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006292
Willy Tarreau58975672014-04-24 21:13:57 +02006293 s->be->be_counters.denied_resp++;
6294 s->fe->fe_counters.denied_resp++;
6295 if (s->listener->counters)
6296 s->listener->counters->denied_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006297
Willy Tarreau58975672014-04-24 21:13:57 +02006298 goto return_srv_prx_502;
6299 }
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02006300
Willy Tarreau58975672014-04-24 21:13:57 +02006301 /* add response headers from the rule sets in the same order */
6302 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreauce730de2014-09-16 10:40:38 +02006303 if (txn->status < 200 && txn->status != 101)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006304 break;
Willy Tarreau58975672014-04-24 21:13:57 +02006305 if (wl->cond) {
6306 int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
6307 ret = acl_pass(ret);
6308 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
6309 ret = !ret;
6310 if (!ret)
6311 continue;
6312 }
6313 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
6314 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006315 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006316
Willy Tarreau58975672014-04-24 21:13:57 +02006317 /* check whether we're already working on the frontend */
6318 if (cur_proxy == s->fe)
6319 break;
6320 cur_proxy = s->fe;
6321 }
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006322
Willy Tarreau58975672014-04-24 21:13:57 +02006323 /* OK that's all we can do for 1xx responses */
Willy Tarreauce730de2014-09-16 10:40:38 +02006324 if (unlikely(txn->status < 200 && txn->status != 101))
Willy Tarreau58975672014-04-24 21:13:57 +02006325 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006326
Willy Tarreau58975672014-04-24 21:13:57 +02006327 /*
6328 * Now check for a server cookie.
6329 */
6330 if (s->be->cookie_name || s->be->appsession_name || s->fe->capture_name ||
6331 (s->be->options & PR_O_CHK_CACHE))
6332 manage_server_side_cookies(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006333
Willy Tarreau58975672014-04-24 21:13:57 +02006334 /*
6335 * Check for cache-control or pragma headers if required.
6336 */
Willy Tarreauce730de2014-09-16 10:40:38 +02006337 if (((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)) && txn->status != 101)
Willy Tarreau58975672014-04-24 21:13:57 +02006338 check_response_for_cacheability(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006339
Willy Tarreau58975672014-04-24 21:13:57 +02006340 /*
6341 * Add server cookie in the response if needed
6342 */
6343 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
6344 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
6345 (!(s->flags & SN_DIRECT) ||
6346 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
6347 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
6348 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
6349 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
6350 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
6351 !(s->flags & SN_IGNORE_PRST)) {
6352 /* the server is known, it's not the one the client requested, or the
6353 * cookie's last seen date needs to be refreshed. We have to
6354 * insert a set-cookie here, except if we want to insert only on POST
6355 * requests and this one isn't. Note that servers which don't have cookies
6356 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006357 */
Willy Tarreau58975672014-04-24 21:13:57 +02006358 if (!objt_server(s->target)->cookie) {
6359 chunk_printf(&trash,
6360 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
6361 s->be->cookie_name);
6362 }
6363 else {
6364 chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006365
Willy Tarreau58975672014-04-24 21:13:57 +02006366 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
6367 /* emit last_date, which is mandatory */
6368 trash.str[trash.len++] = COOKIE_DELIM_DATE;
6369 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
6370 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006371
Willy Tarreau58975672014-04-24 21:13:57 +02006372 if (s->be->cookie_maxlife) {
6373 /* emit first_date, which is either the original one or
6374 * the current date.
6375 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006376 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreau58975672014-04-24 21:13:57 +02006377 s30tob64(txn->cookie_first_date ?
6378 txn->cookie_first_date >> 2 :
6379 (date.tv_sec+3) >> 2, trash.str + trash.len);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006380 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006381 }
Willy Tarreauef4f3912010-10-07 21:00:29 +02006382 }
Willy Tarreau58975672014-04-24 21:13:57 +02006383 chunk_appendf(&trash, "; path=/");
6384 }
Willy Tarreau4992dd22012-05-31 21:02:17 +02006385
Willy Tarreau58975672014-04-24 21:13:57 +02006386 if (s->be->cookie_domain)
6387 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
Willy Tarreauef4f3912010-10-07 21:00:29 +02006388
Willy Tarreau58975672014-04-24 21:13:57 +02006389 if (s->be->ck_opts & PR_CK_HTTPONLY)
6390 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006391
Willy Tarreau58975672014-04-24 21:13:57 +02006392 if (s->be->ck_opts & PR_CK_SECURE)
6393 chunk_appendf(&trash, "; Secure");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006394
Willy Tarreau58975672014-04-24 21:13:57 +02006395 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
6396 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006397
Willy Tarreau58975672014-04-24 21:13:57 +02006398 txn->flags &= ~TX_SCK_MASK;
6399 if (objt_server(s->target)->cookie && (s->flags & SN_DIRECT))
6400 /* the server did not change, only the date was updated */
6401 txn->flags |= TX_SCK_UPDATED;
6402 else
6403 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006404
Willy Tarreau58975672014-04-24 21:13:57 +02006405 /* Here, we will tell an eventual cache on the client side that we don't
6406 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
6407 * Some caches understand the correct form: 'no-cache="set-cookie"', but
6408 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006409 */
Willy Tarreau58975672014-04-24 21:13:57 +02006410 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006411
Willy Tarreau58975672014-04-24 21:13:57 +02006412 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006413
Willy Tarreau58975672014-04-24 21:13:57 +02006414 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
6415 "Cache-control: private", 22) < 0))
6416 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006417 }
Willy Tarreau58975672014-04-24 21:13:57 +02006418 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006419
Willy Tarreau58975672014-04-24 21:13:57 +02006420 /*
6421 * Check if result will be cacheable with a cookie.
6422 * We'll block the response if security checks have caught
6423 * nasty things such as a cacheable cookie.
6424 */
6425 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
6426 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
6427 (s->be->options & PR_O_CHK_CACHE)) {
6428 /* we're in presence of a cacheable response containing
6429 * a set-cookie header. We'll block it as requested by
6430 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006431 */
Willy Tarreau58975672014-04-24 21:13:57 +02006432 if (objt_server(s->target))
6433 objt_server(s->target)->counters.failed_secu++;
Willy Tarreau60466522010-01-18 19:08:45 +01006434
Willy Tarreau58975672014-04-24 21:13:57 +02006435 s->be->be_counters.denied_resp++;
6436 s->fe->fe_counters.denied_resp++;
6437 if (s->listener->counters)
6438 s->listener->counters->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006439
Willy Tarreau58975672014-04-24 21:13:57 +02006440 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
6441 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6442 send_log(s->be, LOG_ALERT,
6443 "Blocking cacheable cookie in response from instance %s, server %s.\n",
6444 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6445 goto return_srv_prx_502;
6446 }
Willy Tarreau03945942009-12-22 16:50:27 +01006447
Willy Tarreau70730dd2014-04-24 18:06:27 +02006448 skip_filters:
Willy Tarreau58975672014-04-24 21:13:57 +02006449 /*
6450 * Adjust "Connection: close" or "Connection: keep-alive" if needed.
6451 * If an "Upgrade" token is found, the header is left untouched in order
6452 * not to have to deal with some client bugs : some of them fail an upgrade
Willy Tarreauce730de2014-09-16 10:40:38 +02006453 * if anything but "Upgrade" is present in the Connection header. We don't
6454 * want to touch any 101 response either since it's switching to another
6455 * protocol.
Willy Tarreau58975672014-04-24 21:13:57 +02006456 */
Willy Tarreauce730de2014-09-16 10:40:38 +02006457 if ((txn->status != 101) && !(txn->flags & TX_HDR_CONN_UPG) &&
Willy Tarreau58975672014-04-24 21:13:57 +02006458 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
6459 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6460 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
6461 unsigned int want_flags = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006462
Willy Tarreau58975672014-04-24 21:13:57 +02006463 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6464 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
6465 /* we want a keep-alive response here. Keep-alive header
6466 * required if either side is not 1.1.
6467 */
6468 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
6469 want_flags |= TX_CON_KAL_SET;
6470 }
6471 else {
6472 /* we want a close response here. Close header required if
6473 * the server is 1.1, regardless of the client.
6474 */
6475 if (msg->flags & HTTP_MSGF_VER_11)
6476 want_flags |= TX_CON_CLO_SET;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006477 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006478
Willy Tarreau58975672014-04-24 21:13:57 +02006479 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
6480 http_change_connection_header(txn, msg, want_flags);
6481 }
6482
6483 skip_header_mangling:
6484 if ((msg->flags & HTTP_MSGF_XFER_LEN) ||
6485 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
6486 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006487
Willy Tarreau58975672014-04-24 21:13:57 +02006488 /* if the user wants to log as soon as possible, without counting
6489 * bytes from the server, then this is the right moment. We have
6490 * to temporarily assign bytes_out to log what we currently have.
6491 */
6492 if (!LIST_ISEMPTY(&s->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
6493 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
6494 s->logs.bytes_out = txn->rsp.eoh;
6495 s->do_log(s);
6496 s->logs.bytes_out = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006497 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006498 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006499}
Willy Tarreaua15645d2007-03-18 16:22:39 +01006500
Willy Tarreaud98cf932009-12-27 22:54:55 +01006501/* This function is an analyser which forwards response body (including chunk
6502 * sizes if any). It is called as soon as we must forward, even if we forward
6503 * zero byte. The only situation where it must not be called is when we're in
6504 * tunnel mode and we want to forward till the close. It's used both to forward
6505 * remaining data and to resync after end of body. It expects the msg_state to
6506 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
6507 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreaud3510212014-04-21 11:24:13 +02006508 *
6509 * It is capable of compressing response data both in content-length mode and
6510 * in chunked mode. The state machines follows different flows depending on
6511 * whether content-length and chunked modes are used, since there are no
6512 * trailers in content-length :
6513 *
6514 * chk-mode cl-mode
6515 * ,----- BODY -----.
6516 * / \
6517 * V size > 0 V chk-mode
6518 * .--> SIZE -------------> DATA -------------> CRLF
6519 * | | size == 0 | last byte |
6520 * | v final crlf v inspected |
6521 * | TRAILERS -----------> DONE |
6522 * | |
6523 * `----------------------------------------------'
6524 *
6525 * Compression only happens in the DATA state, and must be flushed in final
6526 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
6527 * is performed at once on final states for all bytes parsed, or when leaving
6528 * on missing data.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006529 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006530int http_response_forward_body(struct session *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006531{
6532 struct http_txn *txn = &s->txn;
6533 struct http_msg *msg = &s->txn.rsp;
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +01006534 static struct buffer *tmpbuf = &buf_empty;
William Lallemand82fe75c2012-10-23 10:25:10 +02006535 int compressing = 0;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006536 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006537
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006538 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
6539 return 0;
6540
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006541 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02006542 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01006543 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02006544 /* Output closed while we were sending data. We must abort and
6545 * wake the other side up.
6546 */
6547 msg->msg_state = HTTP_MSG_ERROR;
6548 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01006549 return 1;
6550 }
6551
Willy Tarreau4fe41902010-06-07 22:27:41 +02006552 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006553 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006554
Willy Tarreaubb2e6692014-07-10 19:06:10 +02006555 if (msg->sov > 0) {
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006556 /* we have msg->sov which points to the first byte of message
6557 * body, and res->buf.p still points to the beginning of the
6558 * message. We forward the headers now, as we don't need them
6559 * anymore, and we want to flush them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006560 */
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006561 b_adv(res->buf, msg->sov);
6562 msg->next -= msg->sov;
6563 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01006564
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006565 /* The previous analysers guarantee that the state is somewhere
6566 * between MSG_BODY and the first MSG_DATA. So msg->sol and
6567 * msg->next are always correct.
6568 */
6569 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
6570 if (msg->flags & HTTP_MSGF_TE_CHNK)
6571 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
6572 else
6573 msg->msg_state = HTTP_MSG_DATA;
6574 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01006575 }
6576
Willy Tarreauefdf0942014-04-24 20:08:57 +02006577 if (res->to_forward) {
6578 /* We can't process the buffer's contents yet */
6579 res->flags |= CF_WAKE_WRITE;
6580 goto missing_data;
6581 }
6582
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006583 if (unlikely(s->comp_algo != NULL) && msg->msg_state < HTTP_MSG_TRAILERS) {
6584 /* We need a compression buffer in the DATA state to put the
6585 * output of compressed data, and in CRLF state to let the
6586 * TRAILERS state finish the job of removing the trailing CRLF.
6587 */
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +01006588 if (unlikely(!tmpbuf->size)) {
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006589 /* this is the first time we need the compression buffer */
Willy Tarreaue583ea52014-11-24 11:30:16 +01006590 if (b_alloc(&tmpbuf) == NULL)
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006591 goto aborted_xfer; /* no memory */
6592 }
6593
6594 ret = http_compression_buffer_init(s, res->buf, tmpbuf);
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006595 if (ret < 0) {
6596 res->flags |= CF_WAKE_WRITE;
William Lallemand82fe75c2012-10-23 10:25:10 +02006597 goto missing_data; /* not enough spaces in buffers */
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006598 }
William Lallemand82fe75c2012-10-23 10:25:10 +02006599 compressing = 1;
6600 }
6601
Willy Tarreaud98cf932009-12-27 22:54:55 +01006602 while (1) {
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006603 switch (msg->msg_state - HTTP_MSG_DATA) {
6604 case HTTP_MSG_DATA - HTTP_MSG_DATA: /* must still forward */
Willy Tarreauc623c172014-04-18 09:53:50 +02006605 /* we may have some pending data starting at res->buf->p */
6606 if (unlikely(s->comp_algo)) {
Willy Tarreau7f2f8d52014-04-18 00:20:14 +02006607 ret = http_compression_buffer_add_data(s, res->buf, tmpbuf);
William Lallemandbf3ae612012-11-19 12:35:37 +01006608 if (ret < 0)
6609 goto aborted_xfer;
Willy Tarreauc623c172014-04-18 09:53:50 +02006610
Willy Tarreaud5a67832014-04-21 10:54:27 +02006611 if (msg->chunk_len) {
6612 /* input empty or output full */
6613 if (res->buf->i > msg->next)
6614 res->flags |= CF_WAKE_WRITE;
Willy Tarreauc623c172014-04-18 09:53:50 +02006615 goto missing_data;
6616 }
William Lallemandbf3ae612012-11-19 12:35:37 +01006617 }
Willy Tarreauc623c172014-04-18 09:53:50 +02006618 else {
Willy Tarreaud5a67832014-04-21 10:54:27 +02006619 if (msg->chunk_len > res->buf->i - msg->next) {
6620 /* output full */
6621 res->flags |= CF_WAKE_WRITE;
6622 goto missing_data;
6623 }
Willy Tarreauc623c172014-04-18 09:53:50 +02006624 msg->next += msg->chunk_len;
6625 msg->chunk_len = 0;
6626 }
Willy Tarreaucaabe412010-01-03 23:08:28 +01006627
6628 /* nothing left to forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01006629 if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau54d23df2012-10-25 19:04:45 +02006630 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
William Lallemandbf3ae612012-11-19 12:35:37 +01006631 } else {
Willy Tarreaucaabe412010-01-03 23:08:28 +01006632 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006633 break;
William Lallemandbf3ae612012-11-19 12:35:37 +01006634 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006635 /* fall through for HTTP_MSG_CHUNK_CRLF */
6636
6637 case HTTP_MSG_CHUNK_CRLF - HTTP_MSG_DATA:
6638 /* we want the CRLF after the data */
6639
6640 ret = http_skip_chunk_crlf(msg);
6641 if (ret == 0)
6642 goto missing_data;
6643 else if (ret < 0) {
6644 if (msg->err_pos >= 0)
6645 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, s->fe);
6646 goto return_bad_res;
6647 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006648 /* we're in MSG_CHUNK_SIZE now, fall through */
6649
6650 case HTTP_MSG_CHUNK_SIZE - HTTP_MSG_DATA:
Willy Tarreau124d9912011-03-01 20:30:48 +01006651 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreauc24715e2014-04-17 15:21:20 +02006652 * set ->next to point to the body and switch to DATA or
Willy Tarreaua458b672012-03-05 11:17:50 +01006653 * TRAILERS state.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006654 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01006655
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006656 ret = http_parse_chunk_size(msg);
Willy Tarreau54d23df2012-10-25 19:04:45 +02006657 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006658 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006659 else if (ret < 0) {
6660 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01006661 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006662 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006663 }
Willy Tarreau0161d622013-04-02 01:26:55 +02006664 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006665 break;
Willy Tarreau5523b322009-12-29 12:05:52 +01006666
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006667 case HTTP_MSG_TRAILERS - HTTP_MSG_DATA:
Willy Tarreau168ebc52014-04-18 00:53:43 +02006668 if (unlikely(compressing)) {
6669 /* we need to flush output contents before syncing FSMs */
6670 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6671 compressing = 0;
6672 }
6673
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006674 ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006675 if (ret == 0)
6676 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006677 else if (ret < 0) {
6678 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01006679 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006680 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006681 }
Willy Tarreau168ebc52014-04-18 00:53:43 +02006682 /* we're in HTTP_MSG_DONE now, fall through */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006683
6684 default:
Willy Tarreau610ecce2010-01-04 21:15:02 +01006685 /* other states, DONE...TUNNEL */
Willy Tarreau168ebc52014-04-18 00:53:43 +02006686 if (unlikely(compressing)) {
6687 /* we need to flush output contents before syncing FSMs */
6688 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6689 compressing = 0;
6690 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006691
Willy Tarreauc623c172014-04-18 09:53:50 +02006692 /* we may have some pending data starting at res->buf->p
6693 * such as a last chunk of data or trailers.
6694 */
6695 b_adv(res->buf, msg->next);
6696 msg->next = 0;
6697
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006698 ret = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02006699 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006700 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6701 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006702 channel_dont_close(res);
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02006703
Willy Tarreau610ecce2010-01-04 21:15:02 +01006704 if (http_resync_states(s)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01006705 /* some state changes occurred, maybe the analyser
6706 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01006707 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006708 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006709 if (res->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006710 /* response errors are most likely due to
6711 * the client aborting the transfer.
6712 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006713 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006714 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006715 if (msg->err_pos >= 0)
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006716 http_capture_bad_message(&s->be->invalid_rep, s, msg, ret, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01006717 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006718 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01006719 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01006720 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01006721 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006722 }
6723 }
6724
Willy Tarreaud98cf932009-12-27 22:54:55 +01006725 missing_data:
Willy Tarreauc623c172014-04-18 09:53:50 +02006726 /* we may have some pending data starting at res->buf->p */
Willy Tarreau168ebc52014-04-18 00:53:43 +02006727 if (unlikely(compressing)) {
6728 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
William Lallemand82fe75c2012-10-23 10:25:10 +02006729 compressing = 0;
6730 }
Willy Tarreauf003d372012-11-26 13:35:37 +01006731
Willy Tarreauc623c172014-04-18 09:53:50 +02006732 if ((s->comp_algo == NULL || msg->msg_state >= HTTP_MSG_TRAILERS)) {
6733 b_adv(res->buf, msg->next);
6734 msg->next = 0;
6735 msg->chunk_len -= channel_forward(res, msg->chunk_len);
6736 }
6737
Willy Tarreauf003d372012-11-26 13:35:37 +01006738 if (res->flags & CF_SHUTW)
6739 goto aborted_xfer;
6740
6741 /* stop waiting for data if the input is closed before the end. If the
6742 * client side was already closed, it means that the client has aborted,
6743 * so we don't want to count this as a server abort. Otherwise it's a
6744 * server abort.
6745 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006746 if (res->flags & CF_SHUTR) {
Willy Tarreaub2c6a782014-04-23 20:29:01 +02006747 if ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Willy Tarreauf003d372012-11-26 13:35:37 +01006748 goto aborted_xfer;
Willy Tarreau40dba092010-03-04 18:14:51 +01006749 if (!(s->flags & SN_ERR_MASK))
6750 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006751 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006752 if (objt_server(s->target))
6753 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006754 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01006755 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006756
Willy Tarreau40dba092010-03-04 18:14:51 +01006757 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01006758 if (!s->req->analysers)
6759 goto return_bad_res;
6760
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006761 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006762 * chunks even if the server has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006763 * Similarly, with keep-alive on the client side, we don't want to forward a
6764 * close.
6765 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006766 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006767 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6768 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006769 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006770
Willy Tarreau5c620922011-05-11 19:56:11 +02006771 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006772 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02006773 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01006774 * modes are already handled by the stream sock layer. We must not do
6775 * this in content-length mode because it could present the MSG_MORE
6776 * flag with the last block of forwarded data, which would cause an
6777 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02006778 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006779 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006780 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02006781
Willy Tarreaud98cf932009-12-27 22:54:55 +01006782 /* the session handler will take care of timeouts and errors */
6783 return 0;
6784
Willy Tarreau40dba092010-03-04 18:14:51 +01006785 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006786 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006787 if (objt_server(s->target))
6788 objt_server(s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006789
6790 return_bad_res_stats_ok:
Willy Tarreaud01f4262014-04-21 11:00:13 +02006791 if (unlikely(compressing)) {
Willy Tarreau168ebc52014-04-18 00:53:43 +02006792 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
Willy Tarreaud01f4262014-04-21 11:00:13 +02006793 compressing = 0;
6794 }
6795
Willy Tarreauc623c172014-04-18 09:53:50 +02006796 /* we may have some pending data starting at res->buf->p */
6797 if (s->comp_algo == NULL) {
6798 b_adv(res->buf, msg->next);
6799 msg->next = 0;
6800 }
6801
Willy Tarreaud98cf932009-12-27 22:54:55 +01006802 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01006803 /* don't send any error message as we're in the body */
6804 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006805 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006806 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006807 if (objt_server(s->target))
6808 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006809
6810 if (!(s->flags & SN_ERR_MASK))
6811 s->flags |= SN_ERR_PRXCOND;
6812 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01006813 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006814 return 0;
6815
6816 aborted_xfer:
Willy Tarreau6fef8ae2014-04-22 21:22:06 +02006817 if (unlikely(compressing)) {
6818 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
6819 compressing = 0;
6820 }
6821
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006822 txn->rsp.msg_state = HTTP_MSG_ERROR;
6823 /* don't send any error message as we're in the body */
6824 stream_int_retnclose(res->cons, NULL);
6825 res->analysers = 0;
6826 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
6827
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006828 s->fe->fe_counters.cli_aborts++;
6829 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006830 if (objt_server(s->target))
6831 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006832
6833 if (!(s->flags & SN_ERR_MASK))
6834 s->flags |= SN_ERR_CLICL;
6835 if (!(s->flags & SN_FINST_MASK))
6836 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006837 return 0;
6838}
6839
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006840/* Iterate the same filter through all request headers.
6841 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006842 * Since it can manage the switch to another backend, it updates the per-proxy
6843 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006844 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006845int apply_filter_to_req_headers(struct session *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006846{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006847 char *cur_ptr, *cur_end, *cur_next;
6848 int cur_idx, old_idx, last_hdr;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006849 struct http_txn *txn = &s->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006850 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006851 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01006852
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006853 last_hdr = 0;
6854
Willy Tarreau9b28e032012-10-12 23:49:43 +02006855 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006856 old_idx = 0;
6857
6858 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006859 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006860 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006861 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006862 (exp->action == ACT_ALLOW ||
6863 exp->action == ACT_DENY ||
6864 exp->action == ACT_TARPIT))
6865 return 0;
6866
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006867 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006868 if (!cur_idx)
6869 break;
6870
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006871 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006872 cur_ptr = cur_next;
6873 cur_end = cur_ptr + cur_hdr->len;
6874 cur_next = cur_end + cur_hdr->cr + 1;
6875
6876 /* Now we have one header between cur_ptr and cur_end,
6877 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006878 */
6879
Willy Tarreau15a53a42015-01-21 13:39:42 +01006880 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006881 switch (exp->action) {
6882 case ACT_SETBE:
6883 /* It is not possible to jump a second time.
6884 * FIXME: should we return an HTTP/500 here so that
6885 * the admin knows there's a problem ?
6886 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006887 if (s->be != s->fe)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006888 break;
6889
6890 /* Swithing Proxy */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006891 session_set_backend(s, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006892 last_hdr = 1;
6893 break;
6894
6895 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006896 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006897 last_hdr = 1;
6898 break;
6899
6900 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006901 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006902 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006903 break;
6904
6905 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006906 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006907 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006908 break;
6909
6910 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06006911 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
6912 if (trash.len < 0)
6913 return -1;
6914
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006915 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006916 /* FIXME: if the user adds a newline in the replacement, the
6917 * index will not be recalculated for now, and the new line
6918 * will not be counted as a new header.
6919 */
6920
6921 cur_end += delta;
6922 cur_next += delta;
6923 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006924 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006925 break;
6926
6927 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02006928 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006929 cur_next += delta;
6930
Willy Tarreaufa355d42009-11-29 18:12:29 +01006931 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006932 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6933 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006934 cur_hdr->len = 0;
6935 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006936 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006937 break;
6938
6939 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006940 }
6941
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006942 /* keep the link from this header to next one in case of later
6943 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006944 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006945 old_idx = cur_idx;
6946 }
6947 return 0;
6948}
6949
6950
6951/* Apply the filter to the request line.
6952 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6953 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006954 * Since it can manage the switch to another backend, it updates the per-proxy
6955 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006956 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006957int apply_filter_to_req_line(struct session *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006958{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006959 char *cur_ptr, *cur_end;
6960 int done;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006961 struct http_txn *txn = &s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006962 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006963
Willy Tarreau3d300592007-03-18 18:34:41 +01006964 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006965 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006966 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006967 (exp->action == ACT_ALLOW ||
6968 exp->action == ACT_DENY ||
6969 exp->action == ACT_TARPIT))
6970 return 0;
6971 else if (exp->action == ACT_REMOVE)
6972 return 0;
6973
6974 done = 0;
6975
Willy Tarreau9b28e032012-10-12 23:49:43 +02006976 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006977 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006978
6979 /* Now we have the request line between cur_ptr and cur_end */
6980
Willy Tarreau15a53a42015-01-21 13:39:42 +01006981 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006982 switch (exp->action) {
6983 case ACT_SETBE:
6984 /* It is not possible to jump a second time.
6985 * FIXME: should we return an HTTP/500 here so that
6986 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01006987 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006988 if (s->be != s->fe)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006989 break;
6990
6991 /* Swithing Proxy */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006992 session_set_backend(s, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006993 done = 1;
6994 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006995
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006996 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006997 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006998 done = 1;
6999 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007000
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007001 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007002 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007003 done = 1;
7004 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007005
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007006 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01007007 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007008 done = 1;
7009 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007010
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007011 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007012 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7013 if (trash.len < 0)
7014 return -1;
7015
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007016 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007017 /* FIXME: if the user adds a newline in the replacement, the
7018 * index will not be recalculated for now, and the new line
7019 * will not be counted as a new header.
7020 */
Willy Tarreaua496b602006-12-17 23:15:24 +01007021
Willy Tarreaufa355d42009-11-29 18:12:29 +01007022 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007023 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007024 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007025 HTTP_MSG_RQMETH,
7026 cur_ptr, cur_end + 1,
7027 NULL, NULL);
7028 if (unlikely(!cur_end))
7029 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01007030
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007031 /* we have a full request and we know that we have either a CR
7032 * or an LF at <ptr>.
7033 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007034 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
7035 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007036 /* there is no point trying this regex on headers */
7037 return 1;
7038 }
7039 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007040 return done;
7041}
Willy Tarreau97de6242006-12-27 17:18:38 +01007042
Willy Tarreau58f10d72006-12-04 02:26:12 +01007043
Willy Tarreau58f10d72006-12-04 02:26:12 +01007044
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007045/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01007046 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007047 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01007048 * unparsable request. Since it can manage the switch to another backend, it
7049 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007050 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007051int apply_filters_to_request(struct session *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007052{
Willy Tarreau6c123b12010-01-28 20:22:06 +01007053 struct http_txn *txn = &s->txn;
7054 struct hdr_exp *exp;
7055
7056 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007057 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007058
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007059 /*
7060 * The interleaving of transformations and verdicts
7061 * makes it difficult to decide to continue or stop
7062 * the evaluation.
7063 */
7064
Willy Tarreau6c123b12010-01-28 20:22:06 +01007065 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
7066 break;
7067
Willy Tarreau3d300592007-03-18 18:34:41 +01007068 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007069 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01007070 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007071 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01007072
7073 /* if this filter had a condition, evaluate it now and skip to
7074 * next filter if the condition does not match.
7075 */
7076 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02007077 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01007078 ret = acl_pass(ret);
7079 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7080 ret = !ret;
7081
7082 if (!ret)
7083 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007084 }
7085
7086 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01007087 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007088 if (unlikely(ret < 0))
7089 return -1;
7090
7091 if (likely(ret == 0)) {
7092 /* The filter did not match the request, it can be
7093 * iterated through all headers.
7094 */
Willy Tarreau34d4c3c2015-01-30 20:58:58 +01007095 if (unlikely(apply_filter_to_req_headers(s, req, exp) < 0))
7096 return -1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007097 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007098 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007099 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007100}
7101
7102
Willy Tarreaua15645d2007-03-18 16:22:39 +01007103
Willy Tarreau58f10d72006-12-04 02:26:12 +01007104/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007105 * Try to retrieve the server associated to the appsession.
7106 * If the server is found, it's assigned to the session.
7107 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007108void manage_client_side_appsession(struct session *s, const char *buf, int len) {
7109 struct http_txn *txn = &s->txn;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007110 appsess *asession = NULL;
7111 char *sessid_temp = NULL;
7112
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007113 if (len > s->be->appsession_len) {
7114 len = s->be->appsession_len;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007115 }
7116
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007117 if (s->be->options2 & PR_O2_AS_REQL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007118 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007119 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007120 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007121 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007122 }
7123
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007124 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007125 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007126 send_log(s->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007127 return;
7128 }
7129
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007130 memcpy(txn->sessid, buf, len);
7131 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007132 }
7133
7134 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
7135 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007136 send_log(s->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007137 return;
7138 }
7139
Cyril Bontéb21570a2009-11-29 20:04:48 +01007140 memcpy(sessid_temp, buf, len);
7141 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007142
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007143 asession = appsession_hash_lookup(&(s->be->htbl_proxy), sessid_temp);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007144 /* free previously allocated memory */
7145 pool_free2(apools.sessid, sessid_temp);
7146
7147 if (asession != NULL) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007148 asession->expire = tick_add_ifset(now_ms, s->be->timeout.appsession);
7149 if (!(s->be->options2 & PR_O2_AS_REQL))
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007150 asession->request_count++;
7151
7152 if (asession->serverid != NULL) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007153 struct server *srv = s->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007154
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007155 while (srv) {
7156 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau892337c2014-05-13 23:41:20 +02007157 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007158 (s->be->options & PR_O_PERSIST) ||
7159 (s->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007160 /* we found the server and it's usable */
7161 txn->flags &= ~TX_CK_MASK;
Willy Tarreau892337c2014-05-13 23:41:20 +02007162 txn->flags |= (srv->state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007163 s->flags |= SN_DIRECT | SN_ASSIGNED;
7164 s->target = &srv->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +01007165
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007166 break;
7167 } else {
7168 txn->flags &= ~TX_CK_MASK;
7169 txn->flags |= TX_CK_DOWN;
7170 }
7171 }
7172 srv = srv->next;
7173 }
7174 }
7175 }
7176}
7177
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007178/* Find the end of a cookie value contained between <s> and <e>. It works the
7179 * same way as with headers above except that the semi-colon also ends a token.
7180 * See RFC2965 for more information. Note that it requires a valid header to
7181 * return a valid result.
7182 */
7183char *find_cookie_value_end(char *s, const char *e)
7184{
7185 int quoted, qdpair;
7186
7187 quoted = qdpair = 0;
7188 for (; s < e; s++) {
7189 if (qdpair) qdpair = 0;
7190 else if (quoted) {
7191 if (*s == '\\') qdpair = 1;
7192 else if (*s == '"') quoted = 0;
7193 }
7194 else if (*s == '"') quoted = 1;
7195 else if (*s == ',' || *s == ';') return s;
7196 }
7197 return s;
7198}
7199
7200/* Delete a value in a header between delimiters <from> and <next> in buffer
7201 * <buf>. The number of characters displaced is returned, and the pointer to
7202 * the first delimiter is updated if required. The function tries as much as
7203 * possible to respect the following principles :
7204 * - replace <from> delimiter by the <next> one unless <from> points to a
7205 * colon, in which case <next> is simply removed
7206 * - set exactly one space character after the new first delimiter, unless
7207 * there are not enough characters in the block being moved to do so.
7208 * - remove unneeded spaces before the previous delimiter and after the new
7209 * one.
7210 *
7211 * It is the caller's responsibility to ensure that :
7212 * - <from> points to a valid delimiter or the colon ;
7213 * - <next> points to a valid delimiter or the final CR/LF ;
7214 * - there are non-space chars before <from> ;
7215 * - there is a CR/LF at or after <next>.
7216 */
Willy Tarreauaf819352012-08-27 22:08:00 +02007217int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007218{
7219 char *prev = *from;
7220
7221 if (*prev == ':') {
7222 /* We're removing the first value, preserve the colon and add a
7223 * space if possible.
7224 */
7225 if (!http_is_crlf[(unsigned char)*next])
7226 next++;
7227 prev++;
7228 if (prev < next)
7229 *prev++ = ' ';
7230
7231 while (http_is_spht[(unsigned char)*next])
7232 next++;
7233 } else {
7234 /* Remove useless spaces before the old delimiter. */
7235 while (http_is_spht[(unsigned char)*(prev-1)])
7236 prev--;
7237 *from = prev;
7238
7239 /* copy the delimiter and if possible a space if we're
7240 * not at the end of the line.
7241 */
7242 if (!http_is_crlf[(unsigned char)*next]) {
7243 *prev++ = *next++;
7244 if (prev + 1 < next)
7245 *prev++ = ' ';
7246 while (http_is_spht[(unsigned char)*next])
7247 next++;
7248 }
7249 }
7250 return buffer_replace2(buf, prev, next, NULL, 0);
7251}
7252
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007253/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007254 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007255 * desirable to call it only when needed. This code is quite complex because
7256 * of the multiple very crappy and ambiguous syntaxes we have to support. it
7257 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01007258 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007259void manage_client_side_cookies(struct session *s, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007260{
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007261 struct http_txn *txn = &s->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007262 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007263 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007264 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
7265 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007266
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007267 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01007268 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007269 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007270
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007271 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007272 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007273 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007274
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007275 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007276 hdr_beg = hdr_next;
7277 hdr_end = hdr_beg + cur_hdr->len;
7278 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007279
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007280 /* We have one full header between hdr_beg and hdr_end, and the
7281 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01007282 * "Cookie:" headers.
7283 */
7284
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007285 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007286 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007287 old_idx = cur_idx;
7288 continue;
7289 }
7290
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007291 del_from = NULL; /* nothing to be deleted */
7292 preserve_hdr = 0; /* assume we may kill the whole header */
7293
Willy Tarreau58f10d72006-12-04 02:26:12 +01007294 /* Now look for cookies. Conforming to RFC2109, we have to support
7295 * attributes whose name begin with a '$', and associate them with
7296 * the right cookie, if we want to delete this cookie.
7297 * So there are 3 cases for each cookie read :
7298 * 1) it's a special attribute, beginning with a '$' : ignore it.
7299 * 2) it's a server id cookie that we *MAY* want to delete : save
7300 * some pointers on it (last semi-colon, beginning of cookie...)
7301 * 3) it's an application cookie : we *MAY* have to delete a previous
7302 * "special" cookie.
7303 * At the end of loop, if a "special" cookie remains, we may have to
7304 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007305 * *MUST* delete it.
7306 *
7307 * Note: RFC2965 is unclear about the processing of spaces around
7308 * the equal sign in the ATTR=VALUE form. A careful inspection of
7309 * the RFC explicitly allows spaces before it, and not within the
7310 * tokens (attrs or values). An inspection of RFC2109 allows that
7311 * too but section 10.1.3 lets one think that spaces may be allowed
7312 * after the equal sign too, resulting in some (rare) buggy
7313 * implementations trying to do that. So let's do what servers do.
7314 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
7315 * allowed quoted strings in values, with any possible character
7316 * after a backslash, including control chars and delimitors, which
7317 * causes parsing to become ambiguous. Browsers also allow spaces
7318 * within values even without quotes.
7319 *
7320 * We have to keep multiple pointers in order to support cookie
7321 * removal at the beginning, middle or end of header without
7322 * corrupting the header. All of these headers are valid :
7323 *
7324 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
7325 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
7326 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
7327 * | | | | | | | | |
7328 * | | | | | | | | hdr_end <--+
7329 * | | | | | | | +--> next
7330 * | | | | | | +----> val_end
7331 * | | | | | +-----------> val_beg
7332 * | | | | +--------------> equal
7333 * | | | +----------------> att_end
7334 * | | +---------------------> att_beg
7335 * | +--------------------------> prev
7336 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01007337 */
7338
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007339 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
7340 /* Iterate through all cookies on this line */
7341
7342 /* find att_beg */
7343 att_beg = prev + 1;
7344 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
7345 att_beg++;
7346
7347 /* find att_end : this is the first character after the last non
7348 * space before the equal. It may be equal to hdr_end.
7349 */
7350 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007351
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007352 while (equal < hdr_end) {
7353 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01007354 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007355 if (http_is_spht[(unsigned char)*equal++])
7356 continue;
7357 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007358 }
7359
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007360 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7361 * is between <att_beg> and <equal>, both may be identical.
7362 */
7363
7364 /* look for end of cookie if there is an equal sign */
7365 if (equal < hdr_end && *equal == '=') {
7366 /* look for the beginning of the value */
7367 val_beg = equal + 1;
7368 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
7369 val_beg++;
7370
7371 /* find the end of the value, respecting quotes */
7372 next = find_cookie_value_end(val_beg, hdr_end);
7373
7374 /* make val_end point to the first white space or delimitor after the value */
7375 val_end = next;
7376 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
7377 val_end--;
7378 } else {
7379 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01007380 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007381
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007382 /* We have nothing to do with attributes beginning with '$'. However,
7383 * they will automatically be removed if a header before them is removed,
7384 * since they're supposed to be linked together.
7385 */
7386 if (*att_beg == '$')
7387 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007388
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007389 /* Ignore cookies with no equal sign */
7390 if (equal == next) {
7391 /* This is not our cookie, so we must preserve it. But if we already
7392 * scheduled another cookie for removal, we cannot remove the
7393 * complete header, but we can remove the previous block itself.
7394 */
7395 preserve_hdr = 1;
7396 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007397 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007398 val_end += delta;
7399 next += delta;
7400 hdr_end += delta;
7401 hdr_next += delta;
7402 cur_hdr->len += delta;
7403 http_msg_move_end(&txn->req, delta);
7404 prev = del_from;
7405 del_from = NULL;
7406 }
7407 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01007408 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007409
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007410 /* if there are spaces around the equal sign, we need to
7411 * strip them otherwise we'll get trouble for cookie captures,
7412 * or even for rewrites. Since this happens extremely rarely,
7413 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007414 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007415 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7416 int stripped_before = 0;
7417 int stripped_after = 0;
7418
7419 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007420 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007421 equal += stripped_before;
7422 val_beg += stripped_before;
7423 }
7424
7425 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007426 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007427 val_beg += stripped_after;
7428 stripped_before += stripped_after;
7429 }
7430
7431 val_end += stripped_before;
7432 next += stripped_before;
7433 hdr_end += stripped_before;
7434 hdr_next += stripped_before;
7435 cur_hdr->len += stripped_before;
7436 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007437 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007438 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007439
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007440 /* First, let's see if we want to capture this cookie. We check
7441 * that we don't already have a client side cookie, because we
7442 * can only capture one. Also as an optimisation, we ignore
7443 * cookies shorter than the declared name.
7444 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007445 if (s->fe->capture_name != NULL && txn->cli_cookie == NULL &&
7446 (val_end - att_beg >= s->fe->capture_namelen) &&
7447 memcmp(att_beg, s->fe->capture_name, s->fe->capture_namelen) == 0) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007448 int log_len = val_end - att_beg;
7449
7450 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
7451 Alert("HTTP logging : out of memory.\n");
7452 } else {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007453 if (log_len > s->fe->capture_len)
7454 log_len = s->fe->capture_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007455 memcpy(txn->cli_cookie, att_beg, log_len);
7456 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007457 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007458 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007459
Willy Tarreaubca99692010-10-06 19:25:55 +02007460 /* Persistence cookies in passive, rewrite or insert mode have the
7461 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007462 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007463 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007464 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007465 * For cookies in prefix mode, the form is :
7466 *
7467 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007468 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007469 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
7470 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
7471 struct server *srv = s->be->srv;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007472 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007473
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007474 /* if we're in cookie prefix mode, we'll search the delimitor so that we
7475 * have the server ID between val_beg and delim, and the original cookie between
7476 * delim+1 and val_end. Otherwise, delim==val_end :
7477 *
7478 * Cookie: NAME=SRV; # in all but prefix modes
7479 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
7480 * | || || | |+-> next
7481 * | || || | +--> val_end
7482 * | || || +---------> delim
7483 * | || |+------------> val_beg
7484 * | || +-------------> att_end = equal
7485 * | |+-----------------> att_beg
7486 * | +------------------> prev
7487 * +-------------------------> hdr_beg
7488 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007489
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007490 if (s->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007491 for (delim = val_beg; delim < val_end; delim++)
7492 if (*delim == COOKIE_DELIM)
7493 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02007494 } else {
7495 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007496 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02007497 /* Now check if the cookie contains a date field, which would
7498 * appear after a vertical bar ('|') just after the server name
7499 * and before the delimiter.
7500 */
7501 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
7502 if (vbar1) {
7503 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02007504 * right is the last seen date. It is a base64 encoded
7505 * 30-bit value representing the UNIX date since the
7506 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02007507 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02007508 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02007509 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02007510 if (val_end - vbar1 >= 5) {
7511 val = b64tos30(vbar1);
7512 if (val > 0)
7513 txn->cookie_last_date = val << 2;
7514 }
7515 /* look for a second vertical bar */
7516 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
7517 if (vbar1 && (val_end - vbar1 > 5)) {
7518 val = b64tos30(vbar1 + 1);
7519 if (val > 0)
7520 txn->cookie_first_date = val << 2;
7521 }
Willy Tarreaubca99692010-10-06 19:25:55 +02007522 }
7523 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007524
Willy Tarreauf64d1412010-10-07 20:06:11 +02007525 /* if the cookie has an expiration date and the proxy wants to check
7526 * it, then we do that now. We first check if the cookie is too old,
7527 * then only if it has expired. We detect strict overflow because the
7528 * time resolution here is not great (4 seconds). Cookies with dates
7529 * in the future are ignored if their offset is beyond one day. This
7530 * allows an admin to fix timezone issues without expiring everyone
7531 * and at the same time avoids keeping unwanted side effects for too
7532 * long.
7533 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007534 if (txn->cookie_first_date && s->be->cookie_maxlife &&
7535 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007536 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007537 txn->flags &= ~TX_CK_MASK;
7538 txn->flags |= TX_CK_OLD;
7539 delim = val_beg; // let's pretend we have not found the cookie
7540 txn->cookie_first_date = 0;
7541 txn->cookie_last_date = 0;
7542 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007543 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
7544 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007545 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007546 txn->flags &= ~TX_CK_MASK;
7547 txn->flags |= TX_CK_EXPIRED;
7548 delim = val_beg; // let's pretend we have not found the cookie
7549 txn->cookie_first_date = 0;
7550 txn->cookie_last_date = 0;
7551 }
7552
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007553 /* Here, we'll look for the first running server which supports the cookie.
7554 * This allows to share a same cookie between several servers, for example
7555 * to dedicate backup servers to specific servers only.
7556 * However, to prevent clients from sticking to cookie-less backup server
7557 * when they have incidentely learned an empty cookie, we simply ignore
7558 * empty cookies and mark them as invalid.
7559 * The same behaviour is applied when persistence must be ignored.
7560 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007561 if ((delim == val_beg) || (s->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007562 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007563
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007564 while (srv) {
7565 if (srv->cookie && (srv->cklen == delim - val_beg) &&
7566 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
Willy Tarreau892337c2014-05-13 23:41:20 +02007567 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007568 (s->be->options & PR_O_PERSIST) ||
7569 (s->flags & SN_FORCE_PRST)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007570 /* we found the server and we can use it */
7571 txn->flags &= ~TX_CK_MASK;
Willy Tarreau892337c2014-05-13 23:41:20 +02007572 txn->flags |= (srv->state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007573 s->flags |= SN_DIRECT | SN_ASSIGNED;
7574 s->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007575 break;
7576 } else {
7577 /* we found a server, but it's down,
7578 * mark it as such and go on in case
7579 * another one is available.
7580 */
7581 txn->flags &= ~TX_CK_MASK;
7582 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007583 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007584 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007585 srv = srv->next;
7586 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007587
Willy Tarreauf64d1412010-10-07 20:06:11 +02007588 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007589 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007590 txn->flags &= ~TX_CK_MASK;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007591 if ((s->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007592 txn->flags |= TX_CK_UNUSED;
7593 else
7594 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007595 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007596
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007597 /* depending on the cookie mode, we may have to either :
7598 * - delete the complete cookie if we're in insert+indirect mode, so that
7599 * the server never sees it ;
7600 * - remove the server id from the cookie value, and tag the cookie as an
7601 * application cookie so that it does not get accidentely removed later,
7602 * if we're in cookie prefix mode
7603 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007604 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007605 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007606
Willy Tarreau9b28e032012-10-12 23:49:43 +02007607 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007608 val_end += delta;
7609 next += delta;
7610 hdr_end += delta;
7611 hdr_next += delta;
7612 cur_hdr->len += delta;
7613 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007614
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007615 del_from = NULL;
7616 preserve_hdr = 1; /* we want to keep this cookie */
7617 }
7618 else if (del_from == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007619 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007620 del_from = prev;
7621 }
7622 } else {
7623 /* This is not our cookie, so we must preserve it. But if we already
7624 * scheduled another cookie for removal, we cannot remove the
7625 * complete header, but we can remove the previous block itself.
7626 */
7627 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007628
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007629 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007630 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01007631 if (att_beg >= del_from)
7632 att_beg += delta;
7633 if (att_end >= del_from)
7634 att_end += delta;
7635 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007636 val_end += delta;
7637 next += delta;
7638 hdr_end += delta;
7639 hdr_next += delta;
7640 cur_hdr->len += delta;
7641 http_msg_move_end(&txn->req, delta);
7642 prev = del_from;
7643 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007644 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007645 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007646
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007647 /* Look for the appsession cookie unless persistence must be ignored */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007648 if (!(s->flags & SN_IGNORE_PRST) && (s->be->appsession_name != NULL)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007649 int cmp_len, value_len;
7650 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007651
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007652 if (s->be->options2 & PR_O2_AS_PFX) {
7653 cmp_len = MIN(val_end - att_beg, s->be->appsession_name_len);
7654 value_begin = att_beg + s->be->appsession_name_len;
7655 value_len = val_end - att_beg - s->be->appsession_name_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007656 } else {
7657 cmp_len = att_end - att_beg;
7658 value_begin = val_beg;
7659 value_len = val_end - val_beg;
7660 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007661
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007662 /* let's see if the cookie is our appcookie */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007663 if (cmp_len == s->be->appsession_name_len &&
7664 memcmp(att_beg, s->be->appsession_name, cmp_len) == 0) {
7665 manage_client_side_appsession(s, value_begin, value_len);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007666 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007667 }
7668
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007669 /* continue with next cookie on this header line */
7670 att_beg = next;
7671 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007672
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007673 /* There are no more cookies on this line.
7674 * We may still have one (or several) marked for deletion at the
7675 * end of the line. We must do this now in two ways :
7676 * - if some cookies must be preserved, we only delete from the
7677 * mark to the end of line ;
7678 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01007679 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007680 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007681 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007682 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007683 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007684 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007685 cur_hdr->len += delta;
7686 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007687 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007688
7689 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007690 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7691 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007692 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007693 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007694 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007695 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007696 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007697 }
7698
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007699 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007700 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007701 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007702}
7703
7704
Willy Tarreaua15645d2007-03-18 16:22:39 +01007705/* Iterate the same filter through all response headers contained in <rtr>.
7706 * Returns 1 if this filter can be stopped upon return, otherwise 0.
7707 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007708int apply_filter_to_resp_headers(struct session *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007709{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007710 char *cur_ptr, *cur_end, *cur_next;
7711 int cur_idx, old_idx, last_hdr;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007712 struct http_txn *txn = &s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007713 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007714 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007715
7716 last_hdr = 0;
7717
Willy Tarreau9b28e032012-10-12 23:49:43 +02007718 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007719 old_idx = 0;
7720
7721 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007722 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007723 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007724 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007725 (exp->action == ACT_ALLOW ||
7726 exp->action == ACT_DENY))
7727 return 0;
7728
7729 cur_idx = txn->hdr_idx.v[old_idx].next;
7730 if (!cur_idx)
7731 break;
7732
7733 cur_hdr = &txn->hdr_idx.v[cur_idx];
7734 cur_ptr = cur_next;
7735 cur_end = cur_ptr + cur_hdr->len;
7736 cur_next = cur_end + cur_hdr->cr + 1;
7737
7738 /* Now we have one header between cur_ptr and cur_end,
7739 * and the next header starts at cur_next.
7740 */
7741
Willy Tarreau15a53a42015-01-21 13:39:42 +01007742 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007743 switch (exp->action) {
7744 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007745 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007746 last_hdr = 1;
7747 break;
7748
7749 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007750 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007751 last_hdr = 1;
7752 break;
7753
7754 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007755 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7756 if (trash.len < 0)
7757 return -1;
7758
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007759 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007760 /* FIXME: if the user adds a newline in the replacement, the
7761 * index will not be recalculated for now, and the new line
7762 * will not be counted as a new header.
7763 */
7764
7765 cur_end += delta;
7766 cur_next += delta;
7767 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007768 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007769 break;
7770
7771 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007772 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007773 cur_next += delta;
7774
Willy Tarreaufa355d42009-11-29 18:12:29 +01007775 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007776 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7777 txn->hdr_idx.used--;
7778 cur_hdr->len = 0;
7779 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007780 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007781 break;
7782
7783 }
7784 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007785
7786 /* keep the link from this header to next one in case of later
7787 * removal of next header.
7788 */
7789 old_idx = cur_idx;
7790 }
7791 return 0;
7792}
7793
7794
7795/* Apply the filter to the status line in the response buffer <rtr>.
7796 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7797 * or -1 if a replacement resulted in an invalid status line.
7798 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007799int apply_filter_to_sts_line(struct session *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007800{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007801 char *cur_ptr, *cur_end;
7802 int done;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007803 struct http_txn *txn = &s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007804 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007805
7806
Willy Tarreau3d300592007-03-18 18:34:41 +01007807 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007808 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007809 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007810 (exp->action == ACT_ALLOW ||
7811 exp->action == ACT_DENY))
7812 return 0;
7813 else if (exp->action == ACT_REMOVE)
7814 return 0;
7815
7816 done = 0;
7817
Willy Tarreau9b28e032012-10-12 23:49:43 +02007818 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007819 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007820
7821 /* Now we have the status line between cur_ptr and cur_end */
7822
Willy Tarreau15a53a42015-01-21 13:39:42 +01007823 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007824 switch (exp->action) {
7825 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007826 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007827 done = 1;
7828 break;
7829
7830 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007831 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007832 done = 1;
7833 break;
7834
7835 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007836 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7837 if (trash.len < 0)
7838 return -1;
7839
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007840 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007841 /* FIXME: if the user adds a newline in the replacement, the
7842 * index will not be recalculated for now, and the new line
7843 * will not be counted as a new header.
7844 */
7845
Willy Tarreaufa355d42009-11-29 18:12:29 +01007846 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007847 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007848 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02007849 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01007850 cur_ptr, cur_end + 1,
7851 NULL, NULL);
7852 if (unlikely(!cur_end))
7853 return -1;
7854
7855 /* we have a full respnse and we know that we have either a CR
7856 * or an LF at <ptr>.
7857 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007858 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007859 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01007860 /* there is no point trying this regex on headers */
7861 return 1;
7862 }
7863 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007864 return done;
7865}
7866
7867
7868
7869/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007870 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007871 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
7872 * unparsable response.
7873 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007874int apply_filters_to_response(struct session *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007875{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007876 struct http_txn *txn = &s->txn;
7877 struct hdr_exp *exp;
7878
7879 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007880 int ret;
7881
7882 /*
7883 * The interleaving of transformations and verdicts
7884 * makes it difficult to decide to continue or stop
7885 * the evaluation.
7886 */
7887
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007888 if (txn->flags & TX_SVDENY)
7889 break;
7890
Willy Tarreau3d300592007-03-18 18:34:41 +01007891 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007892 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
7893 exp->action == ACT_PASS)) {
7894 exp = exp->next;
7895 continue;
7896 }
7897
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007898 /* if this filter had a condition, evaluate it now and skip to
7899 * next filter if the condition does not match.
7900 */
7901 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02007902 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007903 ret = acl_pass(ret);
7904 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7905 ret = !ret;
7906 if (!ret)
7907 continue;
7908 }
7909
Willy Tarreaua15645d2007-03-18 16:22:39 +01007910 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007911 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007912 if (unlikely(ret < 0))
7913 return -1;
7914
7915 if (likely(ret == 0)) {
7916 /* The filter did not match the response, it can be
7917 * iterated through all headers.
7918 */
Sasha Pachevc6002042014-05-26 12:33:48 -06007919 if (unlikely(apply_filter_to_resp_headers(s, rtr, exp) < 0))
7920 return -1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007921 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007922 }
7923 return 0;
7924}
7925
7926
Willy Tarreaua15645d2007-03-18 16:22:39 +01007927/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007928 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02007929 * desirable to call it only when needed. This function is also used when we
7930 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01007931 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007932void manage_server_side_cookies(struct session *s, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007933{
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007934 struct http_txn *txn = &s->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01007935 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007936 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007937 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007938 char *hdr_beg, *hdr_end, *hdr_next;
7939 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007940
Willy Tarreaua15645d2007-03-18 16:22:39 +01007941 /* Iterate through the headers.
7942 * we start with the start line.
7943 */
7944 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007945 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007946
7947 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
7948 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007949 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007950
7951 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02007952 hdr_beg = hdr_next;
7953 hdr_end = hdr_beg + cur_hdr->len;
7954 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007955
Willy Tarreau24581ba2010-08-31 22:39:35 +02007956 /* We have one full header between hdr_beg and hdr_end, and the
7957 * next header starts at hdr_next. We're only interested in
7958 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007959 */
7960
Willy Tarreau24581ba2010-08-31 22:39:35 +02007961 is_cookie2 = 0;
7962 prev = hdr_beg + 10;
7963 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007964 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007965 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
7966 if (!val) {
7967 old_idx = cur_idx;
7968 continue;
7969 }
7970 is_cookie2 = 1;
7971 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007972 }
7973
Willy Tarreau24581ba2010-08-31 22:39:35 +02007974 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
7975 * <prev> points to the colon.
7976 */
Willy Tarreauf1348312010-10-07 15:54:11 +02007977 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007978
Willy Tarreau24581ba2010-08-31 22:39:35 +02007979 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
7980 * check-cache is enabled) and we are not interested in checking
7981 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007982 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007983 if (s->be->cookie_name == NULL &&
7984 s->be->appsession_name == NULL &&
7985 s->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007986 return;
7987
Willy Tarreau24581ba2010-08-31 22:39:35 +02007988 /* OK so now we know we have to process this response cookie.
7989 * The format of the Set-Cookie header is slightly different
7990 * from the format of the Cookie header in that it does not
7991 * support the comma as a cookie delimiter (thus the header
7992 * cannot be folded) because the Expires attribute described in
7993 * the original Netscape's spec may contain an unquoted date
7994 * with a comma inside. We have to live with this because
7995 * many browsers don't support Max-Age and some browsers don't
7996 * support quoted strings. However the Set-Cookie2 header is
7997 * clean.
7998 *
7999 * We have to keep multiple pointers in order to support cookie
8000 * removal at the beginning, middle or end of header without
8001 * corrupting the header (in case of set-cookie2). A special
8002 * pointer, <scav> points to the beginning of the set-cookie-av
8003 * fields after the first semi-colon. The <next> pointer points
8004 * either to the end of line (set-cookie) or next unquoted comma
8005 * (set-cookie2). All of these headers are valid :
8006 *
8007 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
8008 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
8009 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
8010 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
8011 * | | | | | | | | | |
8012 * | | | | | | | | +-> next hdr_end <--+
8013 * | | | | | | | +------------> scav
8014 * | | | | | | +--------------> val_end
8015 * | | | | | +--------------------> val_beg
8016 * | | | | +----------------------> equal
8017 * | | | +------------------------> att_end
8018 * | | +----------------------------> att_beg
8019 * | +------------------------------> prev
8020 * +-----------------------------------------> hdr_beg
8021 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008022
Willy Tarreau24581ba2010-08-31 22:39:35 +02008023 for (; prev < hdr_end; prev = next) {
8024 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008025
Willy Tarreau24581ba2010-08-31 22:39:35 +02008026 /* find att_beg */
8027 att_beg = prev + 1;
8028 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
8029 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008030
Willy Tarreau24581ba2010-08-31 22:39:35 +02008031 /* find att_end : this is the first character after the last non
8032 * space before the equal. It may be equal to hdr_end.
8033 */
8034 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008035
Willy Tarreau24581ba2010-08-31 22:39:35 +02008036 while (equal < hdr_end) {
8037 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
8038 break;
8039 if (http_is_spht[(unsigned char)*equal++])
8040 continue;
8041 att_end = equal;
8042 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008043
Willy Tarreau24581ba2010-08-31 22:39:35 +02008044 /* here, <equal> points to '=', a delimitor or the end. <att_end>
8045 * is between <att_beg> and <equal>, both may be identical.
8046 */
8047
8048 /* look for end of cookie if there is an equal sign */
8049 if (equal < hdr_end && *equal == '=') {
8050 /* look for the beginning of the value */
8051 val_beg = equal + 1;
8052 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
8053 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008054
Willy Tarreau24581ba2010-08-31 22:39:35 +02008055 /* find the end of the value, respecting quotes */
8056 next = find_cookie_value_end(val_beg, hdr_end);
8057
8058 /* make val_end point to the first white space or delimitor after the value */
8059 val_end = next;
8060 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
8061 val_end--;
8062 } else {
8063 /* <equal> points to next comma, semi-colon or EOL */
8064 val_beg = val_end = next = equal;
8065 }
8066
8067 if (next < hdr_end) {
8068 /* Set-Cookie2 supports multiple cookies, and <next> points to
8069 * a colon or semi-colon before the end. So skip all attr-value
8070 * pairs and look for the next comma. For Set-Cookie, since
8071 * commas are permitted in values, skip to the end.
8072 */
8073 if (is_cookie2)
8074 next = find_hdr_value_end(next, hdr_end);
8075 else
8076 next = hdr_end;
8077 }
8078
8079 /* Now everything is as on the diagram above */
8080
8081 /* Ignore cookies with no equal sign */
8082 if (equal == val_end)
8083 continue;
8084
8085 /* If there are spaces around the equal sign, we need to
8086 * strip them otherwise we'll get trouble for cookie captures,
8087 * or even for rewrites. Since this happens extremely rarely,
8088 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008089 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02008090 if (unlikely(att_end != equal || val_beg > equal + 1)) {
8091 int stripped_before = 0;
8092 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008093
Willy Tarreau24581ba2010-08-31 22:39:35 +02008094 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008095 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008096 equal += stripped_before;
8097 val_beg += stripped_before;
8098 }
8099
8100 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008101 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008102 val_beg += stripped_after;
8103 stripped_before += stripped_after;
8104 }
8105
8106 val_end += stripped_before;
8107 next += stripped_before;
8108 hdr_end += stripped_before;
8109 hdr_next += stripped_before;
8110 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02008111 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008112 }
8113
8114 /* First, let's see if we want to capture this cookie. We check
8115 * that we don't already have a server side cookie, because we
8116 * can only capture one. Also as an optimisation, we ignore
8117 * cookies shorter than the declared name.
8118 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008119 if (s->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01008120 txn->srv_cookie == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008121 (val_end - att_beg >= s->fe->capture_namelen) &&
8122 memcmp(att_beg, s->fe->capture_name, s->fe->capture_namelen) == 0) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008123 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02008124 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008125 Alert("HTTP logging : out of memory.\n");
8126 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01008127 else {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008128 if (log_len > s->fe->capture_len)
8129 log_len = s->fe->capture_len;
Willy Tarreauf70fc752010-11-19 11:27:18 +01008130 memcpy(txn->srv_cookie, att_beg, log_len);
8131 txn->srv_cookie[log_len] = 0;
8132 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008133 }
8134
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008135 srv = objt_server(s->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008136 /* now check if we need to process it for persistence */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008137 if (!(s->flags & SN_IGNORE_PRST) &&
8138 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
8139 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02008140 /* assume passive cookie by default */
8141 txn->flags &= ~TX_SCK_MASK;
8142 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008143
8144 /* If the cookie is in insert mode on a known server, we'll delete
8145 * this occurrence because we'll insert another one later.
8146 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02008147 * a direct access.
8148 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008149 if (s->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02008150 /* The "preserve" flag was set, we don't want to touch the
8151 * server's cookie.
8152 */
8153 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008154 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
8155 ((s->flags & SN_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008156 /* this cookie must be deleted */
8157 if (*prev == ':' && next == hdr_end) {
8158 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008159 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008160 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
8161 txn->hdr_idx.used--;
8162 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01008163 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008164 hdr_next += delta;
8165 http_msg_move_end(&txn->rsp, delta);
8166 /* note: while both invalid now, <next> and <hdr_end>
8167 * are still equal, so the for() will stop as expected.
8168 */
8169 } else {
8170 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008171 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008172 next = prev;
8173 hdr_end += delta;
8174 hdr_next += delta;
8175 cur_hdr->len += delta;
8176 http_msg_move_end(&txn->rsp, delta);
8177 }
Willy Tarreauf1348312010-10-07 15:54:11 +02008178 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01008179 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008180 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008181 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008182 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008183 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01008184 * with this server since we know it.
8185 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008186 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008187 next += delta;
8188 hdr_end += delta;
8189 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008190 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008191 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008192
Willy Tarreauf1348312010-10-07 15:54:11 +02008193 txn->flags &= ~TX_SCK_MASK;
8194 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008195 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008196 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008197 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02008198 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01008199 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008200 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008201 next += delta;
8202 hdr_end += delta;
8203 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008204 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008205 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008206
Willy Tarreau827aee92011-03-10 16:55:02 +01008207 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02008208 txn->flags &= ~TX_SCK_MASK;
8209 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008210 }
8211 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02008212 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008213 else if (!(s->flags & SN_IGNORE_PRST) && (s->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01008214 int cmp_len, value_len;
8215 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008216
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008217 if (s->be->options2 & PR_O2_AS_PFX) {
8218 cmp_len = MIN(val_end - att_beg, s->be->appsession_name_len);
8219 value_begin = att_beg + s->be->appsession_name_len;
8220 value_len = MIN(s->be->appsession_len, val_end - att_beg - s->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01008221 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008222 cmp_len = att_end - att_beg;
8223 value_begin = val_beg;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008224 value_len = MIN(s->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008225 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01008226
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008227 if ((cmp_len == s->be->appsession_name_len) &&
8228 (memcmp(att_beg, s->be->appsession_name, s->be->appsession_name_len) == 0)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008229 /* free a possibly previously allocated memory */
8230 pool_free2(apools.sessid, txn->sessid);
8231
Cyril Bontéb21570a2009-11-29 20:04:48 +01008232 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008233 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01008234 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008235 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bontéb21570a2009-11-29 20:04:48 +01008236 return;
8237 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008238 memcpy(txn->sessid, value_begin, value_len);
8239 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008240 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02008241 }
8242 /* that's done for this cookie, check the next one on the same
8243 * line when next != hdr_end (only if is_cookie2).
8244 */
8245 }
8246 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008247 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008248 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008249
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008250 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008251 appsess *asession = NULL;
8252 /* only do insert, if lookup fails */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008253 asession = appsession_hash_lookup(&(s->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008254 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01008255 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008256 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
8257 Alert("Not enough Memory process_srv():asession:calloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008258 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008259 return;
8260 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01008261 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
8262
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008263 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
8264 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008265 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
8266 s->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008267 return;
8268 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008269 memcpy(asession->sessid, txn->sessid, s->be->appsession_len);
8270 asession->sessid[s->be->appsession_len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008271
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008272 server_id_len = strlen(objt_server(s->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008273 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01008274 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008275 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
8276 s->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008277 return;
8278 }
8279 asession->serverid[0] = '\0';
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008280 memcpy(asession->serverid, objt_server(s->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008281
8282 asession->request_count = 0;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008283 appsession_hash_insert(&(s->be->htbl_proxy), asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008284 }
8285
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008286 asession->expire = tick_add_ifset(now_ms, s->be->timeout.appsession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008287 asession->request_count++;
8288 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008289}
8290
8291
Willy Tarreaua15645d2007-03-18 16:22:39 +01008292/*
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008293 * Check if response is cacheable or not. Updates s->flags.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008294 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008295void check_response_for_cacheability(struct session *s, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008296{
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008297 struct http_txn *txn = &s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008298 char *p1, *p2;
8299
8300 char *cur_ptr, *cur_end, *cur_next;
8301 int cur_idx;
8302
Willy Tarreau5df51872007-11-25 16:20:08 +01008303 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008304 return;
8305
8306 /* Iterate through the headers.
8307 * we start with the start line.
8308 */
8309 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008310 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008311
8312 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
8313 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008314 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008315
8316 cur_hdr = &txn->hdr_idx.v[cur_idx];
8317 cur_ptr = cur_next;
8318 cur_end = cur_ptr + cur_hdr->len;
8319 cur_next = cur_end + cur_hdr->cr + 1;
8320
8321 /* We have one full header between cur_ptr and cur_end, and the
8322 * next header starts at cur_next. We're only interested in
8323 * "Cookie:" headers.
8324 */
8325
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008326 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
8327 if (val) {
8328 if ((cur_end - (cur_ptr + val) >= 8) &&
8329 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
8330 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
8331 return;
8332 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008333 }
8334
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008335 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
8336 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008337 continue;
8338
8339 /* OK, right now we know we have a cache-control header at cur_ptr */
8340
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008341 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008342
8343 if (p1 >= cur_end) /* no more info */
8344 continue;
8345
8346 /* p1 is at the beginning of the value */
8347 p2 = p1;
8348
Willy Tarreau8f8e6452007-06-17 21:51:38 +02008349 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008350 p2++;
8351
8352 /* we have a complete value between p1 and p2 */
8353 if (p2 < cur_end && *p2 == '=') {
8354 /* we have something of the form no-cache="set-cookie" */
8355 if ((cur_end - p1 >= 21) &&
8356 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
8357 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01008358 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008359 continue;
8360 }
8361
8362 /* OK, so we know that either p2 points to the end of string or to a comma */
8363 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02008364 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaua15645d2007-03-18 16:22:39 +01008365 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
8366 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
8367 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008368 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008369 return;
8370 }
8371
8372 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008373 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008374 continue;
8375 }
8376 }
8377}
8378
8379
Willy Tarreau58f10d72006-12-04 02:26:12 +01008380/*
8381 * Try to retrieve a known appsession in the URI, then the associated server.
8382 * If the server is found, it's assigned to the session.
8383 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008384void get_srv_from_appsession(struct session *s, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008385{
Cyril Bontéb21570a2009-11-29 20:04:48 +01008386 char *end_params, *first_param, *cur_param, *next_param;
8387 char separator;
8388 int value_len;
8389
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008390 int mode = s->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01008391
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008392 if (s->be->appsession_name == NULL ||
8393 (s->txn.meth != HTTP_METH_GET && s->txn.meth != HTTP_METH_POST && s->txn.meth != HTTP_METH_HEAD)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01008394 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01008395 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008396
Cyril Bontéb21570a2009-11-29 20:04:48 +01008397 first_param = NULL;
8398 switch (mode) {
8399 case PR_O2_AS_M_PP:
8400 first_param = memchr(begin, ';', len);
8401 break;
8402 case PR_O2_AS_M_QS:
8403 first_param = memchr(begin, '?', len);
8404 break;
8405 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008406
Cyril Bontéb21570a2009-11-29 20:04:48 +01008407 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01008408 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01008409 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008410
Cyril Bontéb21570a2009-11-29 20:04:48 +01008411 switch (mode) {
8412 case PR_O2_AS_M_PP:
8413 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
8414 end_params = (char *) begin + len;
8415 }
8416 separator = ';';
8417 break;
8418 case PR_O2_AS_M_QS:
8419 end_params = (char *) begin + len;
8420 separator = '&';
8421 break;
8422 default:
8423 /* unknown mode, shouldn't happen */
8424 return;
8425 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008426
Cyril Bontéb21570a2009-11-29 20:04:48 +01008427 cur_param = next_param = end_params;
8428 while (cur_param > first_param) {
8429 cur_param--;
8430 if ((cur_param[0] == separator) || (cur_param == first_param)) {
8431 /* let's see if this is the appsession parameter */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008432 if ((cur_param + s->be->appsession_name_len + 1 < next_param) &&
8433 ((s->be->options2 & PR_O2_AS_PFX) || cur_param[s->be->appsession_name_len + 1] == '=') &&
8434 (strncasecmp(cur_param + 1, s->be->appsession_name, s->be->appsession_name_len) == 0)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01008435 /* Cool... it's the right one */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008436 cur_param += s->be->appsession_name_len + (s->be->options2 & PR_O2_AS_PFX ? 1 : 2);
8437 value_len = MIN(s->be->appsession_len, next_param - cur_param);
Cyril Bontéb21570a2009-11-29 20:04:48 +01008438 if (value_len > 0) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008439 manage_client_side_appsession(s, cur_param, value_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01008440 }
8441 break;
8442 }
8443 next_param = cur_param;
8444 }
8445 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008446#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02008447 Alert("get_srv_from_appsession\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008448 appsession_hash_dump(&(s->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008449#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01008450}
8451
Willy Tarreaub2513902006-12-17 14:52:38 +01008452/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02008453 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008454 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01008455 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02008456 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01008457 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01008458 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008459 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01008460 */
Willy Tarreau295a8372011-03-10 11:25:07 +01008461int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01008462{
8463 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01008464 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008465 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01008466
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008467 if (!uri_auth)
8468 return 0;
8469
Cyril Bonté70be45d2010-10-12 00:14:35 +02008470 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008471 return 0;
8472
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01008473 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01008474 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01008475 return 0;
8476
Willy Tarreau414e9bb2013-11-23 00:30:38 +01008477 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01008478 return 0;
8479
Willy Tarreaub2513902006-12-17 14:52:38 +01008480 return 1;
8481}
8482
Willy Tarreau4076a152009-04-02 15:18:36 +02008483/*
8484 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008485 * By default it tries to report the error position as msg->err_pos. However if
8486 * this one is not set, it will then report msg->next, which is the last known
8487 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008488 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02008489 */
8490void http_capture_bad_message(struct error_snapshot *es, struct session *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008491 struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01008492 enum ht_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02008493{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008494 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008495 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008496
Willy Tarreau9b28e032012-10-12 23:49:43 +02008497 es->len = MIN(chn->buf->i, sizeof(es->buf));
8498 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008499 len1 = MIN(len1, es->len);
8500 len2 = es->len - len1; /* remaining data if buffer wraps */
8501
Willy Tarreau9b28e032012-10-12 23:49:43 +02008502 memcpy(es->buf, chn->buf->p, len1);
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008503 if (len2)
Willy Tarreau9b28e032012-10-12 23:49:43 +02008504 memcpy(es->buf + len1, chn->buf->data, len2);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008505
Willy Tarreau4076a152009-04-02 15:18:36 +02008506 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008507 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008508 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008509 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008510
Willy Tarreau4076a152009-04-02 15:18:36 +02008511 es->when = date; // user-visible date
8512 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008513 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02008514 es->oe = other_end;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008515 if (objt_conn(s->req->prod->end))
8516 es->src = __objt_conn(s->req->prod->end)->addr.from;
8517 else
8518 memset(&es->src, 0, sizeof(es->src));
8519
Willy Tarreau078272e2010-12-12 12:46:33 +01008520 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01008521 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008522 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008523 es->s_flags = s->flags;
8524 es->t_flags = s->txn.flags;
8525 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008526 es->b_out = chn->buf->o;
8527 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008528 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008529 es->m_clen = msg->chunk_len;
8530 es->m_blen = msg->body_len;
Willy Tarreau4076a152009-04-02 15:18:36 +02008531}
Willy Tarreaub2513902006-12-17 14:52:38 +01008532
Willy Tarreau294c4732011-12-16 21:35:50 +01008533/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8534 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8535 * performed over the whole headers. Otherwise it must contain a valid header
8536 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8537 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8538 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8539 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008540 * -1. The value fetch stops at commas, so this function is suited for use with
8541 * list headers.
Willy Tarreau294c4732011-12-16 21:35:50 +01008542 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02008543 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02008544unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01008545 struct hdr_idx *idx, int occ,
8546 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02008547{
Willy Tarreau294c4732011-12-16 21:35:50 +01008548 struct hdr_ctx local_ctx;
8549 char *ptr_hist[MAX_HDR_HISTORY];
8550 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02008551 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01008552 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02008553
Willy Tarreau294c4732011-12-16 21:35:50 +01008554 if (!ctx) {
8555 local_ctx.idx = 0;
8556 ctx = &local_ctx;
8557 }
8558
Willy Tarreaubce70882009-09-07 11:51:47 +02008559 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008560 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008561 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02008562 occ--;
8563 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008564 *vptr = ctx->line + ctx->val;
8565 *vlen = ctx->vlen;
8566 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008567 }
8568 }
Willy Tarreau294c4732011-12-16 21:35:50 +01008569 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02008570 }
8571
8572 /* negative occurrence, we scan all the list then walk back */
8573 if (-occ > MAX_HDR_HISTORY)
8574 return 0;
8575
Willy Tarreau294c4732011-12-16 21:35:50 +01008576 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008577 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008578 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8579 len_hist[hist_ptr] = ctx->vlen;
8580 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02008581 hist_ptr = 0;
8582 found++;
8583 }
8584 if (-occ > found)
8585 return 0;
8586 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Willy Tarreau67dad272013-06-12 22:27:44 +02008587 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8588 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8589 * to remain in the 0..9 range.
Willy Tarreaubce70882009-09-07 11:51:47 +02008590 */
Willy Tarreau67dad272013-06-12 22:27:44 +02008591 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreaubce70882009-09-07 11:51:47 +02008592 if (hist_ptr >= MAX_HDR_HISTORY)
8593 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01008594 *vptr = ptr_hist[hist_ptr];
8595 *vlen = len_hist[hist_ptr];
8596 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008597}
8598
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008599/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8600 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8601 * performed over the whole headers. Otherwise it must contain a valid header
8602 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8603 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8604 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8605 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
8606 * -1. This function differs from http_get_hdr() in that it only returns full
8607 * line header values and does not stop at commas.
8608 * The return value is 0 if nothing was found, or non-zero otherwise.
8609 */
8610unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
8611 struct hdr_idx *idx, int occ,
8612 struct hdr_ctx *ctx, char **vptr, int *vlen)
8613{
8614 struct hdr_ctx local_ctx;
8615 char *ptr_hist[MAX_HDR_HISTORY];
8616 int len_hist[MAX_HDR_HISTORY];
8617 unsigned int hist_ptr;
8618 int found;
8619
8620 if (!ctx) {
8621 local_ctx.idx = 0;
8622 ctx = &local_ctx;
8623 }
8624
8625 if (occ >= 0) {
8626 /* search from the beginning */
8627 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8628 occ--;
8629 if (occ <= 0) {
8630 *vptr = ctx->line + ctx->val;
8631 *vlen = ctx->vlen;
8632 return 1;
8633 }
8634 }
8635 return 0;
8636 }
8637
8638 /* negative occurrence, we scan all the list then walk back */
8639 if (-occ > MAX_HDR_HISTORY)
8640 return 0;
8641
8642 found = hist_ptr = 0;
8643 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8644 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8645 len_hist[hist_ptr] = ctx->vlen;
8646 if (++hist_ptr >= MAX_HDR_HISTORY)
8647 hist_ptr = 0;
8648 found++;
8649 }
8650 if (-occ > found)
8651 return 0;
8652 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
8653 * find occurrence -occ, so we have to check [hist_ptr+occ].
8654 */
8655 hist_ptr += occ;
8656 if (hist_ptr >= MAX_HDR_HISTORY)
8657 hist_ptr -= MAX_HDR_HISTORY;
8658 *vptr = ptr_hist[hist_ptr];
8659 *vlen = len_hist[hist_ptr];
8660 return 1;
8661}
8662
Willy Tarreaubaaee002006-06-26 02:48:02 +02008663/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02008664 * Print a debug line with a header. Always stop at the first CR or LF char,
8665 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
8666 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01008667 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008668void debug_hdr(const char *dir, struct session *s, const char *start, const char *end)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008669{
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008670 int max;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008671 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008672 dir,
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008673 objt_conn(s->req->prod->end) ? (unsigned short)objt_conn(s->req->prod->end)->t.sock.fd : -1,
8674 objt_conn(s->req->cons->end) ? (unsigned short)objt_conn(s->req->cons->end)->t.sock.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02008675
8676 for (max = 0; start + max < end; max++)
8677 if (start[max] == '\r' || start[max] == '\n')
8678 break;
8679
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008680 UBOUND(max, trash.size - trash.len - 3);
8681 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
8682 trash.str[trash.len++] = '\n';
Willy Tarreau89efaed2013-12-13 15:14:55 +01008683 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008684}
8685
Willy Tarreau0937bc42009-12-22 15:03:09 +01008686/*
8687 * Initialize a new HTTP transaction for session <s>. It is assumed that all
8688 * the required fields are properly allocated and that we only need to (re)init
8689 * them. This should be used before processing any new request.
8690 */
8691void http_init_txn(struct session *s)
8692{
8693 struct http_txn *txn = &s->txn;
8694 struct proxy *fe = s->fe;
8695
8696 txn->flags = 0;
8697 txn->status = -1;
8698
Willy Tarreauf64d1412010-10-07 20:06:11 +02008699 txn->cookie_first_date = 0;
8700 txn->cookie_last_date = 0;
8701
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008702 txn->req.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008703 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008704 txn->req.next = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008705 txn->rsp.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008706 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008707 txn->rsp.next = 0;
Willy Tarreau124d9912011-03-01 20:30:48 +01008708 txn->req.chunk_len = 0LL;
8709 txn->req.body_len = 0LL;
8710 txn->rsp.chunk_len = 0LL;
8711 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008712 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
8713 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreau394db372012-10-12 22:40:39 +02008714 txn->req.chn = s->req;
8715 txn->rsp.chn = s->rep;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008716
8717 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008718
8719 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
8720 if (fe->options2 & PR_O2_REQBUG_OK)
8721 txn->req.err_pos = -1; /* let buggy requests pass */
8722
Willy Tarreau46023632010-01-07 22:51:47 +01008723 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008724 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
8725
Willy Tarreau46023632010-01-07 22:51:47 +01008726 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008727 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
8728
8729 if (txn->hdr_idx.v)
8730 hdr_idx_init(&txn->hdr_idx);
8731}
8732
8733/* to be used at the end of a transaction */
8734void http_end_txn(struct session *s)
8735{
8736 struct http_txn *txn = &s->txn;
8737
Willy Tarreau75195602014-03-11 15:48:55 +01008738 /* release any possible compression context */
8739 if (s->flags & SN_COMP_READY)
8740 s->comp_algo->end(&s->comp_ctx);
8741 s->comp_algo = NULL;
8742 s->flags &= ~SN_COMP_READY;
8743
Willy Tarreau0937bc42009-12-22 15:03:09 +01008744 /* these ones will have been dynamically allocated */
8745 pool_free2(pool2_requri, txn->uri);
8746 pool_free2(pool2_capture, txn->cli_cookie);
8747 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008748 pool_free2(apools.sessid, txn->sessid);
William Lallemanda73203e2012-03-12 12:48:57 +01008749 pool_free2(pool2_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008750
William Lallemanda73203e2012-03-12 12:48:57 +01008751 s->unique_id = NULL;
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008752 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008753 txn->uri = NULL;
8754 txn->srv_cookie = NULL;
8755 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01008756
8757 if (txn->req.cap) {
8758 struct cap_hdr *h;
8759 for (h = s->fe->req_cap; h; h = h->next)
8760 pool_free2(h->pool, txn->req.cap[h->index]);
8761 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
8762 }
8763
8764 if (txn->rsp.cap) {
8765 struct cap_hdr *h;
8766 for (h = s->fe->rsp_cap; h; h = h->next)
8767 pool_free2(h->pool, txn->rsp.cap[h->index]);
8768 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
8769 }
8770
Willy Tarreau0937bc42009-12-22 15:03:09 +01008771}
8772
8773/* to be used at the end of a transaction to prepare a new one */
8774void http_reset_txn(struct session *s)
8775{
8776 http_end_txn(s);
8777 http_init_txn(s);
8778
8779 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008780 s->logs.logwait = s->fe->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02008781 s->logs.level = 0;
Simon Hormanaf514952011-06-21 14:34:57 +09008782 session_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008783 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008784 /* re-init store persistence */
8785 s->store_count = 0;
Willy Tarreau1f0da242014-01-25 11:01:50 +01008786 s->uniq_id = global.req_count++;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008787
Willy Tarreau0937bc42009-12-22 15:03:09 +01008788 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008789
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02008790 s->req->flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008791
Willy Tarreau739cfba2010-01-25 23:11:14 +01008792 /* We must trim any excess data from the response buffer, because we
8793 * may have blocked an invalid response from a server that we don't
8794 * want to accidentely forward once we disable the analysers, nor do
8795 * we want those data to come along with next response. A typical
8796 * example of such data would be from a buggy server responding to
8797 * a HEAD with some data, or sending more than the advertised
8798 * content-length.
8799 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008800 if (unlikely(s->rep->buf->i))
8801 s->rep->buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008802
Willy Tarreau0937bc42009-12-22 15:03:09 +01008803 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02008804 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008805
Willy Tarreaud04e8582010-05-31 12:31:35 +02008806 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008807 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008808
8809 s->req->rex = TICK_ETERNITY;
8810 s->req->wex = TICK_ETERNITY;
8811 s->req->analyse_exp = TICK_ETERNITY;
8812 s->rep->rex = TICK_ETERNITY;
8813 s->rep->wex = TICK_ETERNITY;
8814 s->rep->analyse_exp = TICK_ETERNITY;
8815}
Willy Tarreau58f10d72006-12-04 02:26:12 +01008816
Sasha Pachev218f0642014-06-16 12:05:59 -06008817void free_http_res_rules(struct list *r)
8818{
8819 struct http_res_rule *tr, *pr;
8820
8821 list_for_each_entry_safe(pr, tr, r, list) {
8822 LIST_DEL(&pr->list);
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008823 regex_free(&pr->arg.hdr_add.re);
Sasha Pachev218f0642014-06-16 12:05:59 -06008824 free(pr);
8825 }
8826}
8827
8828void free_http_req_rules(struct list *r)
8829{
Willy Tarreauff011f22011-01-06 17:51:27 +01008830 struct http_req_rule *tr, *pr;
8831
8832 list_for_each_entry_safe(pr, tr, r, list) {
8833 LIST_DEL(&pr->list);
Willy Tarreau20b0de52012-12-24 15:45:22 +01008834 if (pr->action == HTTP_REQ_ACT_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008835 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01008836
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008837 regex_free(&pr->arg.hdr_add.re);
Willy Tarreauff011f22011-01-06 17:51:27 +01008838 free(pr);
8839 }
8840}
8841
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008842/* parse an "http-request" rule */
Willy Tarreauff011f22011-01-06 17:51:27 +01008843struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
8844{
8845 struct http_req_rule *rule;
William Lallemand73025dd2014-04-24 14:38:37 +02008846 struct http_req_action_kw *custom = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008847 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008848 char *error;
Willy Tarreauff011f22011-01-06 17:51:27 +01008849
8850 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
8851 if (!rule) {
8852 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008853 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008854 }
8855
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008856 if (!strcmp(args[0], "allow")) {
Willy Tarreauff011f22011-01-06 17:51:27 +01008857 rule->action = HTTP_REQ_ACT_ALLOW;
8858 cur_arg = 1;
Willy Tarreau5bd67592014-04-28 22:00:46 +02008859 } else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block")) {
Willy Tarreauff011f22011-01-06 17:51:27 +01008860 rule->action = HTTP_REQ_ACT_DENY;
8861 cur_arg = 1;
Willy Tarreauccbcc372012-12-27 12:37:57 +01008862 } else if (!strcmp(args[0], "tarpit")) {
8863 rule->action = HTTP_REQ_ACT_TARPIT;
8864 cur_arg = 1;
Willy Tarreauff011f22011-01-06 17:51:27 +01008865 } else if (!strcmp(args[0], "auth")) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01008866 rule->action = HTTP_REQ_ACT_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01008867 cur_arg = 1;
8868
8869 while(*args[cur_arg]) {
8870 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008871 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01008872 cur_arg+=2;
8873 continue;
8874 } else
8875 break;
8876 }
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008877 } else if (!strcmp(args[0], "set-nice")) {
8878 rule->action = HTTP_REQ_ACT_SET_NICE;
8879 cur_arg = 1;
8880
8881 if (!*args[cur_arg] ||
8882 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8883 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n",
8884 file, linenum, args[0]);
8885 goto out_err;
8886 }
8887 rule->arg.nice = atoi(args[cur_arg]);
8888 if (rule->arg.nice < -1024)
8889 rule->arg.nice = -1024;
8890 else if (rule->arg.nice > 1024)
8891 rule->arg.nice = 1024;
8892 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008893 } else if (!strcmp(args[0], "set-tos")) {
8894#ifdef IP_TOS
8895 char *err;
8896 rule->action = HTTP_REQ_ACT_SET_TOS;
8897 cur_arg = 1;
8898
8899 if (!*args[cur_arg] ||
8900 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8901 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8902 file, linenum, args[0]);
8903 goto out_err;
8904 }
8905
8906 rule->arg.tos = strtol(args[cur_arg], &err, 0);
8907 if (err && *err != '\0') {
8908 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8909 file, linenum, err, args[0]);
8910 goto out_err;
8911 }
8912 cur_arg++;
8913#else
8914 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
8915 goto out_err;
8916#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02008917 } else if (!strcmp(args[0], "set-mark")) {
8918#ifdef SO_MARK
8919 char *err;
8920 rule->action = HTTP_REQ_ACT_SET_MARK;
8921 cur_arg = 1;
8922
8923 if (!*args[cur_arg] ||
8924 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8925 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8926 file, linenum, args[0]);
8927 goto out_err;
8928 }
8929
8930 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
8931 if (err && *err != '\0') {
8932 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8933 file, linenum, err, args[0]);
8934 goto out_err;
8935 }
8936 cur_arg++;
8937 global.last_checks |= LSTCHK_NETADM;
8938#else
8939 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
8940 goto out_err;
8941#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008942 } else if (!strcmp(args[0], "set-log-level")) {
8943 rule->action = HTTP_REQ_ACT_SET_LOGL;
8944 cur_arg = 1;
8945
8946 if (!*args[cur_arg] ||
8947 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8948 bad_log_level:
8949 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n",
8950 file, linenum, args[0]);
8951 goto out_err;
8952 }
8953 if (strcmp(args[cur_arg], "silent") == 0)
8954 rule->arg.loglevel = -1;
8955 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
8956 goto bad_log_level;
8957 cur_arg++;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008958 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
8959 rule->action = *args[0] == 'a' ? HTTP_REQ_ACT_ADD_HDR : HTTP_REQ_ACT_SET_HDR;
8960 cur_arg = 1;
8961
Willy Tarreau8d1c5162013-04-03 14:13:58 +02008962 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8963 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01008964 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
8965 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008966 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008967 }
8968
8969 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8970 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8971 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02008972
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01008973 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01008974 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01008975 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
8976 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008977 free(proxy->conf.lfs_file);
8978 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8979 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008980 cur_arg += 2;
Willy Tarreaub8543922014-06-17 18:58:26 +02008981 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
8982 rule->action = args[0][8] == 'h' ? HTTP_REQ_ACT_REPLACE_HDR : HTTP_REQ_ACT_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06008983 cur_arg = 1;
8984
8985 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann92df3702014-06-24 11:10:00 +02008986 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
Sasha Pachev218f0642014-06-16 12:05:59 -06008987 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 3 arguments.\n",
8988 file, linenum, args[0]);
8989 goto out_err;
8990 }
8991
8992 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8993 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8994 LIST_INIT(&rule->arg.hdr_add.fmt);
8995
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008996 error = NULL;
8997 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
8998 Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
8999 args[cur_arg + 1], error);
9000 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06009001 goto out_err;
9002 }
9003
9004 proxy->conf.args.ctx = ARGC_HRQ;
9005 parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
9006 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9007 file, linenum);
9008
9009 free(proxy->conf.lfs_file);
9010 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9011 proxy->conf.lfs_line = proxy->conf.args.line;
9012 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009013 } else if (strcmp(args[0], "del-header") == 0) {
9014 rule->action = HTTP_REQ_ACT_DEL_HDR;
9015 cur_arg = 1;
9016
9017 if (!*args[cur_arg] ||
9018 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9019 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9020 file, linenum, args[0]);
9021 goto out_err;
9022 }
9023
9024 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9025 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9026
9027 proxy->conf.args.ctx = ARGC_HRQ;
9028 free(proxy->conf.lfs_file);
9029 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9030 proxy->conf.lfs_line = proxy->conf.args.line;
9031 cur_arg += 1;
Willy Tarreau09448f72014-06-25 18:12:15 +02009032 } else if (strncmp(args[0], "track-sc", 8) == 0 &&
9033 args[0][9] == '\0' && args[0][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02009034 args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau09448f72014-06-25 18:12:15 +02009035 struct sample_expr *expr;
9036 unsigned int where;
9037 char *err = NULL;
9038
9039 cur_arg = 1;
9040 proxy->conf.args.ctx = ARGC_TRK;
9041
9042 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
9043 if (!expr) {
9044 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9045 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
9046 free(err);
9047 goto out_err;
9048 }
9049
9050 where = 0;
9051 if (proxy->cap & PR_CAP_FE)
9052 where |= SMP_VAL_FE_HRQ_HDR;
9053 if (proxy->cap & PR_CAP_BE)
9054 where |= SMP_VAL_BE_HRQ_HDR;
9055
9056 if (!(expr->fetch->val & where)) {
9057 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule :"
9058 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
9059 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
9060 args[cur_arg-1], sample_src_names(expr->fetch->use));
9061 free(expr);
9062 goto out_err;
9063 }
9064
9065 if (strcmp(args[cur_arg], "table") == 0) {
9066 cur_arg++;
9067 if (!args[cur_arg]) {
9068 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing table name.\n",
9069 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
9070 free(expr);
9071 goto out_err;
9072 }
9073 /* we copy the table name for now, it will be resolved later */
9074 rule->act_prm.trk_ctr.table.n = strdup(args[cur_arg]);
9075 cur_arg++;
9076 }
9077 rule->act_prm.trk_ctr.expr = expr;
9078 rule->action = HTTP_REQ_ACT_TRK_SC0 + args[0][8] - '0';
Willy Tarreau81499eb2012-12-27 12:19:02 +01009079 } else if (strcmp(args[0], "redirect") == 0) {
9080 struct redirect_rule *redir;
Willy Tarreau6d4890c2013-11-18 18:04:25 +01009081 char *errmsg = NULL;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009082
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009083 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1)) == NULL) {
Willy Tarreau81499eb2012-12-27 12:19:02 +01009084 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9085 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9086 goto out_err;
9087 }
9088
9089 /* this redirect rule might already contain a parsed condition which
9090 * we'll pass to the http-request rule.
9091 */
9092 rule->action = HTTP_REQ_ACT_REDIR;
9093 rule->arg.redir = redir;
9094 rule->cond = redir->cond;
9095 redir->cond = NULL;
9096 cur_arg = 2;
9097 return rule;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009098 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9099 /* http-request add-acl(<reference (acl name)>) <key pattern> */
9100 rule->action = HTTP_REQ_ACT_ADD_ACL;
9101 /*
9102 * '+ 8' for 'add-acl('
9103 * '- 9' for 'add-acl(' + trailing ')'
9104 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009105 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009106
9107 cur_arg = 1;
9108
9109 if (!*args[cur_arg] ||
9110 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9111 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9112 file, linenum, args[0]);
9113 goto out_err;
9114 }
9115
9116 LIST_INIT(&rule->arg.map.key);
9117 proxy->conf.args.ctx = ARGC_HRQ;
9118 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9119 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9120 file, linenum);
9121 free(proxy->conf.lfs_file);
9122 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9123 proxy->conf.lfs_line = proxy->conf.args.line;
9124 cur_arg += 1;
9125 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9126 /* http-request del-acl(<reference (acl name)>) <key pattern> */
9127 rule->action = HTTP_REQ_ACT_DEL_ACL;
9128 /*
9129 * '+ 8' for 'del-acl('
9130 * '- 9' for 'del-acl(' + trailing ')'
9131 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009132 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009133
9134 cur_arg = 1;
9135
9136 if (!*args[cur_arg] ||
9137 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9138 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9139 file, linenum, args[0]);
9140 goto out_err;
9141 }
9142
9143 LIST_INIT(&rule->arg.map.key);
9144 proxy->conf.args.ctx = ARGC_HRQ;
9145 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9146 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9147 file, linenum);
9148 free(proxy->conf.lfs_file);
9149 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9150 proxy->conf.lfs_line = proxy->conf.args.line;
9151 cur_arg += 1;
9152 } else if (strncmp(args[0], "del-map", 7) == 0) {
9153 /* http-request del-map(<reference (map name)>) <key pattern> */
9154 rule->action = HTTP_REQ_ACT_DEL_MAP;
9155 /*
9156 * '+ 8' for 'del-map('
9157 * '- 9' for 'del-map(' + trailing ')'
9158 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009159 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009160
9161 cur_arg = 1;
9162
9163 if (!*args[cur_arg] ||
9164 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9165 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9166 file, linenum, args[0]);
9167 goto out_err;
9168 }
9169
9170 LIST_INIT(&rule->arg.map.key);
9171 proxy->conf.args.ctx = ARGC_HRQ;
9172 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9173 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9174 file, linenum);
9175 free(proxy->conf.lfs_file);
9176 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9177 proxy->conf.lfs_line = proxy->conf.args.line;
9178 cur_arg += 1;
9179 } else if (strncmp(args[0], "set-map", 7) == 0) {
9180 /* http-request set-map(<reference (map name)>) <key pattern> <value pattern> */
9181 rule->action = HTTP_REQ_ACT_SET_MAP;
9182 /*
9183 * '+ 8' for 'set-map('
9184 * '- 9' for 'set-map(' + trailing ')'
9185 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009186 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009187
9188 cur_arg = 1;
9189
9190 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9191 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9192 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
9193 file, linenum, args[0]);
9194 goto out_err;
9195 }
9196
9197 LIST_INIT(&rule->arg.map.key);
9198 LIST_INIT(&rule->arg.map.value);
9199 proxy->conf.args.ctx = ARGC_HRQ;
9200
9201 /* key pattern */
9202 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9203 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9204 file, linenum);
9205
9206 /* value pattern */
9207 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
9208 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9209 file, linenum);
9210 free(proxy->conf.lfs_file);
9211 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9212 proxy->conf.lfs_line = proxy->conf.args.line;
9213
9214 cur_arg += 2;
William Lallemand73025dd2014-04-24 14:38:37 +02009215 } else if (((custom = action_http_req_custom(args[0])) != NULL)) {
9216 char *errmsg = NULL;
9217 cur_arg = 1;
9218 /* try in the module list */
9219 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) {
9220 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9221 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9222 free(errmsg);
9223 goto out_err;
9224 }
Willy Tarreauff011f22011-01-06 17:51:27 +01009225 } else {
Sasha Pachev218f0642014-06-16 12:05:59 -06009226 Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', but got '%s'%s.\n",
Willy Tarreau5c2e1982012-12-24 12:00:25 +01009227 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01009228 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009229 }
9230
9231 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9232 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009233 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009234
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009235 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9236 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
9237 file, linenum, args[0], errmsg);
9238 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009239 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009240 }
9241 rule->cond = cond;
9242 }
9243 else if (*args[cur_arg]) {
9244 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
9245 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9246 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009247 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009248 }
9249
9250 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009251 out_err:
9252 free(rule);
9253 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009254}
9255
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009256/* parse an "http-respose" rule */
9257struct http_res_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
9258{
9259 struct http_res_rule *rule;
William Lallemand73025dd2014-04-24 14:38:37 +02009260 struct http_res_action_kw *custom = NULL;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009261 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009262 char *error;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009263
9264 rule = calloc(1, sizeof(*rule));
9265 if (!rule) {
9266 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
9267 goto out_err;
9268 }
9269
9270 if (!strcmp(args[0], "allow")) {
9271 rule->action = HTTP_RES_ACT_ALLOW;
9272 cur_arg = 1;
9273 } else if (!strcmp(args[0], "deny")) {
9274 rule->action = HTTP_RES_ACT_DENY;
9275 cur_arg = 1;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009276 } else if (!strcmp(args[0], "set-nice")) {
9277 rule->action = HTTP_RES_ACT_SET_NICE;
9278 cur_arg = 1;
9279
9280 if (!*args[cur_arg] ||
9281 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9282 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n",
9283 file, linenum, args[0]);
9284 goto out_err;
9285 }
9286 rule->arg.nice = atoi(args[cur_arg]);
9287 if (rule->arg.nice < -1024)
9288 rule->arg.nice = -1024;
9289 else if (rule->arg.nice > 1024)
9290 rule->arg.nice = 1024;
9291 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009292 } else if (!strcmp(args[0], "set-tos")) {
9293#ifdef IP_TOS
9294 char *err;
9295 rule->action = HTTP_RES_ACT_SET_TOS;
9296 cur_arg = 1;
9297
9298 if (!*args[cur_arg] ||
9299 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9300 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9301 file, linenum, args[0]);
9302 goto out_err;
9303 }
9304
9305 rule->arg.tos = strtol(args[cur_arg], &err, 0);
9306 if (err && *err != '\0') {
9307 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9308 file, linenum, err, args[0]);
9309 goto out_err;
9310 }
9311 cur_arg++;
9312#else
9313 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
9314 goto out_err;
9315#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02009316 } else if (!strcmp(args[0], "set-mark")) {
9317#ifdef SO_MARK
9318 char *err;
9319 rule->action = HTTP_RES_ACT_SET_MARK;
9320 cur_arg = 1;
9321
9322 if (!*args[cur_arg] ||
9323 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9324 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9325 file, linenum, args[0]);
9326 goto out_err;
9327 }
9328
9329 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
9330 if (err && *err != '\0') {
9331 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9332 file, linenum, err, args[0]);
9333 goto out_err;
9334 }
9335 cur_arg++;
9336 global.last_checks |= LSTCHK_NETADM;
9337#else
9338 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
9339 goto out_err;
9340#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009341 } else if (!strcmp(args[0], "set-log-level")) {
9342 rule->action = HTTP_RES_ACT_SET_LOGL;
9343 cur_arg = 1;
9344
9345 if (!*args[cur_arg] ||
9346 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9347 bad_log_level:
9348 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n",
9349 file, linenum, args[0]);
9350 goto out_err;
9351 }
9352 if (strcmp(args[cur_arg], "silent") == 0)
9353 rule->arg.loglevel = -1;
9354 else if ((rule->arg.loglevel = get_log_level(args[cur_arg] + 1)) == 0)
9355 goto bad_log_level;
9356 cur_arg++;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009357 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
9358 rule->action = *args[0] == 'a' ? HTTP_RES_ACT_ADD_HDR : HTTP_RES_ACT_SET_HDR;
9359 cur_arg = 1;
9360
9361 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9362 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9363 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9364 file, linenum, args[0]);
9365 goto out_err;
9366 }
9367
9368 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9369 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9370 LIST_INIT(&rule->arg.hdr_add.fmt);
9371
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01009372 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009373 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009374 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9375 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009376 free(proxy->conf.lfs_file);
9377 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9378 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009379 cur_arg += 2;
Sasha Pachev218f0642014-06-16 12:05:59 -06009380 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Willy Tarreaub8543922014-06-17 18:58:26 +02009381 rule->action = args[0][8] == 'h' ? HTTP_RES_ACT_REPLACE_HDR : HTTP_RES_ACT_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06009382 cur_arg = 1;
9383
9384 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann12cb00b2014-08-08 17:29:06 +02009385 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
9386 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 3 arguments.\n",
Sasha Pachev218f0642014-06-16 12:05:59 -06009387 file, linenum, args[0]);
9388 goto out_err;
9389 }
9390
9391 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9392 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9393 LIST_INIT(&rule->arg.hdr_add.fmt);
9394
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009395 error = NULL;
9396 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
9397 Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
9398 args[cur_arg + 1], error);
9399 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06009400 goto out_err;
9401 }
9402
9403 proxy->conf.args.ctx = ARGC_HRQ;
9404 parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
9405 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9406 file, linenum);
9407
9408 free(proxy->conf.lfs_file);
9409 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9410 proxy->conf.lfs_line = proxy->conf.args.line;
9411 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009412 } else if (strcmp(args[0], "del-header") == 0) {
9413 rule->action = HTTP_RES_ACT_DEL_HDR;
9414 cur_arg = 1;
9415
9416 if (!*args[cur_arg] ||
9417 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9418 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9419 file, linenum, args[0]);
9420 goto out_err;
9421 }
9422
9423 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9424 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9425
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009426 proxy->conf.args.ctx = ARGC_HRS;
9427 free(proxy->conf.lfs_file);
9428 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9429 proxy->conf.lfs_line = proxy->conf.args.line;
9430 cur_arg += 1;
9431 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9432 /* http-request add-acl(<reference (acl name)>) <key pattern> */
9433 rule->action = HTTP_RES_ACT_ADD_ACL;
9434 /*
9435 * '+ 8' for 'add-acl('
9436 * '- 9' for 'add-acl(' + trailing ')'
9437 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009438 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009439
9440 cur_arg = 1;
9441
9442 if (!*args[cur_arg] ||
9443 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9444 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9445 file, linenum, args[0]);
9446 goto out_err;
9447 }
9448
9449 LIST_INIT(&rule->arg.map.key);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009450 proxy->conf.args.ctx = ARGC_HRS;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009451 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9452 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9453 file, linenum);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009454 free(proxy->conf.lfs_file);
9455 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9456 proxy->conf.lfs_line = proxy->conf.args.line;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009457
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009458 cur_arg += 1;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009459 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9460 /* http-response del-acl(<reference (acl name)>) <key pattern> */
9461 rule->action = HTTP_RES_ACT_DEL_ACL;
9462 /*
9463 * '+ 8' for 'del-acl('
9464 * '- 9' for 'del-acl(' + trailing ')'
9465 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009466 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009467
9468 cur_arg = 1;
9469
9470 if (!*args[cur_arg] ||
9471 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9472 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9473 file, linenum, args[0]);
9474 goto out_err;
9475 }
9476
9477 LIST_INIT(&rule->arg.map.key);
9478 proxy->conf.args.ctx = ARGC_HRS;
9479 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9480 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9481 file, linenum);
9482 free(proxy->conf.lfs_file);
9483 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9484 proxy->conf.lfs_line = proxy->conf.args.line;
9485 cur_arg += 1;
9486 } else if (strncmp(args[0], "del-map", 7) == 0) {
9487 /* http-response del-map(<reference (map name)>) <key pattern> */
9488 rule->action = HTTP_RES_ACT_DEL_MAP;
9489 /*
9490 * '+ 8' for 'del-map('
9491 * '- 9' for 'del-map(' + trailing ')'
9492 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009493 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009494
9495 cur_arg = 1;
9496
9497 if (!*args[cur_arg] ||
9498 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9499 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9500 file, linenum, args[0]);
9501 goto out_err;
9502 }
9503
9504 LIST_INIT(&rule->arg.map.key);
9505 proxy->conf.args.ctx = ARGC_HRS;
9506 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9507 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9508 file, linenum);
9509 free(proxy->conf.lfs_file);
9510 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9511 proxy->conf.lfs_line = proxy->conf.args.line;
9512 cur_arg += 1;
9513 } else if (strncmp(args[0], "set-map", 7) == 0) {
9514 /* http-response set-map(<reference (map name)>) <key pattern> <value pattern> */
9515 rule->action = HTTP_RES_ACT_SET_MAP;
9516 /*
9517 * '+ 8' for 'set-map('
9518 * '- 9' for 'set-map(' + trailing ')'
9519 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009520 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009521
9522 cur_arg = 1;
9523
9524 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9525 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9526 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9527 file, linenum, args[0]);
9528 goto out_err;
9529 }
9530
9531 LIST_INIT(&rule->arg.map.key);
9532 LIST_INIT(&rule->arg.map.value);
9533
9534 proxy->conf.args.ctx = ARGC_HRS;
9535
9536 /* key pattern */
9537 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9538 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9539 file, linenum);
9540
9541 /* value pattern */
9542 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
9543 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9544 file, linenum);
9545
9546 free(proxy->conf.lfs_file);
9547 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9548 proxy->conf.lfs_line = proxy->conf.args.line;
9549
9550 cur_arg += 2;
William Lallemand73025dd2014-04-24 14:38:37 +02009551 } else if (((custom = action_http_res_custom(args[0])) != NULL)) {
9552 char *errmsg = NULL;
9553 cur_arg = 1;
9554 /* try in the module list */
9555 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) {
9556 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9557 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9558 free(errmsg);
9559 goto out_err;
9560 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009561 } else {
Sasha Pachev218f0642014-06-16 12:05:59 -06009562 Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', 'add-header', 'del-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'del-acl', 'add-acl', 'del-map', 'set-map', but got '%s'%s.\n",
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009563 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
9564 goto out_err;
9565 }
9566
9567 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9568 struct acl_cond *cond;
9569 char *errmsg = NULL;
9570
9571 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9572 Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n",
9573 file, linenum, args[0], errmsg);
9574 free(errmsg);
9575 goto out_err;
9576 }
9577 rule->cond = cond;
9578 }
9579 else if (*args[cur_arg]) {
9580 Alert("parsing [%s:%d]: 'http-response %s' expects"
9581 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9582 file, linenum, args[0], args[cur_arg]);
9583 goto out_err;
9584 }
9585
9586 return rule;
9587 out_err:
9588 free(rule);
9589 return NULL;
9590}
9591
Willy Tarreau4baae242012-12-27 12:00:31 +01009592/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009593 * with <err> filled with the error message. If <use_fmt> is not null, builds a
9594 * dynamic log-format rule instead of a static string.
Willy Tarreau4baae242012-12-27 12:00:31 +01009595 */
9596struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009597 const char **args, char **errmsg, int use_fmt)
Willy Tarreau4baae242012-12-27 12:00:31 +01009598{
9599 struct redirect_rule *rule;
9600 int cur_arg;
9601 int type = REDIRECT_TYPE_NONE;
9602 int code = 302;
9603 const char *destination = NULL;
9604 const char *cookie = NULL;
9605 int cookie_set = 0;
9606 unsigned int flags = REDIRECT_FLAG_NONE;
9607 struct acl_cond *cond = NULL;
9608
9609 cur_arg = 0;
9610 while (*(args[cur_arg])) {
9611 if (strcmp(args[cur_arg], "location") == 0) {
9612 if (!*args[cur_arg + 1])
9613 goto missing_arg;
9614
9615 type = REDIRECT_TYPE_LOCATION;
9616 cur_arg++;
9617 destination = args[cur_arg];
9618 }
9619 else if (strcmp(args[cur_arg], "prefix") == 0) {
9620 if (!*args[cur_arg + 1])
9621 goto missing_arg;
9622
9623 type = REDIRECT_TYPE_PREFIX;
9624 cur_arg++;
9625 destination = args[cur_arg];
9626 }
9627 else if (strcmp(args[cur_arg], "scheme") == 0) {
9628 if (!*args[cur_arg + 1])
9629 goto missing_arg;
9630
9631 type = REDIRECT_TYPE_SCHEME;
9632 cur_arg++;
9633 destination = args[cur_arg];
9634 }
9635 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
9636 if (!*args[cur_arg + 1])
9637 goto missing_arg;
9638
9639 cur_arg++;
9640 cookie = args[cur_arg];
9641 cookie_set = 1;
9642 }
9643 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
9644 if (!*args[cur_arg + 1])
9645 goto missing_arg;
9646
9647 cur_arg++;
9648 cookie = args[cur_arg];
9649 cookie_set = 0;
9650 }
9651 else if (strcmp(args[cur_arg], "code") == 0) {
9652 if (!*args[cur_arg + 1])
9653 goto missing_arg;
9654
9655 cur_arg++;
9656 code = atol(args[cur_arg]);
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009657 if (code < 301 || code > 308 || (code > 303 && code < 307)) {
Willy Tarreau4baae242012-12-27 12:00:31 +01009658 memprintf(errmsg,
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009659 "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)",
Willy Tarreau4baae242012-12-27 12:00:31 +01009660 args[cur_arg - 1], args[cur_arg]);
9661 return NULL;
9662 }
9663 }
9664 else if (!strcmp(args[cur_arg],"drop-query")) {
9665 flags |= REDIRECT_FLAG_DROP_QS;
9666 }
9667 else if (!strcmp(args[cur_arg],"append-slash")) {
9668 flags |= REDIRECT_FLAG_APPEND_SLASH;
9669 }
9670 else if (strcmp(args[cur_arg], "if") == 0 ||
9671 strcmp(args[cur_arg], "unless") == 0) {
9672 cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg);
9673 if (!cond) {
9674 memprintf(errmsg, "error in condition: %s", *errmsg);
9675 return NULL;
9676 }
9677 break;
9678 }
9679 else {
9680 memprintf(errmsg,
9681 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
9682 args[cur_arg]);
9683 return NULL;
9684 }
9685 cur_arg++;
9686 }
9687
9688 if (type == REDIRECT_TYPE_NONE) {
9689 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
9690 return NULL;
9691 }
9692
9693 rule = (struct redirect_rule *)calloc(1, sizeof(*rule));
9694 rule->cond = cond;
Willy Tarreau60e08382013-12-03 00:48:45 +01009695 LIST_INIT(&rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009696
9697 if (!use_fmt) {
9698 /* old-style static redirect rule */
9699 rule->rdr_str = strdup(destination);
9700 rule->rdr_len = strlen(destination);
9701 }
9702 else {
9703 /* log-format based redirect rule */
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009704
9705 /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case,
9706 * if prefix == "/", we don't want to add anything, otherwise it
9707 * makes it hard for the user to configure a self-redirection.
9708 */
Godbachd9722032014-12-18 15:44:58 +08009709 curproxy->conf.args.ctx = ARGC_RDR;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009710 if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) {
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009711 parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009712 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9713 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009714 free(curproxy->conf.lfs_file);
9715 curproxy->conf.lfs_file = strdup(curproxy->conf.args.file);
9716 curproxy->conf.lfs_line = curproxy->conf.args.line;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009717 }
9718 }
9719
Willy Tarreau4baae242012-12-27 12:00:31 +01009720 if (cookie) {
9721 /* depending on cookie_set, either we want to set the cookie, or to clear it.
9722 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
9723 */
9724 rule->cookie_len = strlen(cookie);
9725 if (cookie_set) {
9726 rule->cookie_str = malloc(rule->cookie_len + 10);
9727 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9728 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
9729 rule->cookie_len += 9;
9730 } else {
9731 rule->cookie_str = malloc(rule->cookie_len + 21);
9732 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9733 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
9734 rule->cookie_len += 20;
9735 }
9736 }
9737 rule->type = type;
9738 rule->code = code;
9739 rule->flags = flags;
9740 LIST_INIT(&rule->list);
9741 return rule;
9742
9743 missing_arg:
9744 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
9745 return NULL;
9746}
9747
Willy Tarreau8797c062007-05-07 00:55:35 +02009748/************************************************************************/
9749/* The code below is dedicated to ACL parsing and matching */
9750/************************************************************************/
9751
9752
Willy Tarreau14174bc2012-04-16 14:34:04 +02009753/* This function ensures that the prerequisites for an L7 fetch are ready,
9754 * which means that a request or response is ready. If some data is missing,
9755 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +02009756 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
9757 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009758 *
9759 * The function returns :
Willy Tarreau506d0502013-07-06 13:29:24 +02009760 * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
9761 * decide whether or not an HTTP message is present ;
9762 * 0 if the requested data cannot be fetched or if it is certain that
9763 * we'll never have any HTTP message there ;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009764 * 1 if an HTTP message is ready
9765 */
9766static int
Willy Tarreau506d0502013-07-06 13:29:24 +02009767smp_prefetch_http(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009768 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +02009769{
9770 struct http_txn *txn = l7;
9771 struct http_msg *msg = &txn->req;
9772
9773 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
9774 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
9775 */
9776
9777 if (unlikely(!s || !txn))
9778 return 0;
9779
9780 /* Check for a dependency on a request */
Willy Tarreauf853c462012-04-23 18:53:56 +02009781 smp->type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009782
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009783 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009784 if (unlikely(!s->req))
9785 return 0;
9786
Willy Tarreauaae75e32013-03-29 12:31:49 +01009787 /* If the buffer does not leave enough free space at the end,
9788 * we must first realign it.
9789 */
9790 if (s->req->buf->p > s->req->buf->data &&
9791 s->req->buf->i + s->req->buf->p > s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)
9792 buffer_slow_realign(s->req->buf);
9793
Willy Tarreau14174bc2012-04-16 14:34:04 +02009794 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau472b1ee2013-10-14 22:41:30 +02009795 if (msg->msg_state == HTTP_MSG_ERROR)
Willy Tarreau506d0502013-07-06 13:29:24 +02009796 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009797
9798 /* Try to decode HTTP request */
Willy Tarreau9b28e032012-10-12 23:49:43 +02009799 if (likely(msg->next < s->req->buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +02009800 http_msg_analyzer(msg, &txn->hdr_idx);
9801
9802 /* Still no valid request ? */
9803 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02009804 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02009805 buffer_full(s->req->buf, global.tune.maxrewrite)) {
Willy Tarreau506d0502013-07-06 13:29:24 +02009806 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009807 }
9808 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +02009809 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009810 return 0;
9811 }
9812
9813 /* OK we just got a valid HTTP request. We have some minor
9814 * preparation to perform so that further checks can rely
9815 * on HTTP tests.
9816 */
Willy Tarreauaae75e32013-03-29 12:31:49 +01009817
9818 /* If the request was parsed but was too large, we must absolutely
9819 * return an error so that it is not processed. At the moment this
9820 * cannot happen, but if the parsers are to change in the future,
9821 * we want this check to be maintained.
9822 */
9823 if (unlikely(s->req->buf->i + s->req->buf->p >
9824 s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)) {
9825 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau506d0502013-07-06 13:29:24 +02009826 smp->data.uint = 1;
Willy Tarreauaae75e32013-03-29 12:31:49 +01009827 return 1;
9828 }
9829
Willy Tarreau9b28e032012-10-12 23:49:43 +02009830 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +02009831 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
9832 s->flags |= SN_REDIRECTABLE;
9833
Willy Tarreau506d0502013-07-06 13:29:24 +02009834 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
9835 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009836 }
9837
Willy Tarreau506d0502013-07-06 13:29:24 +02009838 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009839 return 0; /* data might have moved and indexes changed */
Willy Tarreau506d0502013-07-06 13:29:24 +02009840 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009841
9842 /* otherwise everything's ready for the request */
9843 }
Willy Tarreau24e32d82012-04-23 23:55:44 +02009844 else {
9845 /* Check for a dependency on a response */
Willy Tarreau506d0502013-07-06 13:29:24 +02009846 if (txn->rsp.msg_state < HTTP_MSG_BODY) {
9847 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009848 return 0;
Willy Tarreau506d0502013-07-06 13:29:24 +02009849 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009850 }
9851
9852 /* everything's OK */
Willy Tarreau506d0502013-07-06 13:29:24 +02009853 smp->data.uint = 1;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009854 return 1;
9855}
Willy Tarreau8797c062007-05-07 00:55:35 +02009856
Willy Tarreau6c616e02014-06-25 16:56:41 +02009857/* Note: these functinos *do* modify the sample. Even in case of success, at
9858 * least the type and uint value are modified.
9859 */
Willy Tarreauc0239e02012-04-16 14:42:55 +02009860#define CHECK_HTTP_MESSAGE_FIRST() \
Willy Tarreau506d0502013-07-06 13:29:24 +02009861 do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 1); if (r <= 0) return r; } while (0)
Willy Tarreauc0239e02012-04-16 14:42:55 +02009862
Willy Tarreau24e32d82012-04-23 23:55:44 +02009863#define CHECK_HTTP_MESSAGE_FIRST_PERM() \
Willy Tarreau506d0502013-07-06 13:29:24 +02009864 do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 0); if (r <= 0) return r; } while (0)
Willy Tarreau24e32d82012-04-23 23:55:44 +02009865
Willy Tarreau8797c062007-05-07 00:55:35 +02009866
9867/* 1. Check on METHOD
9868 * We use the pre-parsed method if it is known, and store its number as an
9869 * integer. If it is unknown, we use the pointer and the length.
9870 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02009871static int pat_parse_meth(const char *text, struct pattern *pattern, int mflags, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +02009872{
9873 int len, meth;
9874
Thierry FOURNIER580c32c2014-01-24 10:58:12 +01009875 len = strlen(text);
9876 meth = find_http_meth(text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02009877
9878 pattern->val.i = meth;
9879 if (meth == HTTP_METH_OTHER) {
Willy Tarreau912c1192014-08-29 15:15:50 +02009880 pattern->ptr.str = (char *)text;
Willy Tarreau8797c062007-05-07 00:55:35 +02009881 pattern->len = len;
9882 }
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009883 else {
9884 pattern->ptr.str = NULL;
9885 pattern->len = 0;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009886 }
Willy Tarreau8797c062007-05-07 00:55:35 +02009887 return 1;
9888}
9889
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009890/* This function fetches the method of current HTTP request and stores
9891 * it in the global pattern struct as a chunk. There are two possibilities :
9892 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
9893 * in <len> and <ptr> is NULL ;
9894 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
9895 * <len> to its length.
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01009896 * This is intended to be used with pat_match_meth() only.
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009897 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009898static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009899smp_fetch_meth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009900 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009901{
9902 int meth;
9903 struct http_txn *txn = l7;
9904
Willy Tarreau24e32d82012-04-23 23:55:44 +02009905 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009906
Willy Tarreau8797c062007-05-07 00:55:35 +02009907 meth = txn->meth;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009908 smp->type = SMP_T_METH;
9909 smp->data.meth.meth = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +02009910 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02009911 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
9912 /* ensure the indexes are not affected */
9913 return 0;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009914 smp->flags |= SMP_F_CONST;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009915 smp->data.meth.str.len = txn->req.sl.rq.m_l;
9916 smp->data.meth.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009917 }
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009918 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009919 return 1;
9920}
9921
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009922/* See above how the method is stored in the global pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009923static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill)
Willy Tarreau8797c062007-05-07 00:55:35 +02009924{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009925 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009926 struct pattern_list *lst;
9927 struct pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009928
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009929 list_for_each_entry(lst, &expr->patterns, list) {
9930 pattern = &lst->pat;
Willy Tarreau8797c062007-05-07 00:55:35 +02009931
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009932 /* well-known method */
9933 if (pattern->val.i != HTTP_METH_OTHER) {
9934 if (smp->data.meth.meth == pattern->val.i)
9935 return pattern;
9936 else
9937 continue;
9938 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009939
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009940 /* Other method, we must compare the strings */
9941 if (pattern->len != smp->data.meth.str.len)
9942 continue;
9943
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02009944 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Willy Tarreau4de2a942014-08-28 20:42:57 +02009945 if ((icase && strncasecmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) == 0) ||
9946 (!icase && strncmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) == 0))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009947 return pattern;
9948 }
9949 return NULL;
Willy Tarreau8797c062007-05-07 00:55:35 +02009950}
9951
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009952static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009953smp_fetch_rqver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009954 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009955{
9956 struct http_txn *txn = l7;
9957 char *ptr;
9958 int len;
9959
Willy Tarreauc0239e02012-04-16 14:42:55 +02009960 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009961
Willy Tarreau8797c062007-05-07 00:55:35 +02009962 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009963 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02009964
9965 while ((len-- > 0) && (*ptr++ != '/'));
9966 if (len <= 0)
9967 return 0;
9968
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009969 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009970 smp->data.str.str = ptr;
9971 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009972
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009973 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009974 return 1;
9975}
9976
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009977static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009978smp_fetch_stver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009979 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009980{
9981 struct http_txn *txn = l7;
9982 char *ptr;
9983 int len;
9984
Willy Tarreauc0239e02012-04-16 14:42:55 +02009985 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009986
Willy Tarreauf26b2522012-12-14 08:33:14 +01009987 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9988 return 0;
9989
Willy Tarreau8797c062007-05-07 00:55:35 +02009990 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009991 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009992
9993 while ((len-- > 0) && (*ptr++ != '/'));
9994 if (len <= 0)
9995 return 0;
9996
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009997 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009998 smp->data.str.str = ptr;
9999 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +020010000
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010001 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010002 return 1;
10003}
10004
10005/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010006static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010007smp_fetch_stcode(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010008 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +020010009{
10010 struct http_txn *txn = l7;
10011 char *ptr;
10012 int len;
10013
Willy Tarreauc0239e02012-04-16 14:42:55 +020010014 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010015
Willy Tarreauf26b2522012-12-14 08:33:14 +010010016 if (txn->rsp.msg_state < HTTP_MSG_BODY)
10017 return 0;
10018
Willy Tarreau8797c062007-05-07 00:55:35 +020010019 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010020 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +020010021
Willy Tarreauf853c462012-04-23 18:53:56 +020010022 smp->type = SMP_T_UINT;
10023 smp->data.uint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +020010024 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010025 return 1;
10026}
10027
10028/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010029static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +020010030smp_fetch_url(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010031 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +020010032{
10033 struct http_txn *txn = l7;
10034
Willy Tarreauc0239e02012-04-16 14:42:55 +020010035 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010036
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010037 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +020010038 smp->data.str.len = txn->req.sl.rq.u_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010039 smp->data.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010040 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010041 return 1;
10042}
10043
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010044static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +020010045smp_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010046 const struct arg *args, struct sample *smp, const char *kw)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010047{
10048 struct http_txn *txn = l7;
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010049 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010050
Willy Tarreauc0239e02012-04-16 14:42:55 +020010051 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010052
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010010053 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL);
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010054 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +010010055 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010056
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010057 smp->type = SMP_T_IPV4;
10058 smp->data.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
Willy Tarreau37406352012-04-23 16:16:37 +020010059 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010060 return 1;
10061}
10062
10063static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +020010064smp_fetch_url_port(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010065 const struct arg *args, struct sample *smp, const char *kw)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010066{
10067 struct http_txn *txn = l7;
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010068 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010069
Willy Tarreauc0239e02012-04-16 14:42:55 +020010070 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010071
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010010072 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL);
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010073 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
10074 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010075
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010076 smp->type = SMP_T_UINT;
10077 smp->data.uint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
Willy Tarreau21e5b0e2012-04-23 19:25:44 +020010078 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010079 return 1;
10080}
10081
Willy Tarreau185b5c42012-04-26 15:11:51 +020010082/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10083 * Accepts an optional argument of type string containing the header field name,
10084 * and an optional argument of type signed or unsigned integer to request an
10085 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010086 * headers are considered from the first one. It does not stop on commas and
10087 * returns full lines instead (useful for User-Agent or Date for example).
10088 */
10089static int
10090smp_fetch_fhdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010091 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010092{
10093 struct http_txn *txn = l7;
10094 struct hdr_idx *idx = &txn->hdr_idx;
10095 struct hdr_ctx *ctx = smp->ctx.a[0];
10096 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
10097 int occ = 0;
10098 const char *name_str = NULL;
10099 int name_len = 0;
10100
10101 if (!ctx) {
10102 /* first call */
10103 ctx = &static_hdr_ctx;
10104 ctx->idx = 0;
10105 smp->ctx.a[0] = ctx;
10106 }
10107
10108 if (args) {
10109 if (args[0].type != ARGT_STR)
10110 return 0;
10111 name_str = args[0].data.str.str;
10112 name_len = args[0].data.str.len;
10113
10114 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
10115 occ = args[1].data.uint;
10116 }
10117
10118 CHECK_HTTP_MESSAGE_FIRST();
10119
10120 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
10121 /* search for header from the beginning */
10122 ctx->idx = 0;
10123
10124 if (!occ && !(opt & SMP_OPT_ITERATE))
10125 /* no explicit occurrence and single fetch => last header by default */
10126 occ = -1;
10127
10128 if (!occ)
10129 /* prepare to report multiple occurrences for ACL fetches */
10130 smp->flags |= SMP_F_NOT_LAST;
10131
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010132 smp->type = SMP_T_STR;
10133 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010134 if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len))
10135 return 1;
10136
10137 smp->flags &= ~SMP_F_NOT_LAST;
10138 return 0;
10139}
10140
10141/* 6. Check on HTTP header count. The number of occurrences is returned.
10142 * Accepts exactly 1 argument of type string. It does not stop on commas and
10143 * returns full lines instead (useful for User-Agent or Date for example).
10144 */
10145static int
10146smp_fetch_fhdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010147 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010148{
10149 struct http_txn *txn = l7;
10150 struct hdr_idx *idx = &txn->hdr_idx;
10151 struct hdr_ctx ctx;
10152 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
10153 int cnt;
10154
10155 if (!args || args->type != ARGT_STR)
10156 return 0;
10157
10158 CHECK_HTTP_MESSAGE_FIRST();
10159
10160 ctx.idx = 0;
10161 cnt = 0;
10162 while (http_find_full_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx))
10163 cnt++;
10164
10165 smp->type = SMP_T_UINT;
10166 smp->data.uint = cnt;
10167 smp->flags = SMP_F_VOL_HDR;
10168 return 1;
10169}
10170
10171/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10172 * Accepts an optional argument of type string containing the header field name,
10173 * and an optional argument of type signed or unsigned integer to request an
10174 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau185b5c42012-04-26 15:11:51 +020010175 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010176 */
Willy Tarreau33a7e692007-06-10 19:45:56 +020010177static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010178smp_fetch_hdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010179 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010180{
10181 struct http_txn *txn = l7;
10182 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010183 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010184 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010185 int occ = 0;
10186 const char *name_str = NULL;
10187 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010188
Willy Tarreaua890d072013-04-02 12:01:06 +020010189 if (!ctx) {
10190 /* first call */
10191 ctx = &static_hdr_ctx;
10192 ctx->idx = 0;
Willy Tarreauffb6f082013-04-02 23:16:53 +020010193 smp->ctx.a[0] = ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010194 }
10195
Willy Tarreau185b5c42012-04-26 15:11:51 +020010196 if (args) {
10197 if (args[0].type != ARGT_STR)
10198 return 0;
10199 name_str = args[0].data.str.str;
10200 name_len = args[0].data.str.len;
10201
10202 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
10203 occ = args[1].data.uint;
10204 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010205
Willy Tarreaue333ec92012-04-16 16:26:40 +020010206 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +020010207
Willy Tarreau185b5c42012-04-26 15:11:51 +020010208 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010209 /* search for header from the beginning */
10210 ctx->idx = 0;
10211
Willy Tarreau185b5c42012-04-26 15:11:51 +020010212 if (!occ && !(opt & SMP_OPT_ITERATE))
10213 /* no explicit occurrence and single fetch => last header by default */
10214 occ = -1;
10215
10216 if (!occ)
10217 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +020010218 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +010010219
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010220 smp->type = SMP_T_STR;
10221 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010222 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 +020010223 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010224
Willy Tarreau37406352012-04-23 16:16:37 +020010225 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010226 return 0;
10227}
10228
Willy Tarreauc11416f2007-06-17 16:58:38 +020010229/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +020010230 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010231 */
10232static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010233smp_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010234 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010235{
10236 struct http_txn *txn = l7;
10237 struct hdr_idx *idx = &txn->hdr_idx;
10238 struct hdr_ctx ctx;
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010239 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010240 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +020010241
Willy Tarreau24e32d82012-04-23 23:55:44 +020010242 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010243 return 0;
10244
Willy Tarreaue333ec92012-04-16 16:26:40 +020010245 CHECK_HTTP_MESSAGE_FIRST();
10246
Willy Tarreau33a7e692007-06-10 19:45:56 +020010247 ctx.idx = 0;
10248 cnt = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010249 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 +020010250 cnt++;
10251
Willy Tarreauf853c462012-04-23 18:53:56 +020010252 smp->type = SMP_T_UINT;
10253 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010254 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010255 return 1;
10256}
10257
Willy Tarreau185b5c42012-04-26 15:11:51 +020010258/* Fetch an HTTP header's integer value. The integer value is returned. It
10259 * takes a mandatory argument of type string and an optional one of type int
10260 * to designate a specific occurrence. It returns an unsigned integer, which
10261 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +020010262 */
10263static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010264smp_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010265 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010266{
Willy Tarreauef38c392013-07-22 16:29:32 +020010267 int ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw);
Willy Tarreaue333ec92012-04-16 16:26:40 +020010268
Willy Tarreauf853c462012-04-23 18:53:56 +020010269 if (ret > 0) {
10270 smp->type = SMP_T_UINT;
10271 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
10272 }
Willy Tarreau33a7e692007-06-10 19:45:56 +020010273
Willy Tarreaud53e2422012-04-16 17:21:11 +020010274 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010275}
10276
Cyril Bonté69fa9922012-10-25 00:01:06 +020010277/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
10278 * and an optional one of type int to designate a specific occurrence.
10279 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +020010280 */
10281static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010282smp_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010283 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau106f9792009-09-19 07:54:16 +020010284{
Willy Tarreaud53e2422012-04-16 17:21:11 +020010285 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010286
Willy Tarreauef38c392013-07-22 16:29:32 +020010287 while ((ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw)) > 0) {
Cyril Bonté69fa9922012-10-25 00:01:06 +020010288 if (url2ipv4((char *)smp->data.str.str, &smp->data.ipv4)) {
10289 smp->type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +020010290 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010291 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +010010292 struct chunk *temp = get_trash_chunk();
Cyril Bonté69fa9922012-10-25 00:01:06 +020010293 if (smp->data.str.len < temp->size - 1) {
10294 memcpy(temp->str, smp->data.str.str, smp->data.str.len);
10295 temp->str[smp->data.str.len] = '\0';
10296 if (inet_pton(AF_INET6, temp->str, &smp->data.ipv6)) {
10297 smp->type = SMP_T_IPV6;
10298 break;
10299 }
10300 }
10301 }
10302
Willy Tarreaud53e2422012-04-16 17:21:11 +020010303 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +020010304 if (!(smp->flags & SMP_F_NOT_LAST))
10305 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +020010306 }
Willy Tarreaud53e2422012-04-16 17:21:11 +020010307 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +020010308}
10309
Willy Tarreau737b0c12007-06-10 21:28:46 +020010310/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
10311 * the first '/' after the possible hostname, and ends before the possible '?'.
10312 */
10313static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +020010314smp_fetch_path(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010315 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010316{
10317 struct http_txn *txn = l7;
10318 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010319
Willy Tarreauc0239e02012-04-16 14:42:55 +020010320 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010321
Willy Tarreau9b28e032012-10-12 23:49:43 +020010322 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +010010323 ptr = http_get_path(txn);
10324 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010325 return 0;
10326
10327 /* OK, we got the '/' ! */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010328 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +020010329 smp->data.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010330
10331 while (ptr < end && *ptr != '?')
10332 ptr++;
10333
Willy Tarreauf853c462012-04-23 18:53:56 +020010334 smp->data.str.len = ptr - smp->data.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010335 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010336 return 1;
10337}
10338
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010339/* This produces a concatenation of the first occurrence of the Host header
10340 * followed by the path component if it begins with a slash ('/'). This means
10341 * that '*' will not be added, resulting in exactly the first Host entry.
10342 * If no Host header is found, then the path is returned as-is. The returned
10343 * value is stored in the trash so it does not need to be marked constant.
Willy Tarreaub169eba2013-12-16 15:14:43 +010010344 * The returned sample is of type string.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010345 */
10346static int
10347smp_fetch_base(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010348 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010349{
10350 struct http_txn *txn = l7;
10351 char *ptr, *end, *beg;
10352 struct hdr_ctx ctx;
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010353 struct chunk *temp;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010354
10355 CHECK_HTTP_MESSAGE_FIRST();
10356
10357 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010358 if (!http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx) || !ctx.vlen)
Willy Tarreauef38c392013-07-22 16:29:32 +020010359 return smp_fetch_path(px, l4, l7, opt, args, smp, kw);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010360
10361 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010362 temp = get_trash_chunk();
10363 memcpy(temp->str, ctx.line + ctx.val, ctx.vlen);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010364 smp->type = SMP_T_STR;
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010365 smp->data.str.str = temp->str;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010366 smp->data.str.len = ctx.vlen;
10367
10368 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010369 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010370 beg = http_get_path(txn);
10371 if (!beg)
10372 beg = end;
10373
10374 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10375
10376 if (beg < ptr && *beg == '/') {
10377 memcpy(smp->data.str.str + smp->data.str.len, beg, ptr - beg);
10378 smp->data.str.len += ptr - beg;
10379 }
10380
10381 smp->flags = SMP_F_VOL_1ST;
10382 return 1;
10383}
10384
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010385/* This produces a 32-bit hash of the concatenation of the first occurrence of
10386 * the Host header followed by the path component if it begins with a slash ('/').
10387 * This means that '*' will not be added, resulting in exactly the first Host
10388 * entry. If no Host header is found, then the path is used. The resulting value
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010389 * is hashed using the path hash followed by a full avalanche hash and provides a
10390 * 32-bit integer value. This fetch is useful for tracking per-path activity on
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010391 * high-traffic sites without having to store whole paths.
10392 */
Thierry FOURNIER055b9d52014-07-15 16:11:07 +020010393int
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010394smp_fetch_base32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010395 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010396{
10397 struct http_txn *txn = l7;
10398 struct hdr_ctx ctx;
10399 unsigned int hash = 0;
10400 char *ptr, *beg, *end;
10401 int len;
10402
10403 CHECK_HTTP_MESSAGE_FIRST();
10404
10405 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010406 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010407 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10408 ptr = ctx.line + ctx.val;
10409 len = ctx.vlen;
10410 while (len--)
10411 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10412 }
10413
10414 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010415 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010416 beg = http_get_path(txn);
10417 if (!beg)
10418 beg = end;
10419
10420 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10421
10422 if (beg < ptr && *beg == '/') {
10423 while (beg < ptr)
10424 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10425 }
10426 hash = full_hash(hash);
10427
10428 smp->type = SMP_T_UINT;
10429 smp->data.uint = hash;
10430 smp->flags = SMP_F_VOL_1ST;
10431 return 1;
10432}
10433
Willy Tarreau4a550602012-12-09 14:53:32 +010010434/* This concatenates the source address with the 32-bit hash of the Host and
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010435 * path as returned by smp_fetch_base32(). The idea is to have per-source and
10436 * per-path counters. The result is a binary block from 8 to 20 bytes depending
10437 * on the source address length. The path hash is stored before the address so
Willy Tarreau4a550602012-12-09 14:53:32 +010010438 * that in environments where IPv6 is insignificant, truncating the output to
10439 * 8 bytes would still work.
10440 */
10441static int
10442smp_fetch_base32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010443 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau4a550602012-12-09 14:53:32 +010010444{
Willy Tarreau47ca5452012-12-23 20:22:19 +010010445 struct chunk *temp;
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010446 struct connection *cli_conn = objt_conn(l4->si[0].end);
10447
10448 if (!cli_conn)
10449 return 0;
Willy Tarreau4a550602012-12-09 14:53:32 +010010450
Willy Tarreauef38c392013-07-22 16:29:32 +020010451 if (!smp_fetch_base32(px, l4, l7, opt, args, smp, kw))
Willy Tarreau4a550602012-12-09 14:53:32 +010010452 return 0;
10453
Willy Tarreau47ca5452012-12-23 20:22:19 +010010454 temp = get_trash_chunk();
Willy Tarreau5ad6e1d2014-07-15 21:34:06 +020010455 *(unsigned int *)temp->str = htonl(smp->data.uint);
10456 temp->len += sizeof(unsigned int);
Willy Tarreau4a550602012-12-09 14:53:32 +010010457
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010458 switch (cli_conn->addr.from.ss_family) {
Willy Tarreau4a550602012-12-09 14:53:32 +010010459 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010460 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Willy Tarreau4a550602012-12-09 14:53:32 +010010461 temp->len += 4;
10462 break;
10463 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010464 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Willy Tarreau4a550602012-12-09 14:53:32 +010010465 temp->len += 16;
10466 break;
10467 default:
10468 return 0;
10469 }
10470
10471 smp->data.str = *temp;
10472 smp->type = SMP_T_BIN;
10473 return 1;
10474}
10475
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010476/* Extracts the query string, which comes after the question mark '?'. If no
10477 * question mark is found, nothing is returned. Otherwise it returns a sample
10478 * of type string carrying the whole query string.
10479 */
10480static int
10481smp_fetch_query(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10482 const struct arg *args, struct sample *smp, const char *kw)
10483{
10484 struct http_txn *txn = l7;
10485 char *ptr, *end;
10486
10487 CHECK_HTTP_MESSAGE_FIRST();
10488
10489 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
10490 end = ptr + txn->req.sl.rq.u_l;
10491
10492 /* look up the '?' */
10493 do {
10494 if (ptr == end)
10495 return 0;
10496 } while (*ptr++ != '?');
10497
10498 smp->type = SMP_T_STR;
10499 smp->data.str.str = ptr;
10500 smp->data.str.len = end - ptr;
10501 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
10502 return 1;
10503}
10504
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010505static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010506smp_fetch_proto_http(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010507 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010508{
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010509 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
10510 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
10511 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010512
Willy Tarreau24e32d82012-04-23 23:55:44 +020010513 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010514
Willy Tarreauf853c462012-04-23 18:53:56 +020010515 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020010516 smp->data.uint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010517 return 1;
10518}
10519
Willy Tarreau7f18e522010-10-22 20:04:13 +020010520/* return a valid test if the current request is the first one on the connection */
10521static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010522smp_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010523 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau7f18e522010-10-22 20:04:13 +020010524{
10525 if (!s)
10526 return 0;
10527
Willy Tarreauf853c462012-04-23 18:53:56 +020010528 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020010529 smp->data.uint = !(s->txn.flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +020010530 return 1;
10531}
10532
Willy Tarreau34db1082012-04-19 17:16:54 +020010533/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010534static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010535smp_fetch_http_auth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010536 const struct arg *args, struct sample *smp, const char *kw)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010537{
10538
Willy Tarreau24e32d82012-04-23 23:55:44 +020010539 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010540 return 0;
10541
Willy Tarreauc0239e02012-04-16 14:42:55 +020010542 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010543
Willy Tarreauc0239e02012-04-16 14:42:55 +020010544 if (!get_http_auth(l4))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010545 return 0;
10546
Willy Tarreauf853c462012-04-23 18:53:56 +020010547 smp->type = SMP_T_BOOL;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010548 smp->data.uint = check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010549 return 1;
10550}
Willy Tarreau8797c062007-05-07 00:55:35 +020010551
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010552/* Accepts exactly 1 argument of type userlist */
10553static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010554smp_fetch_http_auth_grp(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010555 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010556{
10557
10558 if (!args || args->type != ARGT_USR)
10559 return 0;
10560
10561 CHECK_HTTP_MESSAGE_FIRST();
10562
10563 if (!get_http_auth(l4))
10564 return 0;
10565
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010566 /* if the user does not belong to the userlist or has a wrong password,
10567 * report that it unconditionally does not match. Otherwise we return
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010568 * a string containing the username.
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010569 */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010570 if (!check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass))
10571 return 0;
10572
10573 /* pat_match_auth() will need the user list */
10574 smp->ctx.a[0] = args->data.usr;
10575
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010576 smp->type = SMP_T_STR;
10577 smp->flags = SMP_F_CONST;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010578 smp->data.str.str = l4->txn.auth.user;
10579 smp->data.str.len = strlen(l4->txn.auth.user);
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010580
10581 return 1;
10582}
10583
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010584/* Try to find the next occurrence of a cookie name in a cookie header value.
10585 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
10586 * the cookie value is returned into *value and *value_l, and the function
10587 * returns a pointer to the next pointer to search from if the value was found.
10588 * Otherwise if the cookie was not found, NULL is returned and neither value
10589 * nor value_l are touched. The input <hdr> string should first point to the
10590 * header's value, and the <hdr_end> pointer must point to the first character
10591 * not part of the value. <list> must be non-zero if value may represent a list
10592 * of values (cookie headers). This makes it faster to abort parsing when no
10593 * list is expected.
10594 */
10595static char *
10596extract_cookie_value(char *hdr, const char *hdr_end,
10597 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +020010598 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010599{
10600 char *equal, *att_end, *att_beg, *val_beg, *val_end;
10601 char *next;
10602
10603 /* we search at least a cookie name followed by an equal, and more
10604 * generally something like this :
10605 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
10606 */
10607 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
10608 /* Iterate through all cookies on this line */
10609
10610 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
10611 att_beg++;
10612
10613 /* find att_end : this is the first character after the last non
10614 * space before the equal. It may be equal to hdr_end.
10615 */
10616 equal = att_end = att_beg;
10617
10618 while (equal < hdr_end) {
10619 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
10620 break;
10621 if (http_is_spht[(unsigned char)*equal++])
10622 continue;
10623 att_end = equal;
10624 }
10625
10626 /* here, <equal> points to '=', a delimitor or the end. <att_end>
10627 * is between <att_beg> and <equal>, both may be identical.
10628 */
10629
10630 /* look for end of cookie if there is an equal sign */
10631 if (equal < hdr_end && *equal == '=') {
10632 /* look for the beginning of the value */
10633 val_beg = equal + 1;
10634 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
10635 val_beg++;
10636
10637 /* find the end of the value, respecting quotes */
10638 next = find_cookie_value_end(val_beg, hdr_end);
10639
10640 /* make val_end point to the first white space or delimitor after the value */
10641 val_end = next;
10642 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
10643 val_end--;
10644 } else {
10645 val_beg = val_end = next = equal;
10646 }
10647
10648 /* We have nothing to do with attributes beginning with '$'. However,
10649 * they will automatically be removed if a header before them is removed,
10650 * since they're supposed to be linked together.
10651 */
10652 if (*att_beg == '$')
10653 continue;
10654
10655 /* Ignore cookies with no equal sign */
10656 if (equal == next)
10657 continue;
10658
10659 /* Now we have the cookie name between att_beg and att_end, and
10660 * its value between val_beg and val_end.
10661 */
10662
10663 if (att_end - att_beg == cookie_name_l &&
10664 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
10665 /* let's return this value and indicate where to go on from */
10666 *value = val_beg;
10667 *value_l = val_end - val_beg;
10668 return next + 1;
10669 }
10670
10671 /* Set-Cookie headers only have the name in the first attr=value part */
10672 if (!list)
10673 break;
10674 }
10675
10676 return NULL;
10677}
10678
William Lallemanda43ba4e2014-01-28 18:14:25 +010010679/* Fetch a captured HTTP request header. The index is the position of
10680 * the "capture" option in the configuration file
10681 */
10682static int
10683smp_fetch_capture_header_req(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10684 const struct arg *args, struct sample *smp, const char *kw)
10685{
10686 struct proxy *fe = l4->fe;
10687 struct http_txn *txn = l7;
10688 int idx;
10689
10690 if (!args || args->type != ARGT_UINT)
10691 return 0;
10692
10693 idx = args->data.uint;
10694
10695 if (idx > (fe->nb_req_cap - 1) || txn->req.cap == NULL || txn->req.cap[idx] == NULL)
10696 return 0;
10697
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010698 smp->type = SMP_T_STR;
10699 smp->flags |= SMP_F_CONST;
William Lallemanda43ba4e2014-01-28 18:14:25 +010010700 smp->data.str.str = txn->req.cap[idx];
10701 smp->data.str.len = strlen(txn->req.cap[idx]);
10702
10703 return 1;
10704}
10705
10706/* Fetch a captured HTTP response header. The index is the position of
10707 * the "capture" option in the configuration file
10708 */
10709static int
10710smp_fetch_capture_header_res(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10711 const struct arg *args, struct sample *smp, const char *kw)
10712{
10713 struct proxy *fe = l4->fe;
10714 struct http_txn *txn = l7;
10715 int idx;
10716
10717 if (!args || args->type != ARGT_UINT)
10718 return 0;
10719
10720 idx = args->data.uint;
10721
10722 if (idx > (fe->nb_rsp_cap - 1) || txn->rsp.cap == NULL || txn->rsp.cap[idx] == NULL)
10723 return 0;
10724
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010725 smp->type = SMP_T_STR;
10726 smp->flags |= SMP_F_CONST;
William Lallemanda43ba4e2014-01-28 18:14:25 +010010727 smp->data.str.str = txn->rsp.cap[idx];
10728 smp->data.str.len = strlen(txn->rsp.cap[idx]);
10729
10730 return 1;
10731}
10732
William Lallemand65ad6e12014-01-31 15:08:02 +010010733/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
10734static int
10735smp_fetch_capture_req_method(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10736 const struct arg *args, struct sample *smp, const char *kw)
10737{
10738 struct chunk *temp;
10739 struct http_txn *txn = l7;
William Lallemand96a77852014-02-05 00:30:02 +010010740 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010010741
10742 if (!txn->uri)
10743 return 0;
10744
William Lallemand96a77852014-02-05 00:30:02 +010010745 ptr = txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010010746
William Lallemand96a77852014-02-05 00:30:02 +010010747 while (*ptr != ' ' && *ptr != '\0') /* find first space */
10748 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010749
William Lallemand96a77852014-02-05 00:30:02 +010010750 temp = get_trash_chunk();
10751 temp->str = txn->uri;
10752 temp->len = ptr - txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010010753 smp->data.str = *temp;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010754 smp->type = SMP_T_STR;
10755 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010756
10757 return 1;
10758
10759}
10760
10761/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
10762static int
10763smp_fetch_capture_req_uri(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10764 const struct arg *args, struct sample *smp, const char *kw)
10765{
10766 struct chunk *temp;
10767 struct http_txn *txn = l7;
10768 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010010769
10770 if (!txn->uri)
10771 return 0;
William Lallemand96a77852014-02-05 00:30:02 +010010772
William Lallemand65ad6e12014-01-31 15:08:02 +010010773 ptr = txn->uri;
10774
10775 while (*ptr != ' ' && *ptr != '\0') /* find first space */
10776 ptr++;
William Lallemand96a77852014-02-05 00:30:02 +010010777
William Lallemand65ad6e12014-01-31 15:08:02 +010010778 if (!*ptr)
10779 return 0;
10780
10781 ptr++; /* skip the space */
10782
10783 temp = get_trash_chunk();
William Lallemand96a77852014-02-05 00:30:02 +010010784 ptr = temp->str = http_get_path_from_string(ptr);
William Lallemand65ad6e12014-01-31 15:08:02 +010010785 if (!ptr)
10786 return 0;
10787 while (*ptr != ' ' && *ptr != '\0') /* find space after URI */
10788 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010789
10790 smp->data.str = *temp;
William Lallemand96a77852014-02-05 00:30:02 +010010791 smp->data.str.len = ptr - temp->str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010792 smp->type = SMP_T_STR;
10793 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010794
10795 return 1;
10796}
10797
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010798/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
10799 * as a string (either "HTTP/1.0" or "HTTP/1.1").
10800 */
10801static int
10802smp_fetch_capture_req_ver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10803 const struct arg *args, struct sample *smp, const char *kw)
10804{
10805 struct http_txn *txn = l7;
10806
10807 if (txn->req.msg_state < HTTP_MSG_HDR_FIRST)
10808 return 0;
10809
10810 if (txn->req.flags & HTTP_MSGF_VER_11)
10811 smp->data.str.str = "HTTP/1.1";
10812 else
10813 smp->data.str.str = "HTTP/1.0";
10814
10815 smp->data.str.len = 8;
10816 smp->type = SMP_T_STR;
10817 smp->flags = SMP_F_CONST;
10818 return 1;
10819
10820}
10821
10822/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
10823 * as a string (either "HTTP/1.0" or "HTTP/1.1").
10824 */
10825static int
10826smp_fetch_capture_res_ver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10827 const struct arg *args, struct sample *smp, const char *kw)
10828{
10829 struct http_txn *txn = l7;
10830
10831 if (txn->rsp.msg_state < HTTP_MSG_HDR_FIRST)
10832 return 0;
10833
10834 if (txn->rsp.flags & HTTP_MSGF_VER_11)
10835 smp->data.str.str = "HTTP/1.1";
10836 else
10837 smp->data.str.str = "HTTP/1.0";
10838
10839 smp->data.str.len = 8;
10840 smp->type = SMP_T_STR;
10841 smp->flags = SMP_F_CONST;
10842 return 1;
10843
10844}
10845
William Lallemand65ad6e12014-01-31 15:08:02 +010010846
Willy Tarreaue333ec92012-04-16 16:26:40 +020010847/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +020010848 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
Willy Tarreaua890d072013-04-02 12:01:06 +020010849 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +020010850 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +020010851 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +020010852 * Accepts exactly 1 argument of type string. If the input options indicate
10853 * that no iterating is desired, then only last value is fetched if any.
William Lallemand07c8b242014-05-02 17:11:07 +020010854 * The returned sample is of type CSTR. Can be used to parse cookies in other
10855 * files.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010856 */
William Lallemand07c8b242014-05-02 17:11:07 +020010857int smp_fetch_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010858 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010859{
10860 struct http_txn *txn = l7;
10861 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010862 struct hdr_ctx *ctx = smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +020010863 const struct http_msg *msg;
10864 const char *hdr_name;
10865 int hdr_name_len;
10866 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +020010867 int occ = 0;
10868 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010869
Willy Tarreau24e32d82012-04-23 23:55:44 +020010870 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010871 return 0;
10872
Willy Tarreaua890d072013-04-02 12:01:06 +020010873 if (!ctx) {
10874 /* first call */
10875 ctx = &static_hdr_ctx;
10876 ctx->idx = 0;
10877 smp->ctx.a[2] = ctx;
10878 }
10879
Willy Tarreaue333ec92012-04-16 16:26:40 +020010880 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010881
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010882 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010883 msg = &txn->req;
10884 hdr_name = "Cookie";
10885 hdr_name_len = 6;
10886 } else {
10887 msg = &txn->rsp;
10888 hdr_name = "Set-Cookie";
10889 hdr_name_len = 10;
10890 }
10891
Willy Tarreau28376d62012-04-26 21:26:10 +020010892 if (!occ && !(opt & SMP_OPT_ITERATE))
10893 /* no explicit occurrence and single fetch => last cookie by default */
10894 occ = -1;
10895
10896 /* OK so basically here, either we want only one value and it's the
10897 * last one, or we want to iterate over all of them and we fetch the
10898 * next one.
10899 */
10900
Willy Tarreau9b28e032012-10-12 23:49:43 +020010901 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +020010902 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010903 /* search for the header from the beginning, we must first initialize
10904 * the search parameters.
10905 */
Willy Tarreau37406352012-04-23 16:16:37 +020010906 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010907 ctx->idx = 0;
10908 }
10909
Willy Tarreau28376d62012-04-26 21:26:10 +020010910 smp->flags |= SMP_F_VOL_HDR;
10911
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010912 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +020010913 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
10914 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010915 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
10916 goto out;
10917
Willy Tarreau24e32d82012-04-23 23:55:44 +020010918 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010919 continue;
10920
Willy Tarreau37406352012-04-23 16:16:37 +020010921 smp->ctx.a[0] = ctx->line + ctx->val;
10922 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010923 }
10924
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010925 smp->type = SMP_T_STR;
10926 smp->flags |= SMP_F_CONST;
Willy Tarreau37406352012-04-23 16:16:37 +020010927 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +020010928 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010929 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +020010930 &smp->data.str.str,
10931 &smp->data.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +020010932 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +020010933 found = 1;
10934 if (occ >= 0) {
10935 /* one value was returned into smp->data.str.{str,len} */
10936 smp->flags |= SMP_F_NOT_LAST;
10937 return 1;
10938 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010939 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010940 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010941 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010942 /* all cookie headers and values were scanned. If we're looking for the
10943 * last occurrence, we may return it now.
10944 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010945 out:
Willy Tarreau37406352012-04-23 16:16:37 +020010946 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +020010947 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010948}
10949
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010950/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +020010951 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreaub169eba2013-12-16 15:14:43 +010010952 * multiple cookies may be parsed on the same line. The returned sample is of
10953 * type UINT. Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010954 */
10955static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010956smp_fetch_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010957 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010958{
10959 struct http_txn *txn = l7;
10960 struct hdr_idx *idx = &txn->hdr_idx;
10961 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010962 const struct http_msg *msg;
10963 const char *hdr_name;
10964 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010965 int cnt;
10966 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010967 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010968
Willy Tarreau24e32d82012-04-23 23:55:44 +020010969 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010970 return 0;
10971
Willy Tarreaue333ec92012-04-16 16:26:40 +020010972 CHECK_HTTP_MESSAGE_FIRST();
10973
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010974 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010975 msg = &txn->req;
10976 hdr_name = "Cookie";
10977 hdr_name_len = 6;
10978 } else {
10979 msg = &txn->rsp;
10980 hdr_name = "Set-Cookie";
10981 hdr_name_len = 10;
10982 }
10983
Willy Tarreau9b28e032012-10-12 23:49:43 +020010984 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +020010985 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010986 ctx.idx = 0;
10987 cnt = 0;
10988
10989 while (1) {
10990 /* Note: val_beg == NULL every time we need to fetch a new header */
10991 if (!val_beg) {
10992 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
10993 break;
10994
Willy Tarreau24e32d82012-04-23 23:55:44 +020010995 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010996 continue;
10997
10998 val_beg = ctx.line + ctx.val;
10999 val_end = val_beg + ctx.vlen;
11000 }
11001
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011002 smp->type = SMP_T_STR;
11003 smp->flags |= SMP_F_CONST;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011004 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +020011005 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020011006 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +020011007 &smp->data.str.str,
11008 &smp->data.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011009 cnt++;
11010 }
11011 }
11012
Willy Tarreaub169eba2013-12-16 15:14:43 +010011013 smp->type = SMP_T_UINT;
Willy Tarreauf853c462012-04-23 18:53:56 +020011014 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020011015 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011016 return 1;
11017}
11018
Willy Tarreau51539362012-05-08 12:46:28 +020011019/* Fetch an cookie's integer value. The integer value is returned. It
11020 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
11021 */
11022static int
11023smp_fetch_cookie_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020011024 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau51539362012-05-08 12:46:28 +020011025{
Willy Tarreauef38c392013-07-22 16:29:32 +020011026 int ret = smp_fetch_cookie(px, l4, l7, opt, args, smp, kw);
Willy Tarreau51539362012-05-08 12:46:28 +020011027
11028 if (ret > 0) {
11029 smp->type = SMP_T_UINT;
11030 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
11031 }
11032
11033 return ret;
11034}
11035
Willy Tarreau8797c062007-05-07 00:55:35 +020011036/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +020011037/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +020011038/************************************************************************/
11039
David Cournapeau16023ee2010-12-23 20:55:41 +090011040/*
11041 * Given a path string and its length, find the position of beginning of the
11042 * query string. Returns NULL if no query string is found in the path.
11043 *
11044 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
11045 *
11046 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
11047 */
bedis4c75cca2012-10-05 08:38:24 +020011048static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011049{
11050 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +020011051
bedis4c75cca2012-10-05 08:38:24 +020011052 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +090011053 return p ? p + 1 : NULL;
11054}
11055
bedis4c75cca2012-10-05 08:38:24 +020011056static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011057{
bedis4c75cca2012-10-05 08:38:24 +020011058 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +090011059}
11060
11061/*
11062 * Given a url parameter, find the starting position of the first occurence,
11063 * or NULL if the parameter is not found.
11064 *
11065 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
11066 * the function will return query_string+8.
11067 */
11068static char*
11069find_url_param_pos(char* query_string, size_t query_string_l,
bedis4c75cca2012-10-05 08:38:24 +020011070 char* url_param_name, size_t url_param_name_l,
11071 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011072{
11073 char *pos, *last;
11074
11075 pos = query_string;
11076 last = query_string + query_string_l - url_param_name_l - 1;
11077
11078 while (pos <= last) {
11079 if (pos[url_param_name_l] == '=') {
11080 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
11081 return pos;
11082 pos += url_param_name_l + 1;
11083 }
bedis4c75cca2012-10-05 08:38:24 +020011084 while (pos <= last && !is_param_delimiter(*pos, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090011085 pos++;
11086 pos++;
11087 }
11088 return NULL;
11089}
11090
11091/*
11092 * Given a url parameter name, returns its value and size into *value and
11093 * *value_l respectively, and returns non-zero. If the parameter is not found,
11094 * zero is returned and value/value_l are not touched.
11095 */
11096static int
11097find_url_param_value(char* path, size_t path_l,
11098 char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +020011099 char** value, int* value_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011100{
11101 char *query_string, *qs_end;
11102 char *arg_start;
11103 char *value_start, *value_end;
11104
bedis4c75cca2012-10-05 08:38:24 +020011105 query_string = find_param_list(path, path_l, delim);
David Cournapeau16023ee2010-12-23 20:55:41 +090011106 if (!query_string)
11107 return 0;
11108
11109 qs_end = path + path_l;
11110 arg_start = find_url_param_pos(query_string, qs_end - query_string,
bedis4c75cca2012-10-05 08:38:24 +020011111 url_param_name, url_param_name_l,
11112 delim);
David Cournapeau16023ee2010-12-23 20:55:41 +090011113 if (!arg_start)
11114 return 0;
11115
11116 value_start = arg_start + url_param_name_l + 1;
11117 value_end = value_start;
11118
bedis4c75cca2012-10-05 08:38:24 +020011119 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090011120 value_end++;
11121
11122 *value = value_start;
11123 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +010011124 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +090011125}
11126
11127static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011128smp_fetch_url_param(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020011129 const struct arg *args, struct sample *smp, const char *kw)
David Cournapeau16023ee2010-12-23 20:55:41 +090011130{
bedis4c75cca2012-10-05 08:38:24 +020011131 char delim = '?';
David Cournapeau16023ee2010-12-23 20:55:41 +090011132 struct http_txn *txn = l7;
11133 struct http_msg *msg = &txn->req;
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011134
bedis4c75cca2012-10-05 08:38:24 +020011135 if (!args || args[0].type != ARGT_STR ||
11136 (args[1].type && args[1].type != ARGT_STR))
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011137 return 0;
11138
11139 CHECK_HTTP_MESSAGE_FIRST();
David Cournapeau16023ee2010-12-23 20:55:41 +090011140
bedis4c75cca2012-10-05 08:38:24 +020011141 if (args[1].type)
11142 delim = *args[1].data.str.str;
11143
Willy Tarreau9b28e032012-10-12 23:49:43 +020011144 if (!find_url_param_value(msg->chn->buf->p + msg->sl.rq.u, msg->sl.rq.u_l,
bedis4c75cca2012-10-05 08:38:24 +020011145 args->data.str.str, args->data.str.len,
11146 &smp->data.str.str, &smp->data.str.len,
11147 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090011148 return 0;
11149
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011150 smp->type = SMP_T_STR;
11151 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
David Cournapeau16023ee2010-12-23 20:55:41 +090011152 return 1;
11153}
11154
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011155/* Return the signed integer value for the specified url parameter (see url_param
11156 * above).
11157 */
11158static int
11159smp_fetch_url_param_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020011160 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011161{
Willy Tarreauef38c392013-07-22 16:29:32 +020011162 int ret = smp_fetch_url_param(px, l4, l7, opt, args, smp, kw);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011163
11164 if (ret > 0) {
11165 smp->type = SMP_T_UINT;
11166 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
11167 }
11168
11169 return ret;
11170}
11171
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011172/* This produces a 32-bit hash of the concatenation of the first occurrence of
11173 * the Host header followed by the path component if it begins with a slash ('/').
11174 * This means that '*' will not be added, resulting in exactly the first Host
11175 * entry. If no Host header is found, then the path is used. The resulting value
11176 * is hashed using the url hash followed by a full avalanche hash and provides a
11177 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
11178 * high-traffic sites without having to store whole paths.
11179 * this differs from the base32 functions in that it includes the url parameters
11180 * as well as the path
11181 */
11182static int
11183smp_fetch_url32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreaue155ec22013-11-18 18:33:22 +010011184 const struct arg *args, struct sample *smp, const char *kw)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011185{
11186 struct http_txn *txn = l7;
11187 struct hdr_ctx ctx;
11188 unsigned int hash = 0;
11189 char *ptr, *beg, *end;
11190 int len;
11191
11192 CHECK_HTTP_MESSAGE_FIRST();
11193
11194 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020011195 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011196 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
11197 ptr = ctx.line + ctx.val;
11198 len = ctx.vlen;
11199 while (len--)
11200 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
11201 }
11202
11203 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020011204 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011205 beg = http_get_path(txn);
11206 if (!beg)
11207 beg = end;
11208
11209 for (ptr = beg; ptr < end ; ptr++);
11210
11211 if (beg < ptr && *beg == '/') {
11212 while (beg < ptr)
11213 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
11214 }
11215 hash = full_hash(hash);
11216
11217 smp->type = SMP_T_UINT;
11218 smp->data.uint = hash;
11219 smp->flags = SMP_F_VOL_1ST;
11220 return 1;
11221}
11222
11223/* This concatenates the source address with the 32-bit hash of the Host and
11224 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
11225 * per-url counters. The result is a binary block from 8 to 20 bytes depending
11226 * on the source address length. The URL hash is stored before the address so
11227 * that in environments where IPv6 is insignificant, truncating the output to
11228 * 8 bytes would still work.
11229 */
11230static int
11231smp_fetch_url32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreaue155ec22013-11-18 18:33:22 +010011232 const struct arg *args, struct sample *smp, const char *kw)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011233{
11234 struct chunk *temp;
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011235 struct connection *cli_conn = objt_conn(l4->si[0].end);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011236
Willy Tarreaue155ec22013-11-18 18:33:22 +010011237 if (!smp_fetch_url32(px, l4, l7, opt, args, smp, kw))
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011238 return 0;
11239
11240 temp = get_trash_chunk();
11241 memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint));
11242 temp->len += sizeof(smp->data.uint);
11243
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011244 switch (cli_conn->addr.from.ss_family) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011245 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011246 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011247 temp->len += 4;
11248 break;
11249 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011250 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011251 temp->len += 16;
11252 break;
11253 default:
11254 return 0;
11255 }
11256
11257 smp->data.str = *temp;
11258 smp->type = SMP_T_BIN;
11259 return 1;
11260}
11261
Willy Tarreau185b5c42012-04-26 15:11:51 +020011262/* This function is used to validate the arguments passed to any "hdr" fetch
11263 * keyword. These keywords support an optional positive or negative occurrence
11264 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
11265 * is assumed that the types are already the correct ones. Returns 0 on error,
11266 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
11267 * error message in case of error, that the caller is responsible for freeing.
11268 * The initial location must either be freeable or NULL.
11269 */
11270static int val_hdr(struct arg *arg, char **err_msg)
11271{
11272 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +020011273 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +020011274 return 0;
11275 }
11276 return 1;
11277}
11278
Willy Tarreau276fae92013-07-25 14:36:01 +020011279/* takes an UINT value on input supposed to represent the time since EPOCH,
11280 * adds an optional offset found in args[0] and emits a string representing
11281 * the date in RFC-1123/5322 format.
11282 */
11283static int sample_conv_http_date(const struct arg *args, struct sample *smp)
11284{
11285 const char day[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
11286 const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
11287 struct chunk *temp;
11288 struct tm *tm;
11289 time_t curr_date = smp->data.uint;
11290
11291 /* add offset */
11292 if (args && (args[0].type == ARGT_SINT || args[0].type == ARGT_UINT))
11293 curr_date += args[0].data.sint;
11294
11295 tm = gmtime(&curr_date);
11296
11297 temp = get_trash_chunk();
11298 temp->len = snprintf(temp->str, temp->size - temp->len,
11299 "%s, %02d %s %04d %02d:%02d:%02d GMT",
11300 day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year,
11301 tm->tm_hour, tm->tm_min, tm->tm_sec);
11302
11303 smp->data.str = *temp;
11304 smp->type = SMP_T_STR;
11305 return 1;
11306}
11307
Thierry FOURNIERad903512014-04-11 17:51:01 +020011308/* Match language range with language tag. RFC2616 14.4:
11309 *
11310 * A language-range matches a language-tag if it exactly equals
11311 * the tag, or if it exactly equals a prefix of the tag such
11312 * that the first tag character following the prefix is "-".
11313 *
11314 * Return 1 if the strings match, else return 0.
11315 */
11316static inline int language_range_match(const char *range, int range_len,
11317 const char *tag, int tag_len)
11318{
11319 const char *end = range + range_len;
11320 const char *tend = tag + tag_len;
11321 while (range < end) {
11322 if (*range == '-' && tag == tend)
11323 return 1;
11324 if (*range != *tag || tag == tend)
11325 return 0;
11326 range++;
11327 tag++;
11328 }
11329 /* Return true only if the last char of the tag is matched. */
11330 return tag == tend;
11331}
11332
11333/* Arguments: The list of expected value, the number of parts returned and the separator */
11334static int sample_conv_q_prefered(const struct arg *args, struct sample *smp)
11335{
11336 const char *al = smp->data.str.str;
11337 const char *end = al + smp->data.str.len;
11338 const char *token;
11339 int toklen;
11340 int qvalue;
11341 const char *str;
11342 const char *w;
11343 int best_q = 0;
11344
11345 /* Set the constant to the sample, because the output of the
11346 * function will be peek in the constant configuration string.
11347 */
11348 smp->flags |= SMP_F_CONST;
11349 smp->data.str.size = 0;
11350 smp->data.str.str = "";
11351 smp->data.str.len = 0;
11352
11353 /* Parse the accept language */
11354 while (1) {
11355
11356 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011357 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011358 al++;
11359 if (al >= end)
11360 break;
11361
11362 /* Start of the fisrt word. */
11363 token = al;
11364
11365 /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011366 while (al < end && *al != ';' && *al != ',' && !isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011367 al++;
11368 if (al == token)
11369 goto expect_comma;
11370
11371 /* Length of the token. */
11372 toklen = al - token;
11373 qvalue = 1000;
11374
11375 /* Check if the token exists in the list. If the token not exists,
11376 * jump to the next token.
11377 */
11378 str = args[0].data.str.str;
11379 w = str;
11380 while (1) {
11381 if (*str == ';' || *str == '\0') {
11382 if (language_range_match(token, toklen, w, str-w))
11383 goto look_for_q;
11384 if (*str == '\0')
11385 goto expect_comma;
11386 w = str + 1;
11387 }
11388 str++;
11389 }
11390 goto expect_comma;
11391
11392look_for_q:
11393
11394 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011395 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011396 al++;
11397 if (al >= end)
11398 goto process_value;
11399
11400 /* If ',' is found, process the result */
11401 if (*al == ',')
11402 goto process_value;
11403
11404 /* If the character is different from ';', look
11405 * for the end of the header part in best effort.
11406 */
11407 if (*al != ';')
11408 goto expect_comma;
11409
11410 /* Assumes that the char is ';', now expect "q=". */
11411 al++;
11412
11413 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011414 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011415 al++;
11416 if (al >= end)
11417 goto process_value;
11418
11419 /* Expect 'q'. If no 'q', continue in best effort */
11420 if (*al != 'q')
11421 goto process_value;
11422 al++;
11423
11424 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011425 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011426 al++;
11427 if (al >= end)
11428 goto process_value;
11429
11430 /* Expect '='. If no '=', continue in best effort */
11431 if (*al != '=')
11432 goto process_value;
11433 al++;
11434
11435 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011436 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011437 al++;
11438 if (al >= end)
11439 goto process_value;
11440
11441 /* Parse the q value. */
11442 qvalue = parse_qvalue(al, &al);
11443
11444process_value:
11445
11446 /* If the new q value is the best q value, then store the associated
11447 * language in the response. If qvalue is the biggest value (1000),
11448 * break the process.
11449 */
11450 if (qvalue > best_q) {
11451 smp->data.str.str = (char *)w;
11452 smp->data.str.len = str - w;
11453 if (qvalue >= 1000)
11454 break;
11455 best_q = qvalue;
11456 }
11457
11458expect_comma:
11459
11460 /* Expect comma or end. If the end is detected, quit the loop. */
11461 while (al < end && *al != ',')
11462 al++;
11463 if (al >= end)
11464 break;
11465
11466 /* Comma is found, jump it and restart the analyzer. */
11467 al++;
11468 }
11469
11470 /* Set default value if required. */
11471 if (smp->data.str.len == 0 && args[1].type == ARGT_STR) {
11472 smp->data.str.str = args[1].data.str.str;
11473 smp->data.str.len = args[1].data.str.len;
11474 }
11475
11476 /* Return true only if a matching language was found. */
11477 return smp->data.str.len != 0;
11478}
11479
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011480/* This function executes one of the set-{method,path,query,uri} actions. It
11481 * builds a string in the trash from the specified format string, then modifies
11482 * the relevant part of the request line accordingly. Then it updates various
11483 * pointers to the next elements which were moved, and the total buffer length.
11484 * It finds the action to be performed in p[2], previously filled by function
11485 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
11486 * error, though this can be revisited when this code is finally exploited.
11487 */
11488int http_action_set_req_line(struct http_req_rule *rule, struct proxy *px, struct session *s, struct http_txn *txn)
11489{
11490 char *cur_ptr, *cur_end;
11491 int offset;
11492 int delta;
11493
11494 chunk_reset(&trash);
11495
11496 /* prepare a '?' just in case we have to create a query string */
11497 trash.str[trash.len++] = '?';
11498 offset = 1;
11499 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, (struct list *)&rule->arg.act.p[0]);
11500
11501 switch (*(int *)&rule->arg.act.p[2]) {
11502 case 0: // method
11503 cur_ptr = s->req->buf->p;
11504 cur_end = cur_ptr + txn->req.sl.rq.m_l;
11505
11506 /* adjust req line offsets and lengths */
11507 delta = trash.len - offset - (cur_end - cur_ptr);
11508 txn->req.sl.rq.m_l += delta;
11509 txn->req.sl.rq.u += delta;
11510 txn->req.sl.rq.v += delta;
11511 break;
11512
11513 case 1: // path
11514 cur_ptr = http_get_path(txn);
11515 if (!cur_ptr)
11516 cur_ptr = s->req->buf->p + txn->req.sl.rq.u;
11517
11518 cur_end = cur_ptr;
11519 while (cur_end < s->req->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l && *cur_end != '?')
11520 cur_end++;
11521
11522 /* adjust req line offsets and lengths */
11523 delta = trash.len - offset - (cur_end - cur_ptr);
11524 txn->req.sl.rq.u_l += delta;
11525 txn->req.sl.rq.v += delta;
11526 break;
11527
11528 case 2: // query
11529 cur_ptr = s->req->buf->p + txn->req.sl.rq.u;
11530 cur_end = cur_ptr + txn->req.sl.rq.u_l;
11531 while (cur_ptr < cur_end && *cur_ptr != '?')
11532 cur_ptr++;
11533
11534 /* skip the question mark or indicate that we must insert it
11535 * (but only if the format string is not empty then).
11536 */
11537 if (cur_ptr < cur_end)
11538 cur_ptr++;
11539 else if (trash.len > 1)
11540 offset = 0;
11541
11542 /* adjust req line offsets and lengths */
11543 delta = trash.len - offset - (cur_end - cur_ptr);
11544 txn->req.sl.rq.u_l += delta;
11545 txn->req.sl.rq.v += delta;
11546 break;
11547
11548 case 3: // uri
11549 cur_ptr = s->req->buf->p + txn->req.sl.rq.u;
11550 cur_end = cur_ptr + txn->req.sl.rq.u_l;
11551
11552 /* adjust req line offsets and lengths */
11553 delta = trash.len - offset - (cur_end - cur_ptr);
11554 txn->req.sl.rq.u_l += delta;
11555 txn->req.sl.rq.v += delta;
11556 break;
11557
11558 default:
11559 return -1;
11560 }
11561
11562 /* commit changes and adjust end of message */
11563 delta = buffer_replace2(s->req->buf, cur_ptr, cur_end, trash.str + offset, trash.len - offset);
11564 http_msg_move_end(&txn->req, delta);
11565 return 0;
11566}
11567
11568/* parse an http-request action among :
11569 * set-method
11570 * set-path
11571 * set-query
11572 * set-uri
11573 *
11574 * All of them accept a single argument of type string representing a log-format.
11575 * The resulting rule makes use of arg->act.p[0..1] to store the log-format list
11576 * head, and p[2] to store the action as an int (0=method, 1=path, 2=query, 3=uri).
11577 * It returns 0 on success, < 0 on error.
11578 */
11579int parse_set_req_line(const char **args, int *orig_arg, struct proxy *px, struct http_req_rule *rule, char **err)
11580{
11581 int cur_arg = *orig_arg;
11582
11583 rule->action = HTTP_REQ_ACT_CUSTOM_CONT;
11584
11585 switch (args[0][4]) {
11586 case 'm' :
11587 *(int *)&rule->arg.act.p[2] = 0;
11588 rule->action_ptr = http_action_set_req_line;
11589 break;
11590 case 'p' :
11591 *(int *)&rule->arg.act.p[2] = 1;
11592 rule->action_ptr = http_action_set_req_line;
11593 break;
11594 case 'q' :
11595 *(int *)&rule->arg.act.p[2] = 2;
11596 rule->action_ptr = http_action_set_req_line;
11597 break;
11598 case 'u' :
11599 *(int *)&rule->arg.act.p[2] = 3;
11600 rule->action_ptr = http_action_set_req_line;
11601 break;
11602 default:
11603 memprintf(err, "internal error: unhandled action '%s'", args[0]);
11604 return -1;
11605 }
11606
11607 if (!*args[cur_arg] ||
11608 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
11609 memprintf(err, "expects exactly 1 argument <format>");
11610 return -1;
11611 }
11612
11613 LIST_INIT((struct list *)&rule->arg.act.p[0]);
11614 proxy->conf.args.ctx = ARGC_HRQ;
11615 parse_logformat_string(args[cur_arg], proxy, (struct list *)&rule->arg.act.p[0], LOG_OPT_HTTP,
11616 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
11617 proxy->conf.args.file, proxy->conf.args.line);
11618
11619 (*orig_arg)++;
11620 return 0;
11621}
11622
William Lallemand73025dd2014-04-24 14:38:37 +020011623/*
11624 * Return the struct http_req_action_kw associated to a keyword.
11625 */
11626struct http_req_action_kw *action_http_req_custom(const char *kw)
11627{
11628 if (!LIST_ISEMPTY(&http_req_keywords.list)) {
11629 struct http_req_action_kw_list *kw_list;
11630 int i;
11631
11632 list_for_each_entry(kw_list, &http_req_keywords.list, list) {
11633 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
11634 if (!strcmp(kw, kw_list->kw[i].kw))
11635 return &kw_list->kw[i];
11636 }
11637 }
11638 }
11639 return NULL;
11640}
11641
11642/*
11643 * Return the struct http_res_action_kw associated to a keyword.
11644 */
11645struct http_res_action_kw *action_http_res_custom(const char *kw)
11646{
11647 if (!LIST_ISEMPTY(&http_res_keywords.list)) {
11648 struct http_res_action_kw_list *kw_list;
11649 int i;
11650
11651 list_for_each_entry(kw_list, &http_res_keywords.list, list) {
11652 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
11653 if (!strcmp(kw, kw_list->kw[i].kw))
11654 return &kw_list->kw[i];
11655 }
11656 }
11657 }
11658 return NULL;
11659}
11660
Willy Tarreau4a568972010-05-12 08:08:50 +020011661/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011662/* All supported ACL keywords must be declared here. */
11663/************************************************************************/
11664
11665/* Note: must not be declared <const> as its list will be overwritten.
11666 * Please take care of keeping this list alphabetically sorted.
11667 */
Willy Tarreaudc13c112013-06-21 23:16:39 +020011668static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011669 { "base", "base", PAT_MATCH_STR },
11670 { "base_beg", "base", PAT_MATCH_BEG },
11671 { "base_dir", "base", PAT_MATCH_DIR },
11672 { "base_dom", "base", PAT_MATCH_DOM },
11673 { "base_end", "base", PAT_MATCH_END },
11674 { "base_len", "base", PAT_MATCH_LEN },
11675 { "base_reg", "base", PAT_MATCH_REG },
11676 { "base_sub", "base", PAT_MATCH_SUB },
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020011677
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011678 { "cook", "req.cook", PAT_MATCH_STR },
11679 { "cook_beg", "req.cook", PAT_MATCH_BEG },
11680 { "cook_dir", "req.cook", PAT_MATCH_DIR },
11681 { "cook_dom", "req.cook", PAT_MATCH_DOM },
11682 { "cook_end", "req.cook", PAT_MATCH_END },
11683 { "cook_len", "req.cook", PAT_MATCH_LEN },
11684 { "cook_reg", "req.cook", PAT_MATCH_REG },
11685 { "cook_sub", "req.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011686
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011687 { "hdr", "req.hdr", PAT_MATCH_STR },
11688 { "hdr_beg", "req.hdr", PAT_MATCH_BEG },
11689 { "hdr_dir", "req.hdr", PAT_MATCH_DIR },
11690 { "hdr_dom", "req.hdr", PAT_MATCH_DOM },
11691 { "hdr_end", "req.hdr", PAT_MATCH_END },
11692 { "hdr_len", "req.hdr", PAT_MATCH_LEN },
11693 { "hdr_reg", "req.hdr", PAT_MATCH_REG },
11694 { "hdr_sub", "req.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011695
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011696 /* these two declarations uses strings with list storage (in place
11697 * of tree storage). The basic match is PAT_MATCH_STR, but the indexation
11698 * and delete functions are relative to the list management. The parse
11699 * and match method are related to the corresponding fetch methods. This
11700 * is very particular ACL declaration mode.
11701 */
11702 { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth },
11703 { "method", NULL, PAT_MATCH_STR, pat_parse_meth, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_meth },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011704
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011705 { "path", "path", PAT_MATCH_STR },
11706 { "path_beg", "path", PAT_MATCH_BEG },
11707 { "path_dir", "path", PAT_MATCH_DIR },
11708 { "path_dom", "path", PAT_MATCH_DOM },
11709 { "path_end", "path", PAT_MATCH_END },
11710 { "path_len", "path", PAT_MATCH_LEN },
11711 { "path_reg", "path", PAT_MATCH_REG },
11712 { "path_sub", "path", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011713
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011714 { "req_ver", "req.ver", PAT_MATCH_STR },
11715 { "resp_ver", "res.ver", PAT_MATCH_STR },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011716
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011717 { "scook", "res.cook", PAT_MATCH_STR },
11718 { "scook_beg", "res.cook", PAT_MATCH_BEG },
11719 { "scook_dir", "res.cook", PAT_MATCH_DIR },
11720 { "scook_dom", "res.cook", PAT_MATCH_DOM },
11721 { "scook_end", "res.cook", PAT_MATCH_END },
11722 { "scook_len", "res.cook", PAT_MATCH_LEN },
11723 { "scook_reg", "res.cook", PAT_MATCH_REG },
11724 { "scook_sub", "res.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011725
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011726 { "shdr", "res.hdr", PAT_MATCH_STR },
11727 { "shdr_beg", "res.hdr", PAT_MATCH_BEG },
11728 { "shdr_dir", "res.hdr", PAT_MATCH_DIR },
11729 { "shdr_dom", "res.hdr", PAT_MATCH_DOM },
11730 { "shdr_end", "res.hdr", PAT_MATCH_END },
11731 { "shdr_len", "res.hdr", PAT_MATCH_LEN },
11732 { "shdr_reg", "res.hdr", PAT_MATCH_REG },
11733 { "shdr_sub", "res.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011734
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011735 { "url", "url", PAT_MATCH_STR },
11736 { "url_beg", "url", PAT_MATCH_BEG },
11737 { "url_dir", "url", PAT_MATCH_DIR },
11738 { "url_dom", "url", PAT_MATCH_DOM },
11739 { "url_end", "url", PAT_MATCH_END },
11740 { "url_len", "url", PAT_MATCH_LEN },
11741 { "url_reg", "url", PAT_MATCH_REG },
11742 { "url_sub", "url", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011743
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011744 { "urlp", "urlp", PAT_MATCH_STR },
11745 { "urlp_beg", "urlp", PAT_MATCH_BEG },
11746 { "urlp_dir", "urlp", PAT_MATCH_DIR },
11747 { "urlp_dom", "urlp", PAT_MATCH_DOM },
11748 { "urlp_end", "urlp", PAT_MATCH_END },
11749 { "urlp_len", "urlp", PAT_MATCH_LEN },
11750 { "urlp_reg", "urlp", PAT_MATCH_REG },
11751 { "urlp_sub", "urlp", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011752
Willy Tarreau8ed669b2013-01-11 15:49:37 +010011753 { /* END */ },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011754}};
11755
11756/************************************************************************/
11757/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +020011758/************************************************************************/
11759/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +020011760static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011761 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011762 { "base32", smp_fetch_base32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
11763 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
11764
William Lallemanda43ba4e2014-01-28 18:14:25 +010011765 /* capture are allocated and are permanent in the session */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011766 { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011767
11768 /* retrieve these captures from the HTTP logs */
11769 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
11770 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
11771 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
11772
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011773 { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011774 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
William Lallemanda43ba4e2014-01-28 18:14:25 +010011775
Willy Tarreau409bcde2013-01-08 00:31:00 +010011776 /* cookie is valid in both directions (eg: for "stick ...") but cook*
11777 * are only here to match the ACL's name, are request-only and are used
11778 * for ACL compatibility only.
11779 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011780 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
11781 { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011782 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11783 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11784
11785 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
11786 * only here to match the ACL's name, are request-only and are used for
11787 * ACL compatibility only.
11788 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011789 { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011790 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11791 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
11792 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV },
11793
Willy Tarreau0a0daec2013-04-02 22:44:58 +020011794 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011795 { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011796 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Thierry FOURNIERd4373142013-12-17 01:10:10 +010011797 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011798 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau49ad95c2015-01-19 15:06:26 +010011799 { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011800
11801 /* HTTP protocol on the request path */
11802 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011803 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011804
11805 /* HTTP version on the request path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011806 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
11807 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011808
11809 /* HTTP version on the response path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011810 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
11811 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011812
Willy Tarreau18ed2562013-01-14 15:56:36 +010011813 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011814 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011815 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11816 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11817
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011818 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau04ff9f12013-06-10 18:39:42 +020011819 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011820 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011821 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11822 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
11823 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV },
11824
11825 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011826 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011827 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11828 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11829
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011830 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau04ff9f12013-06-10 18:39:42 +020011831 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011832 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011833 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11834 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
11835 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV },
11836
Willy Tarreau409bcde2013-01-08 00:31:00 +010011837 /* scook is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011838 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011839 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11840 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011841 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
Willy Tarreau409bcde2013-01-08 00:31:00 +010011842
11843 /* shdr is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011844 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011845 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11846 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
11847 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV },
11848
11849 { "status", smp_fetch_stcode, 0, NULL, SMP_T_UINT, SMP_USE_HRSHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011850 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011851 { "url32", smp_fetch_url32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
11852 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011853 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
11854 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011855 { "url_param", smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
11856 { "urlp" , smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011857 { "urlp_val", smp_fetch_url_param_val, ARG2(1,STR,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11858 { /* END */ },
Willy Tarreau4a568972010-05-12 08:08:50 +020011859}};
11860
Willy Tarreau8797c062007-05-07 00:55:35 +020011861
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011862/************************************************************************/
11863/* All supported converter keywords must be declared here. */
11864/************************************************************************/
Willy Tarreau276fae92013-07-25 14:36:01 +020011865/* Note: must not be declared <const> as its list will be overwritten */
11866static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Thierry FOURNIERad903512014-04-11 17:51:01 +020011867 { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_UINT, SMP_T_STR},
11868 { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR},
Willy Tarreau276fae92013-07-25 14:36:01 +020011869 { NULL, NULL, 0, 0, 0 },
11870}};
11871
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011872/************************************************************************/
11873/* All supported http-request action keywords must be declared here. */
11874/************************************************************************/
11875struct http_req_action_kw_list http_req_actions = {
11876 .scope = "http",
11877 .kw = {
11878 { "set-method", parse_set_req_line },
11879 { "set-path", parse_set_req_line },
11880 { "set-query", parse_set_req_line },
11881 { "set-uri", parse_set_req_line },
11882 }
11883};
11884
Willy Tarreau8797c062007-05-07 00:55:35 +020011885__attribute__((constructor))
11886static void __http_protocol_init(void)
11887{
11888 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +020011889 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau276fae92013-07-25 14:36:01 +020011890 sample_register_convs(&sample_conv_kws);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011891 http_req_keywords_register(&http_req_actions);
Willy Tarreau8797c062007-05-07 00:55:35 +020011892}
11893
11894
Willy Tarreau58f10d72006-12-04 02:26:12 +010011895/*
Willy Tarreaubaaee002006-06-26 02:48:02 +020011896 * Local variables:
11897 * c-indent-level: 8
11898 * c-basic-offset: 8
11899 * End:
11900 */