blob: 64bd4109feec5feeace26d4e0104dc52c7cd48f4 [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
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010028#include <common/base64.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/compat.h>
31#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010032#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020033#include <common/memory.h>
34#include <common/mini-clist.h>
35#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020036#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020037#include <common/time.h>
38#include <common/uri_auth.h>
39#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41#include <types/capture.h>
Willy Tarreau12207b32016-11-22 19:48:51 +010042#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020043#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <types/global.h>
William Lallemand71bd11a2017-11-20 19:13:14 +010045#include <types/cache.h>
William Lallemand9ed62032016-11-21 17:49:11 +010046#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreau8797c062007-05-07 00:55:35 +020048#include <proto/acl.h>
Thierry FOURNIER322a1242015-08-19 09:07:47 +020049#include <proto/action.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020050#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010051#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020053#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010054#include <proto/checks.h>
Willy Tarreau12207b32016-11-22 19:48:51 +010055#include <proto/cli.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020056#include <proto/compression.h>
William Lallemand9ed62032016-11-21 17:49:11 +010057#include <proto/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020059#include <proto/filters.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020060#include <proto/frontend.h>
Willy Tarreau0da5b3b2017-09-21 09:30:46 +020061#include <proto/h1.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020062#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010063#include <proto/hdr_idx.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010064#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020065#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010067#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020068#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020069#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010070#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020071#include <proto/stream.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010072#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020073#include <proto/task.h>
Baptiste Assmannfabcbe02014-04-24 22:16:59 +020074#include <proto/pattern.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020075#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020076
Willy Tarreau522d6c02009-12-06 18:49:18 +010077const char HTTP_100[] =
78 "HTTP/1.1 100 Continue\r\n\r\n";
79
80const struct chunk http_100_chunk = {
81 .str = (char *)&HTTP_100,
82 .len = sizeof(HTTP_100)-1
83};
84
Willy Tarreaua9679ac2010-01-03 17:32:57 +010085/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020086const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010087 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010088 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020089 "Location: "; /* not terminated since it will be concatenated with the URL */
90
Willy Tarreau0f772532006-12-23 20:51:41 +010091const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010092 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010093 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010094 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010095 "Location: "; /* not terminated since it will be concatenated with the URL */
96
97/* same as 302 except that the browser MUST retry with the GET method */
98const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010099 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100100 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +0100101 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100102 "Location: "; /* not terminated since it will be concatenated with the URL */
103
Yves Lafon3e8d1ae2013-03-11 11:06:05 -0400104
105/* same as 302 except that the browser MUST retry with the same method */
106const char *HTTP_307 =
107 "HTTP/1.1 307 Temporary Redirect\r\n"
108 "Cache-Control: no-cache\r\n"
109 "Content-length: 0\r\n"
110 "Location: "; /* not terminated since it will be concatenated with the URL */
111
112/* same as 301 except that the browser MUST retry with the same method */
113const char *HTTP_308 =
114 "HTTP/1.1 308 Permanent Redirect\r\n"
115 "Content-length: 0\r\n"
116 "Location: "; /* not terminated since it will be concatenated with the URL */
117
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
119const char *HTTP_401_fmt =
120 "HTTP/1.0 401 Unauthorized\r\n"
121 "Cache-Control: no-cache\r\n"
122 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200123 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
125 "\r\n"
126 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
127
Willy Tarreau844a7e72010-01-31 21:46:18 +0100128const char *HTTP_407_fmt =
129 "HTTP/1.0 407 Unauthorized\r\n"
130 "Cache-Control: no-cache\r\n"
131 "Connection: close\r\n"
132 "Content-Type: text/html\r\n"
133 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
134 "\r\n"
Godbach1f1fae62014-12-17 16:32:05 +0800135 "<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 +0100136
Willy Tarreau0f772532006-12-23 20:51:41 +0100137
138const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200139 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100140 [HTTP_ERR_400] = 400,
141 [HTTP_ERR_403] = 403,
CJ Ess108b1dd2015-04-07 12:03:37 -0400142 [HTTP_ERR_405] = 405,
Willy Tarreau0f772532006-12-23 20:51:41 +0100143 [HTTP_ERR_408] = 408,
Olivier Houchard51a76d82017-10-02 16:12:07 +0200144 [HTTP_ERR_425] = 425,
CJ Ess108b1dd2015-04-07 12:03:37 -0400145 [HTTP_ERR_429] = 429,
Willy Tarreau0f772532006-12-23 20:51:41 +0100146 [HTTP_ERR_500] = 500,
147 [HTTP_ERR_502] = 502,
148 [HTTP_ERR_503] = 503,
149 [HTTP_ERR_504] = 504,
150};
151
Willy Tarreau80587432006-12-24 17:47:20 +0100152static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200153 [HTTP_ERR_200] =
154 "HTTP/1.0 200 OK\r\n"
155 "Cache-Control: no-cache\r\n"
156 "Connection: close\r\n"
157 "Content-Type: text/html\r\n"
158 "\r\n"
159 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
160
Willy Tarreau0f772532006-12-23 20:51:41 +0100161 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100162 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100163 "Cache-Control: no-cache\r\n"
164 "Connection: close\r\n"
165 "Content-Type: text/html\r\n"
166 "\r\n"
167 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
168
169 [HTTP_ERR_403] =
170 "HTTP/1.0 403 Forbidden\r\n"
171 "Cache-Control: no-cache\r\n"
172 "Connection: close\r\n"
173 "Content-Type: text/html\r\n"
174 "\r\n"
175 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
176
CJ Ess108b1dd2015-04-07 12:03:37 -0400177 [HTTP_ERR_405] =
178 "HTTP/1.0 405 Method Not Allowed\r\n"
179 "Cache-Control: no-cache\r\n"
180 "Connection: close\r\n"
181 "Content-Type: text/html\r\n"
182 "\r\n"
183 "<html><body><h1>405 Method Not Allowed</h1>\nA request was made of a resource using a request method not supported by that resource\n</body></html>\n",
184
Willy Tarreau0f772532006-12-23 20:51:41 +0100185 [HTTP_ERR_408] =
186 "HTTP/1.0 408 Request Time-out\r\n"
187 "Cache-Control: no-cache\r\n"
188 "Connection: close\r\n"
189 "Content-Type: text/html\r\n"
190 "\r\n"
191 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
192
Olivier Houchard51a76d82017-10-02 16:12:07 +0200193 [HTTP_ERR_425] =
194 "HTTP/1.0 425 Too Early\r\n"
195 "Cache-Control: no-cache\r\n"
196 "Connection: close\r\n"
197 "Content-Type: text/html\r\n"
198 "\r\n"
199 "<html><body><h1>425 Too Early</h1>\nYour browser sent early data.\n</body></html>\n",
200
CJ Ess108b1dd2015-04-07 12:03:37 -0400201 [HTTP_ERR_429] =
202 "HTTP/1.0 429 Too Many Requests\r\n"
203 "Cache-Control: no-cache\r\n"
204 "Connection: close\r\n"
205 "Content-Type: text/html\r\n"
206 "\r\n"
207 "<html><body><h1>429 Too Many Requests</h1>\nYou have sent too many requests in a given amount of time.\n</body></html>\n",
208
Willy Tarreau0f772532006-12-23 20:51:41 +0100209 [HTTP_ERR_500] =
Jarno Huuskonen16ad94a2017-01-09 14:17:10 +0200210 "HTTP/1.0 500 Internal Server Error\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100211 "Cache-Control: no-cache\r\n"
212 "Connection: close\r\n"
213 "Content-Type: text/html\r\n"
214 "\r\n"
Jarno Huuskonen16ad94a2017-01-09 14:17:10 +0200215 "<html><body><h1>500 Internal Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
Willy Tarreau0f772532006-12-23 20:51:41 +0100216
217 [HTTP_ERR_502] =
218 "HTTP/1.0 502 Bad Gateway\r\n"
219 "Cache-Control: no-cache\r\n"
220 "Connection: close\r\n"
221 "Content-Type: text/html\r\n"
222 "\r\n"
223 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
224
225 [HTTP_ERR_503] =
226 "HTTP/1.0 503 Service Unavailable\r\n"
227 "Cache-Control: no-cache\r\n"
228 "Connection: close\r\n"
229 "Content-Type: text/html\r\n"
230 "\r\n"
231 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
232
233 [HTTP_ERR_504] =
234 "HTTP/1.0 504 Gateway Time-out\r\n"
235 "Cache-Control: no-cache\r\n"
236 "Connection: close\r\n"
237 "Content-Type: text/html\r\n"
238 "\r\n"
239 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
240
241};
242
Cyril Bonté19979e12012-04-04 12:57:21 +0200243/* status codes available for the stats admin page (strictly 4 chars length) */
244const char *stat_status_codes[STAT_STATUS_SIZE] = {
245 [STAT_STATUS_DENY] = "DENY",
246 [STAT_STATUS_DONE] = "DONE",
247 [STAT_STATUS_ERRP] = "ERRP",
248 [STAT_STATUS_EXCD] = "EXCD",
249 [STAT_STATUS_NONE] = "NONE",
250 [STAT_STATUS_PART] = "PART",
251 [STAT_STATUS_UNKN] = "UNKN",
252};
253
254
William Lallemand73025dd2014-04-24 14:38:37 +0200255/* List head of all known action keywords for "http-request" */
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200256struct action_kw_list http_req_keywords = {
William Lallemand73025dd2014-04-24 14:38:37 +0200257 .list = LIST_HEAD_INIT(http_req_keywords.list)
258};
259
260/* List head of all known action keywords for "http-response" */
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200261struct action_kw_list http_res_keywords = {
William Lallemand73025dd2014-04-24 14:38:37 +0200262 .list = LIST_HEAD_INIT(http_res_keywords.list)
263};
264
Willy Tarreau80587432006-12-24 17:47:20 +0100265/* We must put the messages here since GCC cannot initialize consts depending
266 * on strlen().
267 */
268struct chunk http_err_chunks[HTTP_ERR_SIZE];
269
Willy Tarreaua890d072013-04-02 12:01:06 +0200270/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
Christopher Faulet1bc04c72017-10-29 20:14:08 +0100271static THREAD_LOCAL struct hdr_ctx static_hdr_ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +0200272
Willy Tarreau42250582007-04-01 01:30:43 +0200273#define FD_SETS_ARE_BITFIELDS
274#ifdef FD_SETS_ARE_BITFIELDS
275/*
276 * This map is used with all the FD_* macros to check whether a particular bit
277 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
278 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
279 * byte should be encoded. Be careful to always pass bytes from 0 to 255
280 * exclusively to the macros.
281 */
282fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
283fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100284fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Willy Tarreau42250582007-04-01 01:30:43 +0200285
286#else
287#error "Check if your OS uses bitfields for fd_sets"
288#endif
289
Willy Tarreau87b09662015-04-03 00:22:06 +0200290static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn);
Willy Tarreau0b748332014-04-29 00:13:29 +0200291
David Carlier7365f7d2016-04-04 11:54:42 +0100292static inline int http_msg_forward_body(struct stream *s, struct http_msg *msg);
293static inline int http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +0100294
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +0200295/* This function returns a reason associated with the HTTP status.
296 * This function never fails, a message is always returned.
297 */
298const char *get_reason(unsigned int status)
299{
300 switch (status) {
301 case 100: return "Continue";
302 case 101: return "Switching Protocols";
303 case 102: return "Processing";
304 case 200: return "OK";
305 case 201: return "Created";
306 case 202: return "Accepted";
307 case 203: return "Non-Authoritative Information";
308 case 204: return "No Content";
309 case 205: return "Reset Content";
310 case 206: return "Partial Content";
311 case 207: return "Multi-Status";
312 case 210: return "Content Different";
313 case 226: return "IM Used";
314 case 300: return "Multiple Choices";
315 case 301: return "Moved Permanently";
316 case 302: return "Moved Temporarily";
317 case 303: return "See Other";
318 case 304: return "Not Modified";
319 case 305: return "Use Proxy";
320 case 307: return "Temporary Redirect";
321 case 308: return "Permanent Redirect";
322 case 310: return "Too many Redirects";
323 case 400: return "Bad Request";
324 case 401: return "Unauthorized";
325 case 402: return "Payment Required";
326 case 403: return "Forbidden";
327 case 404: return "Not Found";
328 case 405: return "Method Not Allowed";
329 case 406: return "Not Acceptable";
330 case 407: return "Proxy Authentication Required";
331 case 408: return "Request Time-out";
332 case 409: return "Conflict";
333 case 410: return "Gone";
334 case 411: return "Length Required";
335 case 412: return "Precondition Failed";
336 case 413: return "Request Entity Too Large";
337 case 414: return "Request-URI Too Long";
338 case 415: return "Unsupported Media Type";
339 case 416: return "Requested range unsatisfiable";
340 case 417: return "Expectation failed";
341 case 418: return "I'm a teapot";
342 case 422: return "Unprocessable entity";
343 case 423: return "Locked";
344 case 424: return "Method failure";
Olivier Houchard51a76d82017-10-02 16:12:07 +0200345 case 425: return "Too Early";
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +0200346 case 426: return "Upgrade Required";
347 case 428: return "Precondition Required";
348 case 429: return "Too Many Requests";
349 case 431: return "Request Header Fields Too Large";
350 case 449: return "Retry With";
351 case 450: return "Blocked by Windows Parental Controls";
352 case 451: return "Unavailable For Legal Reasons";
353 case 456: return "Unrecoverable Error";
354 case 499: return "client has closed connection";
355 case 500: return "Internal Server Error";
356 case 501: return "Not Implemented";
Jarno Huuskonen59af2df2016-12-28 10:49:01 +0200357 case 502: return "Bad Gateway or Proxy Error";
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +0200358 case 503: return "Service Unavailable";
359 case 504: return "Gateway Time-out";
360 case 505: return "HTTP Version not supported";
361 case 506: return "Variant also negociate";
362 case 507: return "Insufficient storage";
363 case 508: return "Loop detected";
364 case 509: return "Bandwidth Limit Exceeded";
365 case 510: return "Not extended";
366 case 511: return "Network authentication required";
367 case 520: return "Web server is returning an unknown error";
368 default:
369 switch (status) {
370 case 100 ... 199: return "Informational";
371 case 200 ... 299: return "Success";
372 case 300 ... 399: return "Redirection";
373 case 400 ... 499: return "Client Error";
374 case 500 ... 599: return "Server Error";
375 default: return "Other";
376 }
377 }
378}
379
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200380/* This function returns HTTP_ERR_<num> (enum) matching http status code.
381 * Returned value should match codes from http_err_codes.
382 */
383static const int http_get_status_idx(unsigned int status)
384{
385 switch (status) {
386 case 200: return HTTP_ERR_200;
387 case 400: return HTTP_ERR_400;
388 case 403: return HTTP_ERR_403;
389 case 405: return HTTP_ERR_405;
390 case 408: return HTTP_ERR_408;
Olivier Houchard51a76d82017-10-02 16:12:07 +0200391 case 425: return HTTP_ERR_425;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200392 case 429: return HTTP_ERR_429;
393 case 500: return HTTP_ERR_500;
394 case 502: return HTTP_ERR_502;
395 case 503: return HTTP_ERR_503;
396 case 504: return HTTP_ERR_504;
397 default: return HTTP_ERR_500;
398 }
399}
400
Willy Tarreau80587432006-12-24 17:47:20 +0100401void init_proto_http()
402{
Willy Tarreau42250582007-04-01 01:30:43 +0200403 int i;
404 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100405 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200406
Willy Tarreau80587432006-12-24 17:47:20 +0100407 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
408 if (!http_err_msgs[msg]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100409 ha_alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
Willy Tarreau80587432006-12-24 17:47:20 +0100410 abort();
411 }
412
413 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
414 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
415 }
Willy Tarreau42250582007-04-01 01:30:43 +0200416
417 /* initialize the log header encoding map : '{|}"#' should be encoded with
418 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
419 * URL encoding only requires '"', '#' to be encoded as well as non-
420 * printable characters above.
421 */
422 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
423 memset(url_encode_map, 0, sizeof(url_encode_map));
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100424 memset(http_encode_map, 0, sizeof(url_encode_map));
Willy Tarreau42250582007-04-01 01:30:43 +0200425 for (i = 0; i < 32; i++) {
426 FD_SET(i, hdr_encode_map);
427 FD_SET(i, url_encode_map);
428 }
429 for (i = 127; i < 256; i++) {
430 FD_SET(i, hdr_encode_map);
431 FD_SET(i, url_encode_map);
432 }
433
434 tmp = "\"#{|}";
435 while (*tmp) {
436 FD_SET(*tmp, hdr_encode_map);
437 tmp++;
438 }
439
440 tmp = "\"#";
441 while (*tmp) {
442 FD_SET(*tmp, url_encode_map);
443 tmp++;
444 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200445
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100446 /* initialize the http header encoding map. The draft httpbis define the
447 * header content as:
448 *
449 * HTTP-message = start-line
450 * *( header-field CRLF )
451 * CRLF
452 * [ message-body ]
453 * header-field = field-name ":" OWS field-value OWS
454 * field-value = *( field-content / obs-fold )
455 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
456 * obs-fold = CRLF 1*( SP / HTAB )
457 * field-vchar = VCHAR / obs-text
458 * VCHAR = %x21-7E
459 * obs-text = %x80-FF
460 *
461 * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB.
462 * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The
463 * "obs-fold" is volontary forgotten because haproxy remove this.
464 */
465 memset(http_encode_map, 0, sizeof(http_encode_map));
466 for (i = 0x00; i <= 0x08; i++)
467 FD_SET(i, http_encode_map);
468 for (i = 0x0a; i <= 0x1f; i++)
469 FD_SET(i, http_encode_map);
470 FD_SET(0x7f, http_encode_map);
471
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200472 /* memory allocations */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100473 pool_head_http_txn = create_pool("http_txn", sizeof(struct http_txn), MEM_F_SHARED);
474 pool_head_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100475}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200476
Willy Tarreau53b6c742006-12-17 13:37:46 +0100477/*
478 * We have 26 list of methods (1 per first letter), each of which can have
479 * up to 3 entries (2 valid, 1 null).
480 */
481struct http_method_desc {
Willy Tarreauc8987b32013-12-06 23:43:17 +0100482 enum http_meth_t meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100483 int len;
484 const char text[8];
485};
486
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100487const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100488 ['C' - 'A'] = {
489 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
490 },
491 ['D' - 'A'] = {
492 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
493 },
494 ['G' - 'A'] = {
495 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
496 },
497 ['H' - 'A'] = {
498 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
499 },
Christopher Fauletd57ad642015-07-31 14:26:57 +0200500 ['O' - 'A'] = {
501 [0] = { .meth = HTTP_METH_OPTIONS , .len=7, .text="OPTIONS" },
502 },
Willy Tarreau53b6c742006-12-17 13:37:46 +0100503 ['P' - 'A'] = {
504 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
505 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
506 },
507 ['T' - 'A'] = {
508 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
509 },
510 /* rest is empty like this :
Willy Tarreaub7ce4242015-09-03 17:15:21 +0200511 * [0] = { .meth = HTTP_METH_OTHER , .len=0, .text="" },
Willy Tarreau53b6c742006-12-17 13:37:46 +0100512 */
513};
514
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100515const struct http_method_name http_known_methods[HTTP_METH_OTHER] = {
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100516 [HTTP_METH_OPTIONS] = { "OPTIONS", 7 },
517 [HTTP_METH_GET] = { "GET", 3 },
518 [HTTP_METH_HEAD] = { "HEAD", 4 },
519 [HTTP_METH_POST] = { "POST", 4 },
520 [HTTP_METH_PUT] = { "PUT", 3 },
521 [HTTP_METH_DELETE] = { "DELETE", 6 },
522 [HTTP_METH_TRACE] = { "TRACE", 5 },
523 [HTTP_METH_CONNECT] = { "CONNECT", 7 },
524};
525
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100526/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100527 * Adds a header and its CRLF at the tail of the message's buffer, just before
528 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100529 * The header is also automatically added to the index <hdr_idx>, and the end
530 * of headers is automatically adjusted. The number of bytes added is returned
531 * on success, otherwise <0 is returned indicating an error.
532 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100533int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100534{
535 int bytes, len;
536
537 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200538 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100539 if (!bytes)
540 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100541 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100542 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
543}
544
545/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100546 * Adds a header and its CRLF at the tail of the message's buffer, just before
547 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100548 * the buffer is only opened and the space reserved, but nothing is copied.
549 * The header is also automatically added to the index <hdr_idx>, and the end
550 * of headers is automatically adjusted. The number of bytes added is returned
551 * on success, otherwise <0 is returned indicating an error.
552 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100553int http_header_add_tail2(struct http_msg *msg,
554 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100555{
556 int bytes;
557
Willy Tarreau9b28e032012-10-12 23:49:43 +0200558 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100559 if (!bytes)
560 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100561 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100562 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
563}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200564
565/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100566 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
567 * If so, returns the position of the first non-space character relative to
568 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
569 * to return a pointer to the place after the first space. Returns 0 if the
570 * header name does not match. Checks are case-insensitive.
571 */
572int http_header_match2(const char *hdr, const char *end,
573 const char *name, int len)
574{
575 const char *val;
576
577 if (hdr + len >= end)
578 return 0;
579 if (hdr[len] != ':')
580 return 0;
581 if (strncasecmp(hdr, name, len) != 0)
582 return 0;
583 val = hdr + len + 1;
584 while (val < end && HTTP_IS_SPHT(*val))
585 val++;
586 if ((val >= end) && (len + 2 <= end - hdr))
587 return len + 2; /* we may replace starting from second space */
588 return val - hdr;
589}
590
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200591/* Find the first or next occurrence of header <name> in message buffer <sol>
592 * using headers index <idx>, and return it in the <ctx> structure. This
593 * structure holds everything necessary to use the header and find next
594 * occurrence. If its <idx> member is 0, the header is searched from the
595 * beginning. Otherwise, the next occurrence is returned. The function returns
596 * 1 when it finds a value, and 0 when there is no more. It is very similar to
597 * http_find_header2() except that it is designed to work with full-line headers
598 * whose comma is not a delimiter but is part of the syntax. As a special case,
599 * if ctx->val is NULL when searching for a new values of a header, the current
600 * header is rescanned. This allows rescanning after a header deletion.
601 */
602int http_find_full_header2(const char *name, int len,
603 char *sol, struct hdr_idx *idx,
604 struct hdr_ctx *ctx)
605{
606 char *eol, *sov;
607 int cur_idx, old_idx;
608
609 cur_idx = ctx->idx;
610 if (cur_idx) {
611 /* We have previously returned a header, let's search another one */
612 sol = ctx->line;
613 eol = sol + idx->v[cur_idx].len;
614 goto next_hdr;
615 }
616
617 /* first request for this header */
618 sol += hdr_idx_first_pos(idx);
619 old_idx = 0;
620 cur_idx = hdr_idx_first_idx(idx);
621 while (cur_idx) {
622 eol = sol + idx->v[cur_idx].len;
623
624 if (len == 0) {
625 /* No argument was passed, we want any header.
626 * To achieve this, we simply build a fake request. */
627 while (sol + len < eol && sol[len] != ':')
628 len++;
629 name = sol;
630 }
631
632 if ((len < eol - sol) &&
633 (sol[len] == ':') &&
634 (strncasecmp(sol, name, len) == 0)) {
635 ctx->del = len;
636 sov = sol + len + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100637 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200638 sov++;
639
640 ctx->line = sol;
641 ctx->prev = old_idx;
642 ctx->idx = cur_idx;
643 ctx->val = sov - sol;
644 ctx->tws = 0;
Willy Tarreau2235b262016-11-05 15:50:20 +0100645 while (eol > sov && HTTP_IS_LWS(*(eol - 1))) {
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200646 eol--;
647 ctx->tws++;
648 }
649 ctx->vlen = eol - sov;
650 return 1;
651 }
652 next_hdr:
653 sol = eol + idx->v[cur_idx].cr + 1;
654 old_idx = cur_idx;
655 cur_idx = idx->v[cur_idx].next;
656 }
657 return 0;
658}
659
Willy Tarreauc90dc232015-02-20 13:51:36 +0100660/* Find the first or next header field in message buffer <sol> using headers
661 * index <idx>, and return it in the <ctx> structure. This structure holds
662 * everything necessary to use the header and find next occurrence. If its
663 * <idx> member is 0, the first header is retrieved. Otherwise, the next
664 * occurrence is returned. The function returns 1 when it finds a value, and
665 * 0 when there is no more. It is equivalent to http_find_full_header2() with
666 * no header name.
667 */
668int http_find_next_header(char *sol, struct hdr_idx *idx, struct hdr_ctx *ctx)
669{
670 char *eol, *sov;
671 int cur_idx, old_idx;
672 int len;
673
674 cur_idx = ctx->idx;
675 if (cur_idx) {
676 /* We have previously returned a header, let's search another one */
677 sol = ctx->line;
678 eol = sol + idx->v[cur_idx].len;
679 goto next_hdr;
680 }
681
682 /* first request for this header */
683 sol += hdr_idx_first_pos(idx);
684 old_idx = 0;
685 cur_idx = hdr_idx_first_idx(idx);
686 while (cur_idx) {
687 eol = sol + idx->v[cur_idx].len;
688
689 len = 0;
690 while (1) {
691 if (len >= eol - sol)
692 goto next_hdr;
693 if (sol[len] == ':')
694 break;
695 len++;
696 }
697
698 ctx->del = len;
699 sov = sol + len + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100700 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreauc90dc232015-02-20 13:51:36 +0100701 sov++;
702
703 ctx->line = sol;
704 ctx->prev = old_idx;
705 ctx->idx = cur_idx;
706 ctx->val = sov - sol;
707 ctx->tws = 0;
708
Willy Tarreau2235b262016-11-05 15:50:20 +0100709 while (eol > sov && HTTP_IS_LWS(*(eol - 1))) {
Willy Tarreauc90dc232015-02-20 13:51:36 +0100710 eol--;
711 ctx->tws++;
712 }
713 ctx->vlen = eol - sov;
714 return 1;
715
716 next_hdr:
717 sol = eol + idx->v[cur_idx].cr + 1;
718 old_idx = cur_idx;
719 cur_idx = idx->v[cur_idx].next;
720 }
721 return 0;
722}
723
Lukas Tribus23953682017-04-28 13:24:30 +0000724/* Find the end of the header value contained between <s> and <e>. See RFC7230,
725 * par 3.2 for more information. Note that it requires a valid header to return
Willy Tarreau68085d82010-01-18 14:54:04 +0100726 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200727 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100728char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200729{
730 int quoted, qdpair;
731
732 quoted = qdpair = 0;
Willy Tarreaue6d9c212016-11-05 18:23:38 +0100733
734#if defined(__x86_64__) || \
735 defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || \
736 defined(__ARM_ARCH_7A__)
737 /* speedup: skip everything not a comma nor a double quote */
738 for (; s <= e - sizeof(int); s += sizeof(int)) {
739 unsigned int c = *(int *)s; // comma
740 unsigned int q = c; // quote
741
742 c ^= 0x2c2c2c2c; // contains one zero on a comma
743 q ^= 0x22222222; // contains one zero on a quote
744
745 c = (c - 0x01010101) & ~c; // contains 0x80 below a comma
746 q = (q - 0x01010101) & ~q; // contains 0x80 below a quote
747
748 if ((c | q) & 0x80808080)
749 break; // found a comma or a quote
750 }
751#endif
Willy Tarreau33a7e692007-06-10 19:45:56 +0200752 for (; s < e; s++) {
753 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200754 else if (quoted) {
755 if (*s == '\\') qdpair = 1;
756 else if (*s == '"') quoted = 0;
757 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200758 else if (*s == '"') quoted = 1;
759 else if (*s == ',') return s;
760 }
761 return s;
762}
763
764/* Find the first or next occurrence of header <name> in message buffer <sol>
765 * using headers index <idx>, and return it in the <ctx> structure. This
766 * structure holds everything necessary to use the header and find next
767 * occurrence. If its <idx> member is 0, the header is searched from the
768 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100769 * 1 when it finds a value, and 0 when there is no more. It is designed to work
770 * with headers defined as comma-separated lists. As a special case, if ctx->val
771 * is NULL when searching for a new values of a header, the current header is
772 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200773 */
774int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100775 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200776 struct hdr_ctx *ctx)
777{
Willy Tarreau68085d82010-01-18 14:54:04 +0100778 char *eol, *sov;
779 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200780
Willy Tarreau68085d82010-01-18 14:54:04 +0100781 cur_idx = ctx->idx;
782 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200783 /* We have previously returned a value, let's search
784 * another one on the same line.
785 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200786 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200787 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100788 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200789 eol = sol + idx->v[cur_idx].len;
790
791 if (sov >= eol)
792 /* no more values in this header */
793 goto next_hdr;
794
Willy Tarreau68085d82010-01-18 14:54:04 +0100795 /* values remaining for this header, skip the comma but save it
796 * for later use (eg: for header deletion).
797 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200798 sov++;
Willy Tarreau2235b262016-11-05 15:50:20 +0100799 while (sov < eol && HTTP_IS_LWS((*sov)))
Willy Tarreau33a7e692007-06-10 19:45:56 +0200800 sov++;
801
802 goto return_hdr;
803 }
804
805 /* first request for this header */
806 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100807 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200808 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200809 while (cur_idx) {
810 eol = sol + idx->v[cur_idx].len;
811
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200812 if (len == 0) {
813 /* No argument was passed, we want any header.
814 * To achieve this, we simply build a fake request. */
815 while (sol + len < eol && sol[len] != ':')
816 len++;
817 name = sol;
818 }
819
Willy Tarreau33a7e692007-06-10 19:45:56 +0200820 if ((len < eol - sol) &&
821 (sol[len] == ':') &&
822 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100823 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200824 sov = sol + len + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100825 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau33a7e692007-06-10 19:45:56 +0200826 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100827
Willy Tarreau33a7e692007-06-10 19:45:56 +0200828 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100829 ctx->prev = old_idx;
830 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200831 ctx->idx = cur_idx;
832 ctx->val = sov - sol;
833
834 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200835 ctx->tws = 0;
Willy Tarreau2235b262016-11-05 15:50:20 +0100836 while (eol > sov && HTTP_IS_LWS(*(eol - 1))) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200837 eol--;
838 ctx->tws++;
839 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200840 ctx->vlen = eol - sov;
841 return 1;
842 }
843 next_hdr:
844 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100845 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200846 cur_idx = idx->v[cur_idx].next;
847 }
848 return 0;
849}
850
851int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100852 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200853 struct hdr_ctx *ctx)
854{
855 return http_find_header2(name, strlen(name), sol, idx, ctx);
856}
857
Willy Tarreau68085d82010-01-18 14:54:04 +0100858/* Remove one value of a header. This only works on a <ctx> returned by one of
859 * the http_find_header functions. The value is removed, as well as surrounding
860 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100861 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100862 * message <msg>. The new index is returned. If it is zero, it means there is
863 * no more header, so any processing may stop. The ctx is always left in a form
864 * that can be handled by http_find_header2() to find next occurrence.
865 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100866int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100867{
868 int cur_idx = ctx->idx;
869 char *sol = ctx->line;
870 struct hdr_idx_elem *hdr;
871 int delta, skip_comma;
872
873 if (!cur_idx)
874 return 0;
875
876 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200877 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100878 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200879 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +0100880 http_msg_move_end(msg, delta);
881 idx->used--;
882 hdr->len = 0; /* unused entry */
883 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100884 if (idx->tail == ctx->idx)
885 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100886 ctx->idx = ctx->prev; /* walk back to the end of previous header */
Willy Tarreau7c1c2172015-01-07 17:23:50 +0100887 ctx->line -= idx->v[ctx->idx].len + idx->v[ctx->idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100888 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200889 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100890 return ctx->idx;
891 }
892
893 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200894 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
895 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100896 */
897
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200898 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200899 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200900 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100901 NULL, 0);
902 hdr->len += delta;
903 http_msg_move_end(msg, delta);
904 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200905 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100906 return ctx->idx;
907}
908
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100909/* This function handles a server error at the stream interface level. The
910 * stream interface is assumed to be already in a closed state. An optional
Willy Tarreau2019f952017-03-14 11:07:31 +0100911 * message is copied into the input buffer.
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100912 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100913 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200914 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200915static void http_server_error(struct stream *s, struct stream_interface *si,
Willy Tarreau2019f952017-03-14 11:07:31 +0100916 int err, int finst, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917{
Willy Tarreau2019f952017-03-14 11:07:31 +0100918 FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg));
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100919 channel_auto_read(si_oc(si));
920 channel_abort(si_oc(si));
921 channel_auto_close(si_oc(si));
922 channel_erase(si_oc(si));
923 channel_auto_close(si_ic(si));
924 channel_auto_read(si_ic(si));
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200925 if (msg)
Willy Tarreau06d80a92017-10-19 14:32:15 +0200926 co_inject(si_ic(si), msg->str, msg->len);
Willy Tarreaue7dff022015-04-03 01:14:29 +0200927 if (!(s->flags & SF_ERR_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200928 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200929 if (!(s->flags & SF_FINST_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200930 s->flags |= finst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200931}
932
Willy Tarreau87b09662015-04-03 00:22:06 +0200933/* This function returns the appropriate error location for the given stream
Willy Tarreau80587432006-12-24 17:47:20 +0100934 * and message.
935 */
936
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200937struct chunk *http_error_message(struct stream *s)
Willy Tarreau80587432006-12-24 17:47:20 +0100938{
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200939 const int msgnum = http_get_status_idx(s->txn->status);
940
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200941 if (s->be->errmsg[msgnum].str)
942 return &s->be->errmsg[msgnum];
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200943 else if (strm_fe(s)->errmsg[msgnum].str)
944 return &strm_fe(s)->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100945 else
946 return &http_err_chunks[msgnum];
947}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200948
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100949void
950http_reply_and_close(struct stream *s, short status, struct chunk *msg)
951{
Christopher Fauletd7c91962015-04-30 11:48:27 +0200952 s->txn->flags &= ~TX_WAIT_NEXT_RQ;
Christopher Faulet3e344292015-11-24 16:24:13 +0100953 FLT_STRM_CB(s, flt_http_reply(s, status, msg));
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100954 stream_int_retnclose(&s->si[0], msg);
955}
956
Willy Tarreau53b6c742006-12-17 13:37:46 +0100957/*
Willy Tarreaub7ce4242015-09-03 17:15:21 +0200958 * returns a known method among HTTP_METH_* or HTTP_METH_OTHER for all unknown
959 * ones.
Willy Tarreau53b6c742006-12-17 13:37:46 +0100960 */
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100961enum http_meth_t find_http_meth(const char *str, const int len)
Willy Tarreau53b6c742006-12-17 13:37:46 +0100962{
963 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100964 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100965
966 m = ((unsigned)*str - 'A');
967
968 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100969 for (h = http_methods[m]; h->len > 0; h++) {
970 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100971 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100972 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100973 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100974 };
Willy Tarreau53b6c742006-12-17 13:37:46 +0100975 }
Willy Tarreaub7ce4242015-09-03 17:15:21 +0200976 return HTTP_METH_OTHER;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100977}
978
Willy Tarreau21d2af32008-02-14 20:25:24 +0100979/* Parse the URI from the given transaction (which is assumed to be in request
980 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
981 * It is returned otherwise.
982 */
Thierry FOURNIER3c331782015-09-17 19:33:35 +0200983char *http_get_path(struct http_txn *txn)
Willy Tarreau21d2af32008-02-14 20:25:24 +0100984{
985 char *ptr, *end;
986
Willy Tarreau9b28e032012-10-12 23:49:43 +0200987 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100988 end = ptr + txn->req.sl.rq.u_l;
989
990 if (ptr >= end)
991 return NULL;
992
Lukas Tribus23953682017-04-28 13:24:30 +0000993 /* RFC7230, par. 2.7 :
Willy Tarreau21d2af32008-02-14 20:25:24 +0100994 * Request-URI = "*" | absuri | abspath | authority
995 */
996
997 if (*ptr == '*')
998 return NULL;
999
1000 if (isalpha((unsigned char)*ptr)) {
1001 /* this is a scheme as described by RFC3986, par. 3.1 */
1002 ptr++;
1003 while (ptr < end &&
1004 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
1005 ptr++;
1006 /* skip '://' */
1007 if (ptr == end || *ptr++ != ':')
1008 return NULL;
1009 if (ptr == end || *ptr++ != '/')
1010 return NULL;
1011 if (ptr == end || *ptr++ != '/')
1012 return NULL;
1013 }
1014 /* skip [user[:passwd]@]host[:[port]] */
1015
1016 while (ptr < end && *ptr != '/')
1017 ptr++;
1018
1019 if (ptr == end)
1020 return NULL;
1021
1022 /* OK, we got the '/' ! */
1023 return ptr;
1024}
1025
William Lallemand65ad6e12014-01-31 15:08:02 +01001026/* Parse the URI from the given string and look for the "/" beginning the PATH.
1027 * If not found, return NULL. It is returned otherwise.
1028 */
1029static char *
1030http_get_path_from_string(char *str)
1031{
1032 char *ptr = str;
1033
1034 /* RFC2616, par. 5.1.2 :
1035 * Request-URI = "*" | absuri | abspath | authority
1036 */
1037
1038 if (*ptr == '*')
1039 return NULL;
1040
1041 if (isalpha((unsigned char)*ptr)) {
1042 /* this is a scheme as described by RFC3986, par. 3.1 */
1043 ptr++;
1044 while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')
1045 ptr++;
1046 /* skip '://' */
1047 if (*ptr == '\0' || *ptr++ != ':')
1048 return NULL;
1049 if (*ptr == '\0' || *ptr++ != '/')
1050 return NULL;
1051 if (*ptr == '\0' || *ptr++ != '/')
1052 return NULL;
1053 }
1054 /* skip [user[:passwd]@]host[:[port]] */
1055
1056 while (*ptr != '\0' && *ptr != ' ' && *ptr != '/')
1057 ptr++;
1058
1059 if (*ptr == '\0' || *ptr == ' ')
1060 return NULL;
1061
1062 /* OK, we got the '/' ! */
1063 return ptr;
1064}
1065
Willy Tarreau71241ab2012-12-27 11:30:54 +01001066/* Returns a 302 for a redirectable request that reaches a server working in
1067 * in redirect mode. This may only be called just after the stream interface
1068 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
1069 * follow normal proxy processing. NOTE: this function is designed to support
1070 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +01001071 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001072void http_perform_server_redirect(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001073{
1074 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001075 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001076 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001077 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001078
1079 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001080 trash.len = strlen(HTTP_302);
1081 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001082
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001083 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001084
Willy Tarreauefb453c2008-10-26 20:49:47 +01001085 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001086 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001087 return;
1088
Willy Tarreaudcb75c42010-01-10 00:24:22 +01001089 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +01001090 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001091 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
1092 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +01001093 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001094
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001095 /* 3: add the request URI. Since it was already forwarded, we need
1096 * to temporarily rewind the buffer.
1097 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001098 txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001099 b_rew(s->req.buf, rewind = http_hdr_rewind(&txn->req));
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001100
Willy Tarreauefb453c2008-10-26 20:49:47 +01001101 path = http_get_path(txn);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001102 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 +02001103
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001104 b_adv(s->req.buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001105
Willy Tarreauefb453c2008-10-26 20:49:47 +01001106 if (!path)
1107 return;
1108
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001109 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +01001110 return;
1111
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001112 memcpy(trash.str + trash.len, path, len);
1113 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001114
1115 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001116 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
1117 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001118 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001119 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
1120 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001121 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001122
1123 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001124 si_shutr(si);
1125 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001126 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001127 si->state = SI_ST_CLO;
1128
1129 /* send the message */
Willy Tarreau2019f952017-03-14 11:07:31 +01001130 txn->status = 302;
1131 http_server_error(s, si, SF_ERR_LOCAL, SF_FINST_C, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001132
1133 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +01001134 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001135 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001136}
1137
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001138/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +01001139 * that the server side is closed. Note that err_type is actually a
1140 * bitmask, where almost only aborts may be cumulated with other
1141 * values. We consider that aborted operations are more important
1142 * than timeouts or errors due to the fact that nobody else in the
1143 * logs might explain incomplete retries. All others should avoid
1144 * being cumulated. It should normally not be possible to have multiple
1145 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001146 * Note that connection errors appearing on the second request of a keep-alive
1147 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +01001148 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001149void http_return_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001150{
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001151 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001152
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001153 /* set s->txn->status for http_error_message(s) */
1154 s->txn->status = 503;
1155
Willy Tarreauefb453c2008-10-26 20:49:47 +01001156 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001157 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +01001158 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001159 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001160 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001161 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001162 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001163 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001164 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +01001165 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001166 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001167 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +01001168 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001169 else if (err_type & SI_ET_CONN_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001170 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001171 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001172 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001173 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001174 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001175 (s->flags & SF_SRV_REUSED) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001176 http_error_message(s));
Willy Tarreau2d400bb2012-05-14 12:11:47 +02001177 else if (err_type & SI_ET_CONN_RES)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001178 http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001179 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001180 http_error_message(s));
1181 else { /* SI_ET_CONN_OTHER and others */
1182 s->txn->status = 500;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001183 http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001184 http_error_message(s));
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001185 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001186}
1187
Willy Tarreau42250582007-04-01 01:30:43 +02001188extern const char sess_term_cond[8];
1189extern const char sess_fin_state[8];
1190extern const char *monthname[12];
Willy Tarreaubafbe012017-11-24 17:34:44 +01001191struct pool_head *pool_head_http_txn;
1192struct pool_head *pool_head_requri;
1193struct pool_head *pool_head_capture = NULL;
1194struct pool_head *pool_head_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001195
Willy Tarreau117f59e2007-03-04 18:17:17 +01001196/*
1197 * Capture headers from message starting at <som> according to header list
Willy Tarreau54da8db2014-06-13 16:11:48 +02001198 * <cap_hdr>, and fill the <cap> pointers appropriately.
Willy Tarreau117f59e2007-03-04 18:17:17 +01001199 */
1200void capture_headers(char *som, struct hdr_idx *idx,
1201 char **cap, struct cap_hdr *cap_hdr)
1202{
1203 char *eol, *sol, *col, *sov;
1204 int cur_idx;
1205 struct cap_hdr *h;
1206 int len;
1207
1208 sol = som + hdr_idx_first_pos(idx);
1209 cur_idx = hdr_idx_first_idx(idx);
1210
1211 while (cur_idx) {
1212 eol = sol + idx->v[cur_idx].len;
1213
1214 col = sol;
1215 while (col < eol && *col != ':')
1216 col++;
1217
1218 sov = col + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01001219 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau117f59e2007-03-04 18:17:17 +01001220 sov++;
1221
1222 for (h = cap_hdr; h; h = h->next) {
Willy Tarreau54da8db2014-06-13 16:11:48 +02001223 if (h->namelen && (h->namelen == col - sol) &&
Willy Tarreau117f59e2007-03-04 18:17:17 +01001224 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1225 if (cap[h->index] == NULL)
1226 cap[h->index] =
Willy Tarreaubafbe012017-11-24 17:34:44 +01001227 pool_alloc(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001228
1229 if (cap[h->index] == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001230 ha_alert("HTTP capture : out of memory.\n");
Willy Tarreau117f59e2007-03-04 18:17:17 +01001231 continue;
1232 }
1233
1234 len = eol - sov;
1235 if (len > h->len)
1236 len = h->len;
1237
1238 memcpy(cap[h->index], sov, len);
1239 cap[h->index][len]=0;
1240 }
1241 }
1242 sol = eol + idx->v[cur_idx].cr + 1;
1243 cur_idx = idx->v[cur_idx].next;
1244 }
1245}
1246
Willy Tarreaubaaee002006-06-26 02:48:02 +02001247/*
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001248 * Returns the data from Authorization header. Function may be called more
1249 * than once so data is stored in txn->auth_data. When no header is found
1250 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
Thierry FOURNIER98d96952014-01-23 12:13:02 +01001251 * searching again for something we are unable to find anyway. However, if
1252 * the result if valid, the cache is not reused because we would risk to
Willy Tarreau87b09662015-04-03 00:22:06 +02001253 * have the credentials overwritten by another stream in parallel.
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001254 */
1255
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001256int
Willy Tarreau87b09662015-04-03 00:22:06 +02001257get_http_auth(struct stream *s)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001258{
1259
Willy Tarreaueee5b512015-04-03 23:46:31 +02001260 struct http_txn *txn = s->txn;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001261 struct chunk auth_method;
1262 struct hdr_ctx ctx;
1263 char *h, *p;
1264 int len;
1265
1266#ifdef DEBUG_AUTH
Willy Tarreau87b09662015-04-03 00:22:06 +02001267 printf("Auth for stream %p: %d\n", s, txn->auth.method);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001268#endif
1269
1270 if (txn->auth.method == HTTP_AUTH_WRONG)
1271 return 0;
1272
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001273 txn->auth.method = HTTP_AUTH_WRONG;
1274
1275 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001276
1277 if (txn->flags & TX_USE_PX_CONN) {
1278 h = "Proxy-Authorization";
1279 len = strlen(h);
1280 } else {
1281 h = "Authorization";
1282 len = strlen(h);
1283 }
1284
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001285 if (!http_find_header2(h, len, s->req.buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001286 return 0;
1287
1288 h = ctx.line + ctx.val;
1289
1290 p = memchr(h, ' ', ctx.vlen);
Willy Tarreau5c557d12016-03-13 08:17:02 +01001291 len = p - h;
1292 if (!p || len <= 0)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001293 return 0;
1294
David Carlier7365f7d2016-04-04 11:54:42 +01001295 if (chunk_initlen(&auth_method, h, 0, len) != 1)
1296 return 0;
1297
Willy Tarreau5c557d12016-03-13 08:17:02 +01001298 chunk_initlen(&txn->auth.method_data, p + 1, 0, ctx.vlen - len - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001299
1300 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
Christopher Faulet6988f672017-07-27 15:18:52 +02001301 struct chunk *http_auth = get_trash_chunk();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001302
1303 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Christopher Faulet6988f672017-07-27 15:18:52 +02001304 http_auth->str, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001305
1306 if (len < 0)
1307 return 0;
1308
1309
Christopher Faulet6988f672017-07-27 15:18:52 +02001310 http_auth->str[len] = '\0';
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001311
Christopher Faulet6988f672017-07-27 15:18:52 +02001312 p = strchr(http_auth->str, ':');
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001313
1314 if (!p)
1315 return 0;
1316
Christopher Faulet6988f672017-07-27 15:18:52 +02001317 txn->auth.user = http_auth->str;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001318 *p = '\0';
1319 txn->auth.pass = p+1;
1320
1321 txn->auth.method = HTTP_AUTH_BASIC;
1322 return 1;
1323 }
1324
1325 return 0;
1326}
1327
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001328
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001329/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1330 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1331 * nothing is done and 1 is returned.
1332 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001333static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001334{
1335 int delta;
1336 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001337 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001338
1339 if (msg->sl.rq.v_l != 0)
1340 return 1;
1341
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001342 /* RFC 1945 allows only GET for HTTP/0.9 requests */
1343 if (txn->meth != HTTP_METH_GET)
1344 return 0;
1345
Willy Tarreau9b28e032012-10-12 23:49:43 +02001346 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001347
1348 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001349 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
1350 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001351 }
1352 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001353 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001354 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001355 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001356 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001357 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001358 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001359 NULL, NULL);
1360 if (unlikely(!cur_end))
1361 return 0;
1362
1363 /* we have a full HTTP/1.0 request now and we know that
1364 * we have either a CR or an LF at <ptr>.
1365 */
1366 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1367 return 1;
1368}
1369
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001370/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001371 * and "keep-alive" values. If we already know that some headers may safely
1372 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001373 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1374 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01001375 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001376 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1377 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1378 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001379 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001380 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001381void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001382{
Willy Tarreau5b154472009-12-21 20:11:07 +01001383 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001384 const char *hdr_val = "Connection";
1385 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001386
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001387 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001388 return;
1389
Willy Tarreau88d349d2010-01-25 12:15:43 +01001390 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1391 hdr_val = "Proxy-Connection";
1392 hdr_len = 16;
1393 }
1394
Willy Tarreau5b154472009-12-21 20:11:07 +01001395 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001396 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001397 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001398 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1399 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001400 if (to_del & 2)
1401 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001402 else
1403 txn->flags |= TX_CON_KAL_SET;
1404 }
1405 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1406 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001407 if (to_del & 1)
1408 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001409 else
1410 txn->flags |= TX_CON_CLO_SET;
1411 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01001412 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
1413 txn->flags |= TX_HDR_CONN_UPG;
1414 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001415 }
1416
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001417 txn->flags |= TX_HDR_CONN_PRS;
1418 return;
1419}
Willy Tarreau5b154472009-12-21 20:11:07 +01001420
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001421/* Apply desired changes on the Connection: header. Values may be removed and/or
1422 * added depending on the <wanted> flags, which are exclusively composed of
1423 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1424 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1425 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001426void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001427{
1428 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001429 const char *hdr_val = "Connection";
1430 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001431
1432 ctx.idx = 0;
1433
Willy Tarreau88d349d2010-01-25 12:15:43 +01001434
1435 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1436 hdr_val = "Proxy-Connection";
1437 hdr_len = 16;
1438 }
1439
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001440 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001441 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001442 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1443 if (wanted & TX_CON_KAL_SET)
1444 txn->flags |= TX_CON_KAL_SET;
1445 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001446 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01001447 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001448 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1449 if (wanted & TX_CON_CLO_SET)
1450 txn->flags |= TX_CON_CLO_SET;
1451 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001452 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01001453 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001454 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001455
1456 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
1457 return;
1458
1459 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
1460 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001461 hdr_val = "Connection: close";
1462 hdr_len = 17;
1463 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1464 hdr_val = "Proxy-Connection: close";
1465 hdr_len = 23;
1466 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001467 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001468 }
1469
1470 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
1471 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001472 hdr_val = "Connection: keep-alive";
1473 hdr_len = 22;
1474 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1475 hdr_val = "Proxy-Connection: keep-alive";
1476 hdr_len = 28;
1477 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001478 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001479 }
1480 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01001481}
1482
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001483/* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the
1484 * value is larger than 1000, it is bound to 1000. The parser consumes up to
1485 * 1 digit, one dot and 3 digits and stops on the first invalid character.
1486 * Unparsable qvalues return 1000 as "q=1.000".
1487 */
Thierry FOURNIERad903512014-04-11 17:51:01 +02001488int parse_qvalue(const char *qvalue, const char **end)
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001489{
1490 int q = 1000;
1491
Willy Tarreau506c69a2014-07-08 00:59:48 +02001492 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001493 goto out;
1494 q = (*qvalue++ - '0') * 1000;
1495
1496 if (*qvalue++ != '.')
1497 goto out;
1498
Willy Tarreau506c69a2014-07-08 00:59:48 +02001499 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001500 goto out;
1501 q += (*qvalue++ - '0') * 100;
1502
Willy Tarreau506c69a2014-07-08 00:59:48 +02001503 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001504 goto out;
1505 q += (*qvalue++ - '0') * 10;
1506
Willy Tarreau506c69a2014-07-08 00:59:48 +02001507 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001508 goto out;
1509 q += (*qvalue++ - '0') * 1;
1510 out:
1511 if (q > 1000)
1512 q = 1000;
Willy Tarreau38b3aa52014-04-22 23:32:05 +02001513 if (end)
Thierry FOURNIERad903512014-04-11 17:51:01 +02001514 *end = qvalue;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01001515 return q;
1516}
William Lallemand82fe75c2012-10-23 10:25:10 +02001517
Willy Tarreau87b09662015-04-03 00:22:06 +02001518void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg)
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001519{
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001520 struct proxy *fe = strm_fe(s);
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001521 int tmp = TX_CON_WANT_KAL;
1522
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001523 if (!((fe->options2|s->be->options2) & PR_O2_FAKE_KA)) {
1524 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001525 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
1526 tmp = TX_CON_WANT_TUN;
1527
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001528 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001529 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
1530 tmp = TX_CON_WANT_TUN;
1531 }
1532
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001533 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001534 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) {
1535 /* option httpclose + server_close => forceclose */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001536 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001537 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
1538 tmp = TX_CON_WANT_CLO;
1539 else
1540 tmp = TX_CON_WANT_SCL;
1541 }
1542
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001543 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001544 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
1545 tmp = TX_CON_WANT_CLO;
1546
1547 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
1548 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
1549
1550 if (!(txn->flags & TX_HDR_CONN_PRS) &&
1551 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
1552 /* parse the Connection header and possibly clean it */
1553 int to_del = 0;
1554 if ((msg->flags & HTTP_MSGF_VER_11) ||
1555 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001556 !((fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001557 to_del |= 2; /* remove "keep-alive" */
1558 if (!(msg->flags & HTTP_MSGF_VER_11))
1559 to_del |= 1; /* remove "close" */
1560 http_parse_connection_header(txn, msg, to_del);
1561 }
1562
1563 /* check if client or config asks for explicit close in KAL/SCL */
1564 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
1565 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
1566 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
1567 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
1568 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001569 fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001570 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
1571}
William Lallemand82fe75c2012-10-23 10:25:10 +02001572
Willy Tarreaud787e662009-07-07 10:14:51 +02001573/* This stream analyser waits for a complete HTTP request. It returns 1 if the
1574 * processing can continue on next analysers, or zero if it either needs more
1575 * data or wants to immediately abort the request (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001576 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
Willy Tarreaud787e662009-07-07 10:14:51 +02001577 * when it has nothing left to do, and may remove any analyser when it wants to
1578 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001579 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001580int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001581{
Willy Tarreau59234e92008-11-30 23:51:27 +01001582 /*
1583 * We will parse the partial (or complete) lines.
1584 * We will check the request syntax, and also join multi-line
1585 * headers. An index of all the lines will be elaborated while
1586 * parsing.
1587 *
1588 * For the parsing, we use a 28 states FSM.
1589 *
1590 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02001591 * req->buf->p = beginning of request
1592 * req->buf->p + msg->eoh = end of processed headers / start of current one
1593 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02001594 * msg->eol = end of current header or line (LF or CRLF)
1595 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02001596 *
1597 * At end of parsing, we may perform a capture of the error (if any), and
Willy Tarreaue7dff022015-04-03 01:14:29 +02001598 * we will set a few fields (txn->meth, sn->flags/SF_REDIRECTABLE).
Willy Tarreaud787e662009-07-07 10:14:51 +02001599 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
1600 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01001601 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001602
Willy Tarreau59234e92008-11-30 23:51:27 +01001603 int cur_idx;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001604 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001605 struct http_txn *txn = s->txn;
Willy Tarreau59234e92008-11-30 23:51:27 +01001606 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02001607 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001608
Willy Tarreau87b09662015-04-03 00:22:06 +02001609 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +01001610 now_ms, __FUNCTION__,
1611 s,
1612 req,
1613 req->rex, req->wex,
1614 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001615 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01001616 req->analysers);
1617
Willy Tarreau52a0c602009-08-16 22:45:38 +02001618 /* we're speaking HTTP here, so let's speak HTTP to the client */
1619 s->srv_error = http_return_srv_error;
1620
Willy Tarreau83e3af02009-12-28 17:39:57 +01001621 /* There's a protected area at the end of the buffer for rewriting
1622 * purposes. We don't want to start to parse the request if the
1623 * protected area is affected, because we may have to move processed
1624 * data later, which is much more complicated.
1625 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001626 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001627
1628 /* This point is executed when some data is avalaible for analysis,
1629 * so we log the end of the idle time. */
1630 if (s->logs.t_idle == -1)
1631 s->logs.t_idle = tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake;
1632
Willy Tarreau379357a2013-06-08 12:55:46 +02001633 if (txn->flags & TX_NOT_FIRST) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01001634 if (unlikely(!channel_is_rewritable(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001635 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01001636 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01001637 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001638 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001639 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01001640 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01001641 return 0;
1642 }
Willy Tarreau379357a2013-06-08 12:55:46 +02001643 if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
1644 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite))
1645 buffer_slow_realign(req->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01001646 }
1647
Willy Tarreau9b28e032012-10-12 23:49:43 +02001648 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01001649 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01001650 }
1651
Willy Tarreau59234e92008-11-30 23:51:27 +01001652 /* 1: we might have to print this header in debug mode */
1653 if (unlikely((global.mode & MODE_DEBUG) &&
1654 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02001655 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau59234e92008-11-30 23:51:27 +01001656 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001657
Willy Tarreau9b28e032012-10-12 23:49:43 +02001658 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001659 /* this is a bit complex : in case of error on the request line,
1660 * we know that rq.l is still zero, so we display only the part
1661 * up to the end of the line (truncated by debug_hdr).
1662 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001663 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01001664 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01001665
Willy Tarreau59234e92008-11-30 23:51:27 +01001666 sol += hdr_idx_first_pos(&txn->hdr_idx);
1667 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001668
Willy Tarreau59234e92008-11-30 23:51:27 +01001669 while (cur_idx) {
1670 eol = sol + txn->hdr_idx.v[cur_idx].len;
1671 debug_hdr("clihdr", s, sol, eol);
1672 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
1673 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001674 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001675 }
1676
Willy Tarreau58f10d72006-12-04 02:26:12 +01001677
Willy Tarreau59234e92008-11-30 23:51:27 +01001678 /*
1679 * Now we quickly check if we have found a full valid request.
1680 * If not so, we check the FD and buffer states before leaving.
1681 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01001682 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01001683 * requests are checked first. When waiting for a second request
Willy Tarreau87b09662015-04-03 00:22:06 +02001684 * on a keep-alive stream, if we encounter and error, close, t/o,
1685 * we note the error in the stream flags but don't set any state.
Willy Tarreaud3c343f2010-01-16 10:26:19 +01001686 * Since the error will be noted there, it will not be counted by
Willy Tarreau87b09662015-04-03 00:22:06 +02001687 * process_stream() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02001688 * Last, we may increase some tracked counters' http request errors on
1689 * the cases that are deliberately the client's fault. For instance,
1690 * a timeout or connection reset is not counted as an error. However
1691 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01001692 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001693
Willy Tarreau655dce92009-11-08 13:10:58 +01001694 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01001695 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01001696 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001697 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01001698 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001699 stream_inc_http_req_ctr(s);
1700 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001701 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01001702 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01001703 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001704
Willy Tarreau59234e92008-11-30 23:51:27 +01001705 /* 1: Since we are in header mode, if there's no space
1706 * left for headers, we won't be able to free more
Willy Tarreau87b09662015-04-03 00:22:06 +02001707 * later, so the stream will never terminate. We
Willy Tarreau59234e92008-11-30 23:51:27 +01001708 * must terminate it now.
1709 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001710 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01001711 /* FIXME: check if URI is set and return Status
1712 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01001713 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001714 stream_inc_http_req_ctr(s);
1715 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001716 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02001717 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02001718 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01001719 goto return_bad_req;
1720 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001721
Willy Tarreau59234e92008-11-30 23:51:27 +01001722 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001723 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001724 if (!(s->flags & SF_ERR_MASK))
1725 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01001726
Willy Tarreaufcffa692010-01-10 14:21:19 +01001727 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01001728 goto failed_keep_alive;
1729
Willy Tarreau0f228a02015-05-01 15:37:53 +02001730 if (sess->fe->options & PR_O_IGNORE_PRB)
1731 goto failed_keep_alive;
1732
Willy Tarreau59234e92008-11-30 23:51:27 +01001733 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02001734 if (msg->err_pos >= 0) {
Emeric Brun8c1aaa22017-06-15 11:30:06 +02001735 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +02001736 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02001737 }
1738
Willy Tarreaudc979f22012-12-04 10:39:01 +01001739 txn->status = 400;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001740 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01001741 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauleta94e5a52015-12-09 15:55:06 +01001742 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001743 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau87b09662015-04-03 00:22:06 +02001744 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001745 proxy_inc_fe_req_ctr(sess->fe);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001746 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001747 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001748 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001749
Willy Tarreaue7dff022015-04-03 01:14:29 +02001750 if (!(s->flags & SF_FINST_MASK))
1751 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +01001752 return 0;
1753 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02001754
Willy Tarreau59234e92008-11-30 23:51:27 +01001755 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001756 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001757 if (!(s->flags & SF_ERR_MASK))
1758 s->flags |= SF_ERR_CLITO;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01001759
Willy Tarreaufcffa692010-01-10 14:21:19 +01001760 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01001761 goto failed_keep_alive;
1762
Willy Tarreau0f228a02015-05-01 15:37:53 +02001763 if (sess->fe->options & PR_O_IGNORE_PRB)
1764 goto failed_keep_alive;
1765
Willy Tarreau59234e92008-11-30 23:51:27 +01001766 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02001767 if (msg->err_pos >= 0) {
Emeric Brun8c1aaa22017-06-15 11:30:06 +02001768 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +02001769 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02001770 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001771 txn->status = 408;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001772 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01001773 msg->msg_state = HTTP_MSG_ERROR;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001774 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet0184ea72017-01-05 14:06:34 +01001775 req->analysers &= AN_REQ_FLT_END;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001776
Willy Tarreau87b09662015-04-03 00:22:06 +02001777 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001778 proxy_inc_fe_req_ctr(sess->fe);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001779 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001780 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001781 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001782
Willy Tarreaue7dff022015-04-03 01:14:29 +02001783 if (!(s->flags & SF_FINST_MASK))
1784 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +01001785 return 0;
1786 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02001787
Willy Tarreau59234e92008-11-30 23:51:27 +01001788 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001789 else if (req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001790 if (!(s->flags & SF_ERR_MASK))
1791 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01001792
Willy Tarreaufcffa692010-01-10 14:21:19 +01001793 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01001794 goto failed_keep_alive;
1795
Willy Tarreau0f228a02015-05-01 15:37:53 +02001796 if (sess->fe->options & PR_O_IGNORE_PRB)
1797 goto failed_keep_alive;
1798
Willy Tarreau4076a152009-04-02 15:18:36 +02001799 if (msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02001800 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01001801 txn->status = 400;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001802 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01001803 msg->msg_state = HTTP_MSG_ERROR;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001804 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet0184ea72017-01-05 14:06:34 +01001805 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau87b09662015-04-03 00:22:06 +02001806 stream_inc_http_err_ctr(s);
1807 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001808 proxy_inc_fe_req_ctr(sess->fe);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001809 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001810 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001811 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001812
Willy Tarreaue7dff022015-04-03 01:14:29 +02001813 if (!(s->flags & SF_FINST_MASK))
1814 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02001815 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001816 }
1817
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001818 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001819 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001820 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01001821#ifdef TCP_QUICKACK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001822 if (sess->listener->options & LI_O_NOQUICKACK && req->buf->i &&
1823 objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) {
Willy Tarreau5e205522011-12-17 16:34:27 +01001824 /* We need more data, we have to re-enable quick-ack in case we
1825 * previously disabled it, otherwise we might cause the client
1826 * to delay next data.
1827 */
Willy Tarreau585744b2017-08-24 14:31:19 +02001828 setsockopt(__objt_conn(sess->origin)->handle.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01001829 }
1830#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01001831
Willy Tarreaufcffa692010-01-10 14:21:19 +01001832 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
1833 /* If the client starts to talk, let's fall back to
1834 * request timeout processing.
1835 */
1836 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01001837 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01001838 }
1839
Willy Tarreau59234e92008-11-30 23:51:27 +01001840 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01001841 if (!tick_isset(req->analyse_exp)) {
1842 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
1843 (txn->flags & TX_WAIT_NEXT_RQ) &&
1844 tick_isset(s->be->timeout.httpka))
1845 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
1846 else
1847 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
1848 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001849
Willy Tarreau59234e92008-11-30 23:51:27 +01001850 /* we're not ready yet */
1851 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01001852
1853 failed_keep_alive:
1854 /* Here we process low-level errors for keep-alive requests. In
1855 * short, if the request is not the first one and it experiences
1856 * a timeout, read error or shutdown, we just silently close so
1857 * that the client can try again.
1858 */
1859 txn->status = 0;
1860 msg->msg_state = HTTP_MSG_RQBEFORE;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001861 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaub608feb2010-01-02 22:47:18 +01001862 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +02001863 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001864 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01001865 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01001866 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01001867 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001868
Willy Tarreaud787e662009-07-07 10:14:51 +02001869 /* OK now we have a complete HTTP request with indexed headers. Let's
1870 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02001871 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01001872 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01001873 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001874 * byte after the last LF. msg->sov points to the first byte of data.
1875 * msg->eol cannot be trusted because it may have been left uninitialized
1876 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02001877 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02001878
Willy Tarreau87b09662015-04-03 00:22:06 +02001879 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001880 proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */
Willy Tarreaud9b587f2010-02-26 10:05:55 +01001881
Willy Tarreaub16a5742010-01-10 14:46:16 +01001882 if (txn->flags & TX_WAIT_NEXT_RQ) {
1883 /* kill the pending keep-alive timeout */
1884 txn->flags &= ~TX_WAIT_NEXT_RQ;
1885 req->analyse_exp = TICK_ETERNITY;
1886 }
1887
1888
Willy Tarreaud787e662009-07-07 10:14:51 +02001889 /* Maybe we found in invalid header name while we were configured not
1890 * to block on that, so we have to capture it now.
1891 */
1892 if (unlikely(msg->err_pos >= 0))
Emeric Brun8c1aaa22017-06-15 11:30:06 +02001893 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02001894
Willy Tarreau59234e92008-11-30 23:51:27 +01001895 /*
1896 * 1: identify the method
1897 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001898 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01001899
1900 /* we can make use of server redirect on GET and HEAD */
1901 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001902 s->flags |= SF_REDIRECTABLE;
Willy Tarreau91659792017-11-10 19:38:10 +01001903 else if (txn->meth == HTTP_METH_OTHER &&
1904 msg->sl.rq.m_l == 3 && memcmp(req->buf->p, "PRI", 3) == 0) {
1905 /* PRI is reserved for the HTTP/2 preface */
1906 msg->err_pos = 0;
1907 goto return_bad_req;
1908 }
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001909
Willy Tarreau59234e92008-11-30 23:51:27 +01001910 /*
1911 * 2: check if the URI matches the monitor_uri.
1912 * We have to do this for every request which gets in, because
1913 * the monitor-uri is defined by the frontend.
1914 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001915 if (unlikely((sess->fe->monitor_uri_len != 0) &&
1916 (sess->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001917 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001918 sess->fe->monitor_uri,
1919 sess->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01001920 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01001921 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01001922 */
Willy Tarreau59234e92008-11-30 23:51:27 +01001923 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001924
Willy Tarreaue7dff022015-04-03 01:14:29 +02001925 s->flags |= SF_MONITOR;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001926 HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Willy Tarreaub80c2302007-11-30 20:51:32 +01001927
Willy Tarreau59234e92008-11-30 23:51:27 +01001928 /* Check if we want to fail this monitor request or not */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001929 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001930 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02001931
Willy Tarreau59234e92008-11-30 23:51:27 +01001932 ret = acl_pass(ret);
1933 if (cond->pol == ACL_COND_UNLESS)
1934 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001935
Willy Tarreau59234e92008-11-30 23:51:27 +01001936 if (ret) {
1937 /* we fail this request, let's return 503 service unavail */
1938 txn->status = 503;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001939 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02001940 if (!(s->flags & SF_ERR_MASK))
1941 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01001942 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01001943 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001944 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01001945
Willy Tarreau59234e92008-11-30 23:51:27 +01001946 /* nothing to fail, let's reply normaly */
1947 txn->status = 200;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001948 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02001949 if (!(s->flags & SF_ERR_MASK))
1950 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01001951 goto return_prx_cond;
1952 }
1953
1954 /*
1955 * 3: Maybe we have to copy the original REQURI for the logs ?
1956 * Note: we cannot log anymore if the request has been
1957 * classified as invalid.
1958 */
1959 if (unlikely(s->logs.logwait & LW_REQ)) {
1960 /* we have a complete HTTP request that we must log */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001961 if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) {
Willy Tarreau59234e92008-11-30 23:51:27 +01001962 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001963
Stéphane Cottin23e9e932017-05-18 08:58:41 +02001964 if (urilen >= global.tune.requri_len )
1965 urilen = global.tune.requri_len - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001966 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01001967 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001968
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001969 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01001970 s->do_log(s);
1971 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001972 ha_alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001973 }
Willy Tarreau59234e92008-11-30 23:51:27 +01001974 }
Willy Tarreau06619262006-12-17 08:37:22 +01001975
Willy Tarreau91852eb2015-05-01 13:26:00 +02001976 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
1977 * exactly one digit "." one digit. This check may be disabled using
1978 * option accept-invalid-http-request.
1979 */
1980 if (!(sess->fe->options2 & PR_O2_REQBUG_OK)) {
1981 if (msg->sl.rq.v_l != 8) {
1982 msg->err_pos = msg->sl.rq.v;
1983 goto return_bad_req;
1984 }
1985
1986 if (req->buf->p[msg->sl.rq.v + 4] != '/' ||
1987 !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 5]) ||
1988 req->buf->p[msg->sl.rq.v + 6] != '.' ||
1989 !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 7])) {
1990 msg->err_pos = msg->sl.rq.v + 4;
1991 goto return_bad_req;
1992 }
1993 }
Willy Tarreau13317662015-05-01 13:47:08 +02001994 else {
1995 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
1996 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
1997 goto return_bad_req;
1998 }
Willy Tarreau91852eb2015-05-01 13:26:00 +02001999
Willy Tarreau5b154472009-12-21 20:11:07 +01002000 /* ... and check if the request is HTTP/1.1 or above */
2001 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002002 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
2003 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
2004 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002005 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01002006
2007 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01002008 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 +01002009
Willy Tarreau88d349d2010-01-25 12:15:43 +01002010 /* if the frontend has "option http-use-proxy-header", we'll check if
2011 * we have what looks like a proxied connection instead of a connection,
2012 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2013 * Note that this is *not* RFC-compliant, however browsers and proxies
2014 * happen to do that despite being non-standard :-(
2015 * We consider that a request not beginning with either '/' or '*' is
2016 * a proxied connection, which covers both "scheme://location" and
2017 * CONNECT ip:port.
2018 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002019 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002020 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01002021 txn->flags |= TX_USE_PX_CONN;
2022
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002023 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002024 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002025
Willy Tarreau59234e92008-11-30 23:51:27 +01002026 /* 5: we may need to capture headers */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002027 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02002028 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002029 s->req_cap, sess->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002030
Willy Tarreau557f1992015-05-01 10:05:17 +02002031 /* 6: determine the transfer-length according to RFC2616 #4.4, updated
2032 * by RFC7230#3.3.3 :
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002033 *
Willy Tarreau557f1992015-05-01 10:05:17 +02002034 * The length of a message body is determined by one of the following
2035 * (in order of precedence):
Willy Tarreau32b47f42009-10-18 20:55:02 +02002036 *
Willy Tarreau557f1992015-05-01 10:05:17 +02002037 * 1. Any response to a HEAD request and any response with a 1xx
2038 * (Informational), 204 (No Content), or 304 (Not Modified) status
2039 * code is always terminated by the first empty line after the
2040 * header fields, regardless of the header fields present in the
2041 * message, and thus cannot contain a message body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002042 *
Willy Tarreau557f1992015-05-01 10:05:17 +02002043 * 2. Any 2xx (Successful) response to a CONNECT request implies that
2044 * the connection will become a tunnel immediately after the empty
2045 * line that concludes the header fields. A client MUST ignore any
2046 * Content-Length or Transfer-Encoding header fields received in
2047 * such a message.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002048 *
Willy Tarreau557f1992015-05-01 10:05:17 +02002049 * 3. If a Transfer-Encoding header field is present and the chunked
2050 * transfer coding (Section 4.1) is the final encoding, the message
2051 * body length is determined by reading and decoding the chunked
2052 * data until the transfer coding indicates the data is complete.
2053 *
2054 * If a Transfer-Encoding header field is present in a response and
2055 * the chunked transfer coding is not the final encoding, the
2056 * message body length is determined by reading the connection until
2057 * it is closed by the server. If a Transfer-Encoding header field
2058 * is present in a request and the chunked transfer coding is not
2059 * the final encoding, the message body length cannot be determined
2060 * reliably; the server MUST respond with the 400 (Bad Request)
2061 * status code and then close the connection.
2062 *
2063 * If a message is received with both a Transfer-Encoding and a
2064 * Content-Length header field, the Transfer-Encoding overrides the
2065 * Content-Length. Such a message might indicate an attempt to
2066 * perform request smuggling (Section 9.5) or response splitting
2067 * (Section 9.4) and ought to be handled as an error. A sender MUST
2068 * remove the received Content-Length field prior to forwarding such
2069 * a message downstream.
2070 *
2071 * 4. If a message is received without Transfer-Encoding and with
2072 * either multiple Content-Length header fields having differing
2073 * field-values or a single Content-Length header field having an
2074 * invalid value, then the message framing is invalid and the
2075 * recipient MUST treat it as an unrecoverable error. If this is a
2076 * request message, the server MUST respond with a 400 (Bad Request)
2077 * status code and then close the connection. If this is a response
2078 * message received by a proxy, the proxy MUST close the connection
2079 * to the server, discard the received response, and send a 502 (Bad
2080 * Gateway) response to the client. If this is a response message
2081 * received by a user agent, the user agent MUST close the
2082 * connection to the server and discard the received response.
2083 *
2084 * 5. If a valid Content-Length header field is present without
2085 * Transfer-Encoding, its decimal value defines the expected message
2086 * body length in octets. If the sender closes the connection or
2087 * the recipient times out before the indicated number of octets are
2088 * received, the recipient MUST consider the message to be
2089 * incomplete and close the connection.
2090 *
2091 * 6. If this is a request message and none of the above are true, then
2092 * the message body length is zero (no message body is present).
2093 *
2094 * 7. Otherwise, this is a response message without a declared message
2095 * body length, so the message body length is determined by the
2096 * number of octets received prior to the server closing the
2097 * connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002098 */
2099
Willy Tarreau32b47f42009-10-18 20:55:02 +02002100 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002101 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau4979d5c2015-05-01 10:06:30 +02002102 while (http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002103 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Christopher Fauletbe821b92017-03-30 11:21:53 +02002104 msg->flags |= HTTP_MSGF_TE_CHNK;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002105 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau34dfc602015-05-01 10:09:49 +02002106 /* chunked not last, return badreq */
2107 goto return_bad_req;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002108 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002109 }
2110
Willy Tarreau1c913912015-04-30 10:57:51 +02002111 /* Chunked requests must have their content-length removed */
Willy Tarreau32b47f42009-10-18 20:55:02 +02002112 ctx.idx = 0;
Willy Tarreau1c913912015-04-30 10:57:51 +02002113 if (msg->flags & HTTP_MSGF_TE_CHNK) {
2114 while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx))
2115 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2116 }
Willy Tarreau34dfc602015-05-01 10:09:49 +02002117 else while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02002118 signed long long cl;
2119
Willy Tarreauad14f752011-09-02 20:33:27 +02002120 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002121 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002122 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002123 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002124
Willy Tarreauad14f752011-09-02 20:33:27 +02002125 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002126 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002127 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002128 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002129
Willy Tarreauad14f752011-09-02 20:33:27 +02002130 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002131 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002132 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002133 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002134
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002135 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002136 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002137 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002138 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002139
Christopher Fauletbe821b92017-03-30 11:21:53 +02002140 msg->flags |= HTTP_MSGF_CNT_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002141 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002142 }
2143
Willy Tarreau34dfc602015-05-01 10:09:49 +02002144 /* even bodyless requests have a known length */
2145 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002146
Willy Tarreau179085c2014-04-28 16:48:56 +02002147 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
2148 * only change if both the request and the config reference something else.
2149 * Option httpclose by itself sets tunnel mode where headers are mangled.
2150 * However, if another mode is set, it will affect it (eg: server-close/
2151 * keep-alive + httpclose = close). Note that we avoid to redo the same work
2152 * if FE and BE have the same settings (common). The method consists in
2153 * checking if options changed between the two calls (implying that either
2154 * one is non-null, or one of them is non-null and we are there for the first
2155 * time.
2156 */
2157 if (!(txn->flags & TX_HDR_CONN_PRS) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002158 ((sess->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002159 http_adjust_conn_mode(s, txn, msg);
Willy Tarreau179085c2014-04-28 16:48:56 +02002160
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02002161 /* we may have to wait for the request's body */
2162 if ((s->be->options & PR_O_WREQ_BODY) &&
2163 (msg->body_len || (msg->flags & HTTP_MSGF_TE_CHNK)))
2164 req->analysers |= AN_REQ_HTTP_BODY;
2165
Willy Tarreau83ece462017-12-21 15:13:09 +01002166 /*
2167 * RFC7234#4:
2168 * A cache MUST write through requests with methods
2169 * that are unsafe (Section 4.2.1 of [RFC7231]) to
2170 * the origin server; i.e., a cache is not allowed
2171 * to generate a reply to such a request before
2172 * having forwarded the request and having received
2173 * a corresponding response.
2174 *
2175 * RFC7231#4.2.1:
2176 * Of the request methods defined by this
2177 * specification, the GET, HEAD, OPTIONS, and TRACE
2178 * methods are defined to be safe.
2179 */
2180 if (likely(txn->meth == HTTP_METH_GET ||
2181 txn->meth == HTTP_METH_HEAD ||
2182 txn->meth == HTTP_METH_OPTIONS ||
2183 txn->meth == HTTP_METH_TRACE))
2184 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
2185
Willy Tarreaud787e662009-07-07 10:14:51 +02002186 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002187 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002188 req->analyse_exp = TICK_ETERNITY;
2189 return 1;
2190
2191 return_bad_req:
2192 /* We centralize bad requests processing here */
2193 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2194 /* we detected a parsing error. We want to archive this request
2195 * in the dedicated proxy area for later troubleshooting.
2196 */
Emeric Brun8c1aaa22017-06-15 11:30:06 +02002197 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002198 }
2199
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002200 txn->req.err_state = txn->req.msg_state;
Willy Tarreaud787e662009-07-07 10:14:51 +02002201 txn->req.msg_state = HTTP_MSG_ERROR;
2202 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002203 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002204
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002205 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002206 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02002207 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreaud787e662009-07-07 10:14:51 +02002208
2209 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02002210 if (!(s->flags & SF_ERR_MASK))
2211 s->flags |= SF_ERR_PRXCOND;
2212 if (!(s->flags & SF_FINST_MASK))
2213 s->flags |= SF_FINST_R;
Willy Tarreaud787e662009-07-07 10:14:51 +02002214
Christopher Faulet0184ea72017-01-05 14:06:34 +01002215 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaud787e662009-07-07 10:14:51 +02002216 req->analyse_exp = TICK_ETERNITY;
2217 return 0;
2218}
2219
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02002220
Willy Tarreau347a35d2013-11-22 17:51:09 +01002221/* This function prepares an applet to handle the stats. It can deal with the
2222 * "100-continue" expectation, check that admin rules are met for POST requests,
2223 * and program a response message if something was unexpected. It cannot fail
2224 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002225 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002226 * s->target which is supposed to already point to the stats applet. The caller
Willy Tarreau87b09662015-04-03 00:22:06 +02002227 * is expected to have already assigned an appctx to the stream.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002228 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002229int http_handle_stats(struct stream *s, struct channel *req)
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002230{
2231 struct stats_admin_rule *stats_admin_rule;
Willy Tarreau350f4872014-11-28 14:42:25 +01002232 struct stream_interface *si = &s->si[1];
Willy Tarreau192252e2015-04-04 01:47:55 +02002233 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002234 struct http_txn *txn = s->txn;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002235 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002236 struct uri_auth *uri_auth = s->be->uri_auth;
2237 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002238 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002239
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002240 appctx = si_appctx(si);
2241 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
2242 appctx->st1 = appctx->st2 = 0;
2243 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
2244 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreaueee5b512015-04-03 23:46:31 +02002245 if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn->meth != HTTP_METH_HEAD))
Willy Tarreauaf3cf702014-04-22 22:19:53 +02002246 appctx->ctx.stats.flags |= STAT_CHUNKED;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002247
2248 uri = msg->chn->buf->p + msg->sl.rq.u;
2249 lookup = uri + uri_auth->uri_len;
2250
2251 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
2252 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002253 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002254 break;
2255 }
2256 }
2257
2258 if (uri_auth->refresh) {
2259 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
2260 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002261 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002262 break;
2263 }
2264 }
2265 }
2266
2267 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
2268 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002269 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002270 break;
2271 }
2272 }
2273
Willy Tarreau1e62df92016-01-11 18:57:53 +01002274 for (h = lookup; h <= uri + msg->sl.rq.u_l - 6; h++) {
2275 if (memcmp(h, ";typed", 6) == 0) {
2276 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
2277 appctx->ctx.stats.flags |= STAT_FMT_TYPED;
2278 break;
2279 }
2280 }
2281
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002282 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
2283 if (memcmp(h, ";st=", 4) == 0) {
2284 int i;
2285 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002286 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002287 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
2288 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002289 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002290 break;
2291 }
2292 }
2293 break;
2294 }
2295 }
2296
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002297 appctx->ctx.stats.scope_str = 0;
2298 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002299 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
2300 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
2301 int itx = 0;
2302 const char *h2;
2303 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
2304 const char *err;
2305
2306 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
2307 h2 = h;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002308 appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002309 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
2310 itx++;
2311 h++;
2312 }
2313
2314 if (itx > STAT_SCOPE_TXT_MAXLEN)
2315 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002316 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002317
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002318 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002319 memcpy(scope_txt, h2, itx);
2320 scope_txt[itx] = '\0';
2321 err = invalid_char(scope_txt);
2322 if (err) {
2323 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002324 appctx->ctx.stats.scope_str = 0;
2325 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002326 }
2327 break;
2328 }
2329 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002330
2331 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01002332 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002333 int ret = 1;
2334
2335 if (stats_admin_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02002336 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002337 ret = acl_pass(ret);
2338 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
2339 ret = !ret;
2340 }
2341
2342 if (ret) {
2343 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002344 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002345 break;
2346 }
2347 }
2348
2349 /* Was the status page requested with a POST ? */
Willy Tarreaub8cdf522015-05-29 01:09:15 +02002350 if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002351 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Willy Tarreaucfe7fdd2014-04-26 22:08:32 +02002352 /* we'll need the request body, possibly after sending 100-continue */
Willy Tarreaub8cdf522015-05-29 01:09:15 +02002353 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE)
2354 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002355 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002356 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01002357 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002358 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
2359 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002360 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002361 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01002362 else {
2363 /* So it was another method (GET/HEAD) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002364 appctx->st0 = STAT_HTTP_HEAD;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002365 }
2366
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002367 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002368 return 1;
2369}
2370
Lukas Tribus67db8df2013-06-23 17:37:13 +02002371/* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets
2372 * (as per RFC3260 #4 and BCP37 #4.2 and #5.2).
2373 */
Vincent Bernat6e615892016-05-18 16:17:44 +02002374void inet_set_tos(int fd, const struct sockaddr_storage *from, int tos)
Lukas Tribus67db8df2013-06-23 17:37:13 +02002375{
2376#ifdef IP_TOS
Vincent Bernat6e615892016-05-18 16:17:44 +02002377 if (from->ss_family == AF_INET)
Lukas Tribus67db8df2013-06-23 17:37:13 +02002378 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
2379#endif
2380#ifdef IPV6_TCLASS
Vincent Bernat6e615892016-05-18 16:17:44 +02002381 if (from->ss_family == AF_INET6) {
2382 if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)from)->sin6_addr))
Lukas Tribus67db8df2013-06-23 17:37:13 +02002383 /* v4-mapped addresses need IP_TOS */
2384 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
2385 else
2386 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos));
2387 }
2388#endif
2389}
2390
Willy Tarreau87b09662015-04-03 00:22:06 +02002391int http_transform_header_str(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002392 const char* name, unsigned int name_len,
2393 const char *str, struct my_regex *re,
2394 int action)
Sasha Pachev218f0642014-06-16 12:05:59 -06002395{
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002396 struct hdr_ctx ctx;
2397 char *buf = msg->chn->buf->p;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002398 struct hdr_idx *idx = &s->txn->hdr_idx;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002399 int (*http_find_hdr_func)(const char *name, int len, char *sol,
2400 struct hdr_idx *idx, struct hdr_ctx *ctx);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002401 struct chunk *output = get_trash_chunk();
2402
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002403 ctx.idx = 0;
Sasha Pachev218f0642014-06-16 12:05:59 -06002404
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002405 /* Choose the header browsing function. */
2406 switch (action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002407 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002408 http_find_hdr_func = http_find_header2;
2409 break;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002410 case ACT_HTTP_REPLACE_HDR:
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002411 http_find_hdr_func = http_find_full_header2;
2412 break;
2413 default: /* impossible */
2414 return -1;
2415 }
2416
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002417 while (http_find_hdr_func(name, name_len, buf, idx, &ctx)) {
2418 struct hdr_idx_elem *hdr = idx->v + ctx.idx;
Sasha Pachev218f0642014-06-16 12:05:59 -06002419 int delta;
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002420 char *val = ctx.line + ctx.val;
2421 char* val_end = val + ctx.vlen;
Sasha Pachev218f0642014-06-16 12:05:59 -06002422
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002423 if (!regex_exec_match2(re, val, val_end-val, MAX_MATCH, pmatch, 0))
2424 continue;
Sasha Pachev218f0642014-06-16 12:05:59 -06002425
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002426 output->len = exp_replace(output->str, output->size, val, str, pmatch);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002427 if (output->len == -1)
Sasha Pachev218f0642014-06-16 12:05:59 -06002428 return -1;
Sasha Pachev218f0642014-06-16 12:05:59 -06002429
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002430 delta = buffer_replace2(msg->chn->buf, val, val_end, output->str, output->len);
Sasha Pachev218f0642014-06-16 12:05:59 -06002431
2432 hdr->len += delta;
2433 http_msg_move_end(msg, delta);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01002434
2435 /* Adjust the length of the current value of the index. */
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002436 ctx.vlen += delta;
Sasha Pachev218f0642014-06-16 12:05:59 -06002437 }
2438
2439 return 0;
2440}
2441
Willy Tarreau87b09662015-04-03 00:22:06 +02002442static int http_transform_header(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002443 const char* name, unsigned int name_len,
2444 struct list *fmt, struct my_regex *re,
2445 int action)
2446{
Christopher Faulet07a0fec2017-02-08 12:17:07 +01002447 struct chunk *replace;
2448 int ret = -1;
2449
2450 replace = alloc_trash_chunk();
2451 if (!replace)
2452 goto leave;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002453
2454 replace->len = build_logline(s, replace->str, replace->size, fmt);
2455 if (replace->len >= replace->size - 1)
Christopher Faulet07a0fec2017-02-08 12:17:07 +01002456 goto leave;
2457
2458 ret = http_transform_header_str(s, msg, name, name_len, replace->str, re, action);
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002459
Christopher Faulet07a0fec2017-02-08 12:17:07 +01002460 leave:
2461 free_trash_chunk(replace);
2462 return ret;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01002463}
2464
Willy Tarreau87b09662015-04-03 00:22:06 +02002465/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
Willy Tarreau0b748332014-04-29 00:13:29 +02002466 * transaction <txn>. Returns the verdict of the first rule that prevents
2467 * further processing of the request (auth, deny, ...), and defaults to
2468 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
2469 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
Willy Tarreau58727ec2016-05-25 16:23:59 +02002470 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
2471 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
2472 * status.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002473 */
Willy Tarreau0b748332014-04-29 00:13:29 +02002474enum rule_result
Willy Tarreau58727ec2016-05-25 16:23:59 +02002475http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s, int *deny_status)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002476{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002477 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02002478 struct http_txn *txn = s->txn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002479 struct connection *cli_conn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002480 struct act_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01002481 struct hdr_ctx ctx;
Willy Tarreauae3c0102014-04-28 23:22:08 +02002482 const char *auth_realm;
Willy Tarreauacc98002015-09-27 23:34:39 +02002483 int act_flags = 0;
Thierry Fournier4b788f72016-06-01 13:35:36 +02002484 int len;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002485
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002486 /* If "the current_rule_list" match the executed rule list, we are in
2487 * resume condition. If a resume is needed it is always in the action
2488 * and never in the ACL or converters. In this case, we initialise the
2489 * current rule, and go to the action execution point.
2490 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02002491 if (s->current_rule) {
2492 rule = s->current_rule;
2493 s->current_rule = NULL;
2494 if (s->current_rule_list == rules)
2495 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002496 }
2497 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02002498
Willy Tarreauff011f22011-01-06 17:51:27 +01002499 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002500
Willy Tarreau96257ec2012-12-27 10:46:37 +01002501 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01002502 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01002503 int ret;
2504
Willy Tarreau192252e2015-04-04 01:47:55 +02002505 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002506 ret = acl_pass(ret);
2507
Willy Tarreauff011f22011-01-06 17:51:27 +01002508 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002509 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01002510
2511 if (!ret) /* condition not matched */
2512 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002513 }
2514
Willy Tarreauacc98002015-09-27 23:34:39 +02002515 act_flags |= ACT_FLAG_FIRST;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002516resume_execution:
Willy Tarreau96257ec2012-12-27 10:46:37 +01002517 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002518 case ACT_ACTION_ALLOW:
Willy Tarreau0b748332014-04-29 00:13:29 +02002519 return HTTP_RULE_RES_STOP;
Willy Tarreau96257ec2012-12-27 10:46:37 +01002520
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002521 case ACT_ACTION_DENY:
Willy Tarreau58727ec2016-05-25 16:23:59 +02002522 if (deny_status)
2523 *deny_status = rule->deny_status;
Willy Tarreau0b748332014-04-29 00:13:29 +02002524 return HTTP_RULE_RES_DENY;
Willy Tarreau96257ec2012-12-27 10:46:37 +01002525
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002526 case ACT_HTTP_REQ_TARPIT:
Willy Tarreauccbcc372012-12-27 12:37:57 +01002527 txn->flags |= TX_CLTARPIT;
Willy Tarreau58727ec2016-05-25 16:23:59 +02002528 if (deny_status)
2529 *deny_status = rule->deny_status;
Willy Tarreau0b748332014-04-29 00:13:29 +02002530 return HTTP_RULE_RES_DENY;
Willy Tarreauccbcc372012-12-27 12:37:57 +01002531
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002532 case ACT_HTTP_REQ_AUTH:
Willy Tarreauae3c0102014-04-28 23:22:08 +02002533 /* Auth might be performed on regular http-req rules as well as on stats */
2534 auth_realm = rule->arg.auth.realm;
2535 if (!auth_realm) {
2536 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
2537 auth_realm = STATS_DEFAULT_REALM;
2538 else
2539 auth_realm = px->id;
2540 }
2541 /* send 401/407 depending on whether we use a proxy or not. We still
2542 * count one error, because normal browsing won't significantly
2543 * increase the counter but brute force attempts will.
2544 */
2545 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm);
2546 txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401;
Christopher Fauleta94e5a52015-12-09 15:55:06 +01002547 http_reply_and_close(s, txn->status, &trash);
Willy Tarreau87b09662015-04-03 00:22:06 +02002548 stream_inc_http_err_ctr(s);
Willy Tarreau0b748332014-04-29 00:13:29 +02002549 return HTTP_RULE_RES_ABRT;
Willy Tarreau96257ec2012-12-27 10:46:37 +01002550
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002551 case ACT_HTTP_REDIR:
Willy Tarreau0b748332014-04-29 00:13:29 +02002552 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
2553 return HTTP_RULE_RES_BADREQ;
2554 return HTTP_RULE_RES_DONE;
Willy Tarreau81499eb2012-12-27 12:19:02 +01002555
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002556 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02002557 s->task->nice = rule->arg.nice;
2558 break;
2559
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002560 case ACT_HTTP_SET_TOS:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002561 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreau585744b2017-08-24 14:31:19 +02002562 inet_set_tos(cli_conn->handle.fd, &cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02002563 break;
2564
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002565 case ACT_HTTP_SET_MARK:
Willy Tarreau51347ed2013-06-11 19:34:13 +02002566#ifdef SO_MARK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002567 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreau585744b2017-08-24 14:31:19 +02002568 setsockopt(cli_conn->handle.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02002569#endif
2570 break;
2571
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002572 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02002573 s->logs.level = rule->arg.loglevel;
2574 break;
2575
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002576 case ACT_HTTP_REPLACE_HDR:
2577 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002578 if (http_transform_header(s, &txn->req, rule->arg.hdr_add.name,
2579 rule->arg.hdr_add.name_len,
2580 &rule->arg.hdr_add.fmt,
2581 &rule->arg.hdr_add.re, rule->action))
Sasha Pachev218f0642014-06-16 12:05:59 -06002582 return HTTP_RULE_RES_BADREQ;
2583 break;
2584
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002585 case ACT_HTTP_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01002586 ctx.idx = 0;
2587 /* remove all occurrences of the header */
2588 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
2589 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
2590 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01002591 }
Willy Tarreau85603282015-01-21 20:39:27 +01002592 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01002593
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002594 case ACT_HTTP_SET_HDR:
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002595 case ACT_HTTP_ADD_HDR: {
Thierry Fournier4b788f72016-06-01 13:35:36 +02002596 /* The scope of the trash buffer must be limited to this function. The
2597 * build_logline() function can execute a lot of other function which
2598 * can use the trash buffer. So for limiting the scope of this global
2599 * buffer, we build first the header value using build_logline, and
2600 * after we store the header name.
2601 */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002602 struct chunk *replace;
2603
2604 replace = alloc_trash_chunk();
2605 if (!replace)
2606 return HTTP_RULE_RES_BADREQ;
2607
Thierry Fournier4b788f72016-06-01 13:35:36 +02002608 len = rule->arg.hdr_add.name_len + 2,
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002609 len += build_logline(s, replace->str + len, replace->size - len, &rule->arg.hdr_add.fmt);
2610 memcpy(replace->str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
2611 replace->str[rule->arg.hdr_add.name_len] = ':';
2612 replace->str[rule->arg.hdr_add.name_len + 1] = ' ';
2613 replace->len = len;
Willy Tarreau85603282015-01-21 20:39:27 +01002614
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002615 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01002616 /* remove all occurrences of the header */
2617 ctx.idx = 0;
2618 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
2619 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
2620 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
2621 }
2622 }
2623
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002624 http_header_add_tail2(&txn->req, &txn->hdr_idx, replace->str, replace->len);
2625
2626 free_trash_chunk(replace);
Willy Tarreau96257ec2012-12-27 10:46:37 +01002627 break;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002628 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002629
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002630 case ACT_HTTP_DEL_ACL:
2631 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002632 struct pat_ref *ref;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002633 struct chunk *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002634
2635 /* collect reference */
2636 ref = pat_ref_lookup(rule->arg.map.ref);
2637 if (!ref)
2638 continue;
2639
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002640 /* allocate key */
2641 key = alloc_trash_chunk();
2642 if (!key)
2643 return HTTP_RULE_RES_BADREQ;
2644
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002645 /* collect key */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002646 key->len = build_logline(s, key->str, key->size, &rule->arg.map.key);
2647 key->str[key->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002648
2649 /* perform update */
2650 /* returned code: 1=ok, 0=ko */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002651 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002652 pat_ref_delete(ref, key->str);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002653 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002654
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002655 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002656 break;
2657 }
2658
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002659 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002660 struct pat_ref *ref;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002661 struct chunk *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002662
2663 /* collect reference */
2664 ref = pat_ref_lookup(rule->arg.map.ref);
2665 if (!ref)
2666 continue;
2667
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002668 /* allocate key */
2669 key = alloc_trash_chunk();
2670 if (!key)
2671 return HTTP_RULE_RES_BADREQ;
2672
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002673 /* collect key */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002674 key->len = build_logline(s, key->str, key->size, &rule->arg.map.key);
2675 key->str[key->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002676
2677 /* perform update */
2678 /* add entry only if it does not already exist */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002679 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002680 if (pat_ref_find_elt(ref, key->str) == NULL)
2681 pat_ref_add(ref, key->str, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002682 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002683
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002684 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002685 break;
2686 }
2687
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002688 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002689 struct pat_ref *ref;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002690 struct chunk *key, *value;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002691
2692 /* collect reference */
2693 ref = pat_ref_lookup(rule->arg.map.ref);
2694 if (!ref)
2695 continue;
2696
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002697 /* allocate key */
2698 key = alloc_trash_chunk();
2699 if (!key)
2700 return HTTP_RULE_RES_BADREQ;
2701
2702 /* allocate value */
2703 value = alloc_trash_chunk();
2704 if (!value) {
2705 free_trash_chunk(key);
2706 return HTTP_RULE_RES_BADREQ;
2707 }
2708
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002709 /* collect key */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002710 key->len = build_logline(s, key->str, key->size, &rule->arg.map.key);
2711 key->str[key->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002712
2713 /* collect value */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002714 value->len = build_logline(s, value->str, value->size, &rule->arg.map.value);
2715 value->str[value->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002716
2717 /* perform update */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002718 if (pat_ref_find_elt(ref, key->str) != NULL)
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002719 /* update entry if it exists */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002720 pat_ref_set(ref, key->str, value->str, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002721 else
2722 /* insert a new entry */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002723 pat_ref_add(ref, key->str, value->str, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002724
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002725 free_trash_chunk(key);
2726 free_trash_chunk(value);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002727 break;
2728 }
William Lallemand73025dd2014-04-24 14:38:37 +02002729
Thierry FOURNIER42148732015-09-02 17:17:33 +02002730 case ACT_CUSTOM:
Willy Tarreau7aa15b02017-12-20 16:56:50 +01002731 if ((s->req.flags & CF_READ_ERROR) ||
2732 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
2733 !(s->si[0].flags & SI_FL_CLEAN_ABRT) &&
2734 (px->options & PR_O_ABRT_CLOSE)))
Willy Tarreauacc98002015-09-27 23:34:39 +02002735 act_flags |= ACT_FLAG_FINAL;
Willy Tarreau39458682015-09-27 10:33:15 +02002736
Willy Tarreauacc98002015-09-27 23:34:39 +02002737 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02002738 case ACT_RET_ERR:
2739 case ACT_RET_CONT:
2740 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02002741 case ACT_RET_STOP:
2742 return HTTP_RULE_RES_DONE;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02002743 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02002744 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002745 return HTTP_RULE_RES_YIELD;
2746 }
William Lallemand73025dd2014-04-24 14:38:37 +02002747 break;
2748
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002749 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
Willy Tarreau09448f72014-06-25 18:12:15 +02002750 /* Note: only the first valid tracking parameter of each
2751 * applies.
2752 */
2753
Christopher Faulet4fce0d82017-09-18 11:57:31 +02002754 if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) {
Willy Tarreau09448f72014-06-25 18:12:15 +02002755 struct stktable *t;
2756 struct stksess *ts;
2757 struct stktable_key *key;
Emeric Brun819fc6f2017-06-13 19:37:32 +02002758 void *ptr1, *ptr2;
Willy Tarreau09448f72014-06-25 18:12:15 +02002759
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02002760 t = rule->arg.trk_ctr.table.t;
2761 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
Willy Tarreau09448f72014-06-25 18:12:15 +02002762
2763 if (key && (ts = stktable_get_entry(t, key))) {
Christopher Faulet4fce0d82017-09-18 11:57:31 +02002764 stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts);
Willy Tarreau09448f72014-06-25 18:12:15 +02002765
2766 /* let's count a new HTTP request as it's the first time we do it */
Emeric Brun819fc6f2017-06-13 19:37:32 +02002767 ptr1 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
2768 ptr2 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
2769 if (ptr1 || ptr2) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002770 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Willy Tarreau09448f72014-06-25 18:12:15 +02002771
Emeric Brun819fc6f2017-06-13 19:37:32 +02002772 if (ptr1)
2773 stktable_data_cast(ptr1, http_req_cnt)++;
2774
2775 if (ptr2)
2776 update_freq_ctr_period(&stktable_data_cast(ptr2, http_req_rate),
2777 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
2778
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002779 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +01002780
2781 /* If data was modified, we need to touch to re-schedule sync */
2782 stktable_touch_local(t, ts, 0);
Emeric Brun819fc6f2017-06-13 19:37:32 +02002783 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002784
Christopher Faulet4fce0d82017-09-18 11:57:31 +02002785 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002786 if (sess->fe != s->be)
Christopher Faulet4fce0d82017-09-18 11:57:31 +02002787 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreau09448f72014-06-25 18:12:15 +02002788 }
2789 }
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02002790 break;
2791
Thierry FOURNIER22e49012015-08-05 19:13:48 +02002792 /* other flags exists, but normaly, they never be matched. */
2793 default:
2794 break;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002795 }
2796 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01002797
2798 /* we reached the end of the rules, nothing to report */
Willy Tarreau0b748332014-04-29 00:13:29 +02002799 return HTTP_RULE_RES_CONT;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002800}
2801
Willy Tarreau71241ab2012-12-27 11:30:54 +01002802
Willy Tarreau51d861a2015-05-22 17:30:48 +02002803/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
2804 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
2805 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
2806 * is returned, the process can continue the evaluation of next rule list. If
2807 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
2808 * is returned, it means the operation could not be processed and a server error
2809 * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a
2810 * deny rule. If *YIELD is returned, the caller must call again the function
2811 * with the same context.
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002812 */
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01002813static enum rule_result
Willy Tarreau987e3fb2015-04-04 01:09:08 +02002814http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002815{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002816 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02002817 struct http_txn *txn = s->txn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002818 struct connection *cli_conn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002819 struct act_rule *rule;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002820 struct hdr_ctx ctx;
Willy Tarreauacc98002015-09-27 23:34:39 +02002821 int act_flags = 0;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002822
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002823 /* If "the current_rule_list" match the executed rule list, we are in
2824 * resume condition. If a resume is needed it is always in the action
2825 * and never in the ACL or converters. In this case, we initialise the
2826 * current rule, and go to the action execution point.
2827 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02002828 if (s->current_rule) {
2829 rule = s->current_rule;
2830 s->current_rule = NULL;
2831 if (s->current_rule_list == rules)
2832 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002833 }
2834 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02002835
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002836 list_for_each_entry(rule, rules, list) {
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002837
2838 /* check optional condition */
2839 if (rule->cond) {
2840 int ret;
2841
Willy Tarreau192252e2015-04-04 01:47:55 +02002842 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002843 ret = acl_pass(ret);
2844
2845 if (rule->cond->pol == ACL_COND_UNLESS)
2846 ret = !ret;
2847
2848 if (!ret) /* condition not matched */
2849 continue;
2850 }
2851
Willy Tarreauacc98002015-09-27 23:34:39 +02002852 act_flags |= ACT_FLAG_FIRST;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002853resume_execution:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002854 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002855 case ACT_ACTION_ALLOW:
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01002856 return HTTP_RULE_RES_STOP; /* "allow" rules are OK */
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002857
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002858 case ACT_ACTION_DENY:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002859 txn->flags |= TX_SVDENY;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01002860 return HTTP_RULE_RES_STOP;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002861
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002862 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02002863 s->task->nice = rule->arg.nice;
2864 break;
2865
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002866 case ACT_HTTP_SET_TOS:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002867 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreau585744b2017-08-24 14:31:19 +02002868 inet_set_tos(cli_conn->handle.fd, &cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02002869 break;
2870
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002871 case ACT_HTTP_SET_MARK:
Willy Tarreau51347ed2013-06-11 19:34:13 +02002872#ifdef SO_MARK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002873 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreau585744b2017-08-24 14:31:19 +02002874 setsockopt(cli_conn->handle.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02002875#endif
2876 break;
2877
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002878 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02002879 s->logs.level = rule->arg.loglevel;
2880 break;
2881
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002882 case ACT_HTTP_REPLACE_HDR:
2883 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01002884 if (http_transform_header(s, &txn->rsp, rule->arg.hdr_add.name,
2885 rule->arg.hdr_add.name_len,
2886 &rule->arg.hdr_add.fmt,
2887 &rule->arg.hdr_add.re, rule->action))
Christopher Fauletcdade942017-02-08 12:41:31 +01002888 return HTTP_RULE_RES_BADREQ;
Sasha Pachev218f0642014-06-16 12:05:59 -06002889 break;
2890
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002891 case ACT_HTTP_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002892 ctx.idx = 0;
2893 /* remove all occurrences of the header */
2894 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
2895 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
2896 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
2897 }
Willy Tarreau85603282015-01-21 20:39:27 +01002898 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002899
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002900 case ACT_HTTP_SET_HDR:
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002901 case ACT_HTTP_ADD_HDR: {
2902 struct chunk *replace;
2903
2904 replace = alloc_trash_chunk();
2905 if (!replace)
2906 return HTTP_RULE_RES_BADREQ;
2907
2908 chunk_printf(replace, "%s: ", rule->arg.hdr_add.name);
2909 memcpy(replace->str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
2910 replace->len = rule->arg.hdr_add.name_len;
2911 replace->str[replace->len++] = ':';
2912 replace->str[replace->len++] = ' ';
2913 replace->len += build_logline(s, replace->str + replace->len, replace->size - replace->len,
2914 &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01002915
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002916 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01002917 /* remove all occurrences of the header */
2918 ctx.idx = 0;
2919 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
2920 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
2921 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
2922 }
2923 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002924 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, replace->str, replace->len);
2925
2926 free_trash_chunk(replace);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002927 break;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002928 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002929
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002930 case ACT_HTTP_DEL_ACL:
2931 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002932 struct pat_ref *ref;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002933 struct chunk *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002934
2935 /* collect reference */
2936 ref = pat_ref_lookup(rule->arg.map.ref);
2937 if (!ref)
2938 continue;
2939
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002940 /* allocate key */
2941 key = alloc_trash_chunk();
2942 if (!key)
2943 return HTTP_RULE_RES_BADREQ;
2944
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002945 /* collect key */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002946 key->len = build_logline(s, key->str, key->size, &rule->arg.map.key);
2947 key->str[key->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002948
2949 /* perform update */
2950 /* returned code: 1=ok, 0=ko */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002951 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002952 pat_ref_delete(ref, key->str);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002953 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002954
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002955 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002956 break;
2957 }
2958
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002959 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002960 struct pat_ref *ref;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002961 struct chunk *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002962
2963 /* collect reference */
2964 ref = pat_ref_lookup(rule->arg.map.ref);
2965 if (!ref)
2966 continue;
2967
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002968 /* allocate key */
2969 key = alloc_trash_chunk();
2970 if (!key)
2971 return HTTP_RULE_RES_BADREQ;
2972
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002973 /* collect key */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002974 key->len = build_logline(s, key->str, key->size, &rule->arg.map.key);
2975 key->str[key->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002976
2977 /* perform update */
2978 /* check if the entry already exists */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002979 if (pat_ref_find_elt(ref, key->str) == NULL)
2980 pat_ref_add(ref, key->str, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002981
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002982 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002983 break;
2984 }
2985
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002986 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002987 struct pat_ref *ref;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002988 struct chunk *key, *value;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002989
2990 /* collect reference */
2991 ref = pat_ref_lookup(rule->arg.map.ref);
2992 if (!ref)
2993 continue;
2994
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002995 /* allocate key */
2996 key = alloc_trash_chunk();
2997 if (!key)
2998 return HTTP_RULE_RES_BADREQ;
2999
3000 /* allocate value */
3001 value = alloc_trash_chunk();
3002 if (!value) {
3003 free_trash_chunk(key);
3004 return HTTP_RULE_RES_BADREQ;
3005 }
3006
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003007 /* collect key */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02003008 key->len = build_logline(s, key->str, key->size, &rule->arg.map.key);
3009 key->str[key->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003010
3011 /* collect value */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02003012 value->len = build_logline(s, value->str, value->size, &rule->arg.map.value);
3013 value->str[value->len] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003014
3015 /* perform update */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003016 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02003017 if (pat_ref_find_elt(ref, key->str) != NULL)
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003018 /* update entry if it exists */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02003019 pat_ref_set(ref, key->str, value->str, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003020 else
3021 /* insert a new entry */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02003022 pat_ref_add(ref, key->str, value->str, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003023 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02003024 free_trash_chunk(key);
3025 free_trash_chunk(value);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003026 break;
3027 }
William Lallemand73025dd2014-04-24 14:38:37 +02003028
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003029 case ACT_HTTP_REDIR:
Willy Tarreau51d861a2015-05-22 17:30:48 +02003030 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3031 return HTTP_RULE_RES_BADREQ;
3032 return HTTP_RULE_RES_DONE;
3033
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003034 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
3035 /* Note: only the first valid tracking parameter of each
3036 * applies.
3037 */
3038
Christopher Faulet4fce0d82017-09-18 11:57:31 +02003039 if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) {
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003040 struct stktable *t;
3041 struct stksess *ts;
3042 struct stktable_key *key;
3043 void *ptr;
3044
3045 t = rule->arg.trk_ctr.table.t;
3046 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_RES | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
3047
3048 if (key && (ts = stktable_get_entry(t, key))) {
Christopher Faulet4fce0d82017-09-18 11:57:31 +02003049 stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003050
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003051 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02003052
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003053 /* let's count a new HTTP request as it's the first time we do it */
3054 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3055 if (ptr)
3056 stktable_data_cast(ptr, http_req_cnt)++;
3057
3058 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3059 if (ptr)
3060 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
3061 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3062
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003063 /* When the client triggers a 4xx from the server, it's most often due
3064 * to a missing object or permission. These events should be tracked
3065 * because if they happen often, it may indicate a brute force or a
3066 * vulnerability scan. Normally this is done when receiving the response
3067 * but here we're tracking after this ought to have been done so we have
3068 * to do it on purpose.
3069 */
Willy Tarreau3146a4c2016-07-26 15:22:33 +02003070 if ((unsigned)(txn->status - 400) < 100) {
3071 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_CNT);
3072 if (ptr)
3073 stktable_data_cast(ptr, http_err_cnt)++;
3074
3075 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_RATE);
3076 if (ptr)
3077 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
3078 t->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
3079 }
Emeric Brun819fc6f2017-06-13 19:37:32 +02003080
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003081 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02003082
Emeric Brun0fed0b02017-11-29 16:15:07 +01003083 /* If data was modified, we need to touch to re-schedule sync */
3084 stktable_touch_local(t, ts, 0);
3085
Emeric Brun819fc6f2017-06-13 19:37:32 +02003086 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
3087 if (sess->fe != s->be)
3088 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
3089
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003090 }
3091 }
3092 break;
3093
Thierry FOURNIER42148732015-09-02 17:17:33 +02003094 case ACT_CUSTOM:
Willy Tarreau7aa15b02017-12-20 16:56:50 +01003095 if ((s->req.flags & CF_READ_ERROR) ||
3096 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
3097 !(s->si[0].flags & SI_FL_CLEAN_ABRT) &&
3098 (px->options & PR_O_ABRT_CLOSE)))
Willy Tarreauacc98002015-09-27 23:34:39 +02003099 act_flags |= ACT_FLAG_FINAL;
Willy Tarreau39458682015-09-27 10:33:15 +02003100
Willy Tarreauacc98002015-09-27 23:34:39 +02003101 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003102 case ACT_RET_ERR:
3103 case ACT_RET_CONT:
3104 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02003105 case ACT_RET_STOP:
3106 return HTTP_RULE_RES_STOP;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003107 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02003108 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003109 return HTTP_RULE_RES_YIELD;
3110 }
William Lallemand73025dd2014-04-24 14:38:37 +02003111 break;
3112
Thierry FOURNIER22e49012015-08-05 19:13:48 +02003113 /* other flags exists, but normaly, they never be matched. */
3114 default:
3115 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003116 }
3117 }
3118
3119 /* we reached the end of the rules, nothing to report */
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003120 return HTTP_RULE_RES_CONT;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003121}
3122
3123
Willy Tarreau71241ab2012-12-27 11:30:54 +01003124/* Perform an HTTP redirect based on the information in <rule>. The function
3125 * returns non-zero on success, or zero in case of a, irrecoverable error such
3126 * as too large a request to build a valid response.
3127 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003128static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Willy Tarreau71241ab2012-12-27 11:30:54 +01003129{
Willy Tarreaub329a312015-05-22 16:27:37 +02003130 struct http_msg *req = &txn->req;
3131 struct http_msg *res = &txn->rsp;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003132 const char *msg_fmt;
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003133 struct chunk *chunk;
3134 int ret = 0;
3135
3136 chunk = alloc_trash_chunk();
3137 if (!chunk)
3138 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003139
3140 /* build redirect message */
3141 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04003142 case 308:
3143 msg_fmt = HTTP_308;
3144 break;
3145 case 307:
3146 msg_fmt = HTTP_307;
3147 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003148 case 303:
3149 msg_fmt = HTTP_303;
3150 break;
3151 case 301:
3152 msg_fmt = HTTP_301;
3153 break;
3154 case 302:
3155 default:
3156 msg_fmt = HTTP_302;
3157 break;
3158 }
3159
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003160 if (unlikely(!chunk_strcpy(chunk, msg_fmt)))
3161 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003162
3163 switch(rule->type) {
3164 case REDIRECT_TYPE_SCHEME: {
3165 const char *path;
3166 const char *host;
3167 struct hdr_ctx ctx;
3168 int pathlen;
3169 int hostlen;
3170
3171 host = "";
3172 hostlen = 0;
3173 ctx.idx = 0;
Willy Tarreaub329a312015-05-22 16:27:37 +02003174 if (http_find_header2("Host", 4, req->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003175 host = ctx.line + ctx.val;
3176 hostlen = ctx.vlen;
3177 }
3178
3179 path = http_get_path(txn);
3180 /* build message using path */
3181 if (path) {
Willy Tarreaub329a312015-05-22 16:27:37 +02003182 pathlen = req->sl.rq.u_l + (req->chn->buf->p + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003183 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3184 int qs = 0;
3185 while (qs < pathlen) {
3186 if (path[qs] == '?') {
3187 pathlen = qs;
3188 break;
3189 }
3190 qs++;
3191 }
3192 }
3193 } else {
3194 path = "/";
3195 pathlen = 1;
3196 }
3197
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003198 if (rule->rdr_str) { /* this is an old "redirect" rule */
3199 /* check if we can add scheme + "://" + host + path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003200 if (chunk->len + rule->rdr_len + 3 + hostlen + pathlen > chunk->size - 4)
3201 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003202
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003203 /* add scheme */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003204 memcpy(chunk->str + chunk->len, rule->rdr_str, rule->rdr_len);
3205 chunk->len += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003206 }
3207 else {
3208 /* add scheme with executing log format */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003209 chunk->len += build_logline(s, chunk->str + chunk->len, chunk->size - chunk->len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003210
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003211 /* check if we can add scheme + "://" + host + path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003212 if (chunk->len + 3 + hostlen + pathlen > chunk->size - 4)
3213 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003214 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003215 /* add "://" */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003216 memcpy(chunk->str + chunk->len, "://", 3);
3217 chunk->len += 3;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003218
3219 /* add host */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003220 memcpy(chunk->str + chunk->len, host, hostlen);
3221 chunk->len += hostlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003222
3223 /* add path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003224 memcpy(chunk->str + chunk->len, path, pathlen);
3225 chunk->len += pathlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003226
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003227 /* append a slash at the end of the location if needed and missing */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003228 if (chunk->len && chunk->str[chunk->len - 1] != '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01003229 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003230 if (chunk->len > chunk->size - 5)
3231 goto leave;
3232 chunk->str[chunk->len] = '/';
3233 chunk->len++;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003234 }
3235
3236 break;
3237 }
3238 case REDIRECT_TYPE_PREFIX: {
3239 const char *path;
3240 int pathlen;
3241
3242 path = http_get_path(txn);
3243 /* build message using path */
3244 if (path) {
Willy Tarreaub329a312015-05-22 16:27:37 +02003245 pathlen = req->sl.rq.u_l + (req->chn->buf->p + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003246 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3247 int qs = 0;
3248 while (qs < pathlen) {
3249 if (path[qs] == '?') {
3250 pathlen = qs;
3251 break;
3252 }
3253 qs++;
3254 }
3255 }
3256 } else {
3257 path = "/";
3258 pathlen = 1;
3259 }
3260
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003261 if (rule->rdr_str) { /* this is an old "redirect" rule */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003262 if (chunk->len + rule->rdr_len + pathlen > chunk->size - 4)
3263 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003264
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003265 /* add prefix. Note that if prefix == "/", we don't want to
3266 * add anything, otherwise it makes it hard for the user to
3267 * configure a self-redirection.
3268 */
3269 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003270 memcpy(chunk->str + chunk->len, rule->rdr_str, rule->rdr_len);
3271 chunk->len += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003272 }
3273 }
3274 else {
3275 /* add prefix with executing log format */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003276 chunk->len += build_logline(s, chunk->str + chunk->len, chunk->size - chunk->len, &rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003277
3278 /* Check length */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003279 if (chunk->len + pathlen > chunk->size - 4)
3280 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003281 }
3282
3283 /* add path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003284 memcpy(chunk->str + chunk->len, path, pathlen);
3285 chunk->len += pathlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003286
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003287 /* append a slash at the end of the location if needed and missing */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003288 if (chunk->len && chunk->str[chunk->len - 1] != '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01003289 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003290 if (chunk->len > chunk->size - 5)
3291 goto leave;
3292 chunk->str[chunk->len] = '/';
3293 chunk->len++;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003294 }
3295
3296 break;
3297 }
3298 case REDIRECT_TYPE_LOCATION:
3299 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003300 if (rule->rdr_str) { /* this is an old "redirect" rule */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003301 if (chunk->len + rule->rdr_len > chunk->size - 4)
3302 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003303
3304 /* add location */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003305 memcpy(chunk->str + chunk->len, rule->rdr_str, rule->rdr_len);
3306 chunk->len += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003307 }
3308 else {
3309 /* add location with executing log format */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003310 chunk->len += build_logline(s, chunk->str + chunk->len, chunk->size - chunk->len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003311
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003312 /* Check left length */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003313 if (chunk->len > chunk->size - 4)
3314 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003315 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003316 break;
3317 }
3318
3319 if (rule->cookie_len) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003320 memcpy(chunk->str + chunk->len, "\r\nSet-Cookie: ", 14);
3321 chunk->len += 14;
3322 memcpy(chunk->str + chunk->len, rule->cookie_str, rule->cookie_len);
3323 chunk->len += rule->cookie_len;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003324 }
3325
Willy Tarreau19b14122017-02-28 09:48:11 +01003326 /* add end of headers and the keep-alive/close status. */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003327 txn->status = rule->code;
3328 /* let's log the request time */
3329 s->logs.tv_request = now;
3330
Christopher Fauletbe821b92017-03-30 11:21:53 +02003331 if (((!(req->flags & HTTP_MSGF_TE_CHNK) && !req->body_len) || (req->msg_state == HTTP_MSG_DONE)) &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01003332 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3333 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3334 /* keep-alive possible */
Willy Tarreaub329a312015-05-22 16:27:37 +02003335 if (!(req->flags & HTTP_MSGF_VER_11)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003336 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003337 memcpy(chunk->str + chunk->len, "\r\nProxy-Connection: keep-alive", 30);
3338 chunk->len += 30;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003339 } else {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003340 memcpy(chunk->str + chunk->len, "\r\nConnection: keep-alive", 24);
3341 chunk->len += 24;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003342 }
3343 }
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003344 memcpy(chunk->str + chunk->len, "\r\n\r\n", 4);
3345 chunk->len += 4;
3346 FLT_STRM_CB(s, flt_http_reply(s, txn->status, chunk));
Willy Tarreau06d80a92017-10-19 14:32:15 +02003347 co_inject(res->chn, chunk->str, chunk->len);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003348 /* "eat" the request */
Willy Tarreaub329a312015-05-22 16:27:37 +02003349 bi_fast_delete(req->chn->buf, req->sov);
3350 req->next -= req->sov;
3351 req->sov = 0;
Christopher Faulet0184ea72017-01-05 14:06:34 +01003352 s->req.analysers = AN_REQ_HTTP_XFER_BODY | (s->req.analysers & AN_REQ_FLT_END);
Christopher Faulet014e39c2017-03-10 13:52:30 +01003353 s->res.analysers = AN_RES_HTTP_XFER_BODY | (s->res.analysers & AN_RES_FLT_END);
Willy Tarreaub329a312015-05-22 16:27:37 +02003354 req->msg_state = HTTP_MSG_CLOSED;
3355 res->msg_state = HTTP_MSG_DONE;
Willy Tarreau51d861a2015-05-22 17:30:48 +02003356 /* Trim any possible response */
3357 res->chn->buf->i = 0;
3358 res->next = res->sov = 0;
Christopher Faulet5d468ca2017-09-11 09:27:29 +02003359 /* let the server side turn to SI_ST_CLO */
3360 channel_shutw_now(req->chn);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003361 } else {
3362 /* keep-alive not possible */
3363 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003364 memcpy(chunk->str + chunk->len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3365 chunk->len += 29;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003366 } else {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003367 memcpy(chunk->str + chunk->len, "\r\nConnection: close\r\n\r\n", 23);
3368 chunk->len += 23;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003369 }
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003370 http_reply_and_close(s, txn->status, chunk);
Christopher Faulet0184ea72017-01-05 14:06:34 +01003371 req->chn->analysers &= AN_REQ_FLT_END;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003372 }
3373
Willy Tarreaue7dff022015-04-03 01:14:29 +02003374 if (!(s->flags & SF_ERR_MASK))
3375 s->flags |= SF_ERR_LOCAL;
3376 if (!(s->flags & SF_FINST_MASK))
3377 s->flags |= SF_FINST_R;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003378
Thierry FOURNIER0d945762017-01-28 07:39:53 +01003379 ret = 1;
3380 leave:
3381 free_trash_chunk(chunk);
3382 return ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003383}
3384
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003385/* This stream analyser runs all HTTP request processing which is common to
3386 * frontends and backends, which means blocking ACLs, filters, connection-close,
3387 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003388 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003389 * either needs more data or wants to immediately abort the request (eg: deny,
3390 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003391 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003392int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003393{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003394 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003395 struct http_txn *txn = s->txn;
Willy Tarreaud787e662009-07-07 10:14:51 +02003396 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003397 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003398 struct cond_wordlist *wl;
Willy Tarreau0b748332014-04-29 00:13:29 +02003399 enum rule_result verdict;
Willy Tarreau58727ec2016-05-25 16:23:59 +02003400 int deny_status = HTTP_ERR_403;
Olivier Houchardc2aae742017-09-22 18:26:28 +02003401 struct connection *conn = objt_conn(sess->origin);
Willy Tarreaud787e662009-07-07 10:14:51 +02003402
Willy Tarreau655dce92009-11-08 13:10:58 +01003403 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003404 /* we need more data */
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003405 goto return_prx_yield;
Willy Tarreau51aecc72009-07-12 09:47:04 +02003406 }
3407
Willy Tarreau87b09662015-04-03 00:22:06 +02003408 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02003409 now_ms, __FUNCTION__,
3410 s,
3411 req,
3412 req->rex, req->wex,
3413 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003414 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02003415 req->analysers);
3416
Willy Tarreau65410832014-04-28 21:25:43 +02003417 /* just in case we have some per-backend tracking */
Willy Tarreau87b09662015-04-03 00:22:06 +02003418 stream_inc_be_http_req_ctr(s);
Willy Tarreau65410832014-04-28 21:25:43 +02003419
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003420 /* evaluate http-request rules */
Willy Tarreau0b748332014-04-29 00:13:29 +02003421 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Willy Tarreau58727ec2016-05-25 16:23:59 +02003422 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s, &deny_status);
Willy Tarreau51425942010-02-01 10:40:19 +01003423
Willy Tarreau0b748332014-04-29 00:13:29 +02003424 switch (verdict) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003425 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
3426 goto return_prx_yield;
3427
Willy Tarreau0b748332014-04-29 00:13:29 +02003428 case HTTP_RULE_RES_CONT:
3429 case HTTP_RULE_RES_STOP: /* nothing to do */
3430 break;
Willy Tarreau52542592014-04-28 18:33:26 +02003431
Willy Tarreau0b748332014-04-29 00:13:29 +02003432 case HTTP_RULE_RES_DENY: /* deny or tarpit */
3433 if (txn->flags & TX_CLTARPIT)
3434 goto tarpit;
3435 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02003436
Willy Tarreau0b748332014-04-29 00:13:29 +02003437 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
3438 goto return_prx_cond;
Willy Tarreau52542592014-04-28 18:33:26 +02003439
Willy Tarreau0b748332014-04-29 00:13:29 +02003440 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Willy Tarreau52542592014-04-28 18:33:26 +02003441 goto done;
3442
Willy Tarreau0b748332014-04-29 00:13:29 +02003443 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
3444 goto return_bad_req;
3445 }
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003446 }
3447
Olivier Houchardc2aae742017-09-22 18:26:28 +02003448 if (conn && conn->flags & CO_FL_EARLY_DATA) {
3449 struct hdr_ctx ctx;
3450
3451 ctx.idx = 0;
3452 if (!http_find_header2("Early-Data", strlen("Early-Data"),
3453 s->req.buf->p, &txn->hdr_idx, &ctx)) {
3454 if (unlikely(http_header_add_tail2(&txn->req,
3455 &txn->hdr_idx, "Early-Data: 1",
3456 strlen("Early-Data: 1"))) < 0) {
3457 goto return_bad_req;
3458 }
3459 }
3460
3461 }
3462
Willy Tarreau52542592014-04-28 18:33:26 +02003463 /* OK at this stage, we know that the request was accepted according to
3464 * the http-request rules, we can check for the stats. Note that the
3465 * URI is detected *before* the req* rules in order not to be affected
3466 * by a possible reqrep, while they are processed *after* so that a
3467 * reqdeny can still block them. This clearly needs to change in 1.6!
3468 */
Willy Tarreau350f4872014-11-28 14:42:25 +01003469 if (stats_check_uri(&s->si[1], txn, px)) {
Willy Tarreau52542592014-04-28 18:33:26 +02003470 s->target = &http_stats_applet.obj_type;
Willy Tarreau350f4872014-11-28 14:42:25 +01003471 if (unlikely(!stream_int_register_handler(&s->si[1], objt_applet(s->target)))) {
Willy Tarreau52542592014-04-28 18:33:26 +02003472 txn->status = 500;
3473 s->logs.tv_request = now;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003474 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003475
Willy Tarreaue7dff022015-04-03 01:14:29 +02003476 if (!(s->flags & SF_ERR_MASK))
3477 s->flags |= SF_ERR_RESOURCE;
Willy Tarreau52542592014-04-28 18:33:26 +02003478 goto return_prx_cond;
3479 }
3480
3481 /* parse the whole stats request and extract the relevant information */
3482 http_handle_stats(s, req);
Willy Tarreau58727ec2016-05-25 16:23:59 +02003483 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, &deny_status);
Willy Tarreau0b748332014-04-29 00:13:29 +02003484 /* not all actions implemented: deny, allow, auth */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003485
Willy Tarreau0b748332014-04-29 00:13:29 +02003486 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
3487 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02003488
Willy Tarreau0b748332014-04-29 00:13:29 +02003489 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
3490 goto return_prx_cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003491 }
3492
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003493 /* evaluate the req* rules except reqadd */
3494 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003495 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003496 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01003497
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003498 if (txn->flags & TX_CLDENY)
3499 goto deny;
Willy Tarreauc465fd72009-08-31 00:17:18 +02003500
Jarno Huuskonen800d1762017-03-06 14:56:36 +02003501 if (txn->flags & TX_CLTARPIT) {
3502 deny_status = HTTP_ERR_500;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003503 goto tarpit;
Jarno Huuskonen800d1762017-03-06 14:56:36 +02003504 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003505 }
Willy Tarreau06619262006-12-17 08:37:22 +01003506
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003507 /* add request headers from the rule sets in the same order */
3508 list_for_each_entry(wl, &px->req_add, list) {
3509 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02003510 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003511 ret = acl_pass(ret);
3512 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3513 ret = !ret;
3514 if (!ret)
3515 continue;
3516 }
3517
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003518 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003519 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003520 }
3521
Willy Tarreau52542592014-04-28 18:33:26 +02003522
3523 /* Proceed with the stats now. */
William Lallemand71bd11a2017-11-20 19:13:14 +01003524 if (unlikely(objt_applet(s->target) == &http_stats_applet) ||
3525 unlikely(objt_applet(s->target) == &http_cache_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003526 /* process the stats request now */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003527 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003528 HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Willy Tarreau347a35d2013-11-22 17:51:09 +01003529
Willy Tarreaue7dff022015-04-03 01:14:29 +02003530 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
3531 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
3532 if (!(s->flags & SF_FINST_MASK))
3533 s->flags |= SF_FINST_R;
Willy Tarreau347a35d2013-11-22 17:51:09 +01003534
Willy Tarreau70730dd2014-04-24 18:06:27 +02003535 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
Christopher Faulet0184ea72017-01-05 14:06:34 +01003536 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
3537 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003538 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003539 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003540 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003541
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003542 /* check whether we have some ACLs set to redirect this request */
3543 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003544 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003545 int ret;
3546
Willy Tarreau192252e2015-04-04 01:47:55 +02003547 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01003548 ret = acl_pass(ret);
3549 if (rule->cond->pol == ACL_COND_UNLESS)
3550 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003551 if (!ret)
3552 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01003553 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003554 if (!http_apply_redirect_rule(rule, s, txn))
3555 goto return_bad_req;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003556 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003557 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003558
Willy Tarreau2be39392010-01-03 17:24:51 +01003559 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3560 * If this happens, then the data will not come immediately, so we must
3561 * send all what we have without waiting. Note that due to the small gain
3562 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003563 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01003564 * itself once used.
3565 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003566 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01003567
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003568 done: /* done with this analyser, continue with next ones that the calling
3569 * points will have set, if any.
3570 */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003571 req->analyse_exp = TICK_ETERNITY;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02003572 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
3573 req->analysers &= ~an_bit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003574 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003575
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003576 tarpit:
Willy Tarreau6a0bca92017-06-11 17:56:27 +02003577 /* Allow cookie logging
3578 */
3579 if (s->be->cookie_name || sess->fe->capture_name)
3580 manage_client_side_cookies(s, req);
3581
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003582 /* When a connection is tarpitted, we use the tarpit timeout,
3583 * which may be the same as the connect timeout if unspecified.
3584 * If unset, then set it to zero because we really want it to
3585 * eventually expire. We build the tarpit as an analyser.
3586 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003587 channel_erase(&s->req);
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003588
3589 /* wipe the request out so that we can drop the connection early
3590 * if the client closes first.
3591 */
3592 channel_dont_connect(req);
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02003593
Jarno Huuskonen800d1762017-03-06 14:56:36 +02003594 txn->status = http_err_codes[deny_status];
3595
Christopher Faulet0184ea72017-01-05 14:06:34 +01003596 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003597 req->analysers |= AN_REQ_HTTP_TARPIT;
3598 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3599 if (!req->analyse_exp)
3600 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreau87b09662015-04-03 00:22:06 +02003601 stream_inc_http_err_ctr(s);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003602 HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003603 if (sess->fe != s->be)
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003604 HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003605 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02003606 HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Thierry FOURNIER7566e302014-08-22 06:55:26 +02003607 goto done_without_exp;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003608
3609 deny: /* this request was blocked (denied) */
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02003610
3611 /* Allow cookie logging
3612 */
3613 if (s->be->cookie_name || sess->fe->capture_name)
3614 manage_client_side_cookies(s, req);
3615
Willy Tarreau0b748332014-04-29 00:13:29 +02003616 txn->flags |= TX_CLDENY;
Willy Tarreau58727ec2016-05-25 16:23:59 +02003617 txn->status = http_err_codes[deny_status];
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003618 s->logs.tv_request = now;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003619 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau87b09662015-04-03 00:22:06 +02003620 stream_inc_http_err_ctr(s);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003621 HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003622 if (sess->fe != s->be)
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003623 HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003624 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02003625 HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003626 goto return_prx_cond;
3627
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003628 return_bad_req:
3629 /* We centralize bad requests processing here */
3630 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3631 /* we detected a parsing error. We want to archive this request
3632 * in the dedicated proxy area for later troubleshooting.
3633 */
Emeric Brun8c1aaa22017-06-15 11:30:06 +02003634 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003635 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003636
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003637 txn->req.err_state = txn->req.msg_state;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003638 txn->req.msg_state = HTTP_MSG_ERROR;
3639 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003640 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003641
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003642 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003643 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02003644 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003645
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003646 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02003647 if (!(s->flags & SF_ERR_MASK))
3648 s->flags |= SF_ERR_PRXCOND;
3649 if (!(s->flags & SF_FINST_MASK))
3650 s->flags |= SF_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003651
Christopher Faulet0184ea72017-01-05 14:06:34 +01003652 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003653 req->analyse_exp = TICK_ETERNITY;
3654 return 0;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003655
3656 return_prx_yield:
3657 channel_dont_connect(req);
3658 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003659}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003660
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003661/* This function performs all the processing enabled for the current request.
3662 * It returns 1 if the processing can continue on next analysers, or zero if it
3663 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003664 * request. It relies on buffers flags, and updates s->req.analysers.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003665 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003666int http_process_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003667{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003668 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003669 struct http_txn *txn = s->txn;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003670 struct http_msg *msg = &txn->req;
Willy Tarreauee335e62015-04-21 18:15:13 +02003671 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreau58f10d72006-12-04 02:26:12 +01003672
Willy Tarreau655dce92009-11-08 13:10:58 +01003673 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003674 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003675 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003676 return 0;
3677 }
3678
Willy Tarreau87b09662015-04-03 00:22:06 +02003679 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003680 now_ms, __FUNCTION__,
3681 s,
3682 req,
3683 req->rex, req->wex,
3684 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003685 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003686 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003687
Willy Tarreau59234e92008-11-30 23:51:27 +01003688 /*
3689 * Right now, we know that we have processed the entire headers
3690 * and that unwanted requests have been filtered out. We can do
3691 * whatever we want with the remaining request. Also, now we
3692 * may have separate values for ->fe, ->be.
3693 */
Willy Tarreau06619262006-12-17 08:37:22 +01003694
Willy Tarreau59234e92008-11-30 23:51:27 +01003695 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003696 * If HTTP PROXY is set we simply get remote server address parsing
3697 * incoming request. Note that this requires that a connection is
3698 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01003699 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02003700 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003701 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01003702 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003703
Willy Tarreau9471b8c2013-12-15 13:31:35 +01003704 /* Note that for now we don't reuse existing proxy connections */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003705 if (unlikely((conn = cs_conn(si_alloc_cs(&s->si[1], NULL))) == NULL)) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003706 txn->req.err_state = txn->req.msg_state;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003707 txn->req.msg_state = HTTP_MSG_ERROR;
3708 txn->status = 500;
Christopher Faulet0184ea72017-01-05 14:06:34 +01003709 req->analysers &= AN_REQ_FLT_END;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003710 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003711
Willy Tarreaue7dff022015-04-03 01:14:29 +02003712 if (!(s->flags & SF_ERR_MASK))
3713 s->flags |= SF_ERR_RESOURCE;
3714 if (!(s->flags & SF_FINST_MASK))
3715 s->flags |= SF_FINST_R;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02003716
3717 return 0;
3718 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01003719
3720 path = http_get_path(txn);
3721 url2sa(req->buf->p + msg->sl.rq.u,
3722 path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l,
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01003723 &conn->addr.to, NULL);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01003724 /* if the path was found, we have to remove everything between
3725 * req->buf->p + msg->sl.rq.u and path (excluded). If it was not
3726 * found, we need to replace from req->buf->p + msg->sl.rq.u for
3727 * u_l characters by a single "/".
3728 */
3729 if (path) {
3730 char *cur_ptr = req->buf->p;
3731 char *cur_end = cur_ptr + txn->req.sl.rq.l;
3732 int delta;
3733
3734 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0);
3735 http_msg_move_end(&txn->req, delta);
3736 cur_end += delta;
3737 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
3738 goto return_bad_req;
3739 }
3740 else {
3741 char *cur_ptr = req->buf->p;
3742 char *cur_end = cur_ptr + txn->req.sl.rq.l;
3743 int delta;
3744
3745 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u,
3746 req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
3747 http_msg_move_end(&txn->req, delta);
3748 cur_end += delta;
3749 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
3750 goto return_bad_req;
3751 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003752 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003753
Willy Tarreau59234e92008-11-30 23:51:27 +01003754 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003755 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003756 * Note that doing so might move headers in the request, but
3757 * the fields will stay coherent and the URI will not move.
3758 * This should only be performed in the backend.
3759 */
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02003760 if (s->be->cookie_name || sess->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003761 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003762
William Lallemanda73203e2012-03-12 12:48:57 +01003763 /* add unique-id if "header-unique-id" is specified */
3764
Thierry Fournierf4011dd2016-03-29 17:23:51 +02003765 if (!LIST_ISEMPTY(&sess->fe->format_unique_id) && !s->unique_id) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01003766 if ((s->unique_id = pool_alloc(pool_head_uniqueid)) == NULL)
William Lallemand5b7ea3a2013-08-28 15:44:19 +02003767 goto return_bad_req;
3768 s->unique_id[0] = '\0';
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003769 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02003770 }
William Lallemanda73203e2012-03-12 12:48:57 +01003771
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003772 if (sess->fe->header_unique_id && s->unique_id) {
3773 chunk_printf(&trash, "%s: %s", sess->fe->header_unique_id, s->unique_id);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003774 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01003775 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003776 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01003777 goto return_bad_req;
3778 }
3779
Cyril Bontéb21570a2009-11-29 20:04:48 +01003780 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01003781 * 9: add X-Forwarded-For if either the frontend or the backend
3782 * asks for it.
3783 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003784 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02003785 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003786 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
3787 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
3788 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003789 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02003790 /* The header is set to be added only if none is present
3791 * and we found it, so don't do anything.
3792 */
3793 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003794 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003795 /* Add an X-Forwarded-For header unless the source IP is
3796 * in the 'except' network range.
3797 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003798 if ((!sess->fe->except_mask.s_addr ||
3799 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
3800 != sess->fe->except_net.s_addr) &&
Willy Tarreau59234e92008-11-30 23:51:27 +01003801 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003802 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003803 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01003804 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01003805 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003806 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02003807
3808 /* Note: we rely on the backend to get the header name to be used for
3809 * x-forwarded-for, because the header is really meant for the backends.
3810 * However, if the backend did not specify any option, we have to rely
3811 * on the frontend's header name.
3812 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003813 if (s->be->fwdfor_hdr_len) {
3814 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003815 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02003816 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003817 len = sess->fe->fwdfor_hdr_len;
3818 memcpy(trash.str, sess->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003819 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02003820 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 +01003821
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003822 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01003823 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01003824 }
3825 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003826 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003827 /* FIXME: for the sake of completeness, we should also support
3828 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003829 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003830 int len;
3831 char pn[INET6_ADDRSTRLEN];
3832 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003833 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01003834 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003835
Willy Tarreau59234e92008-11-30 23:51:27 +01003836 /* Note: we rely on the backend to get the header name to be used for
3837 * x-forwarded-for, because the header is really meant for the backends.
3838 * However, if the backend did not specify any option, we have to rely
3839 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003840 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003841 if (s->be->fwdfor_hdr_len) {
3842 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003843 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01003844 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003845 len = sess->fe->fwdfor_hdr_len;
3846 memcpy(trash.str, sess->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003847 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02003848 len += snprintf(trash.str + len, trash.size - len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003849
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003850 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01003851 goto return_bad_req;
3852 }
3853 }
3854
3855 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02003856 * 10: add X-Original-To if either the frontend or the backend
3857 * asks for it.
3858 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003859 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003860
3861 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003862 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003863 /* Add an X-Original-To header unless the destination IP is
3864 * in the 'except' network range.
3865 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003866 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02003867
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003868 if (cli_conn->addr.to.ss_family == AF_INET &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003869 ((!sess->fe->except_mask_to.s_addr ||
3870 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
3871 != sess->fe->except_to.s_addr) &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02003872 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003873 (((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 +02003874 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003875 int len;
3876 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003877 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02003878
3879 /* Note: we rely on the backend to get the header name to be used for
3880 * x-original-to, because the header is really meant for the backends.
3881 * However, if the backend did not specify any option, we have to rely
3882 * on the frontend's header name.
3883 */
3884 if (s->be->orgto_hdr_len) {
3885 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003886 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02003887 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003888 len = sess->fe->orgto_hdr_len;
3889 memcpy(trash.str, sess->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003890 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02003891 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 +02003892
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003893 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003894 goto return_bad_req;
3895 }
3896 }
3897 }
3898
Willy Tarreau50fc7772012-11-11 22:19:57 +01003899 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
3900 * If an "Upgrade" token is found, the header is left untouched in order not to have
3901 * to deal with some servers bugs : some of them fail an Upgrade if anything but
3902 * "Upgrade" is present in the Connection header.
3903 */
3904 if (!(txn->flags & TX_HDR_CONN_UPG) &&
3905 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003906 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01003907 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003908 unsigned int want_flags = 0;
3909
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003910 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02003911 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003912 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01003913 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003914 !((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003915 want_flags |= TX_CON_CLO_SET;
3916 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02003917 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003918 ((sess->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL &&
Willy Tarreau02bce8b2014-01-30 00:15:28 +01003919 (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003920 ((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003921 want_flags |= TX_CON_KAL_SET;
3922 }
3923
3924 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003925 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003926 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003927
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003928
Willy Tarreau522d6c02009-12-06 18:49:18 +01003929 /* If we have no server assigned yet and we're balancing on url_param
3930 * with a POST request, we may be interested in checking the body for
3931 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003932 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02003933 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreaueee5b512015-04-03 23:46:31 +02003934 s->txn->meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003935 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003936 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003937 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003938 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003939
Christopher Fauletbe821b92017-03-30 11:21:53 +02003940 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
3941 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01003942#ifdef TCP_QUICKACK
Christopher Fauletbe821b92017-03-30 11:21:53 +02003943 /* We expect some data from the client. Unless we know for sure
3944 * we already have a full request, we have to re-enable quick-ack
3945 * in case we previously disabled it, otherwise we might cause
3946 * the client to delay further data.
3947 */
3948 if ((sess->listener->options & LI_O_NOQUICKACK) &&
3949 cli_conn && conn_ctrl_ready(cli_conn) &&
3950 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
3951 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreau585744b2017-08-24 14:31:19 +02003952 setsockopt(cli_conn->handle.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01003953#endif
Willy Tarreau03945942009-12-22 16:50:27 +01003954
Willy Tarreau59234e92008-11-30 23:51:27 +01003955 /*************************************************************
3956 * OK, that's finished for the headers. We have done what we *
3957 * could. Let's switch to the DATA state. *
3958 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003959 req->analyse_exp = TICK_ETERNITY;
3960 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003961
Willy Tarreau59234e92008-11-30 23:51:27 +01003962 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003963 /* OK let's go on with the BODY now */
3964 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003965
Willy Tarreau59234e92008-11-30 23:51:27 +01003966 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003967 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003968 /* we detected a parsing error. We want to archive this request
3969 * in the dedicated proxy area for later troubleshooting.
3970 */
Emeric Brun8c1aaa22017-06-15 11:30:06 +02003971 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003972 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003973
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003974 txn->req.err_state = txn->req.msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01003975 txn->req.msg_state = HTTP_MSG_ERROR;
3976 txn->status = 400;
Christopher Faulet0184ea72017-01-05 14:06:34 +01003977 req->analysers &= AN_REQ_FLT_END;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003978 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003979
Christopher Fauletff8abcd2017-06-02 15:33:24 +02003980 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003981 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02003982 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003983
Willy Tarreaue7dff022015-04-03 01:14:29 +02003984 if (!(s->flags & SF_ERR_MASK))
3985 s->flags |= SF_ERR_PRXCOND;
3986 if (!(s->flags & SF_FINST_MASK))
3987 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003988 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003989}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003990
Willy Tarreau60b85b02008-11-30 23:28:40 +01003991/* This function is an analyser which processes the HTTP tarpit. It always
3992 * returns zero, at the beginning because it prevents any other processing
3993 * from occurring, and at the end because it terminates the request.
3994 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003995int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003996{
Willy Tarreaueee5b512015-04-03 23:46:31 +02003997 struct http_txn *txn = s->txn;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003998
3999 /* This connection is being tarpitted. The CLIENT side has
4000 * already set the connect expiration date to the right
4001 * timeout. We just have to check that the client is still
4002 * there and that the timeout has not expired.
4003 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004004 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004005 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01004006 !tick_is_expired(req->analyse_exp, now_ms))
4007 return 0;
4008
4009 /* We will set the queue timer to the time spent, just for
4010 * logging purposes. We fake a 500 server error, so that the
4011 * attacker will not suspect his connection has been tarpitted.
4012 * It will not cause trouble to the logs because we can exclude
4013 * the tarpitted connections by filtering on the 'PT' status flags.
4014 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01004015 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
4016
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004017 if (!(req->flags & CF_READ_ERROR))
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004018 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau60b85b02008-11-30 23:28:40 +01004019
Christopher Faulet0184ea72017-01-05 14:06:34 +01004020 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004021 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004022
Willy Tarreaue7dff022015-04-03 01:14:29 +02004023 if (!(s->flags & SF_ERR_MASK))
4024 s->flags |= SF_ERR_PRXCOND;
4025 if (!(s->flags & SF_FINST_MASK))
4026 s->flags |= SF_FINST_T;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004027 return 0;
4028}
4029
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004030/* This function is an analyser which waits for the HTTP request body. It waits
4031 * for either the buffer to be full, or the full advertised contents to have
4032 * reached the buffer. It must only be called after the standard HTTP request
4033 * processing has occurred, because it expects the request to be parsed and will
4034 * look for the Expect header. It may send a 100-Continue interim response. It
4035 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
4036 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
4037 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01004038 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004039int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01004040{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004041 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004042 struct http_txn *txn = s->txn;
4043 struct http_msg *msg = &s->txn->req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004044
4045 /* We have to parse the HTTP request body to find any required data.
4046 * "balance url_param check_post" should have been the only way to get
4047 * into this. We were brought here after HTTP header analysis, so all
4048 * related structures are ready.
4049 */
4050
Willy Tarreau890988f2014-04-10 11:59:33 +02004051 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4052 /* This is the first call */
4053 if (msg->msg_state < HTTP_MSG_BODY)
4054 goto missing_data;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004055
Willy Tarreau890988f2014-04-10 11:59:33 +02004056 if (msg->msg_state < HTTP_MSG_100_SENT) {
4057 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4058 * send an HTTP/1.1 100 Continue intermediate response.
4059 */
4060 if (msg->flags & HTTP_MSGF_VER_11) {
4061 struct hdr_ctx ctx;
4062 ctx.idx = 0;
4063 /* Expect is allowed in 1.1, look for it */
4064 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
4065 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
Willy Tarreau06d80a92017-10-19 14:32:15 +02004066 co_inject(&s->res, http_100_chunk.str, http_100_chunk.len);
Thierry FOURNIER / OZON.IO43ad11d2016-12-12 15:19:58 +01004067 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau890988f2014-04-10 11:59:33 +02004068 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004069 }
Willy Tarreau890988f2014-04-10 11:59:33 +02004070 msg->msg_state = HTTP_MSG_100_SENT;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004071 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004072
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004073 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau877e78d2013-04-07 18:48:08 +02004074 * req->buf->p still points to the beginning of the message. We
4075 * must save the body in msg->next because it survives buffer
4076 * re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004077 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004078 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004079
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004080 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004081 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4082 else
4083 msg->msg_state = HTTP_MSG_DATA;
4084 }
4085
Willy Tarreau890988f2014-04-10 11:59:33 +02004086 if (!(msg->flags & HTTP_MSGF_TE_CHNK)) {
4087 /* We're in content-length mode, we just have to wait for enough data. */
Willy Tarreaue115b492015-05-01 23:05:14 +02004088 if (http_body_bytes(msg) < msg->body_len)
Willy Tarreau890988f2014-04-10 11:59:33 +02004089 goto missing_data;
4090
4091 /* OK we have everything we need now */
4092 goto http_end;
4093 }
4094
4095 /* OK here we're parsing a chunked-encoded message */
4096
Willy Tarreau522d6c02009-12-06 18:49:18 +01004097 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004098 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004099 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004100 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004101 */
Willy Tarreaue56cdd32017-09-21 08:36:33 +02004102 unsigned int chunk;
4103 int ret = h1_parse_chunk_size(req->buf, msg->next, req->buf->i, &chunk);
Willy Tarreaud34af782008-11-30 23:36:37 +01004104
Willy Tarreau115acb92009-12-26 13:56:06 +01004105 if (!ret)
4106 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004107 else if (ret < 0) {
Willy Tarreaue56cdd32017-09-21 08:36:33 +02004108 msg->err_pos = req->buf->i + ret;
4109 if (msg->err_pos < 0)
4110 msg->err_pos += req->buf->size;
Willy Tarreau87b09662015-04-03 00:22:06 +02004111 stream_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004112 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004113 }
Willy Tarreaue56cdd32017-09-21 08:36:33 +02004114
4115 msg->chunk_len = chunk;
4116 msg->body_len += chunk;
4117
4118 msg->sol = ret;
Christopher Faulet113f7de2015-12-14 14:52:13 +01004119 msg->next += ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004120 msg->msg_state = msg->chunk_len ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreaud34af782008-11-30 23:36:37 +01004121 }
4122
Willy Tarreaud98cf932009-12-27 22:54:55 +01004123 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaue115b492015-05-01 23:05:14 +02004124 * We have the first data byte is in msg->sov + msg->sol. We're waiting
4125 * for at least a whole chunk or the whole content length bytes after
4126 * msg->sov + msg->sol.
Willy Tarreaud34af782008-11-30 23:36:37 +01004127 */
Willy Tarreau890988f2014-04-10 11:59:33 +02004128 if (msg->msg_state == HTTP_MSG_TRAILERS)
4129 goto http_end;
4130
Willy Tarreaue115b492015-05-01 23:05:14 +02004131 if (http_body_bytes(msg) >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004132 goto http_end;
4133
4134 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02004135 /* we get here if we need to wait for more data. If the buffer is full,
4136 * we have the maximum we can expect.
4137 */
4138 if (buffer_full(req->buf, global.tune.maxrewrite))
4139 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01004140
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004141 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004142 txn->status = 408;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004143 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau79ebac62010-06-07 13:47:49 +02004144
Willy Tarreaue7dff022015-04-03 01:14:29 +02004145 if (!(s->flags & SF_ERR_MASK))
4146 s->flags |= SF_ERR_CLITO;
4147 if (!(s->flags & SF_FINST_MASK))
4148 s->flags |= SF_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004149 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01004150 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004151
4152 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02004153 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01004154 /* Not enough data. We'll re-use the http-request
4155 * timeout here. Ideally, we should set the timeout
4156 * relative to the accept() date. We just set the
4157 * request timeout once at the beginning of the
4158 * request.
4159 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004160 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01004161 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02004162 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01004163 return 0;
4164 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004165
4166 http_end:
4167 /* The situation will not evolve, so let's give up on the analysis. */
4168 s->logs.tv_request = now; /* update the request timer to reflect full request */
4169 req->analysers &= ~an_bit;
4170 req->analyse_exp = TICK_ETERNITY;
4171 return 1;
4172
4173 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004174 txn->req.err_state = txn->req.msg_state;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004175 txn->req.msg_state = HTTP_MSG_ERROR;
4176 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004177 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau522d6c02009-12-06 18:49:18 +01004178
Willy Tarreaue7dff022015-04-03 01:14:29 +02004179 if (!(s->flags & SF_ERR_MASK))
4180 s->flags |= SF_ERR_PRXCOND;
4181 if (!(s->flags & SF_FINST_MASK))
4182 s->flags |= SF_FINST_R;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004183
Willy Tarreau522d6c02009-12-06 18:49:18 +01004184 return_err_msg:
Christopher Faulet0184ea72017-01-05 14:06:34 +01004185 req->analysers &= AN_REQ_FLT_END;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004186 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004187 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02004188 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004189 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01004190}
4191
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004192/* send a server's name with an outgoing request over an established connection.
4193 * Note: this function is designed to be called once the request has been scheduled
4194 * for being forwarded. This is the reason why it rewinds the buffer before
4195 * proceeding.
4196 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01004197int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004198
4199 struct hdr_ctx ctx;
4200
Mark Lamourinec2247f02012-01-04 13:02:01 -05004201 char *hdr_name = be->server_id_hdr_name;
4202 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02004203 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004204 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004205 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004206
William Lallemandd9e90662012-01-30 17:27:17 +01004207 ctx.idx = 0;
4208
Willy Tarreau211cdec2014-04-17 20:18:08 +02004209 old_o = http_hdr_rewind(&txn->req);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004210 if (old_o) {
4211 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004212 b_rew(chn->buf, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02004213 txn->req.next += old_o;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004214 txn->req.sov += old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004215 }
4216
Willy Tarreau9b28e032012-10-12 23:49:43 +02004217 old_i = chn->buf->i;
4218 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 -05004219 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004220 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004221 }
4222
4223 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004224 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004225 memcpy(hdr_val, hdr_name, hdr_name_len);
4226 hdr_val += hdr_name_len;
4227 *hdr_val++ = ':';
4228 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004229 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
4230 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004231
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004232 if (old_o) {
4233 /* If this was a forwarded request, we must readjust the amount of
4234 * data to be forwarded in order to take into account the size
Willy Tarreau877e78d2013-04-07 18:48:08 +02004235 * variations. Note that the current state is >= HTTP_MSG_BODY,
4236 * so we don't have to adjust ->sol.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004237 */
Willy Tarreau877e78d2013-04-07 18:48:08 +02004238 old_o += chn->buf->i - old_i;
4239 b_adv(chn->buf, old_o);
4240 txn->req.next -= old_o;
4241 txn->req.sov -= old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004242 }
4243
Mark Lamourinec2247f02012-01-04 13:02:01 -05004244 return 0;
4245}
4246
Willy Tarreau610ecce2010-01-04 21:15:02 +01004247/* Terminate current transaction and prepare a new one. This is very tricky
4248 * right now but it works.
4249 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004250void http_end_txn_clean_session(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004251{
Willy Tarreaueee5b512015-04-03 23:46:31 +02004252 int prev_status = s->txn->status;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02004253 struct proxy *fe = strm_fe(s);
Willy Tarreau858b1032015-12-07 17:04:59 +01004254 struct proxy *be = s->be;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02004255 struct conn_stream *cs;
Willy Tarreau323a2d92015-08-04 19:00:17 +02004256 struct connection *srv_conn;
4257 struct server *srv;
Willy Tarreau449d74a2015-08-05 17:16:33 +02004258 unsigned int prev_flags = s->txn->flags;
Willy Tarreau068621e2013-12-23 15:11:25 +01004259
Willy Tarreau610ecce2010-01-04 21:15:02 +01004260 /* FIXME: We need a more portable way of releasing a backend's and a
4261 * server's connections. We need a safer way to reinitialize buffer
4262 * flags. We also need a more accurate method for computing per-request
4263 * data.
4264 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02004265 /*
4266 * XXX cognet: This is probably wrong, this is killing a whole
4267 * connection, in the new world order, we probably want to just kill
4268 * the stream, this is to be revisited the day we handle multiple
4269 * streams in one server connection.
4270 */
4271 cs = objt_cs(s->si[1].end);
4272 srv_conn = cs_conn(cs);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004273
Willy Tarreau4213a112013-12-15 10:25:42 +01004274 /* unless we're doing keep-alive, we want to quickly close the connection
4275 * to the server.
4276 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02004277 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Willy Tarreau350f4872014-11-28 14:42:25 +01004278 !si_conn_ready(&s->si[1])) {
4279 s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
4280 si_shutr(&s->si[1]);
4281 si_shutw(&s->si[1]);
Willy Tarreau4213a112013-12-15 10:25:42 +01004282 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004283
Willy Tarreaue7dff022015-04-03 01:14:29 +02004284 if (s->flags & SF_BE_ASSIGNED) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004285 HA_ATOMIC_SUB(&be->beconn, 1);
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004286 if (unlikely(s->srv_conn))
4287 sess_change_server(s, NULL);
4288 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004289
4290 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02004291 stream_process_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004292
Willy Tarreaueee5b512015-04-03 23:46:31 +02004293 if (s->txn->status) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004294 int n;
4295
Willy Tarreaueee5b512015-04-03 23:46:31 +02004296 n = s->txn->status / 100;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004297 if (n < 1 || n > 5)
4298 n = 0;
4299
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004300 if (fe->mode == PR_MODE_HTTP) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004301 HA_ATOMIC_ADD(&fe->fe_counters.p.http.rsp[n], 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004302 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02004303 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau858b1032015-12-07 17:04:59 +01004304 (be->mode == PR_MODE_HTTP)) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004305 HA_ATOMIC_ADD(&be->be_counters.p.http.rsp[n], 1);
4306 HA_ATOMIC_ADD(&be->be_counters.p.http.cum_req, 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004307 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004308 }
4309
4310 /* don't count other requests' data */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004311 s->logs.bytes_in -= s->req.buf->i;
4312 s->logs.bytes_out -= s->res.buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004313
4314 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004315 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02004316 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004317 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004318 s->do_log(s);
4319 }
4320
Willy Tarreaud713bcc2014-06-25 15:36:04 +02004321 /* stop tracking content-based counters */
Willy Tarreau87b09662015-04-03 00:22:06 +02004322 stream_stop_content_counters(s);
4323 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02004324
Willy Tarreau610ecce2010-01-04 21:15:02 +01004325 s->logs.accept_date = date; /* user-visible date for logging */
4326 s->logs.tv_accept = now; /* corrected date for internal use */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02004327 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
4328 s->logs.t_idle = -1;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004329 tv_zero(&s->logs.tv_request);
4330 s->logs.t_queue = -1;
4331 s->logs.t_connect = -1;
4332 s->logs.t_data = -1;
4333 s->logs.t_close = 0;
4334 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
4335 s->logs.srv_queue_size = 0; /* we will get this number soon */
4336
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004337 s->logs.bytes_in = s->req.total = s->req.buf->i;
4338 s->logs.bytes_out = s->res.total = s->res.buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004339
4340 if (s->pend_pos)
4341 pendconn_free(s->pend_pos);
4342
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004343 if (objt_server(s->target)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02004344 if (s->flags & SF_CURR_SESS) {
4345 s->flags &= ~SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +02004346 HA_ATOMIC_SUB(&objt_server(s->target)->cur_sess, 1);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004347 }
Willy Tarreau858b1032015-12-07 17:04:59 +01004348 if (may_dequeue_tasks(objt_server(s->target), be))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004349 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01004350 }
4351
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004352 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004353
Willy Tarreau4213a112013-12-15 10:25:42 +01004354 /* only release our endpoint if we don't intend to reuse the
4355 * connection.
4356 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02004357 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Willy Tarreau350f4872014-11-28 14:42:25 +01004358 !si_conn_ready(&s->si[1])) {
4359 si_release_endpoint(&s->si[1]);
Willy Tarreau323a2d92015-08-04 19:00:17 +02004360 srv_conn = NULL;
Willy Tarreau4213a112013-12-15 10:25:42 +01004361 }
4362
Willy Tarreau350f4872014-11-28 14:42:25 +01004363 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
4364 s->si[1].err_type = SI_ET_NONE;
4365 s->si[1].conn_retries = 0; /* used for logging too */
4366 s->si[1].exp = TICK_ETERNITY;
Willy Tarreau87b09662015-04-03 00:22:06 +02004367 s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004368 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);
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +01004369 s->res.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|CF_WRITE_EVENT);
Willy Tarreaue7dff022015-04-03 01:14:29 +02004370 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
4371 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
4372 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
Willy Tarreau543db622012-11-15 16:41:22 +01004373
Willy Tarreaueee5b512015-04-03 23:46:31 +02004374 s->txn->meth = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004375 http_reset_txn(s);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004376 s->txn->flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01004377
4378 if (prev_status == 401 || prev_status == 407) {
4379 /* In HTTP keep-alive mode, if we receive a 401, we still have
4380 * a chance of being able to send the visitor again to the same
4381 * server over the same connection. This is required by some
4382 * broken protocols such as NTLM, and anyway whenever there is
4383 * an opportunity for sending the challenge to the proper place,
4384 * it's better to do it (at least it helps with debugging).
4385 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02004386 s->txn->flags |= TX_PREFER_LAST;
Willy Tarreaubd99d582015-09-02 10:40:43 +02004387 if (srv_conn)
4388 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau068621e2013-12-23 15:11:25 +01004389 }
4390
Willy Tarreau53f96852016-02-02 18:50:47 +01004391 /* Never ever allow to reuse a connection from a non-reuse backend */
4392 if (srv_conn && (be->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
4393 srv_conn->flags |= CO_FL_PRIVATE;
4394
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004395 if (fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau350f4872014-11-28 14:42:25 +01004396 s->si[1].flags |= SI_FL_INDEP_STR;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004397
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004398 if (fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004399 s->req.flags |= CF_NEVER_WAIT;
4400 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02004401 }
4402
Willy Tarreau714ea782015-11-25 20:11:11 +01004403 /* we're removing the analysers, we MUST re-enable events detection.
4404 * We don't enable close on the response channel since it's either
4405 * already closed, or in keep-alive with an idle connection handler.
4406 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004407 channel_auto_read(&s->req);
4408 channel_auto_close(&s->req);
4409 channel_auto_read(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004410
Willy Tarreau1c59bd52015-11-02 20:20:11 +01004411 /* we're in keep-alive with an idle connection, monitor it if not already done */
4412 if (srv_conn && LIST_ISEMPTY(&srv_conn->list)) {
Willy Tarreau323a2d92015-08-04 19:00:17 +02004413 srv = objt_server(srv_conn->target);
Willy Tarreau8dff9982015-08-04 20:45:52 +02004414 if (!srv)
Olivier Houchard9aaf7782017-09-13 18:30:23 +02004415 si_idle_cs(&s->si[1], NULL);
Willy Tarreau53f96852016-02-02 18:50:47 +01004416 else if (srv_conn->flags & CO_FL_PRIVATE)
Olivier Houchard9aaf7782017-09-13 18:30:23 +02004417 si_idle_cs(&s->si[1], (srv->priv_conns ? &srv->priv_conns[tid] : NULL));
Willy Tarreau449d74a2015-08-05 17:16:33 +02004418 else if (prev_flags & TX_NOT_FIRST)
4419 /* note: we check the request, not the connection, but
4420 * this is valid for strategies SAFE and AGGR, and in
4421 * case of ALWS, we don't care anyway.
4422 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02004423 si_idle_cs(&s->si[1], (srv->safe_conns ? &srv->safe_conns[tid] : NULL));
Willy Tarreau8dff9982015-08-04 20:45:52 +02004424 else
Olivier Houchard9aaf7782017-09-13 18:30:23 +02004425 si_idle_cs(&s->si[1], (srv->idle_conns ? &srv->idle_conns[tid] : NULL));
Willy Tarreau4320eaa2015-08-05 11:08:30 +02004426 }
Christopher Faulete6006242017-03-10 11:52:44 +01004427 s->req.analysers = strm_li(s) ? strm_li(s)->analysers : 0;
4428 s->res.analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004429}
4430
4431
4432/* This function updates the request state machine according to the response
4433 * state machine and buffer flags. It returns 1 if it changes anything (flag
4434 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4435 * it is only used to find when a request/response couple is complete. Both
4436 * this function and its equivalent should loop until both return zero. It
4437 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4438 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004439int http_sync_req_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004440{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004441 struct channel *chn = &s->req;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004442 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004443 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004444 unsigned int old_state = txn->req.msg_state;
4445
Christopher Faulet4be98032017-07-18 10:48:24 +02004446 if (unlikely(txn->req.msg_state < HTTP_MSG_DONE))
Willy Tarreau610ecce2010-01-04 21:15:02 +01004447 return 0;
4448
4449 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004450 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004451 * We can shut the read side unless we want to abort_on_close,
4452 * or we have a POST request. The issue with POST requests is
4453 * that some browsers still send a CRLF after the request, and
4454 * this CRLF must be read so that it does not remain in the kernel
4455 * buffers, otherwise a close could cause an RST on some systems
4456 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01004457 * Note that if we're using keep-alive on the client side, we'd
4458 * rather poll now and keep the polling enabled for the whole
Willy Tarreau87b09662015-04-03 00:22:06 +02004459 * stream's life than enabling/disabling it between each
Willy Tarreau3988d932013-12-27 23:03:08 +01004460 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01004461 */
Willy Tarreau3988d932013-12-27 23:03:08 +01004462 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
4463 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
Willy Tarreau7aa15b02017-12-20 16:56:50 +01004464 (!(s->be->options & PR_O_ABRT_CLOSE) ||
4465 (s->si[0].flags & SI_FL_CLEAN_ABRT)) &&
Willy Tarreau3988d932013-12-27 23:03:08 +01004466 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004467 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004468
Willy Tarreau40f151a2012-12-20 12:10:09 +01004469 /* if the server closes the connection, we want to immediately react
4470 * and close the socket to save packets and syscalls.
4471 */
Willy Tarreau350f4872014-11-28 14:42:25 +01004472 s->si[1].flags |= SI_FL_NOHALF;
Willy Tarreau40f151a2012-12-20 12:10:09 +01004473
Willy Tarreau7f876a12015-11-18 11:59:55 +01004474 /* In any case we've finished parsing the request so we must
4475 * disable Nagle when sending data because 1) we're not going
4476 * to shut this side, and 2) the server is waiting for us to
4477 * send pending data.
4478 */
4479 chn->flags |= CF_NEVER_WAIT;
4480
Willy Tarreau610ecce2010-01-04 21:15:02 +01004481 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4482 goto wait_other_side;
4483
4484 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4485 /* The server has not finished to respond, so we
4486 * don't want to move in order not to upset it.
4487 */
4488 goto wait_other_side;
4489 }
4490
Willy Tarreau610ecce2010-01-04 21:15:02 +01004491 /* When we get here, it means that both the request and the
4492 * response have finished receiving. Depending on the connection
4493 * mode, we'll have to wait for the last bytes to leave in either
4494 * direction, and sometimes for a close to be effective.
4495 */
4496
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004497 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4498 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004499 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
4500 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004501 }
4502 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4503 /* Option forceclose is set, or either side wants to close,
4504 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02004505 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004506 * once both states are CLOSED.
Christopher Faulet1486b0a2017-07-18 11:42:08 +02004507 *
4508 * However, there is an exception if the response
4509 * length is undefined. In this case, we need to wait
4510 * the close from the server. The response will be
4511 * switched in TUNNEL mode until the end.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004512 */
Christopher Faulet1486b0a2017-07-18 11:42:08 +02004513 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) &&
4514 txn->rsp.msg_state != HTTP_MSG_CLOSED)
4515 goto check_channel_flags;
4516
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004517 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4518 channel_shutr_now(chn);
4519 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004520 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004521 }
4522 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01004523 /* The last possible modes are keep-alive and tunnel. Tunnel mode
4524 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004525 */
Willy Tarreau4213a112013-12-15 10:25:42 +01004526 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
4527 channel_auto_read(chn);
4528 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau4213a112013-12-15 10:25:42 +01004529 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004530 }
4531
Christopher Faulet4be98032017-07-18 10:48:24 +02004532 goto check_channel_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004533 }
4534
4535 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4536 http_msg_closing:
4537 /* nothing else to forward, just waiting for the output buffer
4538 * to be empty and for the shutw_now to take effect.
4539 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004540 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004541 txn->req.msg_state = HTTP_MSG_CLOSED;
4542 goto http_msg_closed;
4543 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004544 else if (chn->flags & CF_SHUTW) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004545 txn->req.err_state = txn->req.msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004546 txn->req.msg_state = HTTP_MSG_ERROR;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004547 }
Christopher Faulet56d26092017-07-20 11:05:10 +02004548 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004549 }
4550
4551 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4552 http_msg_closed:
Willy Tarreau80593512017-12-14 10:43:31 +01004553 /* if we don't know whether the server will close, we need to hard close */
4554 if (txn->rsp.flags & HTTP_MSGF_XFER_LEN)
4555 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
4556
Willy Tarreau3988d932013-12-27 23:03:08 +01004557 /* see above in MSG_DONE why we only do this in these states */
4558 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
4559 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
Willy Tarreau7aa15b02017-12-20 16:56:50 +01004560 (!(s->be->options & PR_O_ABRT_CLOSE) ||
4561 (s->si[0].flags & SI_FL_CLEAN_ABRT)))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01004562 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004563 goto wait_other_side;
4564 }
4565
Christopher Faulet4be98032017-07-18 10:48:24 +02004566 check_channel_flags:
4567 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
4568 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
4569 /* if we've just closed an output, let's switch */
Christopher Faulet4be98032017-07-18 10:48:24 +02004570 txn->req.msg_state = HTTP_MSG_CLOSING;
4571 goto http_msg_closing;
4572 }
4573
4574
Willy Tarreau610ecce2010-01-04 21:15:02 +01004575 wait_other_side:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004576 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004577}
4578
4579
4580/* This function updates the response state machine according to the request
4581 * state machine and buffer flags. It returns 1 if it changes anything (flag
4582 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4583 * it is only used to find when a request/response couple is complete. Both
4584 * this function and its equivalent should loop until both return zero. It
4585 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4586 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004587int http_sync_res_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004588{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004589 struct channel *chn = &s->res;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004590 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004591 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004592 unsigned int old_state = txn->rsp.msg_state;
4593
Christopher Faulet4be98032017-07-18 10:48:24 +02004594 if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE))
Willy Tarreau610ecce2010-01-04 21:15:02 +01004595 return 0;
4596
4597 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4598 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004599 * still monitor the server connection for a possible close
4600 * while the request is being uploaded, so we don't disable
4601 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004602 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004603 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004604
4605 if (txn->req.msg_state == HTTP_MSG_ERROR)
4606 goto wait_other_side;
4607
4608 if (txn->req.msg_state < HTTP_MSG_DONE) {
4609 /* The client seems to still be sending data, probably
4610 * because we got an error response during an upload.
4611 * We have the choice of either breaking the connection
4612 * or letting it pass through. Let's do the later.
4613 */
4614 goto wait_other_side;
4615 }
4616
Willy Tarreau610ecce2010-01-04 21:15:02 +01004617 /* When we get here, it means that both the request and the
4618 * response have finished receiving. Depending on the connection
4619 * mode, we'll have to wait for the last bytes to leave in either
4620 * direction, and sometimes for a close to be effective.
4621 */
4622
4623 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4624 /* Server-close mode : shut read and wait for the request
4625 * side to close its output buffer. The caller will detect
4626 * when we're in DONE and the other is in CLOSED and will
4627 * catch that for the final cleanup.
4628 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004629 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
4630 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004631 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004632 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4633 /* Option forceclose is set, or either side wants to close,
4634 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02004635 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004636 * once both states are CLOSED.
Christopher Faulet1486b0a2017-07-18 11:42:08 +02004637 *
4638 * However, there is an exception if the response length
4639 * is undefined. In this case, we switch in TUNNEL mode.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004640 */
Christopher Faulet1486b0a2017-07-18 11:42:08 +02004641 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN)) {
4642 channel_auto_read(chn);
4643 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
4644 chn->flags |= CF_NEVER_WAIT;
4645 }
4646 else if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004647 channel_shutr_now(chn);
4648 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004649 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004650 }
4651 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01004652 /* The last possible modes are keep-alive and tunnel. Tunnel will
4653 * need to forward remaining data. Keep-alive will need to monitor
4654 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004655 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004656 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02004657 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01004658 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
4659 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004660 }
4661
Christopher Faulet4be98032017-07-18 10:48:24 +02004662 goto check_channel_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004663 }
4664
4665 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4666 http_msg_closing:
4667 /* nothing else to forward, just waiting for the output buffer
4668 * to be empty and for the shutw_now to take effect.
4669 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004670 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004671 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4672 goto http_msg_closed;
4673 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004674 else if (chn->flags & CF_SHUTW) {
Christopher Fauleta3992e02017-07-18 10:35:55 +02004675 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004676 txn->rsp.msg_state = HTTP_MSG_ERROR;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004677 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004678 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02004679 HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004680 }
Christopher Faulet56d26092017-07-20 11:05:10 +02004681 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004682 }
4683
4684 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4685 http_msg_closed:
4686 /* drop any pending data */
Willy Tarreau319f7452015-01-14 20:32:59 +01004687 channel_truncate(chn);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004688 channel_auto_close(chn);
4689 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004690 goto wait_other_side;
4691 }
4692
Christopher Faulet4be98032017-07-18 10:48:24 +02004693 check_channel_flags:
4694 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
4695 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
4696 /* if we've just closed an output, let's switch */
4697 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4698 goto http_msg_closing;
4699 }
4700
Willy Tarreau610ecce2010-01-04 21:15:02 +01004701 wait_other_side:
Willy Tarreaufc47f912012-10-20 10:38:09 +02004702 /* We force the response to leave immediately if we're waiting for the
4703 * other side, since there is no pending shutdown to push it out.
4704 */
4705 if (!channel_is_empty(chn))
4706 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004707 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004708}
4709
4710
Christopher Faulet894da4c2017-07-18 11:29:07 +02004711/* Resync the request and response state machines. */
4712void http_resync_states(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004713{
Willy Tarreaueee5b512015-04-03 23:46:31 +02004714 struct http_txn *txn = s->txn;
Christopher Faulet894da4c2017-07-18 11:29:07 +02004715#ifdef DEBUG_FULL
Willy Tarreau610ecce2010-01-04 21:15:02 +01004716 int old_req_state = txn->req.msg_state;
4717 int old_res_state = txn->rsp.msg_state;
Christopher Faulet894da4c2017-07-18 11:29:07 +02004718#endif
Willy Tarreau610ecce2010-01-04 21:15:02 +01004719
Willy Tarreau610ecce2010-01-04 21:15:02 +01004720 http_sync_req_state(s);
4721 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004722 if (!http_sync_res_state(s))
4723 break;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004724 if (!http_sync_req_state(s))
4725 break;
4726 }
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02004727
Christopher Faulet894da4c2017-07-18 11:29:07 +02004728 DPRINTF(stderr,"[%u] %s: stream=%p old=%s,%s cur=%s,%s "
4729 "req->analysers=0x%08x res->analysers=0x%08x\n",
4730 now_ms, __FUNCTION__, s,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +02004731 h1_msg_state_str(old_req_state), h1_msg_state_str(old_res_state),
4732 h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state),
Christopher Faulet894da4c2017-07-18 11:29:07 +02004733 s->req.analysers, s->res.analysers);
Christopher Faulet814d2702017-03-30 11:33:44 +02004734
4735
Willy Tarreau610ecce2010-01-04 21:15:02 +01004736 /* OK, both state machines agree on a compatible state.
4737 * There are a few cases we're interested in :
Willy Tarreau610ecce2010-01-04 21:15:02 +01004738 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4739 * directions, so let's simply disable both analysers.
Christopher Fauletf77bb532017-07-18 11:18:46 +02004740 * - HTTP_MSG_CLOSED on the response only or HTTP_MSG_ERROR on either
4741 * means we must abort the request.
4742 * - HTTP_MSG_TUNNEL on either means we have to disable analyser on
4743 * corresponding channel.
4744 * - HTTP_MSG_DONE or HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE
4745 * on the response with server-close mode means we've completed one
4746 * request and we must re-initialize the server connection.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004747 */
Christopher Fauletf77bb532017-07-18 11:18:46 +02004748 if (txn->req.msg_state == HTTP_MSG_CLOSED &&
4749 txn->rsp.msg_state == HTTP_MSG_CLOSED) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004750 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004751 channel_auto_close(&s->req);
4752 channel_auto_read(&s->req);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004753 s->res.analysers &= AN_RES_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004754 channel_auto_close(&s->res);
4755 channel_auto_read(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004756 }
Christopher Fauletf77bb532017-07-18 11:18:46 +02004757 else if (txn->rsp.msg_state == HTTP_MSG_CLOSED ||
4758 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01004759 txn->req.msg_state == HTTP_MSG_ERROR) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004760 s->res.analysers &= AN_RES_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004761 channel_auto_close(&s->res);
4762 channel_auto_read(&s->res);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004763 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004764 channel_abort(&s->req);
4765 channel_auto_close(&s->req);
4766 channel_auto_read(&s->req);
4767 channel_truncate(&s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004768 }
Christopher Fauletf77bb532017-07-18 11:18:46 +02004769 else if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4770 txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4771 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4772 s->req.analysers &= AN_REQ_FLT_END;
4773 if (HAS_REQ_DATA_FILTERS(s))
4774 s->req.analysers |= AN_REQ_FLT_XFER_DATA;
4775 }
4776 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4777 s->res.analysers &= AN_RES_FLT_END;
4778 if (HAS_RSP_DATA_FILTERS(s))
4779 s->res.analysers |= AN_RES_FLT_XFER_DATA;
4780 }
4781 channel_auto_close(&s->req);
4782 channel_auto_read(&s->req);
4783 channel_auto_close(&s->res);
4784 channel_auto_read(&s->res);
4785 }
Willy Tarreau4213a112013-12-15 10:25:42 +01004786 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
4787 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01004788 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01004789 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
4790 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
4791 /* server-close/keep-alive: terminate this transaction,
4792 * possibly killing the server connection and reinitialize
Willy Tarreau3de5bd62016-05-02 16:07:07 +02004793 * a fresh-new transaction, but only once we're sure there's
4794 * enough room in the request and response buffer to process
Christopher Fauletc0c672a2017-03-28 11:51:33 +02004795 * another request. They must not hold any pending output data
4796 * and the response buffer must realigned
4797 * (realign is done is http_end_txn_clean_session).
Willy Tarreau610ecce2010-01-04 21:15:02 +01004798 */
Christopher Faulet894da4c2017-07-18 11:29:07 +02004799 if (s->req.buf->o)
Willy Tarreau3de5bd62016-05-02 16:07:07 +02004800 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet894da4c2017-07-18 11:29:07 +02004801 else if (s->res.buf->o)
Willy Tarreau3de5bd62016-05-02 16:07:07 +02004802 s->res.flags |= CF_WAKE_WRITE;
Christopher Fauleta81ff602017-07-18 22:01:05 +02004803 else {
4804 s->req.analysers = AN_REQ_FLT_END;
4805 s->res.analysers = AN_RES_FLT_END;
4806 txn->flags |= TX_WAIT_CLEANUP;
4807 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004808 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004809}
4810
Willy Tarreaud98cf932009-12-27 22:54:55 +01004811/* This function is an analyser which forwards request body (including chunk
4812 * sizes if any). It is called as soon as we must forward, even if we forward
4813 * zero byte. The only situation where it must not be called is when we're in
4814 * tunnel mode and we want to forward till the close. It's used both to forward
4815 * remaining data and to resync after end of body. It expects the msg_state to
4816 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02004817 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreau124d9912011-03-01 20:30:48 +01004818 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreauc24715e2014-04-17 15:21:20 +02004819 * bytes of pending data + the headers if not already done.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004820 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004821int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01004822{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004823 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004824 struct http_txn *txn = s->txn;
4825 struct http_msg *msg = &s->txn->req;
Christopher Faulet3e344292015-11-24 16:24:13 +01004826 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004827
Christopher Faulet814d2702017-03-30 11:33:44 +02004828 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
4829 now_ms, __FUNCTION__,
4830 s,
4831 req,
4832 req->rex, req->wex,
4833 req->flags,
4834 req->buf->i,
4835 req->analysers);
4836
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004837 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4838 return 0;
4839
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004840 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004841 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02004842 /* Output closed while we were sending data. We must abort and
4843 * wake the other side up.
4844 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004845 msg->err_state = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02004846 msg->msg_state = HTTP_MSG_ERROR;
4847 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004848 return 1;
4849 }
4850
Willy Tarreaud98cf932009-12-27 22:54:55 +01004851 /* Note that we don't have to send 100-continue back because we don't
4852 * need the data to complete our job, and it's up to the server to
4853 * decide whether to return 100, 417 or anything else in return of
4854 * an "Expect: 100-continue" header.
4855 */
Christopher Fauletd7c91962015-04-30 11:48:27 +02004856 if (msg->msg_state == HTTP_MSG_BODY) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004857 msg->msg_state = ((msg->flags & HTTP_MSGF_TE_CHNK)
4858 ? HTTP_MSG_CHUNK_SIZE
4859 : HTTP_MSG_DATA);
Christopher Fauletd7c91962015-04-30 11:48:27 +02004860
4861 /* TODO/filters: when http-buffer-request option is set or if a
4862 * rule on url_param exists, the first chunk size could be
4863 * already parsed. In that case, msg->next is after the chunk
4864 * size (including the CRLF after the size). So this case should
4865 * be handled to */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004866 }
4867
Willy Tarreau7ba23542014-04-17 21:50:00 +02004868 /* Some post-connect processing might want us to refrain from starting to
4869 * forward data. Currently, the only reason for this is "balance url_param"
4870 * whichs need to parse/process the request after we've enabled forwarding.
4871 */
4872 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004873 if (!(s->res.flags & CF_READ_ATTACHED)) {
Willy Tarreau7ba23542014-04-17 21:50:00 +02004874 channel_auto_connect(req);
Willy Tarreau644c1012014-04-30 18:11:11 +02004875 req->flags |= CF_WAKE_CONNECT;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004876 goto missing_data_or_waiting;
Willy Tarreau7ba23542014-04-17 21:50:00 +02004877 }
4878 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
4879 }
4880
Willy Tarreau80a92c02014-03-12 10:41:13 +01004881 /* in most states, we should abort in case of early close */
4882 channel_auto_close(req);
4883
Willy Tarreauefdf0942014-04-24 20:08:57 +02004884 if (req->to_forward) {
4885 /* We can't process the buffer's contents yet */
4886 req->flags |= CF_WAKE_WRITE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004887 goto missing_data_or_waiting;
Willy Tarreauefdf0942014-04-24 20:08:57 +02004888 }
4889
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004890 if (msg->msg_state < HTTP_MSG_DONE) {
4891 ret = ((msg->flags & HTTP_MSGF_TE_CHNK)
4892 ? http_msg_forward_chunked_body(s, msg)
4893 : http_msg_forward_body(s, msg));
4894 if (!ret)
4895 goto missing_data_or_waiting;
4896 if (ret < 0)
4897 goto return_bad_req;
4898 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02004899
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004900 /* other states, DONE...TUNNEL */
4901 /* we don't want to forward closes on DONE except in tunnel mode. */
4902 if ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
4903 channel_dont_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02004904
Christopher Faulet894da4c2017-07-18 11:29:07 +02004905 http_resync_states(s);
4906 if (!(req->analysers & an_bit)) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004907 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4908 if (req->flags & CF_SHUTW) {
4909 /* request errors are most likely due to the
4910 * server aborting the transfer. */
4911 goto aborted_xfer;
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004912 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004913 if (msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02004914 http_capture_bad_message(sess->fe, &sess->fe->invalid_req, s, msg, msg->err_state, s->be);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004915 goto return_bad_req;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004916 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004917 return 1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004918 }
4919
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004920 /* If "option abortonclose" is set on the backend, we want to monitor
4921 * the client's connection and forward any shutdown notification to the
4922 * server, which will decide whether to close or to go on processing the
4923 * request. We only do that in tunnel mode, and not in other modes since
4924 * it can be abused to exhaust source ports. */
Willy Tarreau7aa15b02017-12-20 16:56:50 +01004925 if ((s->be->options & PR_O_ABRT_CLOSE) && !(s->si[0].flags & SI_FL_CLEAN_ABRT)) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004926 channel_auto_read(req);
4927 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) &&
4928 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN))
4929 s->si[1].flags |= SI_FL_NOLINGER;
4930 channel_auto_close(req);
4931 }
4932 else if (s->txn->meth == HTTP_METH_POST) {
4933 /* POST requests may require to read extra CRLF sent by broken
4934 * browsers and which could cause an RST to be sent upon close
4935 * on some systems (eg: Linux). */
4936 channel_auto_read(req);
4937 }
4938 return 0;
Willy Tarreaubed410e2014-04-22 08:19:34 +02004939
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004940 missing_data_or_waiting:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004941 /* stop waiting for data if the input is closed before the end */
Christopher Fauleta33510b2017-03-31 15:37:29 +02004942 if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02004943 if (!(s->flags & SF_ERR_MASK))
4944 s->flags |= SF_ERR_CLICL;
4945 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004946 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02004947 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004948 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02004949 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004950 }
4951
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004952 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
4953 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004954 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02004955 HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004956
4957 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004958 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004959
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004960 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004961 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004962 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004963
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004964 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004965 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreauff47b3f2017-12-29 16:30:31 +01004966 * And when content-length is used, we never want to let the possible
4967 * shutdown be forwarded to the other side, as the state machine will
4968 * take care of it once the client responds. It's also important to
4969 * prevent TIME_WAITs from accumulating on the backend side, and for
4970 * HTTP/2 where the last frame comes with a shutdown.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004971 */
Willy Tarreauff47b3f2017-12-29 16:30:31 +01004972 if (msg->flags & (HTTP_MSGF_TE_CHNK|HTTP_MSGF_CNT_LEN))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004973 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004974
Willy Tarreau5c620922011-05-11 19:56:11 +02004975 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004976 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02004977 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01004978 * modes are already handled by the stream sock layer. We must not do
4979 * this in content-length mode because it could present the MSG_MORE
4980 * flag with the last block of forwarded data, which would cause an
4981 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02004982 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004983 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004984 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02004985
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004986 return 0;
4987
Willy Tarreaud98cf932009-12-27 22:54:55 +01004988 return_bad_req: /* let's centralize all bad requests */
Christopher Fauletff8abcd2017-06-02 15:33:24 +02004989 HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004990 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02004991 HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreaubed410e2014-04-22 08:19:34 +02004992
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004993 return_bad_req_stats_ok:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004994 txn->req.err_state = txn->req.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004995 txn->req.msg_state = HTTP_MSG_ERROR;
4996 if (txn->status) {
4997 /* Note: we don't send any error if some data were already sent */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01004998 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004999 } else {
5000 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005001 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005002 }
Christopher Faulet0184ea72017-01-05 14:06:34 +01005003 req->analysers &= AN_REQ_FLT_END;
5004 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005005
Willy Tarreaue7dff022015-04-03 01:14:29 +02005006 if (!(s->flags & SF_ERR_MASK))
5007 s->flags |= SF_ERR_PRXCOND;
5008 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005009 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005010 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005011 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005012 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005013 }
5014 return 0;
5015
5016 aborted_xfer:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005017 txn->req.err_state = txn->req.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005018 txn->req.msg_state = HTTP_MSG_ERROR;
5019 if (txn->status) {
5020 /* Note: we don't send any error if some data were already sent */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01005021 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005022 } else {
5023 txn->status = 502;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005024 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005025 }
Christopher Faulet0184ea72017-01-05 14:06:34 +01005026 req->analysers &= AN_REQ_FLT_END;
5027 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005028
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005029 HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
5030 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005031 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02005032 HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005033
Willy Tarreaue7dff022015-04-03 01:14:29 +02005034 if (!(s->flags & SF_ERR_MASK))
5035 s->flags |= SF_ERR_SRVCL;
5036 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005037 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005038 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005039 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005040 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005041 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005042 return 0;
5043}
5044
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005045/* This stream analyser waits for a complete HTTP response. It returns 1 if the
5046 * processing can continue on next analysers, or zero if it either needs more
5047 * data or wants to immediately abort the response (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005048 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005049 * when it has nothing left to do, and may remove any analyser when it wants to
5050 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005051 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005052int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005053{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005054 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005055 struct http_txn *txn = s->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005056 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005057 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005058 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005059 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005060 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02005061
Willy Tarreau87b09662015-04-03 00:22:06 +02005062 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02005063 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005064 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005065 rep,
5066 rep->rex, rep->wex,
5067 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005068 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005069 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02005070
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005071 /*
5072 * Now parse the partial (or complete) lines.
5073 * We will check the response syntax, and also join multi-line
5074 * headers. An index of all the lines will be elaborated while
5075 * parsing.
5076 *
5077 * For the parsing, we use a 28 states FSM.
5078 *
5079 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02005080 * rep->buf->p = beginning of response
5081 * rep->buf->p + msg->eoh = end of processed headers / start of current one
5082 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02005083 * msg->eol = end of current header or line (LF or CRLF)
5084 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005085 */
5086
Willy Tarreau628c40c2014-04-24 19:11:26 +02005087 next_one:
Willy Tarreau83e3af02009-12-28 17:39:57 +01005088 /* There's a protected area at the end of the buffer for rewriting
5089 * purposes. We don't want to start to parse the request if the
5090 * protected area is affected, because we may have to move processed
5091 * data later, which is much more complicated.
5092 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005093 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01005094 if (unlikely(!channel_is_rewritable(rep))) {
Willy Tarreau379357a2013-06-08 12:55:46 +02005095 /* some data has still not left the buffer, wake us once that's done */
5096 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
5097 goto abort_response;
5098 channel_dont_close(rep);
5099 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01005100 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02005101 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01005102 }
5103
Willy Tarreau379357a2013-06-08 12:55:46 +02005104 if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
5105 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite))
5106 buffer_slow_realign(rep->buf);
5107
Willy Tarreau9b28e032012-10-12 23:49:43 +02005108 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01005109 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01005110 }
5111
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005112 /* 1: we might have to print this header in debug mode */
5113 if (unlikely((global.mode & MODE_DEBUG) &&
5114 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02005115 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005116 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005117
Willy Tarreau9b28e032012-10-12 23:49:43 +02005118 sol = rep->buf->p;
5119 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005120 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005121
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005122 sol += hdr_idx_first_pos(&txn->hdr_idx);
5123 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005124
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005125 while (cur_idx) {
5126 eol = sol + txn->hdr_idx.v[cur_idx].len;
5127 debug_hdr("srvhdr", s, sol, eol);
5128 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5129 cur_idx = txn->hdr_idx.v[cur_idx].next;
5130 }
5131 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005132
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005133 /*
5134 * Now we quickly check if we have found a full valid response.
5135 * If not so, we check the FD and buffer states before leaving.
5136 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005137 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005138 * responses are checked first.
5139 *
5140 * Depending on whether the client is still there or not, we
5141 * may send an error response back or not. Note that normally
5142 * we should only check for HTTP status there, and check I/O
5143 * errors somewhere else.
5144 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005145
Willy Tarreau655dce92009-11-08 13:10:58 +01005146 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005147 /* Invalid response */
5148 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5149 /* we detected a parsing error. We want to archive this response
5150 * in the dedicated proxy area for later troubleshooting.
5151 */
5152 hdr_response_bad:
5153 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02005154 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005155
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005156 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005157 if (objt_server(s->target)) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02005158 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005159 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005160 }
Willy Tarreau64648412010-03-05 10:41:54 +01005161 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005162 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005163 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005164 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01005165 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005166 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005167 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005168
Willy Tarreaue7dff022015-04-03 01:14:29 +02005169 if (!(s->flags & SF_ERR_MASK))
5170 s->flags |= SF_ERR_PRXCOND;
5171 if (!(s->flags & SF_FINST_MASK))
5172 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005173
5174 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005175 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005176
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005177 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005178 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02005179 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02005180 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005181 goto hdr_response_bad;
5182 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005183
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005184 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005185 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005186 if (msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02005187 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005188 else if (txn->flags & TX_NOT_FIRST)
5189 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02005190
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005191 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005192 if (objt_server(s->target)) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02005193 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005194 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005195 }
Willy Tarreau461f6622008-08-15 23:43:19 +02005196
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005197 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005198 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005199 txn->status = 502;
Olivier Houchard522eea72017-11-03 16:27:47 +01005200
5201 /* Check to see if the server refused the early data.
5202 * If so, just send a 425
5203 */
5204 if (objt_cs(s->si[1].end)) {
5205 struct connection *conn = objt_cs(s->si[1].end)->conn;
5206
5207 if (conn->err_code == CO_ER_SSL_EARLY_FAILED)
5208 txn->status = 425;
5209 }
5210
Willy Tarreau350f4872014-11-28 14:42:25 +01005211 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005212 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005213 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau816b9792009-09-15 21:25:21 +02005214
Willy Tarreaue7dff022015-04-03 01:14:29 +02005215 if (!(s->flags & SF_ERR_MASK))
5216 s->flags |= SF_ERR_SRVCL;
5217 if (!(s->flags & SF_FINST_MASK))
5218 s->flags |= SF_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02005219 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005220 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005221
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02005222 /* read timeout : return a 504 to the client. */
5223 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005224 if (msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02005225 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01005226
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005227 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005228 if (objt_server(s->target)) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02005229 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005230 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005231 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005232
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005233 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005234 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005235 txn->status = 504;
Willy Tarreau350f4872014-11-28 14:42:25 +01005236 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005237 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005238 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau4076a152009-04-02 15:18:36 +02005239
Willy Tarreaue7dff022015-04-03 01:14:29 +02005240 if (!(s->flags & SF_ERR_MASK))
5241 s->flags |= SF_ERR_SRVTO;
5242 if (!(s->flags & SF_FINST_MASK))
5243 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005244 return 0;
5245 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02005246
Willy Tarreauf003d372012-11-26 13:35:37 +01005247 /* client abort with an abortonclose */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005248 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005249 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
5250 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreauf003d372012-11-26 13:35:37 +01005251 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02005252 HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Willy Tarreauf003d372012-11-26 13:35:37 +01005253
Christopher Faulet0184ea72017-01-05 14:06:34 +01005254 rep->analysers &= AN_RES_FLT_END;
Willy Tarreauf003d372012-11-26 13:35:37 +01005255 channel_auto_close(rep);
5256
5257 txn->status = 400;
Willy Tarreau319f7452015-01-14 20:32:59 +01005258 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005259 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreauf003d372012-11-26 13:35:37 +01005260
Willy Tarreaue7dff022015-04-03 01:14:29 +02005261 if (!(s->flags & SF_ERR_MASK))
5262 s->flags |= SF_ERR_CLICL;
5263 if (!(s->flags & SF_FINST_MASK))
5264 s->flags |= SF_FINST_H;
Willy Tarreauf003d372012-11-26 13:35:37 +01005265
Willy Tarreau87b09662015-04-03 00:22:06 +02005266 /* process_stream() will take care of the error */
Willy Tarreauf003d372012-11-26 13:35:37 +01005267 return 0;
5268 }
5269
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005270 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005271 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005272 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02005273 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005274 else if (txn->flags & TX_NOT_FIRST)
5275 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005276
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005277 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005278 if (objt_server(s->target)) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02005279 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005280 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005281 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005282
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005283 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005284 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005285 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01005286 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005287 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005288 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau21d2af32008-02-14 20:25:24 +01005289
Willy Tarreaue7dff022015-04-03 01:14:29 +02005290 if (!(s->flags & SF_ERR_MASK))
5291 s->flags |= SF_ERR_SRVCL;
5292 if (!(s->flags & SF_FINST_MASK))
5293 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005294 return 0;
5295 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005296
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005297 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005298 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005299 if (msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02005300 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005301 else if (txn->flags & TX_NOT_FIRST)
5302 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005303
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005304 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005305 rep->analysers &= AN_RES_FLT_END;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005306 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005307
Willy Tarreaue7dff022015-04-03 01:14:29 +02005308 if (!(s->flags & SF_ERR_MASK))
5309 s->flags |= SF_ERR_CLICL;
5310 if (!(s->flags & SF_FINST_MASK))
5311 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005312
Willy Tarreau87b09662015-04-03 00:22:06 +02005313 /* process_stream() will take care of the error */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005314 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005315 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005316
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005317 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01005318 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005319 return 0;
5320 }
5321
5322 /* More interesting part now : we know that we have a complete
5323 * response which at least looks like HTTP. We have an indicator
5324 * of each header's length, so we can parse them quickly.
5325 */
5326
5327 if (unlikely(msg->err_pos >= 0))
Emeric Brun8c1aaa22017-06-15 11:30:06 +02005328 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005329
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005330 /*
5331 * 1: get the status code
5332 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005333 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005334 if (n < 1 || n > 5)
5335 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005336 /* when the client triggers a 4xx from the server, it's most often due
5337 * to a missing object or permission. These events should be tracked
5338 * because if they happen often, it may indicate a brute force or a
5339 * vulnerability scan.
5340 */
5341 if (n == 4)
Willy Tarreau87b09662015-04-03 00:22:06 +02005342 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02005343
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005344 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02005345 HA_ATOMIC_ADD(&objt_server(s->target)->counters.p.http.rsp[n], 1);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005346
Willy Tarreau91852eb2015-05-01 13:26:00 +02005347 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
5348 * exactly one digit "." one digit. This check may be disabled using
5349 * option accept-invalid-http-response.
5350 */
5351 if (!(s->be->options2 & PR_O2_RSPBUG_OK)) {
5352 if (msg->sl.st.v_l != 8) {
5353 msg->err_pos = 0;
5354 goto hdr_response_bad;
5355 }
5356
5357 if (rep->buf->p[4] != '/' ||
5358 !isdigit((unsigned char)rep->buf->p[5]) ||
5359 rep->buf->p[6] != '.' ||
5360 !isdigit((unsigned char)rep->buf->p[7])) {
5361 msg->err_pos = 4;
5362 goto hdr_response_bad;
5363 }
5364 }
5365
Willy Tarreau5b154472009-12-21 20:11:07 +01005366 /* check if the response is HTTP/1.1 or above */
5367 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005368 ((rep->buf->p[5] > '1') ||
5369 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005370 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01005371
5372 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01005373 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 +01005374
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005375 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005376 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005377
Willy Tarreau9b28e032012-10-12 23:49:43 +02005378 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005379
Willy Tarreau39650402010-03-15 19:44:39 +01005380 /* Adjust server's health based on status code. Note: status codes 501
5381 * and 505 are triggered on demand by client request, so we must not
5382 * count them as server failures.
5383 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005384 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005385 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005386 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005387 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005388 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005389 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005390
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005391 /*
Willy Tarreaua14ad722017-07-07 11:36:32 +02005392 * We may be facing a 100-continue response, or any other informational
5393 * 1xx response which is non-final, in which case this is not the right
5394 * response, and we're waiting for the next one. Let's allow this response
5395 * to go to the client and wait for the next one. There's an exception for
5396 * 101 which is used later in the code to switch protocols.
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005397 */
Willy Tarreaua14ad722017-07-07 11:36:32 +02005398 if (txn->status < 200 &&
5399 (txn->status == 100 || txn->status >= 102)) {
Willy Tarreau628c40c2014-04-24 19:11:26 +02005400 hdr_idx_init(&txn->hdr_idx);
5401 msg->next -= channel_forward(rep, msg->next);
5402 msg->msg_state = HTTP_MSG_RPBEFORE;
5403 txn->status = 0;
5404 s->logs.t_data = -1; /* was not a response yet */
Christopher Faulet3e344292015-11-24 16:24:13 +01005405 FLT_STRM_CB(s, flt_http_reset(s, msg));
Willy Tarreau628c40c2014-04-24 19:11:26 +02005406 goto next_one;
Willy Tarreaua14ad722017-07-07 11:36:32 +02005407 }
Willy Tarreau628c40c2014-04-24 19:11:26 +02005408
Willy Tarreaua14ad722017-07-07 11:36:32 +02005409 /*
5410 * 2: check for cacheability.
5411 */
5412
5413 switch (txn->status) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005414 case 200:
5415 case 203:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01005416 case 204:
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005417 case 206:
5418 case 300:
5419 case 301:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01005420 case 404:
5421 case 405:
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005422 case 410:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01005423 case 414:
5424 case 501:
Willy Tarreau83ece462017-12-21 15:13:09 +01005425 break;
5426 default:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01005427 /* RFC7231#6.1:
5428 * Responses with status codes that are defined as
5429 * cacheable by default (e.g., 200, 203, 204, 206,
5430 * 300, 301, 404, 405, 410, 414, and 501 in this
5431 * specification) can be reused by a cache with
5432 * heuristic expiration unless otherwise indicated
5433 * by the method definition or explicit cache
5434 * controls [RFC7234]; all other status codes are
5435 * not cacheable by default.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005436 */
Willy Tarreau83ece462017-12-21 15:13:09 +01005437 txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005438 break;
5439 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005440
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005441 /*
5442 * 3: we may need to capture headers
5443 */
5444 s->logs.logwait &= ~LW_RESP;
Willy Tarreaucb7dd012015-04-03 22:16:32 +02005445 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02005446 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaucb7dd012015-04-03 22:16:32 +02005447 s->res_cap, sess->fe->rsp_cap);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005448
Willy Tarreau557f1992015-05-01 10:05:17 +02005449 /* 4: determine the transfer-length according to RFC2616 #4.4, updated
5450 * by RFC7230#3.3.3 :
5451 *
5452 * The length of a message body is determined by one of the following
5453 * (in order of precedence):
5454 *
Christopher Fauletd1cd2092016-11-28 10:14:03 +01005455 * 1. Any 2xx (Successful) response to a CONNECT request implies that
5456 * the connection will become a tunnel immediately after the empty
5457 * line that concludes the header fields. A client MUST ignore
5458 * any Content-Length or Transfer-Encoding header fields received
5459 * in such a message. Any 101 response (Switching Protocols) is
5460 * managed in the same manner.
5461 *
5462 * 2. Any response to a HEAD request and any response with a 1xx
Willy Tarreau557f1992015-05-01 10:05:17 +02005463 * (Informational), 204 (No Content), or 304 (Not Modified) status
5464 * code is always terminated by the first empty line after the
5465 * header fields, regardless of the header fields present in the
5466 * message, and thus cannot contain a message body.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005467 *
Willy Tarreau557f1992015-05-01 10:05:17 +02005468 * 3. If a Transfer-Encoding header field is present and the chunked
5469 * transfer coding (Section 4.1) is the final encoding, the message
5470 * body length is determined by reading and decoding the chunked
5471 * data until the transfer coding indicates the data is complete.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005472 *
Willy Tarreau557f1992015-05-01 10:05:17 +02005473 * If a Transfer-Encoding header field is present in a response and
5474 * the chunked transfer coding is not the final encoding, the
5475 * message body length is determined by reading the connection until
5476 * it is closed by the server. If a Transfer-Encoding header field
5477 * is present in a request and the chunked transfer coding is not
5478 * the final encoding, the message body length cannot be determined
5479 * reliably; the server MUST respond with the 400 (Bad Request)
5480 * status code and then close the connection.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005481 *
Willy Tarreau557f1992015-05-01 10:05:17 +02005482 * If a message is received with both a Transfer-Encoding and a
5483 * Content-Length header field, the Transfer-Encoding overrides the
5484 * Content-Length. Such a message might indicate an attempt to
5485 * perform request smuggling (Section 9.5) or response splitting
5486 * (Section 9.4) and ought to be handled as an error. A sender MUST
5487 * remove the received Content-Length field prior to forwarding such
5488 * a message downstream.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005489 *
Willy Tarreau557f1992015-05-01 10:05:17 +02005490 * 4. If a message is received without Transfer-Encoding and with
5491 * either multiple Content-Length header fields having differing
5492 * field-values or a single Content-Length header field having an
5493 * invalid value, then the message framing is invalid and the
5494 * recipient MUST treat it as an unrecoverable error. If this is a
5495 * request message, the server MUST respond with a 400 (Bad Request)
5496 * status code and then close the connection. If this is a response
5497 * message received by a proxy, the proxy MUST close the connection
5498 * to the server, discard the received response, and send a 502 (Bad
5499 * Gateway) response to the client. If this is a response message
5500 * received by a user agent, the user agent MUST close the
5501 * connection to the server and discard the received response.
5502 *
5503 * 5. If a valid Content-Length header field is present without
5504 * Transfer-Encoding, its decimal value defines the expected message
5505 * body length in octets. If the sender closes the connection or
5506 * the recipient times out before the indicated number of octets are
5507 * received, the recipient MUST consider the message to be
5508 * incomplete and close the connection.
5509 *
5510 * 6. If this is a request message and none of the above are true, then
5511 * the message body length is zero (no message body is present).
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005512 *
Willy Tarreau557f1992015-05-01 10:05:17 +02005513 * 7. Otherwise, this is a response message without a declared message
5514 * body length, so the message body length is determined by the
5515 * number of octets received prior to the server closing the
5516 * connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005517 */
5518
5519 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01005520 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005521 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005522 * FIXME: should we parse anyway and return an error on chunked encoding ?
5523 */
Christopher Fauletd1cd2092016-11-28 10:14:03 +01005524 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
5525 txn->status == 101)) {
5526 /* Either we've established an explicit tunnel, or we're
5527 * switching the protocol. In both cases, we're very unlikely
5528 * to understand the next protocols. We have to switch to tunnel
5529 * mode, so that we transfer the request and responses then let
5530 * this protocol pass unmodified. When we later implement specific
5531 * parsers for such protocols, we'll want to check the Upgrade
5532 * header which contains information about that protocol for
5533 * responses with status 101 (eg: see RFC2817 about TLS).
5534 */
5535 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
5536 msg->flags |= HTTP_MSGF_XFER_LEN;
5537 goto end;
5538 }
5539
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005540 if (txn->meth == HTTP_METH_HEAD ||
5541 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005542 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005543 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005544 goto skip_content_length;
5545 }
5546
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005547 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005548 ctx.idx = 0;
Willy Tarreau4979d5c2015-05-01 10:06:30 +02005549 while (http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005550 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005551 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
5552 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005553 /* bad transfer-encoding (chunked followed by something else) */
5554 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005555 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005556 break;
5557 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005558 }
5559
Willy Tarreau1c913912015-04-30 10:57:51 +02005560 /* Chunked responses must have their content-length removed */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005561 ctx.idx = 0;
Willy Tarreaub4d0c032015-05-01 10:25:45 +02005562 if (use_close_only || (msg->flags & HTTP_MSGF_TE_CHNK)) {
Willy Tarreau1c913912015-04-30 10:57:51 +02005563 while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx))
5564 http_remove_header2(msg, &txn->hdr_idx, &ctx);
5565 }
Willy Tarreaub4d0c032015-05-01 10:25:45 +02005566 else while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005567 signed long long cl;
5568
Willy Tarreauad14f752011-09-02 20:33:27 +02005569 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005570 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005571 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005572 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005573
Willy Tarreauad14f752011-09-02 20:33:27 +02005574 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005575 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005576 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02005577 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005578
Willy Tarreauad14f752011-09-02 20:33:27 +02005579 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005580 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005581 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005582 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005583
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005584 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005585 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005586 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02005587 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005588
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005589 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01005590 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005591 }
5592
Christopher Fauletd1cd2092016-11-28 10:14:03 +01005593 skip_content_length:
Willy Tarreau5b154472009-12-21 20:11:07 +01005594 /* Now we have to check if we need to modify the Connection header.
5595 * This is more difficult on the response than it is on the request,
5596 * because we can have two different HTTP versions and we don't know
5597 * how the client will interprete a response. For instance, let's say
5598 * that the client sends a keep-alive request in HTTP/1.0 and gets an
5599 * HTTP/1.1 response without any header. Maybe it will bound itself to
5600 * HTTP/1.0 because it only knows about it, and will consider the lack
5601 * of header as a close, or maybe it knows HTTP/1.1 and can consider
5602 * the lack of header as a keep-alive. Thus we will use two flags
5603 * indicating how a request MAY be understood by the client. In case
5604 * of multiple possibilities, we'll fix the header to be explicit. If
5605 * ambiguous cases such as both close and keepalive are seen, then we
5606 * will fall back to explicit close. Note that we won't take risks with
5607 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01005608 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01005609 */
Christopher Fauletd1cd2092016-11-28 10:14:03 +01005610 if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
5611 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
5612 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
5613 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005614 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01005615
Willy Tarreau70dffda2014-01-30 03:07:23 +01005616 /* this situation happens when combining pretend-keepalive with httpclose. */
5617 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005618 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02005619 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))
Willy Tarreau70dffda2014-01-30 03:07:23 +01005620 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
5621
Willy Tarreau60466522010-01-18 19:08:45 +01005622 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005623 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01005624 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5625 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01005626
Willy Tarreau60466522010-01-18 19:08:45 +01005627 /* now adjust header transformations depending on current state */
5628 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
5629 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5630 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005631 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01005632 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005633 }
Willy Tarreau60466522010-01-18 19:08:45 +01005634 else { /* SCL / KAL */
5635 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005636 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01005637 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005638 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005639
Willy Tarreau60466522010-01-18 19:08:45 +01005640 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005641 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01005642
Willy Tarreau60466522010-01-18 19:08:45 +01005643 /* Some keep-alive responses are converted to Server-close if
5644 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01005645 */
Willy Tarreau60466522010-01-18 19:08:45 +01005646 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
5647 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005648 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01005649 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005650 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005651 }
5652
Christopher Fauletd1cd2092016-11-28 10:14:03 +01005653 end:
Willy Tarreau7959a552013-09-23 16:44:27 +02005654 /* we want to have the response time before we start processing it */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02005655 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau7959a552013-09-23 16:44:27 +02005656
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005657 /* end of job, return OK */
5658 rep->analysers &= ~an_bit;
5659 rep->analyse_exp = TICK_ETERNITY;
5660 channel_auto_close(rep);
5661 return 1;
5662
5663 abort_keep_alive:
5664 /* A keep-alive request to the server failed on a network error.
5665 * The client is required to retry. We need to close without returning
5666 * any other information so that the client retries.
5667 */
5668 txn->status = 0;
Christopher Faulet0184ea72017-01-05 14:06:34 +01005669 rep->analysers &= AN_RES_FLT_END;
5670 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005671 channel_auto_close(rep);
5672 s->logs.logwait = 0;
5673 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005674 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau319f7452015-01-14 20:32:59 +01005675 channel_truncate(rep);
Christopher Fauleta94e5a52015-12-09 15:55:06 +01005676 http_reply_and_close(s, txn->status, NULL);
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005677 return 0;
5678}
5679
5680/* This function performs all the processing enabled for the current response.
5681 * It normally returns 1 unless it wants to break. It relies on buffers flags,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005682 * and updates s->res.analysers. It might make sense to explode it into several
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005683 * other functions. It works like process_request (see indications above).
5684 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005685int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005686{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005687 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005688 struct http_txn *txn = s->txn;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005689 struct http_msg *msg = &txn->rsp;
5690 struct proxy *cur_proxy;
5691 struct cond_wordlist *wl;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01005692 enum rule_result ret = HTTP_RULE_RES_CONT;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005693
Willy Tarreau87b09662015-04-03 00:22:06 +02005694 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreauf118d9f2014-04-24 18:26:08 +02005695 now_ms, __FUNCTION__,
5696 s,
5697 rep,
5698 rep->rex, rep->wex,
5699 rep->flags,
5700 rep->buf->i,
5701 rep->analysers);
5702
5703 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
5704 return 0;
5705
Willy Tarreau70730dd2014-04-24 18:06:27 +02005706 /* The stats applet needs to adjust the Connection header but we don't
5707 * apply any filter there.
5708 */
Willy Tarreau612adb82015-03-10 15:25:54 +01005709 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
5710 rep->analysers &= ~an_bit;
5711 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau70730dd2014-04-24 18:06:27 +02005712 goto skip_filters;
Willy Tarreau612adb82015-03-10 15:25:54 +01005713 }
Willy Tarreau70730dd2014-04-24 18:06:27 +02005714
Willy Tarreau58975672014-04-24 21:13:57 +02005715 /*
5716 * We will have to evaluate the filters.
5717 * As opposed to version 1.2, now they will be evaluated in the
5718 * filters order and not in the header order. This means that
5719 * each filter has to be validated among all headers.
5720 *
5721 * Filters are tried with ->be first, then with ->fe if it is
5722 * different from ->be.
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01005723 *
5724 * Maybe we are in resume condiion. In this case I choose the
5725 * "struct proxy" which contains the rule list matching the resume
5726 * pointer. If none of theses "struct proxy" match, I initialise
5727 * the process with the first one.
5728 *
5729 * In fact, I check only correspondance betwwen the current list
5730 * pointer and the ->fe rule list. If it doesn't match, I initialize
5731 * the loop with the ->be.
Willy Tarreau58975672014-04-24 21:13:57 +02005732 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005733 if (s->current_rule_list == &sess->fe->http_res_rules)
5734 cur_proxy = sess->fe;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01005735 else
5736 cur_proxy = s->be;
Willy Tarreau58975672014-04-24 21:13:57 +02005737 while (1) {
5738 struct proxy *rule_set = cur_proxy;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005739
Willy Tarreau58975672014-04-24 21:13:57 +02005740 /* evaluate http-response rules */
Willy Tarreau51d861a2015-05-22 17:30:48 +02005741 if (ret == HTTP_RULE_RES_CONT) {
Willy Tarreau987e3fb2015-04-04 01:09:08 +02005742 ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02005743
Willy Tarreau51d861a2015-05-22 17:30:48 +02005744 if (ret == HTTP_RULE_RES_BADREQ)
5745 goto return_srv_prx_502;
5746
5747 if (ret == HTTP_RULE_RES_DONE) {
5748 rep->analysers &= ~an_bit;
5749 rep->analyse_exp = TICK_ETERNITY;
5750 return 1;
5751 }
5752 }
5753
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01005754 /* we need to be called again. */
5755 if (ret == HTTP_RULE_RES_YIELD) {
5756 channel_dont_close(rep);
5757 return 0;
5758 }
5759
Willy Tarreau58975672014-04-24 21:13:57 +02005760 /* try headers filters */
5761 if (rule_set->rsp_exp != NULL) {
5762 if (apply_filters_to_response(s, rep, rule_set) < 0) {
5763 return_bad_resp:
5764 if (objt_server(s->target)) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02005765 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreau58975672014-04-24 21:13:57 +02005766 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_RSP);
Willy Tarreau21d2af32008-02-14 20:25:24 +01005767 }
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005768 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau58975672014-04-24 21:13:57 +02005769 return_srv_prx_502:
Christopher Faulet0184ea72017-01-05 14:06:34 +01005770 rep->analysers &= AN_RES_FLT_END;
Willy Tarreau58975672014-04-24 21:13:57 +02005771 txn->status = 502;
5772 s->logs.t_data = -1; /* was not a valid response */
Willy Tarreau350f4872014-11-28 14:42:25 +01005773 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01005774 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005775 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02005776 if (!(s->flags & SF_ERR_MASK))
5777 s->flags |= SF_ERR_PRXCOND;
5778 if (!(s->flags & SF_FINST_MASK))
5779 s->flags |= SF_FINST_H;
Willy Tarreau58975672014-04-24 21:13:57 +02005780 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005781 }
Willy Tarreau58975672014-04-24 21:13:57 +02005782 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005783
Willy Tarreau58975672014-04-24 21:13:57 +02005784 /* has the response been denied ? */
5785 if (txn->flags & TX_SVDENY) {
5786 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02005787 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_secu, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005788
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005789 HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
5790 HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005791 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02005792 HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005793
Willy Tarreau58975672014-04-24 21:13:57 +02005794 goto return_srv_prx_502;
5795 }
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02005796
Willy Tarreau58975672014-04-24 21:13:57 +02005797 /* add response headers from the rule sets in the same order */
5798 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreauce730de2014-09-16 10:40:38 +02005799 if (txn->status < 200 && txn->status != 101)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005800 break;
Willy Tarreau58975672014-04-24 21:13:57 +02005801 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02005802 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreau58975672014-04-24 21:13:57 +02005803 ret = acl_pass(ret);
5804 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
5805 ret = !ret;
5806 if (!ret)
5807 continue;
5808 }
5809 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
5810 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005811 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005812
Willy Tarreau58975672014-04-24 21:13:57 +02005813 /* check whether we're already working on the frontend */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005814 if (cur_proxy == sess->fe)
Willy Tarreau58975672014-04-24 21:13:57 +02005815 break;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005816 cur_proxy = sess->fe;
Willy Tarreau58975672014-04-24 21:13:57 +02005817 }
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005818
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01005819 /* After this point, this anayzer can't return yield, so we can
5820 * remove the bit corresponding to this analyzer from the list.
5821 *
5822 * Note that the intermediate returns and goto found previously
5823 * reset the analyzers.
5824 */
5825 rep->analysers &= ~an_bit;
5826 rep->analyse_exp = TICK_ETERNITY;
5827
Willy Tarreau58975672014-04-24 21:13:57 +02005828 /* OK that's all we can do for 1xx responses */
Willy Tarreauce730de2014-09-16 10:40:38 +02005829 if (unlikely(txn->status < 200 && txn->status != 101))
Willy Tarreau58975672014-04-24 21:13:57 +02005830 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005831
Willy Tarreau58975672014-04-24 21:13:57 +02005832 /*
5833 * Now check for a server cookie.
5834 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02005835 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Willy Tarreau58975672014-04-24 21:13:57 +02005836 manage_server_side_cookies(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005837
Willy Tarreau58975672014-04-24 21:13:57 +02005838 /*
5839 * Check for cache-control or pragma headers if required.
5840 */
Willy Tarreau12b32f22017-12-21 16:08:09 +01005841 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
Willy Tarreau58975672014-04-24 21:13:57 +02005842 check_response_for_cacheability(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005843
Willy Tarreau58975672014-04-24 21:13:57 +02005844 /*
5845 * Add server cookie in the response if needed
5846 */
5847 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
5848 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02005849 (!(s->flags & SF_DIRECT) ||
Willy Tarreau58975672014-04-24 21:13:57 +02005850 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
5851 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
5852 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
5853 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
5854 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02005855 !(s->flags & SF_IGNORE_PRST)) {
Willy Tarreau58975672014-04-24 21:13:57 +02005856 /* the server is known, it's not the one the client requested, or the
5857 * cookie's last seen date needs to be refreshed. We have to
5858 * insert a set-cookie here, except if we want to insert only on POST
5859 * requests and this one isn't. Note that servers which don't have cookies
5860 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005861 */
Willy Tarreau58975672014-04-24 21:13:57 +02005862 if (!objt_server(s->target)->cookie) {
5863 chunk_printf(&trash,
5864 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5865 s->be->cookie_name);
5866 }
5867 else {
5868 chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005869
Willy Tarreau58975672014-04-24 21:13:57 +02005870 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
5871 /* emit last_date, which is mandatory */
5872 trash.str[trash.len++] = COOKIE_DELIM_DATE;
5873 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
5874 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005875
Willy Tarreau58975672014-04-24 21:13:57 +02005876 if (s->be->cookie_maxlife) {
5877 /* emit first_date, which is either the original one or
5878 * the current date.
5879 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005880 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreau58975672014-04-24 21:13:57 +02005881 s30tob64(txn->cookie_first_date ?
5882 txn->cookie_first_date >> 2 :
5883 (date.tv_sec+3) >> 2, trash.str + trash.len);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005884 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005885 }
Willy Tarreauef4f3912010-10-07 21:00:29 +02005886 }
Willy Tarreau58975672014-04-24 21:13:57 +02005887 chunk_appendf(&trash, "; path=/");
5888 }
Willy Tarreau4992dd22012-05-31 21:02:17 +02005889
Willy Tarreau58975672014-04-24 21:13:57 +02005890 if (s->be->cookie_domain)
5891 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005892
Willy Tarreau58975672014-04-24 21:13:57 +02005893 if (s->be->ck_opts & PR_CK_HTTPONLY)
5894 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreaubaaee002006-06-26 02:48:02 +02005895
Willy Tarreau58975672014-04-24 21:13:57 +02005896 if (s->be->ck_opts & PR_CK_SECURE)
5897 chunk_appendf(&trash, "; Secure");
Willy Tarreaubaaee002006-06-26 02:48:02 +02005898
Willy Tarreau58975672014-04-24 21:13:57 +02005899 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
5900 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005901
Willy Tarreau58975672014-04-24 21:13:57 +02005902 txn->flags &= ~TX_SCK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02005903 if (objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
Willy Tarreau58975672014-04-24 21:13:57 +02005904 /* the server did not change, only the date was updated */
5905 txn->flags |= TX_SCK_UPDATED;
5906 else
5907 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005908
Willy Tarreau58975672014-04-24 21:13:57 +02005909 /* Here, we will tell an eventual cache on the client side that we don't
5910 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
5911 * Some caches understand the correct form: 'no-cache="set-cookie"', but
5912 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005913 */
Willy Tarreau58975672014-04-24 21:13:57 +02005914 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005915
Willy Tarreau58975672014-04-24 21:13:57 +02005916 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005917
Willy Tarreau58975672014-04-24 21:13:57 +02005918 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
5919 "Cache-control: private", 22) < 0))
5920 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005921 }
Willy Tarreau58975672014-04-24 21:13:57 +02005922 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005923
Willy Tarreau58975672014-04-24 21:13:57 +02005924 /*
5925 * Check if result will be cacheable with a cookie.
5926 * We'll block the response if security checks have caught
5927 * nasty things such as a cacheable cookie.
5928 */
5929 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
5930 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
5931 (s->be->options & PR_O_CHK_CACHE)) {
5932 /* we're in presence of a cacheable response containing
5933 * a set-cookie header. We'll block it as requested by
5934 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005935 */
Willy Tarreau58975672014-04-24 21:13:57 +02005936 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02005937 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_secu, 1);
Willy Tarreau60466522010-01-18 19:08:45 +01005938
Christopher Fauletff8abcd2017-06-02 15:33:24 +02005939 HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
5940 HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005941 if (sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02005942 HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005943
Christopher Faulet767a84b2017-11-24 16:50:31 +01005944 ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
5945 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
Willy Tarreau58975672014-04-24 21:13:57 +02005946 send_log(s->be, LOG_ALERT,
5947 "Blocking cacheable cookie in response from instance %s, server %s.\n",
5948 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
5949 goto return_srv_prx_502;
5950 }
Willy Tarreau03945942009-12-22 16:50:27 +01005951
Willy Tarreau70730dd2014-04-24 18:06:27 +02005952 skip_filters:
Willy Tarreau58975672014-04-24 21:13:57 +02005953 /*
5954 * Adjust "Connection: close" or "Connection: keep-alive" if needed.
5955 * If an "Upgrade" token is found, the header is left untouched in order
5956 * not to have to deal with some client bugs : some of them fail an upgrade
Willy Tarreauce730de2014-09-16 10:40:38 +02005957 * if anything but "Upgrade" is present in the Connection header. We don't
5958 * want to touch any 101 response either since it's switching to another
5959 * protocol.
Willy Tarreau58975672014-04-24 21:13:57 +02005960 */
Willy Tarreauce730de2014-09-16 10:40:38 +02005961 if ((txn->status != 101) && !(txn->flags & TX_HDR_CONN_UPG) &&
Willy Tarreau58975672014-04-24 21:13:57 +02005962 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005963 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau58975672014-04-24 21:13:57 +02005964 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
5965 unsigned int want_flags = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005966
Willy Tarreau58975672014-04-24 21:13:57 +02005967 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5968 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5969 /* we want a keep-alive response here. Keep-alive header
5970 * required if either side is not 1.1.
5971 */
5972 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
5973 want_flags |= TX_CON_KAL_SET;
5974 }
5975 else {
5976 /* we want a close response here. Close header required if
5977 * the server is 1.1, regardless of the client.
5978 */
5979 if (msg->flags & HTTP_MSGF_VER_11)
5980 want_flags |= TX_CON_CLO_SET;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005981 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005982
Willy Tarreau58975672014-04-24 21:13:57 +02005983 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
5984 http_change_connection_header(txn, msg, want_flags);
5985 }
5986
5987 skip_header_mangling:
Christopher Faulet69744d92017-03-30 10:54:35 +02005988 /* Always enter in the body analyzer */
5989 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
5990 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005991
Willy Tarreau58975672014-04-24 21:13:57 +02005992 /* if the user wants to log as soon as possible, without counting
5993 * bytes from the server, then this is the right moment. We have
5994 * to temporarily assign bytes_out to log what we currently have.
5995 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005996 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau58975672014-04-24 21:13:57 +02005997 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
5998 s->logs.bytes_out = txn->rsp.eoh;
5999 s->do_log(s);
6000 s->logs.bytes_out = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006001 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006002 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006003}
Willy Tarreaua15645d2007-03-18 16:22:39 +01006004
Willy Tarreaud98cf932009-12-27 22:54:55 +01006005/* This function is an analyser which forwards response body (including chunk
6006 * sizes if any). It is called as soon as we must forward, even if we forward
6007 * zero byte. The only situation where it must not be called is when we're in
6008 * tunnel mode and we want to forward till the close. It's used both to forward
6009 * remaining data and to resync after end of body. It expects the msg_state to
6010 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02006011 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreaud3510212014-04-21 11:24:13 +02006012 *
6013 * It is capable of compressing response data both in content-length mode and
6014 * in chunked mode. The state machines follows different flows depending on
6015 * whether content-length and chunked modes are used, since there are no
6016 * trailers in content-length :
6017 *
6018 * chk-mode cl-mode
6019 * ,----- BODY -----.
6020 * / \
6021 * V size > 0 V chk-mode
6022 * .--> SIZE -------------> DATA -------------> CRLF
6023 * | | size == 0 | last byte |
6024 * | v final crlf v inspected |
6025 * | TRAILERS -----------> DONE |
6026 * | |
6027 * `----------------------------------------------'
6028 *
6029 * Compression only happens in the DATA state, and must be flushed in final
6030 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
6031 * is performed at once on final states for all bytes parsed, or when leaving
6032 * on missing data.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006033 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006034int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006035{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006036 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006037 struct http_txn *txn = s->txn;
6038 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet3e344292015-11-24 16:24:13 +01006039 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006040
Christopher Faulet814d2702017-03-30 11:33:44 +02006041 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
6042 now_ms, __FUNCTION__,
6043 s,
6044 res,
6045 res->rex, res->wex,
6046 res->flags,
6047 res->buf->i,
6048 res->analysers);
6049
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006050 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
6051 return 0;
6052
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006053 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02006054 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Christopher Fauletd7c91962015-04-30 11:48:27 +02006055 !s->req.analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02006056 /* Output closed while we were sending data. We must abort and
6057 * wake the other side up.
6058 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006059 msg->err_state = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02006060 msg->msg_state = HTTP_MSG_ERROR;
6061 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01006062 return 1;
6063 }
6064
Willy Tarreau4fe41902010-06-07 22:27:41 +02006065 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006066 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006067
Christopher Fauletd7c91962015-04-30 11:48:27 +02006068 if (msg->msg_state == HTTP_MSG_BODY) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006069 msg->msg_state = ((msg->flags & HTTP_MSGF_TE_CHNK)
6070 ? HTTP_MSG_CHUNK_SIZE
6071 : HTTP_MSG_DATA);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006072 }
6073
Willy Tarreauefdf0942014-04-24 20:08:57 +02006074 if (res->to_forward) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006075 /* We can't process the buffer's contents yet */
Willy Tarreauefdf0942014-04-24 20:08:57 +02006076 res->flags |= CF_WAKE_WRITE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006077 goto missing_data_or_waiting;
Willy Tarreauefdf0942014-04-24 20:08:57 +02006078 }
6079
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006080 if (msg->msg_state < HTTP_MSG_DONE) {
6081 ret = ((msg->flags & HTTP_MSGF_TE_CHNK)
6082 ? http_msg_forward_chunked_body(s, msg)
6083 : http_msg_forward_body(s, msg));
6084 if (!ret)
6085 goto missing_data_or_waiting;
6086 if (ret < 0)
6087 goto return_bad_res;
6088 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02006089
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006090 /* other states, DONE...TUNNEL */
6091 /* for keep-alive we don't want to forward closes on DONE */
6092 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6093 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
6094 channel_dont_close(res);
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02006095
Christopher Faulet894da4c2017-07-18 11:29:07 +02006096 http_resync_states(s);
6097 if (!(res->analysers & an_bit)) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006098 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
6099 if (res->flags & CF_SHUTW) {
6100 /* response errors are most likely due to the
6101 * client aborting the transfer. */
6102 goto aborted_xfer;
Willy Tarreau5523b322009-12-29 12:05:52 +01006103 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006104 if (msg->err_pos >= 0)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02006105 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg, msg->err_state, strm_fe(s));
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006106 goto return_bad_res;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006107 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006108 return 1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006109 }
Willy Tarreauf51d03c2016-05-02 15:25:15 +02006110 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006111
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006112 missing_data_or_waiting:
Willy Tarreauf003d372012-11-26 13:35:37 +01006113 if (res->flags & CF_SHUTW)
6114 goto aborted_xfer;
6115
6116 /* stop waiting for data if the input is closed before the end. If the
6117 * client side was already closed, it means that the client has aborted,
6118 * so we don't want to count this as a server abort. Otherwise it's a
6119 * server abort.
6120 */
Christopher Fauleta33510b2017-03-31 15:37:29 +02006121 if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006122 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Willy Tarreauf003d372012-11-26 13:35:37 +01006123 goto aborted_xfer;
Christopher Fauleta46bbd82015-06-19 09:00:58 +02006124 /* If we have some pending data, we continue the processing */
6125 if (!buffer_pending(res->buf)) {
6126 if (!(s->flags & SF_ERR_MASK))
6127 s->flags |= SF_ERR_SRVCL;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02006128 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Christopher Fauleta46bbd82015-06-19 09:00:58 +02006129 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02006130 HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1);
Christopher Fauleta46bbd82015-06-19 09:00:58 +02006131 goto return_bad_res_stats_ok;
6132 }
Willy Tarreau40dba092010-03-04 18:14:51 +01006133 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006134
Willy Tarreau40dba092010-03-04 18:14:51 +01006135 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006136 if (!s->req.analysers)
Willy Tarreau610ecce2010-01-04 21:15:02 +01006137 goto return_bad_res;
6138
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006139 /* When TE: chunked is used, we need to get there again to parse
6140 * remaining chunks even if the server has closed, so we don't want to
Christopher Faulet69744d92017-03-30 10:54:35 +02006141 * set CF_DONTCLOSE. Similarly, if keep-alive is set on the client side
6142 * or if there are filters registered on the stream, we don't want to
6143 * forward a close
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006144 */
Christopher Faulet69744d92017-03-30 10:54:35 +02006145 if ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01006146 HAS_DATA_FILTERS(s, res) ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006147 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6148 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006149 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006150
Willy Tarreau5c620922011-05-11 19:56:11 +02006151 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006152 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02006153 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01006154 * modes are already handled by the stream sock layer. We must not do
6155 * this in content-length mode because it could present the MSG_MORE
6156 * flag with the last block of forwarded data, which would cause an
6157 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02006158 */
Christopher Faulet92d36382015-11-05 13:35:03 +01006159 if ((msg->flags & HTTP_MSGF_TE_CHNK) || (msg->flags & HTTP_MSGF_COMPRESSING))
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006160 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02006161
Willy Tarreau87b09662015-04-03 00:22:06 +02006162 /* the stream handler will take care of timeouts and errors */
Willy Tarreaud98cf932009-12-27 22:54:55 +01006163 return 0;
6164
Willy Tarreau40dba092010-03-04 18:14:51 +01006165 return_bad_res: /* let's centralize all bad responses */
Christopher Fauletff8abcd2017-06-02 15:33:24 +02006166 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006167 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02006168 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006169
6170 return_bad_res_stats_ok:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006171 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006172 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01006173 /* don't send any error message as we're in the body */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01006174 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01006175 res->analysers &= AN_RES_FLT_END;
6176 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006177 if (objt_server(s->target))
6178 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006179
Willy Tarreaue7dff022015-04-03 01:14:29 +02006180 if (!(s->flags & SF_ERR_MASK))
6181 s->flags |= SF_ERR_PRXCOND;
6182 if (!(s->flags & SF_FINST_MASK))
6183 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006184 return 0;
6185
6186 aborted_xfer:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006187 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006188 txn->rsp.msg_state = HTTP_MSG_ERROR;
6189 /* don't send any error message as we're in the body */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01006190 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01006191 res->analysers &= AN_RES_FLT_END;
6192 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006193
Christopher Fauletff8abcd2017-06-02 15:33:24 +02006194 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
6195 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006196 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +02006197 HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006198
Willy Tarreaue7dff022015-04-03 01:14:29 +02006199 if (!(s->flags & SF_ERR_MASK))
6200 s->flags |= SF_ERR_CLICL;
6201 if (!(s->flags & SF_FINST_MASK))
6202 s->flags |= SF_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006203 return 0;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006204}
6205
6206
6207static inline int
6208http_msg_forward_body(struct stream *s, struct http_msg *msg)
6209{
6210 struct channel *chn = msg->chn;
6211 int ret;
6212
6213 /* Here we have the guarantee to be in HTTP_MSG_DATA or HTTP_MSG_ENDING state */
6214
6215 if (msg->msg_state == HTTP_MSG_ENDING)
6216 goto ending;
6217
6218 /* Neither content-length, nor transfer-encoding was found, so we must
6219 * read the body until the server connection is closed. In that case, we
6220 * eat data as they come. Of course, this happens for response only. */
6221 if (!(msg->flags & HTTP_MSGF_XFER_LEN)) {
6222 unsigned long long len = (chn->buf->i - msg->next);
6223 msg->chunk_len += len;
6224 msg->body_len += len;
6225 }
Christopher Fauletda02e172015-12-04 09:25:05 +01006226 ret = FLT_STRM_DATA_CB(s, chn, flt_http_data(s, msg),
6227 /* default_ret */ MIN(msg->chunk_len, chn->buf->i - msg->next),
6228 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006229 msg->next += ret;
6230 msg->chunk_len -= ret;
6231 if (msg->chunk_len) {
6232 /* input empty or output full */
6233 if (chn->buf->i > msg->next)
6234 chn->flags |= CF_WAKE_WRITE;
6235 goto missing_data_or_waiting;
6236 }
6237
Christopher Faulet1486b0a2017-07-18 11:42:08 +02006238 /* This check can only be true for a response. HTTP_MSGF_XFER_LEN is
6239 * always set for a request. */
6240 if (!(msg->flags & HTTP_MSGF_XFER_LEN)) {
6241 /* The server still sending data that should be filtered */
6242 if (!(chn->flags & CF_SHUTR) && HAS_DATA_FILTERS(s, chn))
6243 goto missing_data_or_waiting;
6244 }
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01006245
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006246 msg->msg_state = HTTP_MSG_ENDING;
6247
6248 ending:
6249 /* we may have some pending data starting at res->buf->p such as a last
6250 * chunk of data or trailers. */
Christopher Fauletda02e172015-12-04 09:25:05 +01006251 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
6252 /* default_ret */ msg->next,
6253 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006254 b_adv(chn->buf, ret);
6255 msg->next -= ret;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02006256 if (unlikely(!(chn->flags & CF_WROTE_DATA) || msg->sov > 0))
6257 msg->sov -= ret;
Christopher Fauleta9300a32016-06-28 15:54:44 +02006258 if (msg->next)
6259 goto waiting;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02006260
Christopher Fauletda02e172015-12-04 09:25:05 +01006261 FLT_STRM_DATA_CB(s, chn, flt_http_end(s, msg),
6262 /* default_ret */ 1,
6263 /* on_error */ goto error,
6264 /* on_wait */ goto waiting);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006265 msg->msg_state = HTTP_MSG_DONE;
6266 return 1;
6267
6268 missing_data_or_waiting:
6269 /* we may have some pending data starting at chn->buf->p */
Christopher Fauletda02e172015-12-04 09:25:05 +01006270 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
6271 /* default_ret */ msg->next,
6272 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006273 b_adv(chn->buf, ret);
6274 msg->next -= ret;
6275 if (!(chn->flags & CF_WROTE_DATA) || msg->sov > 0)
6276 msg->sov -= ret;
Christopher Faulet75e2eb62015-12-15 10:41:47 +01006277 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006278 msg->chunk_len -= channel_forward(chn, msg->chunk_len);
Christopher Fauleta9300a32016-06-28 15:54:44 +02006279 waiting:
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006280 return 0;
6281 error:
6282 return -1;
6283}
6284
6285static inline int
6286http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg)
6287{
6288 struct channel *chn = msg->chn;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02006289 unsigned int chunk;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006290 int ret;
6291
6292 /* Here we have the guarantee to be in one of the following state:
6293 * HTTP_MSG_DATA, HTTP_MSG_CHUNK_SIZE, HTTP_MSG_CHUNK_CRLF,
6294 * HTTP_MSG_TRAILERS or HTTP_MSG_ENDING. */
6295
6296 switch_states:
6297 switch (msg->msg_state) {
6298 case HTTP_MSG_DATA:
Christopher Fauletda02e172015-12-04 09:25:05 +01006299 ret = FLT_STRM_DATA_CB(s, chn, flt_http_data(s, msg),
6300 /* default_ret */ MIN(msg->chunk_len, chn->buf->i - msg->next),
6301 /* on_error */ goto error);
6302 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006303 msg->chunk_len -= ret;
6304 if (msg->chunk_len) {
6305 /* input empty or output full */
6306 if (chn->buf->i > msg->next)
6307 chn->flags |= CF_WAKE_WRITE;
6308 goto missing_data_or_waiting;
6309 }
6310
6311 /* nothing left to forward for this chunk*/
6312 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
6313 /* fall through for HTTP_MSG_CHUNK_CRLF */
6314
6315 case HTTP_MSG_CHUNK_CRLF:
6316 /* we want the CRLF after the data */
Willy Tarreaub2892562017-09-21 11:33:54 +02006317 ret = h1_skip_chunk_crlf(chn->buf, msg->next, chn->buf->i);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006318 if (ret == 0)
6319 goto missing_data_or_waiting;
Willy Tarreaub2892562017-09-21 11:33:54 +02006320 if (ret < 0) {
6321 msg->err_pos = chn->buf->i + ret;
6322 if (msg->err_pos < 0)
6323 msg->err_pos += chn->buf->size;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006324 goto chunk_parsing_error;
Willy Tarreaub2892562017-09-21 11:33:54 +02006325 }
Christopher Faulet113f7de2015-12-14 14:52:13 +01006326 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006327 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
6328 /* fall through for HTTP_MSG_CHUNK_SIZE */
6329
6330 case HTTP_MSG_CHUNK_SIZE:
6331 /* read the chunk size and assign it to ->chunk_len,
6332 * then set ->next to point to the body and switch to
6333 * DATA or TRAILERS state.
6334 */
Willy Tarreaue56cdd32017-09-21 08:36:33 +02006335 ret = h1_parse_chunk_size(chn->buf, msg->next, chn->buf->i, &chunk);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006336 if (ret == 0)
6337 goto missing_data_or_waiting;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02006338 if (ret < 0) {
6339 msg->err_pos = chn->buf->i + ret;
6340 if (msg->err_pos < 0)
6341 msg->err_pos += chn->buf->size;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006342 goto chunk_parsing_error;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02006343 }
6344
6345 msg->sol = ret;
Christopher Faulet113f7de2015-12-14 14:52:13 +01006346 msg->next += ret;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02006347 msg->chunk_len = chunk;
6348 msg->body_len += chunk;
6349
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006350 if (msg->chunk_len) {
6351 msg->msg_state = HTTP_MSG_DATA;
6352 goto switch_states;
6353 }
6354 msg->msg_state = HTTP_MSG_TRAILERS;
6355 /* fall through for HTTP_MSG_TRAILERS */
6356
6357 case HTTP_MSG_TRAILERS:
6358 ret = http_forward_trailers(msg);
6359 if (ret < 0)
6360 goto chunk_parsing_error;
Christopher Fauletda02e172015-12-04 09:25:05 +01006361 FLT_STRM_DATA_CB(s, chn, flt_http_chunk_trailers(s, msg),
6362 /* default_ret */ 1,
6363 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006364 msg->next += msg->sol;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006365 if (!ret)
6366 goto missing_data_or_waiting;
6367 break;
6368
6369 case HTTP_MSG_ENDING:
6370 goto ending;
6371
6372 default:
6373 /* This should no happen in this function */
6374 goto error;
6375 }
6376
6377 msg->msg_state = HTTP_MSG_ENDING;
6378 ending:
6379 /* we may have some pending data starting at res->buf->p such as a last
6380 * chunk of data or trailers. */
Christopher Fauletda02e172015-12-04 09:25:05 +01006381 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006382 /* default_ret */ msg->next,
6383 /* on_error */ goto error);
6384 b_adv(chn->buf, ret);
6385 msg->next -= ret;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02006386 if (unlikely(!(chn->flags & CF_WROTE_DATA) || msg->sov > 0))
6387 msg->sov -= ret;
Christopher Fauleta9300a32016-06-28 15:54:44 +02006388 if (msg->next)
6389 goto waiting;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02006390
Christopher Fauletda02e172015-12-04 09:25:05 +01006391 FLT_STRM_DATA_CB(s, chn, flt_http_end(s, msg),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006392 /* default_ret */ 1,
6393 /* on_error */ goto error,
6394 /* on_wait */ goto waiting);
6395 msg->msg_state = HTTP_MSG_DONE;
6396 return 1;
6397
6398 missing_data_or_waiting:
6399 /* we may have some pending data starting at chn->buf->p */
Christopher Fauletda02e172015-12-04 09:25:05 +01006400 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006401 /* default_ret */ msg->next,
6402 /* on_error */ goto error);
6403 b_adv(chn->buf, ret);
6404 msg->next -= ret;
6405 if (!(chn->flags & CF_WROTE_DATA) || msg->sov > 0)
6406 msg->sov -= ret;
Christopher Faulet75e2eb62015-12-15 10:41:47 +01006407 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006408 msg->chunk_len -= channel_forward(chn, msg->chunk_len);
Christopher Fauleta9300a32016-06-28 15:54:44 +02006409 waiting:
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006410 return 0;
6411
6412 chunk_parsing_error:
6413 if (msg->err_pos >= 0) {
6414 if (chn->flags & CF_ISRESP)
Emeric Brun8c1aaa22017-06-15 11:30:06 +02006415 http_capture_bad_message(s->be, &s->be->invalid_rep, s, msg,
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006416 msg->msg_state, strm_fe(s));
6417 else
Emeric Brun8c1aaa22017-06-15 11:30:06 +02006418 http_capture_bad_message(strm_fe(s), &strm_fe(s)->invalid_req, s,
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006419 msg, msg->msg_state, s->be);
6420 }
6421 error:
6422 return -1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006423}
6424
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006425
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006426/* Iterate the same filter through all request headers.
6427 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006428 * Since it can manage the switch to another backend, it updates the per-proxy
6429 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006430 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006431int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006432{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006433 char *cur_ptr, *cur_end, *cur_next;
6434 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006435 struct http_txn *txn = s->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006436 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006437 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01006438
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006439 last_hdr = 0;
6440
Willy Tarreau9b28e032012-10-12 23:49:43 +02006441 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006442 old_idx = 0;
6443
6444 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006445 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006446 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006447 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006448 (exp->action == ACT_ALLOW ||
6449 exp->action == ACT_DENY ||
6450 exp->action == ACT_TARPIT))
6451 return 0;
6452
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006453 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006454 if (!cur_idx)
6455 break;
6456
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006457 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006458 cur_ptr = cur_next;
6459 cur_end = cur_ptr + cur_hdr->len;
6460 cur_next = cur_end + cur_hdr->cr + 1;
6461
6462 /* Now we have one header between cur_ptr and cur_end,
6463 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006464 */
6465
Willy Tarreau15a53a42015-01-21 13:39:42 +01006466 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006467 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006468 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006469 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006470 last_hdr = 1;
6471 break;
6472
6473 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006474 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006475 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006476 break;
6477
6478 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006479 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006480 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006481 break;
6482
6483 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06006484 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
6485 if (trash.len < 0)
6486 return -1;
6487
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006488 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006489 /* FIXME: if the user adds a newline in the replacement, the
6490 * index will not be recalculated for now, and the new line
6491 * will not be counted as a new header.
6492 */
6493
6494 cur_end += delta;
6495 cur_next += delta;
6496 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006497 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006498 break;
6499
6500 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02006501 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006502 cur_next += delta;
6503
Willy Tarreaufa355d42009-11-29 18:12:29 +01006504 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006505 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6506 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006507 cur_hdr->len = 0;
6508 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006509 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006510 break;
6511
6512 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006513 }
6514
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006515 /* keep the link from this header to next one in case of later
6516 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006517 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006518 old_idx = cur_idx;
6519 }
6520 return 0;
6521}
6522
6523
6524/* Apply the filter to the request line.
6525 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6526 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006527 * Since it can manage the switch to another backend, it updates the per-proxy
6528 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006529 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006530int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006531{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006532 char *cur_ptr, *cur_end;
6533 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006534 struct http_txn *txn = s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006535 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006536
Willy Tarreau3d300592007-03-18 18:34:41 +01006537 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006538 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006539 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006540 (exp->action == ACT_ALLOW ||
6541 exp->action == ACT_DENY ||
6542 exp->action == ACT_TARPIT))
6543 return 0;
6544 else if (exp->action == ACT_REMOVE)
6545 return 0;
6546
6547 done = 0;
6548
Willy Tarreau9b28e032012-10-12 23:49:43 +02006549 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006550 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006551
6552 /* Now we have the request line between cur_ptr and cur_end */
6553
Willy Tarreau15a53a42015-01-21 13:39:42 +01006554 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006555 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006556 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006557 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006558 done = 1;
6559 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006560
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006561 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006562 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006563 done = 1;
6564 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006565
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006566 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006567 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006568 done = 1;
6569 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006570
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006571 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06006572 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
6573 if (trash.len < 0)
6574 return -1;
6575
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006576 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006577 /* FIXME: if the user adds a newline in the replacement, the
6578 * index will not be recalculated for now, and the new line
6579 * will not be counted as a new header.
6580 */
Willy Tarreaua496b602006-12-17 23:15:24 +01006581
Willy Tarreaufa355d42009-11-29 18:12:29 +01006582 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006583 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02006584 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006585 HTTP_MSG_RQMETH,
6586 cur_ptr, cur_end + 1,
6587 NULL, NULL);
6588 if (unlikely(!cur_end))
6589 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01006590
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006591 /* we have a full request and we know that we have either a CR
6592 * or an LF at <ptr>.
6593 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006594 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
6595 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006596 /* there is no point trying this regex on headers */
6597 return 1;
6598 }
6599 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006600 return done;
6601}
Willy Tarreau97de6242006-12-27 17:18:38 +01006602
Willy Tarreau58f10d72006-12-04 02:26:12 +01006603
Willy Tarreau58f10d72006-12-04 02:26:12 +01006604
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006605/*
Willy Tarreau87b09662015-04-03 00:22:06 +02006606 * Apply all the req filters of proxy <px> to all headers in buffer <req> of stream <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006607 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01006608 * unparsable request. Since it can manage the switch to another backend, it
6609 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006610 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006611int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006612{
Willy Tarreau192252e2015-04-04 01:47:55 +02006613 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006614 struct http_txn *txn = s->txn;
Willy Tarreau6c123b12010-01-28 20:22:06 +01006615 struct hdr_exp *exp;
6616
6617 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006618 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006619
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006620 /*
6621 * The interleaving of transformations and verdicts
6622 * makes it difficult to decide to continue or stop
6623 * the evaluation.
6624 */
6625
Willy Tarreau6c123b12010-01-28 20:22:06 +01006626 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
6627 break;
6628
Willy Tarreau3d300592007-03-18 18:34:41 +01006629 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006630 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01006631 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006632 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01006633
6634 /* if this filter had a condition, evaluate it now and skip to
6635 * next filter if the condition does not match.
6636 */
6637 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02006638 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01006639 ret = acl_pass(ret);
6640 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6641 ret = !ret;
6642
6643 if (!ret)
6644 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006645 }
6646
6647 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01006648 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006649 if (unlikely(ret < 0))
6650 return -1;
6651
6652 if (likely(ret == 0)) {
6653 /* The filter did not match the request, it can be
6654 * iterated through all headers.
6655 */
Willy Tarreau34d4c3c2015-01-30 20:58:58 +01006656 if (unlikely(apply_filter_to_req_headers(s, req, exp) < 0))
6657 return -1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006658 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006659 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006660 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006661}
6662
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006663
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006664/* Find the end of a cookie value contained between <s> and <e>. It works the
6665 * same way as with headers above except that the semi-colon also ends a token.
6666 * See RFC2965 for more information. Note that it requires a valid header to
6667 * return a valid result.
6668 */
6669char *find_cookie_value_end(char *s, const char *e)
6670{
6671 int quoted, qdpair;
6672
6673 quoted = qdpair = 0;
6674 for (; s < e; s++) {
6675 if (qdpair) qdpair = 0;
6676 else if (quoted) {
6677 if (*s == '\\') qdpair = 1;
6678 else if (*s == '"') quoted = 0;
6679 }
6680 else if (*s == '"') quoted = 1;
6681 else if (*s == ',' || *s == ';') return s;
6682 }
6683 return s;
6684}
6685
6686/* Delete a value in a header between delimiters <from> and <next> in buffer
6687 * <buf>. The number of characters displaced is returned, and the pointer to
6688 * the first delimiter is updated if required. The function tries as much as
6689 * possible to respect the following principles :
6690 * - replace <from> delimiter by the <next> one unless <from> points to a
6691 * colon, in which case <next> is simply removed
6692 * - set exactly one space character after the new first delimiter, unless
6693 * there are not enough characters in the block being moved to do so.
6694 * - remove unneeded spaces before the previous delimiter and after the new
6695 * one.
6696 *
6697 * It is the caller's responsibility to ensure that :
6698 * - <from> points to a valid delimiter or the colon ;
6699 * - <next> points to a valid delimiter or the final CR/LF ;
6700 * - there are non-space chars before <from> ;
6701 * - there is a CR/LF at or after <next>.
6702 */
Willy Tarreauaf819352012-08-27 22:08:00 +02006703int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006704{
6705 char *prev = *from;
6706
6707 if (*prev == ':') {
6708 /* We're removing the first value, preserve the colon and add a
6709 * space if possible.
6710 */
Willy Tarreau2235b262016-11-05 15:50:20 +01006711 if (!HTTP_IS_CRLF(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006712 next++;
6713 prev++;
6714 if (prev < next)
6715 *prev++ = ' ';
6716
Willy Tarreau2235b262016-11-05 15:50:20 +01006717 while (HTTP_IS_SPHT(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006718 next++;
6719 } else {
6720 /* Remove useless spaces before the old delimiter. */
Willy Tarreau2235b262016-11-05 15:50:20 +01006721 while (HTTP_IS_SPHT(*(prev-1)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006722 prev--;
6723 *from = prev;
6724
6725 /* copy the delimiter and if possible a space if we're
6726 * not at the end of the line.
6727 */
Willy Tarreau2235b262016-11-05 15:50:20 +01006728 if (!HTTP_IS_CRLF(*next)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006729 *prev++ = *next++;
6730 if (prev + 1 < next)
6731 *prev++ = ' ';
Willy Tarreau2235b262016-11-05 15:50:20 +01006732 while (HTTP_IS_SPHT(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006733 next++;
6734 }
6735 }
6736 return buffer_replace2(buf, prev, next, NULL, 0);
6737}
6738
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006739/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006740 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006741 * desirable to call it only when needed. This code is quite complex because
6742 * of the multiple very crappy and ambiguous syntaxes we have to support. it
6743 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01006744 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006745void manage_client_side_cookies(struct stream *s, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006746{
Willy Tarreaueee5b512015-04-03 23:46:31 +02006747 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006748 struct session *sess = s->sess;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006749 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006750 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006751 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
6752 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006753
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006754 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01006755 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02006756 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006757
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006758 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006759 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006760 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006761
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006762 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006763 hdr_beg = hdr_next;
6764 hdr_end = hdr_beg + cur_hdr->len;
6765 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006766
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006767 /* We have one full header between hdr_beg and hdr_end, and the
6768 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01006769 * "Cookie:" headers.
6770 */
6771
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006772 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006773 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006774 old_idx = cur_idx;
6775 continue;
6776 }
6777
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006778 del_from = NULL; /* nothing to be deleted */
6779 preserve_hdr = 0; /* assume we may kill the whole header */
6780
Willy Tarreau58f10d72006-12-04 02:26:12 +01006781 /* Now look for cookies. Conforming to RFC2109, we have to support
6782 * attributes whose name begin with a '$', and associate them with
6783 * the right cookie, if we want to delete this cookie.
6784 * So there are 3 cases for each cookie read :
6785 * 1) it's a special attribute, beginning with a '$' : ignore it.
6786 * 2) it's a server id cookie that we *MAY* want to delete : save
6787 * some pointers on it (last semi-colon, beginning of cookie...)
6788 * 3) it's an application cookie : we *MAY* have to delete a previous
6789 * "special" cookie.
6790 * At the end of loop, if a "special" cookie remains, we may have to
6791 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006792 * *MUST* delete it.
6793 *
6794 * Note: RFC2965 is unclear about the processing of spaces around
6795 * the equal sign in the ATTR=VALUE form. A careful inspection of
6796 * the RFC explicitly allows spaces before it, and not within the
6797 * tokens (attrs or values). An inspection of RFC2109 allows that
6798 * too but section 10.1.3 lets one think that spaces may be allowed
6799 * after the equal sign too, resulting in some (rare) buggy
6800 * implementations trying to do that. So let's do what servers do.
6801 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
6802 * allowed quoted strings in values, with any possible character
6803 * after a backslash, including control chars and delimitors, which
6804 * causes parsing to become ambiguous. Browsers also allow spaces
6805 * within values even without quotes.
6806 *
6807 * We have to keep multiple pointers in order to support cookie
6808 * removal at the beginning, middle or end of header without
6809 * corrupting the header. All of these headers are valid :
6810 *
6811 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
6812 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
6813 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
6814 * | | | | | | | | |
6815 * | | | | | | | | hdr_end <--+
6816 * | | | | | | | +--> next
6817 * | | | | | | +----> val_end
6818 * | | | | | +-----------> val_beg
6819 * | | | | +--------------> equal
6820 * | | | +----------------> att_end
6821 * | | +---------------------> att_beg
6822 * | +--------------------------> prev
6823 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01006824 */
6825
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006826 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
6827 /* Iterate through all cookies on this line */
6828
6829 /* find att_beg */
6830 att_beg = prev + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01006831 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006832 att_beg++;
6833
6834 /* find att_end : this is the first character after the last non
6835 * space before the equal. It may be equal to hdr_end.
6836 */
6837 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006838
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006839 while (equal < hdr_end) {
6840 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01006841 break;
Willy Tarreau2235b262016-11-05 15:50:20 +01006842 if (HTTP_IS_SPHT(*equal++))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006843 continue;
6844 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006845 }
6846
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006847 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6848 * is between <att_beg> and <equal>, both may be identical.
6849 */
6850
6851 /* look for end of cookie if there is an equal sign */
6852 if (equal < hdr_end && *equal == '=') {
6853 /* look for the beginning of the value */
6854 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01006855 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006856 val_beg++;
6857
6858 /* find the end of the value, respecting quotes */
6859 next = find_cookie_value_end(val_beg, hdr_end);
6860
6861 /* make val_end point to the first white space or delimitor after the value */
6862 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +01006863 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006864 val_end--;
6865 } else {
6866 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01006867 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006868
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006869 /* We have nothing to do with attributes beginning with '$'. However,
6870 * they will automatically be removed if a header before them is removed,
6871 * since they're supposed to be linked together.
6872 */
6873 if (*att_beg == '$')
6874 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006875
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006876 /* Ignore cookies with no equal sign */
6877 if (equal == next) {
6878 /* This is not our cookie, so we must preserve it. But if we already
6879 * scheduled another cookie for removal, we cannot remove the
6880 * complete header, but we can remove the previous block itself.
6881 */
6882 preserve_hdr = 1;
6883 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006884 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006885 val_end += delta;
6886 next += delta;
6887 hdr_end += delta;
6888 hdr_next += delta;
6889 cur_hdr->len += delta;
6890 http_msg_move_end(&txn->req, delta);
6891 prev = del_from;
6892 del_from = NULL;
6893 }
6894 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01006895 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006896
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006897 /* if there are spaces around the equal sign, we need to
6898 * strip them otherwise we'll get trouble for cookie captures,
6899 * or even for rewrites. Since this happens extremely rarely,
6900 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006901 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006902 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6903 int stripped_before = 0;
6904 int stripped_after = 0;
6905
6906 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006907 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006908 equal += stripped_before;
6909 val_beg += stripped_before;
6910 }
6911
6912 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006913 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006914 val_beg += stripped_after;
6915 stripped_before += stripped_after;
6916 }
6917
6918 val_end += stripped_before;
6919 next += stripped_before;
6920 hdr_end += stripped_before;
6921 hdr_next += stripped_before;
6922 cur_hdr->len += stripped_before;
6923 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006924 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006925 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006926
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006927 /* First, let's see if we want to capture this cookie. We check
6928 * that we don't already have a client side cookie, because we
6929 * can only capture one. Also as an optimisation, we ignore
6930 * cookies shorter than the declared name.
6931 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006932 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
6933 (val_end - att_beg >= sess->fe->capture_namelen) &&
6934 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006935 int log_len = val_end - att_beg;
6936
Willy Tarreaubafbe012017-11-24 17:34:44 +01006937 if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006938 ha_alert("HTTP logging : out of memory.\n");
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006939 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006940 if (log_len > sess->fe->capture_len)
6941 log_len = sess->fe->capture_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006942 memcpy(txn->cli_cookie, att_beg, log_len);
6943 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006944 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006945 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006946
Willy Tarreaubca99692010-10-06 19:25:55 +02006947 /* Persistence cookies in passive, rewrite or insert mode have the
6948 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006949 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006950 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006951 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006952 * For cookies in prefix mode, the form is :
6953 *
6954 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006955 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006956 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
6957 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
6958 struct server *srv = s->be->srv;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006959 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006960
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006961 /* if we're in cookie prefix mode, we'll search the delimitor so that we
6962 * have the server ID between val_beg and delim, and the original cookie between
6963 * delim+1 and val_end. Otherwise, delim==val_end :
6964 *
6965 * Cookie: NAME=SRV; # in all but prefix modes
6966 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
6967 * | || || | |+-> next
6968 * | || || | +--> val_end
6969 * | || || +---------> delim
6970 * | || |+------------> val_beg
6971 * | || +-------------> att_end = equal
6972 * | |+-----------------> att_beg
6973 * | +------------------> prev
6974 * +-------------------------> hdr_beg
6975 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006976
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006977 if (s->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006978 for (delim = val_beg; delim < val_end; delim++)
6979 if (*delim == COOKIE_DELIM)
6980 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02006981 } else {
6982 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006983 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02006984 /* Now check if the cookie contains a date field, which would
6985 * appear after a vertical bar ('|') just after the server name
6986 * and before the delimiter.
6987 */
6988 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
6989 if (vbar1) {
6990 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02006991 * right is the last seen date. It is a base64 encoded
6992 * 30-bit value representing the UNIX date since the
6993 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02006994 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02006995 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02006996 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02006997 if (val_end - vbar1 >= 5) {
6998 val = b64tos30(vbar1);
6999 if (val > 0)
7000 txn->cookie_last_date = val << 2;
7001 }
7002 /* look for a second vertical bar */
7003 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
7004 if (vbar1 && (val_end - vbar1 > 5)) {
7005 val = b64tos30(vbar1 + 1);
7006 if (val > 0)
7007 txn->cookie_first_date = val << 2;
7008 }
Willy Tarreaubca99692010-10-06 19:25:55 +02007009 }
7010 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007011
Willy Tarreauf64d1412010-10-07 20:06:11 +02007012 /* if the cookie has an expiration date and the proxy wants to check
7013 * it, then we do that now. We first check if the cookie is too old,
7014 * then only if it has expired. We detect strict overflow because the
7015 * time resolution here is not great (4 seconds). Cookies with dates
7016 * in the future are ignored if their offset is beyond one day. This
7017 * allows an admin to fix timezone issues without expiring everyone
7018 * and at the same time avoids keeping unwanted side effects for too
7019 * long.
7020 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007021 if (txn->cookie_first_date && s->be->cookie_maxlife &&
7022 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007023 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007024 txn->flags &= ~TX_CK_MASK;
7025 txn->flags |= TX_CK_OLD;
7026 delim = val_beg; // let's pretend we have not found the cookie
7027 txn->cookie_first_date = 0;
7028 txn->cookie_last_date = 0;
7029 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007030 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
7031 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007032 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007033 txn->flags &= ~TX_CK_MASK;
7034 txn->flags |= TX_CK_EXPIRED;
7035 delim = val_beg; // let's pretend we have not found the cookie
7036 txn->cookie_first_date = 0;
7037 txn->cookie_last_date = 0;
7038 }
7039
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007040 /* Here, we'll look for the first running server which supports the cookie.
7041 * This allows to share a same cookie between several servers, for example
7042 * to dedicate backup servers to specific servers only.
7043 * However, to prevent clients from sticking to cookie-less backup server
7044 * when they have incidentely learned an empty cookie, we simply ignore
7045 * empty cookies and mark them as invalid.
7046 * The same behaviour is applied when persistence must be ignored.
7047 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02007048 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007049 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007050
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007051 while (srv) {
7052 if (srv->cookie && (srv->cklen == delim - val_beg) &&
7053 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
Emeric Brun52a91d32017-08-31 14:41:55 +02007054 if ((srv->cur_state != SRV_ST_STOPPED) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007055 (s->be->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02007056 (s->flags & SF_FORCE_PRST)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007057 /* we found the server and we can use it */
7058 txn->flags &= ~TX_CK_MASK;
Emeric Brun52a91d32017-08-31 14:41:55 +02007059 txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007060 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007061 s->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007062 break;
7063 } else {
7064 /* we found a server, but it's down,
7065 * mark it as such and go on in case
7066 * another one is available.
7067 */
7068 txn->flags &= ~TX_CK_MASK;
7069 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007070 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007071 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007072 srv = srv->next;
7073 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007074
Willy Tarreauf64d1412010-10-07 20:06:11 +02007075 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007076 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007077 txn->flags &= ~TX_CK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007078 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007079 txn->flags |= TX_CK_UNUSED;
7080 else
7081 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007082 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007083
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007084 /* depending on the cookie mode, we may have to either :
7085 * - delete the complete cookie if we're in insert+indirect mode, so that
7086 * the server never sees it ;
7087 * - remove the server id from the cookie value, and tag the cookie as an
7088 * application cookie so that it does not get accidentely removed later,
7089 * if we're in cookie prefix mode
7090 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007091 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007092 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007093
Willy Tarreau9b28e032012-10-12 23:49:43 +02007094 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007095 val_end += delta;
7096 next += delta;
7097 hdr_end += delta;
7098 hdr_next += delta;
7099 cur_hdr->len += delta;
7100 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007101
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007102 del_from = NULL;
7103 preserve_hdr = 1; /* we want to keep this cookie */
7104 }
7105 else if (del_from == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007106 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007107 del_from = prev;
7108 }
7109 } else {
7110 /* This is not our cookie, so we must preserve it. But if we already
7111 * scheduled another cookie for removal, we cannot remove the
7112 * complete header, but we can remove the previous block itself.
7113 */
7114 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007115
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007116 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007117 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01007118 if (att_beg >= del_from)
7119 att_beg += delta;
7120 if (att_end >= del_from)
7121 att_end += delta;
7122 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007123 val_end += delta;
7124 next += delta;
7125 hdr_end += delta;
7126 hdr_next += delta;
7127 cur_hdr->len += delta;
7128 http_msg_move_end(&txn->req, delta);
7129 prev = del_from;
7130 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007131 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007132 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007133
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007134 /* continue with next cookie on this header line */
7135 att_beg = next;
7136 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007137
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007138 /* There are no more cookies on this line.
7139 * We may still have one (or several) marked for deletion at the
7140 * end of the line. We must do this now in two ways :
7141 * - if some cookies must be preserved, we only delete from the
7142 * mark to the end of line ;
7143 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01007144 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007145 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007146 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007147 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007148 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007149 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007150 cur_hdr->len += delta;
7151 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007152 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007153
7154 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007155 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7156 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007157 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007158 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007159 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007160 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007161 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007162 }
7163
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007164 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007165 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007166 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007167}
7168
7169
Willy Tarreaua15645d2007-03-18 16:22:39 +01007170/* Iterate the same filter through all response headers contained in <rtr>.
7171 * Returns 1 if this filter can be stopped upon return, otherwise 0.
7172 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007173int apply_filter_to_resp_headers(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007174{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007175 char *cur_ptr, *cur_end, *cur_next;
7176 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007177 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007178 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007179 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007180
7181 last_hdr = 0;
7182
Willy Tarreau9b28e032012-10-12 23:49:43 +02007183 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007184 old_idx = 0;
7185
7186 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007187 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007188 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007189 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007190 (exp->action == ACT_ALLOW ||
7191 exp->action == ACT_DENY))
7192 return 0;
7193
7194 cur_idx = txn->hdr_idx.v[old_idx].next;
7195 if (!cur_idx)
7196 break;
7197
7198 cur_hdr = &txn->hdr_idx.v[cur_idx];
7199 cur_ptr = cur_next;
7200 cur_end = cur_ptr + cur_hdr->len;
7201 cur_next = cur_end + cur_hdr->cr + 1;
7202
7203 /* Now we have one header between cur_ptr and cur_end,
7204 * and the next header starts at cur_next.
7205 */
7206
Willy Tarreau15a53a42015-01-21 13:39:42 +01007207 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007208 switch (exp->action) {
7209 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007210 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007211 last_hdr = 1;
7212 break;
7213
7214 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007215 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007216 last_hdr = 1;
7217 break;
7218
7219 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007220 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7221 if (trash.len < 0)
7222 return -1;
7223
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007224 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007225 /* FIXME: if the user adds a newline in the replacement, the
7226 * index will not be recalculated for now, and the new line
7227 * will not be counted as a new header.
7228 */
7229
7230 cur_end += delta;
7231 cur_next += delta;
7232 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007233 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007234 break;
7235
7236 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007237 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007238 cur_next += delta;
7239
Willy Tarreaufa355d42009-11-29 18:12:29 +01007240 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007241 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7242 txn->hdr_idx.used--;
7243 cur_hdr->len = 0;
7244 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007245 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007246 break;
7247
7248 }
7249 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007250
7251 /* keep the link from this header to next one in case of later
7252 * removal of next header.
7253 */
7254 old_idx = cur_idx;
7255 }
7256 return 0;
7257}
7258
7259
7260/* Apply the filter to the status line in the response buffer <rtr>.
7261 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7262 * or -1 if a replacement resulted in an invalid status line.
7263 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007264int apply_filter_to_sts_line(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007265{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007266 char *cur_ptr, *cur_end;
7267 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007268 struct http_txn *txn = s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007269 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007270
7271
Willy Tarreau3d300592007-03-18 18:34:41 +01007272 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007273 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007274 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007275 (exp->action == ACT_ALLOW ||
7276 exp->action == ACT_DENY))
7277 return 0;
7278 else if (exp->action == ACT_REMOVE)
7279 return 0;
7280
7281 done = 0;
7282
Willy Tarreau9b28e032012-10-12 23:49:43 +02007283 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007284 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007285
7286 /* Now we have the status line between cur_ptr and cur_end */
7287
Willy Tarreau15a53a42015-01-21 13:39:42 +01007288 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007289 switch (exp->action) {
7290 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007291 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007292 done = 1;
7293 break;
7294
7295 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007296 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007297 done = 1;
7298 break;
7299
7300 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007301 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7302 if (trash.len < 0)
7303 return -1;
7304
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007305 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007306 /* FIXME: if the user adds a newline in the replacement, the
7307 * index will not be recalculated for now, and the new line
7308 * will not be counted as a new header.
7309 */
7310
Willy Tarreaufa355d42009-11-29 18:12:29 +01007311 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007312 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007313 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02007314 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01007315 cur_ptr, cur_end + 1,
7316 NULL, NULL);
7317 if (unlikely(!cur_end))
7318 return -1;
7319
7320 /* we have a full respnse and we know that we have either a CR
7321 * or an LF at <ptr>.
7322 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007323 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007324 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01007325 /* there is no point trying this regex on headers */
7326 return 1;
7327 }
7328 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007329 return done;
7330}
7331
7332
7333
7334/*
Willy Tarreau87b09662015-04-03 00:22:06 +02007335 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of stream <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007336 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
7337 * unparsable response.
7338 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007339int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007340{
Willy Tarreau192252e2015-04-04 01:47:55 +02007341 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007342 struct http_txn *txn = s->txn;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007343 struct hdr_exp *exp;
7344
7345 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007346 int ret;
7347
7348 /*
7349 * The interleaving of transformations and verdicts
7350 * makes it difficult to decide to continue or stop
7351 * the evaluation.
7352 */
7353
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007354 if (txn->flags & TX_SVDENY)
7355 break;
7356
Willy Tarreau3d300592007-03-18 18:34:41 +01007357 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007358 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
7359 exp->action == ACT_PASS)) {
7360 exp = exp->next;
7361 continue;
7362 }
7363
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007364 /* if this filter had a condition, evaluate it now and skip to
7365 * next filter if the condition does not match.
7366 */
7367 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02007368 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007369 ret = acl_pass(ret);
7370 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7371 ret = !ret;
7372 if (!ret)
7373 continue;
7374 }
7375
Willy Tarreaua15645d2007-03-18 16:22:39 +01007376 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007377 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007378 if (unlikely(ret < 0))
7379 return -1;
7380
7381 if (likely(ret == 0)) {
7382 /* The filter did not match the response, it can be
7383 * iterated through all headers.
7384 */
Sasha Pachevc6002042014-05-26 12:33:48 -06007385 if (unlikely(apply_filter_to_resp_headers(s, rtr, exp) < 0))
7386 return -1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007387 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007388 }
7389 return 0;
7390}
7391
7392
Willy Tarreaua15645d2007-03-18 16:22:39 +01007393/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007394 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02007395 * desirable to call it only when needed. This function is also used when we
7396 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01007397 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007398void manage_server_side_cookies(struct stream *s, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007399{
Willy Tarreaueee5b512015-04-03 23:46:31 +02007400 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007401 struct session *sess = s->sess;
Willy Tarreau827aee92011-03-10 16:55:02 +01007402 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007403 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007404 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007405 char *hdr_beg, *hdr_end, *hdr_next;
7406 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007407
Willy Tarreaua15645d2007-03-18 16:22:39 +01007408 /* Iterate through the headers.
7409 * we start with the start line.
7410 */
7411 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007412 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007413
7414 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
7415 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007416 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007417
7418 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02007419 hdr_beg = hdr_next;
7420 hdr_end = hdr_beg + cur_hdr->len;
7421 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007422
Willy Tarreau24581ba2010-08-31 22:39:35 +02007423 /* We have one full header between hdr_beg and hdr_end, and the
7424 * next header starts at hdr_next. We're only interested in
7425 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007426 */
7427
Willy Tarreau24581ba2010-08-31 22:39:35 +02007428 is_cookie2 = 0;
7429 prev = hdr_beg + 10;
7430 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007431 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007432 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
7433 if (!val) {
7434 old_idx = cur_idx;
7435 continue;
7436 }
7437 is_cookie2 = 1;
7438 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007439 }
7440
Willy Tarreau24581ba2010-08-31 22:39:35 +02007441 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
7442 * <prev> points to the colon.
7443 */
Willy Tarreauf1348312010-10-07 15:54:11 +02007444 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007445
Willy Tarreau24581ba2010-08-31 22:39:35 +02007446 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
7447 * check-cache is enabled) and we are not interested in checking
7448 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007449 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02007450 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007451 return;
7452
Willy Tarreau24581ba2010-08-31 22:39:35 +02007453 /* OK so now we know we have to process this response cookie.
7454 * The format of the Set-Cookie header is slightly different
7455 * from the format of the Cookie header in that it does not
7456 * support the comma as a cookie delimiter (thus the header
7457 * cannot be folded) because the Expires attribute described in
7458 * the original Netscape's spec may contain an unquoted date
7459 * with a comma inside. We have to live with this because
7460 * many browsers don't support Max-Age and some browsers don't
7461 * support quoted strings. However the Set-Cookie2 header is
7462 * clean.
7463 *
7464 * We have to keep multiple pointers in order to support cookie
7465 * removal at the beginning, middle or end of header without
7466 * corrupting the header (in case of set-cookie2). A special
7467 * pointer, <scav> points to the beginning of the set-cookie-av
7468 * fields after the first semi-colon. The <next> pointer points
7469 * either to the end of line (set-cookie) or next unquoted comma
7470 * (set-cookie2). All of these headers are valid :
7471 *
7472 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
7473 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7474 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7475 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
7476 * | | | | | | | | | |
7477 * | | | | | | | | +-> next hdr_end <--+
7478 * | | | | | | | +------------> scav
7479 * | | | | | | +--------------> val_end
7480 * | | | | | +--------------------> val_beg
7481 * | | | | +----------------------> equal
7482 * | | | +------------------------> att_end
7483 * | | +----------------------------> att_beg
7484 * | +------------------------------> prev
7485 * +-----------------------------------------> hdr_beg
7486 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007487
Willy Tarreau24581ba2010-08-31 22:39:35 +02007488 for (; prev < hdr_end; prev = next) {
7489 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007490
Willy Tarreau24581ba2010-08-31 22:39:35 +02007491 /* find att_beg */
7492 att_beg = prev + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01007493 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreau24581ba2010-08-31 22:39:35 +02007494 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007495
Willy Tarreau24581ba2010-08-31 22:39:35 +02007496 /* find att_end : this is the first character after the last non
7497 * space before the equal. It may be equal to hdr_end.
7498 */
7499 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007500
Willy Tarreau24581ba2010-08-31 22:39:35 +02007501 while (equal < hdr_end) {
7502 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
7503 break;
Willy Tarreau2235b262016-11-05 15:50:20 +01007504 if (HTTP_IS_SPHT(*equal++))
Willy Tarreau24581ba2010-08-31 22:39:35 +02007505 continue;
7506 att_end = equal;
7507 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007508
Willy Tarreau24581ba2010-08-31 22:39:35 +02007509 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7510 * is between <att_beg> and <equal>, both may be identical.
7511 */
7512
7513 /* look for end of cookie if there is an equal sign */
7514 if (equal < hdr_end && *equal == '=') {
7515 /* look for the beginning of the value */
7516 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01007517 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreau24581ba2010-08-31 22:39:35 +02007518 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007519
Willy Tarreau24581ba2010-08-31 22:39:35 +02007520 /* find the end of the value, respecting quotes */
7521 next = find_cookie_value_end(val_beg, hdr_end);
7522
7523 /* make val_end point to the first white space or delimitor after the value */
7524 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +01007525 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreau24581ba2010-08-31 22:39:35 +02007526 val_end--;
7527 } else {
7528 /* <equal> points to next comma, semi-colon or EOL */
7529 val_beg = val_end = next = equal;
7530 }
7531
7532 if (next < hdr_end) {
7533 /* Set-Cookie2 supports multiple cookies, and <next> points to
7534 * a colon or semi-colon before the end. So skip all attr-value
7535 * pairs and look for the next comma. For Set-Cookie, since
7536 * commas are permitted in values, skip to the end.
7537 */
7538 if (is_cookie2)
7539 next = find_hdr_value_end(next, hdr_end);
7540 else
7541 next = hdr_end;
7542 }
7543
7544 /* Now everything is as on the diagram above */
7545
7546 /* Ignore cookies with no equal sign */
7547 if (equal == val_end)
7548 continue;
7549
7550 /* If there are spaces around the equal sign, we need to
7551 * strip them otherwise we'll get trouble for cookie captures,
7552 * or even for rewrites. Since this happens extremely rarely,
7553 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007554 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02007555 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7556 int stripped_before = 0;
7557 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007558
Willy Tarreau24581ba2010-08-31 22:39:35 +02007559 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007560 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007561 equal += stripped_before;
7562 val_beg += stripped_before;
7563 }
7564
7565 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007566 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007567 val_beg += stripped_after;
7568 stripped_before += stripped_after;
7569 }
7570
7571 val_end += stripped_before;
7572 next += stripped_before;
7573 hdr_end += stripped_before;
7574 hdr_next += stripped_before;
7575 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02007576 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007577 }
7578
7579 /* First, let's see if we want to capture this cookie. We check
7580 * that we don't already have a server side cookie, because we
7581 * can only capture one. Also as an optimisation, we ignore
7582 * cookies shorter than the declared name.
7583 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007584 if (sess->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01007585 txn->srv_cookie == NULL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007586 (val_end - att_beg >= sess->fe->capture_namelen) &&
7587 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007588 int log_len = val_end - att_beg;
Willy Tarreaubafbe012017-11-24 17:34:44 +01007589 if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01007590 ha_alert("HTTP logging : out of memory.\n");
Willy Tarreaua15645d2007-03-18 16:22:39 +01007591 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01007592 else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007593 if (log_len > sess->fe->capture_len)
7594 log_len = sess->fe->capture_len;
Willy Tarreauf70fc752010-11-19 11:27:18 +01007595 memcpy(txn->srv_cookie, att_beg, log_len);
7596 txn->srv_cookie[log_len] = 0;
7597 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007598 }
7599
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007600 srv = objt_server(s->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007601 /* now check if we need to process it for persistence */
Willy Tarreaue7dff022015-04-03 01:14:29 +02007602 if (!(s->flags & SF_IGNORE_PRST) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007603 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
7604 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02007605 /* assume passive cookie by default */
7606 txn->flags &= ~TX_SCK_MASK;
7607 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007608
7609 /* If the cookie is in insert mode on a known server, we'll delete
7610 * this occurrence because we'll insert another one later.
7611 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02007612 * a direct access.
7613 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007614 if (s->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02007615 /* The "preserve" flag was set, we don't want to touch the
7616 * server's cookie.
7617 */
7618 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007619 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02007620 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007621 /* this cookie must be deleted */
7622 if (*prev == ':' && next == hdr_end) {
7623 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007624 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007625 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7626 txn->hdr_idx.used--;
7627 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007628 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007629 hdr_next += delta;
7630 http_msg_move_end(&txn->rsp, delta);
7631 /* note: while both invalid now, <next> and <hdr_end>
7632 * are still equal, so the for() will stop as expected.
7633 */
7634 } else {
7635 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007636 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007637 next = prev;
7638 hdr_end += delta;
7639 hdr_next += delta;
7640 cur_hdr->len += delta;
7641 http_msg_move_end(&txn->rsp, delta);
7642 }
Willy Tarreauf1348312010-10-07 15:54:11 +02007643 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01007644 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007645 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007646 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007647 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007648 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01007649 * with this server since we know it.
7650 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007651 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007652 next += delta;
7653 hdr_end += delta;
7654 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007655 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007656 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007657
Willy Tarreauf1348312010-10-07 15:54:11 +02007658 txn->flags &= ~TX_SCK_MASK;
7659 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007660 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007661 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007662 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02007663 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01007664 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007665 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007666 next += delta;
7667 hdr_end += delta;
7668 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007669 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007670 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007671
Willy Tarreau827aee92011-03-10 16:55:02 +01007672 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02007673 txn->flags &= ~TX_SCK_MASK;
7674 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007675 }
7676 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02007677 /* that's done for this cookie, check the next one on the same
7678 * line when next != hdr_end (only if is_cookie2).
7679 */
7680 }
7681 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007682 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007683 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007684}
7685
7686
Willy Tarreaua15645d2007-03-18 16:22:39 +01007687/*
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +01007688 * Parses the Cache-Control and Pragma request header fields to determine if
7689 * the request may be served from the cache and/or if it is cacheable. Updates
7690 * s->txn->flags.
7691 */
7692void check_request_for_cacheability(struct stream *s, struct channel *chn)
7693{
7694 struct http_txn *txn = s->txn;
7695 char *p1, *p2;
7696 char *cur_ptr, *cur_end, *cur_next;
7697 int pragma_found;
7698 int cc_found;
7699 int cur_idx;
7700
7701 if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE)
7702 return; /* nothing more to do here */
7703
7704 cur_idx = 0;
7705 pragma_found = cc_found = 0;
7706 cur_next = chn->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
7707
7708 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7709 struct hdr_idx_elem *cur_hdr;
7710 int val;
7711
7712 cur_hdr = &txn->hdr_idx.v[cur_idx];
7713 cur_ptr = cur_next;
7714 cur_end = cur_ptr + cur_hdr->len;
7715 cur_next = cur_end + cur_hdr->cr + 1;
7716
7717 /* We have one full header between cur_ptr and cur_end, and the
7718 * next header starts at cur_next.
7719 */
7720
7721 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7722 if (val) {
7723 if ((cur_end - (cur_ptr + val) >= 8) &&
7724 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7725 pragma_found = 1;
7726 continue;
7727 }
7728 }
7729
7730 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7731 if (!val)
7732 continue;
7733
7734 /* OK, right now we know we have a cache-control header at cur_ptr */
7735 cc_found = 1;
7736 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
7737
7738 if (p1 >= cur_end) /* no more info */
7739 continue;
7740
7741 /* p1 is at the beginning of the value */
7742 p2 = p1;
7743 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
7744 p2++;
7745
7746 /* we have a complete value between p1 and p2. We don't check the
7747 * values after max-age, max-stale nor min-fresh, we simply don't
7748 * use the cache when they're specified.
7749 */
7750 if (((p2 - p1 == 7) && strncasecmp(p1, "max-age", 7) == 0) ||
7751 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
7752 ((p2 - p1 == 9) && strncasecmp(p1, "max-stale", 9) == 0) ||
7753 ((p2 - p1 == 9) && strncasecmp(p1, "min-fresh", 9) == 0)) {
7754 txn->flags |= TX_CACHE_IGNORE;
7755 continue;
7756 }
7757
7758 if ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) {
7759 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7760 continue;
7761 }
7762 }
7763
7764 /* RFC7234#5.4:
7765 * When the Cache-Control header field is also present and
7766 * understood in a request, Pragma is ignored.
7767 * When the Cache-Control header field is not present in a
7768 * request, caches MUST consider the no-cache request
7769 * pragma-directive as having the same effect as if
7770 * "Cache-Control: no-cache" were present.
7771 */
7772 if (!cc_found && pragma_found)
7773 txn->flags |= TX_CACHE_IGNORE;
7774}
7775
7776/*
Willy Tarreaud3900cc2017-12-22 15:35:11 +01007777 * Check if response is cacheable or not. Updates s->txn->flags.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007778 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007779void check_response_for_cacheability(struct stream *s, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007780{
Willy Tarreaueee5b512015-04-03 23:46:31 +02007781 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007782 char *p1, *p2;
7783
7784 char *cur_ptr, *cur_end, *cur_next;
7785 int cur_idx;
7786
Willy Tarreau12b32f22017-12-21 16:08:09 +01007787 if (txn->status < 200) {
7788 /* do not try to cache interim responses! */
7789 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007790 return;
Willy Tarreau12b32f22017-12-21 16:08:09 +01007791 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007792
7793 /* Iterate through the headers.
7794 * we start with the start line.
7795 */
7796 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007797 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007798
7799 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7800 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007801 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007802
7803 cur_hdr = &txn->hdr_idx.v[cur_idx];
7804 cur_ptr = cur_next;
7805 cur_end = cur_ptr + cur_hdr->len;
7806 cur_next = cur_end + cur_hdr->cr + 1;
7807
7808 /* We have one full header between cur_ptr and cur_end, and the
Willy Tarreaud3900cc2017-12-22 15:35:11 +01007809 * next header starts at cur_next.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007810 */
7811
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007812 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7813 if (val) {
7814 if ((cur_end - (cur_ptr + val) >= 8) &&
7815 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7816 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7817 return;
7818 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007819 }
7820
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007821 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7822 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007823 continue;
7824
7825 /* OK, right now we know we have a cache-control header at cur_ptr */
7826
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007827 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007828
7829 if (p1 >= cur_end) /* no more info */
7830 continue;
7831
7832 /* p1 is at the beginning of the value */
7833 p2 = p1;
7834
Willy Tarreau8f8e6452007-06-17 21:51:38 +02007835 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007836 p2++;
7837
7838 /* we have a complete value between p1 and p2 */
7839 if (p2 < cur_end && *p2 == '=') {
Willy Tarreaud3900cc2017-12-22 15:35:11 +01007840 if (((cur_end - p2) > 1 && (p2 - p1 == 7) && strncasecmp(p1, "max-age=0", 9) == 0) ||
7841 ((cur_end - p2) > 1 && (p2 - p1 == 8) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
7842 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7843 continue;
7844 }
7845
Willy Tarreaua15645d2007-03-18 16:22:39 +01007846 /* we have something of the form no-cache="set-cookie" */
7847 if ((cur_end - p1 >= 21) &&
7848 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
7849 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01007850 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007851 continue;
7852 }
7853
7854 /* OK, so we know that either p2 points to the end of string or to a comma */
7855 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02007856 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaud3900cc2017-12-22 15:35:11 +01007857 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007858 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007859 return;
7860 }
7861
7862 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007863 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007864 continue;
7865 }
7866 }
7867}
7868
Willy Tarreau58f10d72006-12-04 02:26:12 +01007869
Willy Tarreaub2513902006-12-17 14:52:38 +01007870/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02007871 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007872 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01007873 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02007874 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01007875 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01007876 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007877 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01007878 */
Willy Tarreau295a8372011-03-10 11:25:07 +01007879int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01007880{
7881 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01007882 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007883 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01007884
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007885 if (!uri_auth)
7886 return 0;
7887
Cyril Bonté70be45d2010-10-12 00:14:35 +02007888 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007889 return 0;
7890
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007891 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01007892 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01007893 return 0;
7894
Willy Tarreau414e9bb2013-11-23 00:30:38 +01007895 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01007896 return 0;
7897
Willy Tarreaub2513902006-12-17 14:52:38 +01007898 return 1;
7899}
7900
Willy Tarreau4076a152009-04-02 15:18:36 +02007901/*
7902 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007903 * By default it tries to report the error position as msg->err_pos. However if
7904 * this one is not set, it will then report msg->next, which is the last known
7905 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007906 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02007907 */
Emeric Brun8c1aaa22017-06-15 11:30:06 +02007908void http_capture_bad_message(struct proxy *proxy, struct error_snapshot *es, struct stream *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01007909 struct http_msg *msg,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +02007910 enum h1_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02007911{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02007912 struct session *sess = strm_sess(s);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007913 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007914 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01007915
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007916 HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock);
Willy Tarreauf3764b72016-03-31 13:45:10 +02007917 es->len = MIN(chn->buf->i, global.tune.bufsize);
Willy Tarreau9b28e032012-10-12 23:49:43 +02007918 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007919 len1 = MIN(len1, es->len);
7920 len2 = es->len - len1; /* remaining data if buffer wraps */
7921
Willy Tarreauf3764b72016-03-31 13:45:10 +02007922 if (!es->buf)
7923 es->buf = malloc(global.tune.bufsize);
7924
7925 if (es->buf) {
7926 memcpy(es->buf, chn->buf->p, len1);
7927 if (len2)
7928 memcpy(es->buf + len1, chn->buf->data, len2);
7929 }
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007930
Willy Tarreau4076a152009-04-02 15:18:36 +02007931 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007932 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007933 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007934 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007935
Willy Tarreau4076a152009-04-02 15:18:36 +02007936 es->when = date; // user-visible date
7937 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007938 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02007939 es->oe = other_end;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02007940 if (objt_conn(sess->origin))
7941 es->src = __objt_conn(sess->origin)->addr.from;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007942 else
7943 memset(&es->src, 0, sizeof(es->src));
7944
Willy Tarreau078272e2010-12-12 12:46:33 +01007945 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01007946 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007947 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02007948 es->s_flags = s->flags;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007949 es->t_flags = s->txn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02007950 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007951 es->b_out = chn->buf->o;
7952 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02007953 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02007954 es->m_clen = msg->chunk_len;
7955 es->m_blen = msg->body_len;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007956 HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock);
Willy Tarreau4076a152009-04-02 15:18:36 +02007957}
Willy Tarreaub2513902006-12-17 14:52:38 +01007958
Willy Tarreau294c4732011-12-16 21:35:50 +01007959/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
7960 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
7961 * performed over the whole headers. Otherwise it must contain a valid header
7962 * context, initialised with ctx->idx=0 for the first lookup in a series. If
7963 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
7964 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
7965 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
Willy Tarreau04ff9f12013-06-10 18:39:42 +02007966 * -1. The value fetch stops at commas, so this function is suited for use with
7967 * list headers.
Willy Tarreau294c4732011-12-16 21:35:50 +01007968 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02007969 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02007970unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01007971 struct hdr_idx *idx, int occ,
7972 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02007973{
Willy Tarreau294c4732011-12-16 21:35:50 +01007974 struct hdr_ctx local_ctx;
7975 char *ptr_hist[MAX_HDR_HISTORY];
7976 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02007977 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01007978 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02007979
Willy Tarreau294c4732011-12-16 21:35:50 +01007980 if (!ctx) {
7981 local_ctx.idx = 0;
7982 ctx = &local_ctx;
7983 }
7984
Willy Tarreaubce70882009-09-07 11:51:47 +02007985 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01007986 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007987 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02007988 occ--;
7989 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01007990 *vptr = ctx->line + ctx->val;
7991 *vlen = ctx->vlen;
7992 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02007993 }
7994 }
Willy Tarreau294c4732011-12-16 21:35:50 +01007995 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02007996 }
7997
7998 /* negative occurrence, we scan all the list then walk back */
7999 if (-occ > MAX_HDR_HISTORY)
8000 return 0;
8001
Willy Tarreau294c4732011-12-16 21:35:50 +01008002 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008003 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008004 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8005 len_hist[hist_ptr] = ctx->vlen;
8006 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02008007 hist_ptr = 0;
8008 found++;
8009 }
8010 if (-occ > found)
8011 return 0;
8012 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Willy Tarreau67dad272013-06-12 22:27:44 +02008013 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8014 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8015 * to remain in the 0..9 range.
Willy Tarreaubce70882009-09-07 11:51:47 +02008016 */
Willy Tarreau67dad272013-06-12 22:27:44 +02008017 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreaubce70882009-09-07 11:51:47 +02008018 if (hist_ptr >= MAX_HDR_HISTORY)
8019 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01008020 *vptr = ptr_hist[hist_ptr];
8021 *vlen = len_hist[hist_ptr];
8022 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008023}
8024
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008025/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8026 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8027 * performed over the whole headers. Otherwise it must contain a valid header
8028 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8029 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8030 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8031 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
8032 * -1. This function differs from http_get_hdr() in that it only returns full
8033 * line header values and does not stop at commas.
8034 * The return value is 0 if nothing was found, or non-zero otherwise.
8035 */
8036unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
8037 struct hdr_idx *idx, int occ,
8038 struct hdr_ctx *ctx, char **vptr, int *vlen)
8039{
8040 struct hdr_ctx local_ctx;
8041 char *ptr_hist[MAX_HDR_HISTORY];
8042 int len_hist[MAX_HDR_HISTORY];
8043 unsigned int hist_ptr;
8044 int found;
8045
8046 if (!ctx) {
8047 local_ctx.idx = 0;
8048 ctx = &local_ctx;
8049 }
8050
8051 if (occ >= 0) {
8052 /* search from the beginning */
8053 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8054 occ--;
8055 if (occ <= 0) {
8056 *vptr = ctx->line + ctx->val;
8057 *vlen = ctx->vlen;
8058 return 1;
8059 }
8060 }
8061 return 0;
8062 }
8063
8064 /* negative occurrence, we scan all the list then walk back */
8065 if (-occ > MAX_HDR_HISTORY)
8066 return 0;
8067
8068 found = hist_ptr = 0;
8069 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8070 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8071 len_hist[hist_ptr] = ctx->vlen;
8072 if (++hist_ptr >= MAX_HDR_HISTORY)
8073 hist_ptr = 0;
8074 found++;
8075 }
8076 if (-occ > found)
8077 return 0;
Nenad Merdanovic69ad4b92016-03-29 13:14:30 +02008078
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008079 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Nenad Merdanovic69ad4b92016-03-29 13:14:30 +02008080 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8081 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8082 * to remain in the 0..9 range.
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008083 */
Nenad Merdanovic69ad4b92016-03-29 13:14:30 +02008084 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008085 if (hist_ptr >= MAX_HDR_HISTORY)
8086 hist_ptr -= MAX_HDR_HISTORY;
8087 *vptr = ptr_hist[hist_ptr];
8088 *vlen = len_hist[hist_ptr];
8089 return 1;
8090}
8091
Willy Tarreaubaaee002006-06-26 02:48:02 +02008092/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02008093 * Print a debug line with a header. Always stop at the first CR or LF char,
8094 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
8095 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01008096 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008097void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008098{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008099 struct session *sess = strm_sess(s);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008100 int max;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008101
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008102 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008103 dir,
Willy Tarreau585744b2017-08-24 14:31:19 +02008104 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02008105 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02008106
8107 for (max = 0; start + max < end; max++)
8108 if (start[max] == '\r' || start[max] == '\n')
8109 break;
8110
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008111 UBOUND(max, trash.size - trash.len - 3);
8112 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
8113 trash.str[trash.len++] = '\n';
Willy Tarreau89efaed2013-12-13 15:14:55 +01008114 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008115}
8116
Willy Tarreaueee5b512015-04-03 23:46:31 +02008117
8118/* Allocate a new HTTP transaction for stream <s> unless there is one already.
8119 * The hdr_idx is allocated as well. In case of allocation failure, everything
8120 * allocated is freed and NULL is returned. Otherwise the new transaction is
8121 * assigned to the stream and returned.
8122 */
8123struct http_txn *http_alloc_txn(struct stream *s)
8124{
8125 struct http_txn *txn = s->txn;
8126
8127 if (txn)
8128 return txn;
8129
Willy Tarreaubafbe012017-11-24 17:34:44 +01008130 txn = pool_alloc(pool_head_http_txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +02008131 if (!txn)
8132 return txn;
8133
8134 txn->hdr_idx.size = global.tune.max_http_hdr;
Willy Tarreaubafbe012017-11-24 17:34:44 +01008135 txn->hdr_idx.v = pool_alloc(pool_head_hdr_idx);
Willy Tarreaueee5b512015-04-03 23:46:31 +02008136 if (!txn->hdr_idx.v) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01008137 pool_free(pool_head_http_txn, txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +02008138 return NULL;
8139 }
8140
8141 s->txn = txn;
8142 return txn;
8143}
8144
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +02008145void http_txn_reset_req(struct http_txn *txn)
8146{
8147 txn->req.flags = 0;
8148 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
8149 txn->req.next = 0;
8150 txn->req.chunk_len = 0LL;
8151 txn->req.body_len = 0LL;
8152 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
8153}
8154
8155void http_txn_reset_res(struct http_txn *txn)
8156{
8157 txn->rsp.flags = 0;
8158 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
8159 txn->rsp.next = 0;
8160 txn->rsp.chunk_len = 0LL;
8161 txn->rsp.body_len = 0LL;
8162 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
8163}
8164
Willy Tarreau0937bc42009-12-22 15:03:09 +01008165/*
Willy Tarreau87b09662015-04-03 00:22:06 +02008166 * Initialize a new HTTP transaction for stream <s>. It is assumed that all
Willy Tarreau0937bc42009-12-22 15:03:09 +01008167 * the required fields are properly allocated and that we only need to (re)init
8168 * them. This should be used before processing any new request.
8169 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008170void http_init_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008171{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008172 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008173 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008174
8175 txn->flags = 0;
8176 txn->status = -1;
8177
Willy Tarreauf64d1412010-10-07 20:06:11 +02008178 txn->cookie_first_date = 0;
8179 txn->cookie_last_date = 0;
8180
Willy Tarreaueee5b512015-04-03 23:46:31 +02008181 txn->srv_cookie = NULL;
8182 txn->cli_cookie = NULL;
8183 txn->uri = NULL;
8184
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +02008185 http_txn_reset_req(txn);
8186 http_txn_reset_res(txn);
8187
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008188 txn->req.chn = &s->req;
8189 txn->rsp.chn = &s->res;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008190
8191 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008192
8193 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
8194 if (fe->options2 & PR_O2_REQBUG_OK)
8195 txn->req.err_pos = -1; /* let buggy requests pass */
8196
Willy Tarreau0937bc42009-12-22 15:03:09 +01008197 if (txn->hdr_idx.v)
8198 hdr_idx_init(&txn->hdr_idx);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02008199
8200 vars_init(&s->vars_txn, SCOPE_TXN);
8201 vars_init(&s->vars_reqres, SCOPE_REQ);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008202}
8203
8204/* to be used at the end of a transaction */
Willy Tarreau87b09662015-04-03 00:22:06 +02008205void http_end_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008206{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008207 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008208 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008209
8210 /* these ones will have been dynamically allocated */
Willy Tarreaubafbe012017-11-24 17:34:44 +01008211 pool_free(pool_head_requri, txn->uri);
8212 pool_free(pool_head_capture, txn->cli_cookie);
8213 pool_free(pool_head_capture, txn->srv_cookie);
8214 pool_free(pool_head_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008215
William Lallemanda73203e2012-03-12 12:48:57 +01008216 s->unique_id = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008217 txn->uri = NULL;
8218 txn->srv_cookie = NULL;
8219 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01008220
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008221 if (s->req_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01008222 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008223 for (h = fe->req_cap; h; h = h->next)
Willy Tarreaubafbe012017-11-24 17:34:44 +01008224 pool_free(h->pool, s->req_cap[h->index]);
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008225 memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01008226 }
8227
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008228 if (s->res_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01008229 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008230 for (h = fe->rsp_cap; h; h = h->next)
Willy Tarreaubafbe012017-11-24 17:34:44 +01008231 pool_free(h->pool, s->res_cap[h->index]);
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008232 memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01008233 }
8234
Willy Tarreau6204cd92016-03-10 16:33:04 +01008235 vars_prune(&s->vars_txn, s->sess, s);
8236 vars_prune(&s->vars_reqres, s->sess, s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008237}
8238
8239/* to be used at the end of a transaction to prepare a new one */
Willy Tarreau87b09662015-04-03 00:22:06 +02008240void http_reset_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008241{
8242 http_end_txn(s);
8243 http_init_txn(s);
8244
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01008245 /* reinitialise the current rule list pointer to NULL. We are sure that
8246 * any rulelist match the NULL pointer.
8247 */
8248 s->current_rule_list = NULL;
8249
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008250 s->be = strm_fe(s);
8251 s->logs.logwait = strm_fe(s)->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02008252 s->logs.level = 0;
Willy Tarreau87b09662015-04-03 00:22:06 +02008253 stream_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008254 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008255 /* re-init store persistence */
8256 s->store_count = 0;
Willy Tarreau1f0da242014-01-25 11:01:50 +01008257 s->uniq_id = global.req_count++;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008258
Willy Tarreau0937bc42009-12-22 15:03:09 +01008259 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008260
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008261 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008262
Willy Tarreau739cfba2010-01-25 23:11:14 +01008263 /* We must trim any excess data from the response buffer, because we
8264 * may have blocked an invalid response from a server that we don't
8265 * want to accidentely forward once we disable the analysers, nor do
8266 * we want those data to come along with next response. A typical
8267 * example of such data would be from a buggy server responding to
8268 * a HEAD with some data, or sending more than the advertised
8269 * content-length.
8270 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008271 if (unlikely(s->res.buf->i))
8272 s->res.buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008273
Christopher Fauletc0c672a2017-03-28 11:51:33 +02008274 /* Now we can realign the response buffer */
8275 buffer_realign(s->res.buf);
8276
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008277 s->req.rto = strm_fe(s)->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008278 s->req.wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008279
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008280 s->res.rto = TICK_ETERNITY;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008281 s->res.wto = strm_fe(s)->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008282
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008283 s->req.rex = TICK_ETERNITY;
8284 s->req.wex = TICK_ETERNITY;
8285 s->req.analyse_exp = TICK_ETERNITY;
8286 s->res.rex = TICK_ETERNITY;
8287 s->res.wex = TICK_ETERNITY;
8288 s->res.analyse_exp = TICK_ETERNITY;
Hongbo Longe39683c2017-03-10 18:41:51 +01008289 s->si[1].hcto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008290}
Willy Tarreau58f10d72006-12-04 02:26:12 +01008291
Sasha Pachev218f0642014-06-16 12:05:59 -06008292void free_http_res_rules(struct list *r)
8293{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008294 struct act_rule *tr, *pr;
Sasha Pachev218f0642014-06-16 12:05:59 -06008295
8296 list_for_each_entry_safe(pr, tr, r, list) {
8297 LIST_DEL(&pr->list);
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008298 regex_free(&pr->arg.hdr_add.re);
Sasha Pachev218f0642014-06-16 12:05:59 -06008299 free(pr);
8300 }
8301}
8302
8303void free_http_req_rules(struct list *r)
8304{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008305 struct act_rule *tr, *pr;
Willy Tarreauff011f22011-01-06 17:51:27 +01008306
8307 list_for_each_entry_safe(pr, tr, r, list) {
8308 LIST_DEL(&pr->list);
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008309 if (pr->action == ACT_HTTP_REQ_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008310 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01008311
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008312 regex_free(&pr->arg.hdr_add.re);
Willy Tarreauff011f22011-01-06 17:51:27 +01008313 free(pr);
8314 }
8315}
8316
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008317/* parse an "http-request" rule */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008318struct act_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
Willy Tarreauff011f22011-01-06 17:51:27 +01008319{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008320 struct act_rule *rule;
Thierry FOURNIER36481b82015-08-19 09:01:53 +02008321 struct action_kw *custom = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008322 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008323 char *error;
Willy Tarreauff011f22011-01-06 17:51:27 +01008324
Vincent Bernat02779b62016-04-03 13:48:43 +02008325 rule = calloc(1, sizeof(*rule));
Willy Tarreauff011f22011-01-06 17:51:27 +01008326 if (!rule) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008327 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008328 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008329 }
8330
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008331 if (!strcmp(args[0], "allow")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008332 rule->action = ACT_ACTION_ALLOW;
Willy Tarreauff011f22011-01-06 17:51:27 +01008333 cur_arg = 1;
Jarno Huuskonen800d1762017-03-06 14:56:36 +02008334 } else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block") || !strcmp(args[0], "tarpit")) {
CJ Ess108b1dd2015-04-07 12:03:37 -04008335 int code;
8336 int hc;
8337
Jarno Huuskonen800d1762017-03-06 14:56:36 +02008338 if (!strcmp(args[0], "tarpit")) {
8339 rule->action = ACT_HTTP_REQ_TARPIT;
8340 rule->deny_status = HTTP_ERR_500;
8341 }
8342 else {
8343 rule->action = ACT_ACTION_DENY;
8344 rule->deny_status = HTTP_ERR_403;
8345 }
Willy Tarreauff011f22011-01-06 17:51:27 +01008346 cur_arg = 1;
CJ Ess108b1dd2015-04-07 12:03:37 -04008347 if (strcmp(args[cur_arg], "deny_status") == 0) {
8348 cur_arg++;
8349 if (!args[cur_arg]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008350 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing status code.\n",
8351 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
CJ Ess108b1dd2015-04-07 12:03:37 -04008352 goto out_err;
8353 }
8354
8355 code = atol(args[cur_arg]);
8356 cur_arg++;
8357 for (hc = 0; hc < HTTP_ERR_SIZE; hc++) {
8358 if (http_err_codes[hc] == code) {
8359 rule->deny_status = hc;
8360 break;
8361 }
8362 }
8363
8364 if (hc >= HTTP_ERR_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008365 ha_warning("parsing [%s:%d] : status code %d not handled, using default code %d.\n",
8366 file, linenum, code, http_err_codes[rule->deny_status]);
CJ Ess108b1dd2015-04-07 12:03:37 -04008367 }
8368 }
Willy Tarreauff011f22011-01-06 17:51:27 +01008369 } else if (!strcmp(args[0], "auth")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008370 rule->action = ACT_HTTP_REQ_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01008371 cur_arg = 1;
8372
8373 while(*args[cur_arg]) {
8374 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008375 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01008376 cur_arg+=2;
8377 continue;
8378 } else
8379 break;
8380 }
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008381 } else if (!strcmp(args[0], "set-nice")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008382 rule->action = ACT_HTTP_SET_NICE;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008383 cur_arg = 1;
8384
8385 if (!*args[cur_arg] ||
8386 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008387 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n",
8388 file, linenum, args[0]);
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008389 goto out_err;
8390 }
8391 rule->arg.nice = atoi(args[cur_arg]);
8392 if (rule->arg.nice < -1024)
8393 rule->arg.nice = -1024;
8394 else if (rule->arg.nice > 1024)
8395 rule->arg.nice = 1024;
8396 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008397 } else if (!strcmp(args[0], "set-tos")) {
8398#ifdef IP_TOS
8399 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008400 rule->action = ACT_HTTP_SET_TOS;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008401 cur_arg = 1;
8402
8403 if (!*args[cur_arg] ||
8404 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008405 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8406 file, linenum, args[0]);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008407 goto out_err;
8408 }
8409
8410 rule->arg.tos = strtol(args[cur_arg], &err, 0);
8411 if (err && *err != '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008412 ha_alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8413 file, linenum, err, args[0]);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008414 goto out_err;
8415 }
8416 cur_arg++;
8417#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01008418 ha_alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008419 goto out_err;
8420#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02008421 } else if (!strcmp(args[0], "set-mark")) {
8422#ifdef SO_MARK
8423 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008424 rule->action = ACT_HTTP_SET_MARK;
Willy Tarreau51347ed2013-06-11 19:34:13 +02008425 cur_arg = 1;
8426
8427 if (!*args[cur_arg] ||
8428 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008429 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8430 file, linenum, args[0]);
Willy Tarreau51347ed2013-06-11 19:34:13 +02008431 goto out_err;
8432 }
8433
8434 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
8435 if (err && *err != '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008436 ha_alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8437 file, linenum, err, args[0]);
Willy Tarreau51347ed2013-06-11 19:34:13 +02008438 goto out_err;
8439 }
8440 cur_arg++;
8441 global.last_checks |= LSTCHK_NETADM;
8442#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01008443 ha_alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
Willy Tarreau51347ed2013-06-11 19:34:13 +02008444 goto out_err;
8445#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008446 } else if (!strcmp(args[0], "set-log-level")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008447 rule->action = ACT_HTTP_SET_LOGL;
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008448 cur_arg = 1;
8449
8450 if (!*args[cur_arg] ||
8451 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8452 bad_log_level:
Christopher Faulet767a84b2017-11-24 16:50:31 +01008453 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n",
8454 file, linenum, args[0]);
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008455 goto out_err;
8456 }
8457 if (strcmp(args[cur_arg], "silent") == 0)
8458 rule->arg.loglevel = -1;
8459 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
8460 goto bad_log_level;
8461 cur_arg++;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008462 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008463 rule->action = *args[0] == 'a' ? ACT_HTTP_ADD_HDR : ACT_HTTP_SET_HDR;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008464 cur_arg = 1;
8465
Willy Tarreau8d1c5162013-04-03 14:13:58 +02008466 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8467 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008468 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
8469 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008470 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008471 }
8472
8473 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8474 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8475 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02008476
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01008477 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008478 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008479 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008480 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008481 ha_alert("parsing [%s:%d]: 'http-request %s': %s.\n",
8482 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008483 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008484 goto out_err;
8485 }
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008486 free(proxy->conf.lfs_file);
8487 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8488 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008489 cur_arg += 2;
Willy Tarreaub8543922014-06-17 18:58:26 +02008490 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008491 rule->action = args[0][8] == 'h' ? ACT_HTTP_REPLACE_HDR : ACT_HTTP_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06008492 cur_arg = 1;
8493
8494 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann92df3702014-06-24 11:10:00 +02008495 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008496 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 3 arguments.\n",
8497 file, linenum, args[0]);
Sasha Pachev218f0642014-06-16 12:05:59 -06008498 goto out_err;
8499 }
8500
8501 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8502 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8503 LIST_INIT(&rule->arg.hdr_add.fmt);
8504
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008505 error = NULL;
8506 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008507 ha_alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
8508 args[cur_arg + 1], error);
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008509 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06008510 goto out_err;
8511 }
8512
8513 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008514 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008515 if (!parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008516 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008517 ha_alert("parsing [%s:%d]: 'http-request %s': %s.\n",
8518 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008519 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008520 goto out_err;
8521 }
Sasha Pachev218f0642014-06-16 12:05:59 -06008522
8523 free(proxy->conf.lfs_file);
8524 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8525 proxy->conf.lfs_line = proxy->conf.args.line;
8526 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008527 } else if (strcmp(args[0], "del-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008528 rule->action = ACT_HTTP_DEL_HDR;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008529 cur_arg = 1;
8530
8531 if (!*args[cur_arg] ||
8532 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008533 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8534 file, linenum, args[0]);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008535 goto out_err;
8536 }
8537
8538 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8539 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8540
8541 proxy->conf.args.ctx = ARGC_HRQ;
8542 free(proxy->conf.lfs_file);
8543 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8544 proxy->conf.lfs_line = proxy->conf.args.line;
8545 cur_arg += 1;
Willy Tarreau09448f72014-06-25 18:12:15 +02008546 } else if (strncmp(args[0], "track-sc", 8) == 0 &&
8547 args[0][9] == '\0' && args[0][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02008548 args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau09448f72014-06-25 18:12:15 +02008549 struct sample_expr *expr;
8550 unsigned int where;
8551 char *err = NULL;
8552
8553 cur_arg = 1;
8554 proxy->conf.args.ctx = ARGC_TRK;
8555
8556 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
8557 if (!expr) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008558 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
8559 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
Willy Tarreau09448f72014-06-25 18:12:15 +02008560 free(err);
8561 goto out_err;
8562 }
8563
8564 where = 0;
8565 if (proxy->cap & PR_CAP_FE)
8566 where |= SMP_VAL_FE_HRQ_HDR;
8567 if (proxy->cap & PR_CAP_BE)
8568 where |= SMP_VAL_BE_HRQ_HDR;
8569
8570 if (!(expr->fetch->val & where)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008571 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule :"
8572 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
8573 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
8574 args[cur_arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau09448f72014-06-25 18:12:15 +02008575 free(expr);
8576 goto out_err;
8577 }
8578
8579 if (strcmp(args[cur_arg], "table") == 0) {
8580 cur_arg++;
8581 if (!args[cur_arg]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008582 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing table name.\n",
8583 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
Willy Tarreau09448f72014-06-25 18:12:15 +02008584 free(expr);
8585 goto out_err;
8586 }
8587 /* we copy the table name for now, it will be resolved later */
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02008588 rule->arg.trk_ctr.table.n = strdup(args[cur_arg]);
Willy Tarreau09448f72014-06-25 18:12:15 +02008589 cur_arg++;
8590 }
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02008591 rule->arg.trk_ctr.expr = expr;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008592 rule->action = ACT_ACTION_TRK_SC0 + args[0][8] - '0';
Christopher Faulet78880fb2017-09-18 14:43:55 +02008593 rule->check_ptr = check_trk_action;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008594 } else if (strcmp(args[0], "redirect") == 0) {
8595 struct redirect_rule *redir;
Willy Tarreau6d4890c2013-11-18 18:04:25 +01008596 char *errmsg = NULL;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008597
Willy Tarreaube4653b2015-05-28 15:26:58 +02008598 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1, 0)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008599 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
8600 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008601 goto out_err;
8602 }
8603
8604 /* this redirect rule might already contain a parsed condition which
8605 * we'll pass to the http-request rule.
8606 */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008607 rule->action = ACT_HTTP_REDIR;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008608 rule->arg.redir = redir;
8609 rule->cond = redir->cond;
8610 redir->cond = NULL;
8611 cur_arg = 2;
8612 return rule;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008613 } else if (strncmp(args[0], "add-acl", 7) == 0) {
8614 /* http-request add-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008615 rule->action = ACT_HTTP_ADD_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008616 /*
8617 * '+ 8' for 'add-acl('
8618 * '- 9' for 'add-acl(' + trailing ')'
8619 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008620 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008621
8622 cur_arg = 1;
8623
8624 if (!*args[cur_arg] ||
8625 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008626 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8627 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008628 goto out_err;
8629 }
8630
8631 LIST_INIT(&rule->arg.map.key);
8632 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008633 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008634 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008635 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008636 ha_alert("parsing [%s:%d]: 'http-request %s': %s.\n",
8637 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008638 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008639 goto out_err;
8640 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008641 free(proxy->conf.lfs_file);
8642 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8643 proxy->conf.lfs_line = proxy->conf.args.line;
8644 cur_arg += 1;
8645 } else if (strncmp(args[0], "del-acl", 7) == 0) {
8646 /* http-request del-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008647 rule->action = ACT_HTTP_DEL_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008648 /*
8649 * '+ 8' for 'del-acl('
8650 * '- 9' for 'del-acl(' + trailing ')'
8651 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008652 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008653
8654 cur_arg = 1;
8655
8656 if (!*args[cur_arg] ||
8657 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008658 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8659 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008660 goto out_err;
8661 }
8662
8663 LIST_INIT(&rule->arg.map.key);
8664 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008665 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008666 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008667 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008668 ha_alert("parsing [%s:%d]: 'http-request %s': %s.\n",
8669 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008670 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008671 goto out_err;
8672 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008673 free(proxy->conf.lfs_file);
8674 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8675 proxy->conf.lfs_line = proxy->conf.args.line;
8676 cur_arg += 1;
8677 } else if (strncmp(args[0], "del-map", 7) == 0) {
8678 /* http-request del-map(<reference (map name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008679 rule->action = ACT_HTTP_DEL_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008680 /*
8681 * '+ 8' for 'del-map('
8682 * '- 9' for 'del-map(' + trailing ')'
8683 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008684 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008685
8686 cur_arg = 1;
8687
8688 if (!*args[cur_arg] ||
8689 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008690 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8691 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008692 goto out_err;
8693 }
8694
8695 LIST_INIT(&rule->arg.map.key);
8696 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008697 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008698 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008699 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008700 ha_alert("parsing [%s:%d]: 'http-request %s': %s.\n",
8701 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008702 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008703 goto out_err;
8704 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008705 free(proxy->conf.lfs_file);
8706 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8707 proxy->conf.lfs_line = proxy->conf.args.line;
8708 cur_arg += 1;
8709 } else if (strncmp(args[0], "set-map", 7) == 0) {
8710 /* http-request set-map(<reference (map name)>) <key pattern> <value pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008711 rule->action = ACT_HTTP_SET_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008712 /*
8713 * '+ 8' for 'set-map('
8714 * '- 9' for 'set-map(' + trailing ')'
8715 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008716 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008717
8718 cur_arg = 1;
8719
8720 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8721 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008722 ha_alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
8723 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008724 goto out_err;
8725 }
8726
8727 LIST_INIT(&rule->arg.map.key);
8728 LIST_INIT(&rule->arg.map.value);
8729 proxy->conf.args.ctx = ARGC_HRQ;
8730
8731 /* key pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008732 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008733 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008734 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008735 ha_alert("parsing [%s:%d]: 'http-request %s' key: %s.\n",
8736 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008737 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008738 goto out_err;
8739 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008740
8741 /* value pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008742 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008743 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008744 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008745 ha_alert("parsing [%s:%d]: 'http-request %s' pattern: %s.\n",
8746 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008747 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008748 goto out_err;
8749 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008750 free(proxy->conf.lfs_file);
8751 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8752 proxy->conf.lfs_line = proxy->conf.args.line;
8753
8754 cur_arg += 2;
William Lallemand73025dd2014-04-24 14:38:37 +02008755 } else if (((custom = action_http_req_custom(args[0])) != NULL)) {
8756 char *errmsg = NULL;
8757 cur_arg = 1;
8758 /* try in the module list */
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02008759 rule->from = ACT_F_HTTP_REQ;
Thierry FOURNIER85c6c972015-09-22 19:14:35 +02008760 rule->kw = custom;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02008761 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) == ACT_RET_PRS_ERR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008762 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
8763 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
William Lallemand73025dd2014-04-24 14:38:37 +02008764 free(errmsg);
8765 goto out_err;
8766 }
Willy Tarreauff011f22011-01-06 17:51:27 +01008767 } else {
Thierry FOURNIERab95e652015-10-02 08:24:51 +02008768 action_build_list(&http_req_keywords.list, &trash);
Christopher Faulet767a84b2017-11-24 16:50:31 +01008769 ha_alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', "
8770 "'tarpit', 'add-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', "
8771 "'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', 'track-sc*'"
8772 "%s%s, but got '%s'%s.\n",
8773 file, linenum, *trash.str ? ", " : "", trash.str, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01008774 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008775 }
8776
8777 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
8778 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02008779 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008780
Christopher Faulet1b421ea2017-09-22 14:38:56 +02008781 if ((cond = build_acl_cond(file, linenum, &proxy->acl, proxy, args+cur_arg, &errmsg)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008782 ha_alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
8783 file, linenum, args[0], errmsg);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02008784 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008785 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008786 }
8787 rule->cond = cond;
8788 }
8789 else if (*args[cur_arg]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008790 ha_alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
8791 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
8792 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008793 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008794 }
8795
8796 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008797 out_err:
8798 free(rule);
8799 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008800}
8801
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008802/* parse an "http-respose" rule */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008803struct act_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008804{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02008805 struct act_rule *rule;
Thierry FOURNIER36481b82015-08-19 09:01:53 +02008806 struct action_kw *custom = NULL;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008807 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008808 char *error;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008809
8810 rule = calloc(1, sizeof(*rule));
8811 if (!rule) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008812 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008813 goto out_err;
8814 }
8815
8816 if (!strcmp(args[0], "allow")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008817 rule->action = ACT_ACTION_ALLOW;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008818 cur_arg = 1;
8819 } else if (!strcmp(args[0], "deny")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008820 rule->action = ACT_ACTION_DENY;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008821 cur_arg = 1;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008822 } else if (!strcmp(args[0], "set-nice")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008823 rule->action = ACT_HTTP_SET_NICE;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008824 cur_arg = 1;
8825
8826 if (!*args[cur_arg] ||
8827 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008828 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n",
8829 file, linenum, args[0]);
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008830 goto out_err;
8831 }
8832 rule->arg.nice = atoi(args[cur_arg]);
8833 if (rule->arg.nice < -1024)
8834 rule->arg.nice = -1024;
8835 else if (rule->arg.nice > 1024)
8836 rule->arg.nice = 1024;
8837 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008838 } else if (!strcmp(args[0], "set-tos")) {
8839#ifdef IP_TOS
8840 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008841 rule->action = ACT_HTTP_SET_TOS;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008842 cur_arg = 1;
8843
8844 if (!*args[cur_arg] ||
8845 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008846 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
8847 file, linenum, args[0]);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008848 goto out_err;
8849 }
8850
8851 rule->arg.tos = strtol(args[cur_arg], &err, 0);
8852 if (err && *err != '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008853 ha_alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
8854 file, linenum, err, args[0]);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008855 goto out_err;
8856 }
8857 cur_arg++;
8858#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01008859 ha_alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008860 goto out_err;
8861#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02008862 } else if (!strcmp(args[0], "set-mark")) {
8863#ifdef SO_MARK
8864 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008865 rule->action = ACT_HTTP_SET_MARK;
Willy Tarreau51347ed2013-06-11 19:34:13 +02008866 cur_arg = 1;
8867
8868 if (!*args[cur_arg] ||
8869 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008870 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
8871 file, linenum, args[0]);
Willy Tarreau51347ed2013-06-11 19:34:13 +02008872 goto out_err;
8873 }
8874
8875 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
8876 if (err && *err != '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008877 ha_alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
8878 file, linenum, err, args[0]);
Willy Tarreau51347ed2013-06-11 19:34:13 +02008879 goto out_err;
8880 }
8881 cur_arg++;
8882 global.last_checks |= LSTCHK_NETADM;
8883#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01008884 ha_alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
Willy Tarreau51347ed2013-06-11 19:34:13 +02008885 goto out_err;
8886#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008887 } else if (!strcmp(args[0], "set-log-level")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008888 rule->action = ACT_HTTP_SET_LOGL;
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008889 cur_arg = 1;
8890
8891 if (!*args[cur_arg] ||
8892 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8893 bad_log_level:
Christopher Faulet767a84b2017-11-24 16:50:31 +01008894 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n",
8895 file, linenum, args[0]);
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008896 goto out_err;
8897 }
8898 if (strcmp(args[cur_arg], "silent") == 0)
8899 rule->arg.loglevel = -1;
Ruoshan Huangdd016782016-06-15 22:16:03 +08008900 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008901 goto bad_log_level;
8902 cur_arg++;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008903 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008904 rule->action = *args[0] == 'a' ? ACT_HTTP_ADD_HDR : ACT_HTTP_SET_HDR;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008905 cur_arg = 1;
8906
8907 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8908 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008909 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
8910 file, linenum, args[0]);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008911 goto out_err;
8912 }
8913
8914 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8915 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8916 LIST_INIT(&rule->arg.hdr_add.fmt);
8917
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01008918 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008919 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008920 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008921 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008922 ha_alert("parsing [%s:%d]: 'http-response %s': %s.\n",
8923 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008924 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008925 goto out_err;
8926 }
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008927 free(proxy->conf.lfs_file);
8928 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8929 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008930 cur_arg += 2;
Sasha Pachev218f0642014-06-16 12:05:59 -06008931 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008932 rule->action = args[0][8] == 'h' ? ACT_HTTP_REPLACE_HDR : ACT_HTTP_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06008933 cur_arg = 1;
8934
8935 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann12cb00b2014-08-08 17:29:06 +02008936 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008937 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 3 arguments.\n",
8938 file, linenum, args[0]);
Sasha Pachev218f0642014-06-16 12:05:59 -06008939 goto out_err;
8940 }
8941
8942 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8943 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8944 LIST_INIT(&rule->arg.hdr_add.fmt);
8945
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008946 error = NULL;
8947 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008948 ha_alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
8949 args[cur_arg + 1], error);
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02008950 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06008951 goto out_err;
8952 }
8953
8954 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008955 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008956 if (!parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008957 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008958 ha_alert("parsing [%s:%d]: 'http-response %s': %s.\n",
8959 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01008960 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01008961 goto out_err;
8962 }
Sasha Pachev218f0642014-06-16 12:05:59 -06008963
8964 free(proxy->conf.lfs_file);
8965 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8966 proxy->conf.lfs_line = proxy->conf.args.line;
8967 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008968 } else if (strcmp(args[0], "del-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008969 rule->action = ACT_HTTP_DEL_HDR;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008970 cur_arg = 1;
8971
8972 if (!*args[cur_arg] ||
8973 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008974 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
8975 file, linenum, args[0]);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008976 goto out_err;
8977 }
8978
8979 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8980 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8981
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008982 proxy->conf.args.ctx = ARGC_HRS;
8983 free(proxy->conf.lfs_file);
8984 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8985 proxy->conf.lfs_line = proxy->conf.args.line;
8986 cur_arg += 1;
8987 } else if (strncmp(args[0], "add-acl", 7) == 0) {
8988 /* http-request add-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02008989 rule->action = ACT_HTTP_ADD_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008990 /*
8991 * '+ 8' for 'add-acl('
8992 * '- 9' for 'add-acl(' + trailing ')'
8993 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008994 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008995
8996 cur_arg = 1;
8997
8998 if (!*args[cur_arg] ||
8999 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009000 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9001 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009002 goto out_err;
9003 }
9004
9005 LIST_INIT(&rule->arg.map.key);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009006 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009007 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009008 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009009 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009010 ha_alert("parsing [%s:%d]: 'http-response %s': %s.\n",
9011 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009012 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009013 goto out_err;
9014 }
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009015 free(proxy->conf.lfs_file);
9016 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9017 proxy->conf.lfs_line = proxy->conf.args.line;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009018
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009019 cur_arg += 1;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009020 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9021 /* http-response del-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009022 rule->action = ACT_HTTP_DEL_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009023 /*
9024 * '+ 8' for 'del-acl('
9025 * '- 9' for 'del-acl(' + trailing ')'
9026 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009027 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009028
9029 cur_arg = 1;
9030
9031 if (!*args[cur_arg] ||
9032 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009033 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9034 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009035 goto out_err;
9036 }
9037
9038 LIST_INIT(&rule->arg.map.key);
9039 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009040 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009041 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009042 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009043 ha_alert("parsing [%s:%d]: 'http-response %s': %s.\n",
9044 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009045 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009046 goto out_err;
9047 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009048 free(proxy->conf.lfs_file);
9049 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9050 proxy->conf.lfs_line = proxy->conf.args.line;
9051 cur_arg += 1;
9052 } else if (strncmp(args[0], "del-map", 7) == 0) {
9053 /* http-response del-map(<reference (map name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009054 rule->action = ACT_HTTP_DEL_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009055 /*
9056 * '+ 8' for 'del-map('
9057 * '- 9' for 'del-map(' + trailing ')'
9058 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009059 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009060
9061 cur_arg = 1;
9062
9063 if (!*args[cur_arg] ||
9064 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009065 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9066 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009067 goto out_err;
9068 }
9069
9070 LIST_INIT(&rule->arg.map.key);
9071 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009072 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009073 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009074 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009075 ha_alert("parsing [%s:%d]: 'http-response %s' %s.\n",
9076 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009077 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009078 goto out_err;
9079 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009080 free(proxy->conf.lfs_file);
9081 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9082 proxy->conf.lfs_line = proxy->conf.args.line;
9083 cur_arg += 1;
9084 } else if (strncmp(args[0], "set-map", 7) == 0) {
9085 /* http-response set-map(<reference (map name)>) <key pattern> <value pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009086 rule->action = ACT_HTTP_SET_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009087 /*
9088 * '+ 8' for 'set-map('
9089 * '- 9' for 'set-map(' + trailing ')'
9090 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009091 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009092
9093 cur_arg = 1;
9094
9095 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9096 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009097 ha_alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9098 file, linenum, args[0]);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009099 goto out_err;
9100 }
9101
9102 LIST_INIT(&rule->arg.map.key);
9103 LIST_INIT(&rule->arg.map.value);
9104
9105 proxy->conf.args.ctx = ARGC_HRS;
9106
9107 /* key pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009108 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009109 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009110 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009111 ha_alert("parsing [%s:%d]: 'http-response %s' name: %s.\n",
9112 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009113 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009114 goto out_err;
9115 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009116
9117 /* value pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009118 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009119 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009120 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009121 ha_alert("parsing [%s:%d]: 'http-response %s' value: %s.\n",
9122 file, linenum, args[0], error);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009123 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009124 goto out_err;
9125 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009126
9127 free(proxy->conf.lfs_file);
9128 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9129 proxy->conf.lfs_line = proxy->conf.args.line;
9130
9131 cur_arg += 2;
Willy Tarreau51d861a2015-05-22 17:30:48 +02009132 } else if (strcmp(args[0], "redirect") == 0) {
9133 struct redirect_rule *redir;
9134 char *errmsg = NULL;
9135
9136 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1, 1)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009137 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9138 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
Willy Tarreau51d861a2015-05-22 17:30:48 +02009139 goto out_err;
9140 }
9141
9142 /* this redirect rule might already contain a parsed condition which
9143 * we'll pass to the http-request rule.
9144 */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009145 rule->action = ACT_HTTP_REDIR;
Willy Tarreau51d861a2015-05-22 17:30:48 +02009146 rule->arg.redir = redir;
9147 rule->cond = redir->cond;
9148 redir->cond = NULL;
9149 cur_arg = 2;
9150 return rule;
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009151 } else if (strncmp(args[0], "track-sc", 8) == 0 &&
9152 args[0][9] == '\0' && args[0][8] >= '0' &&
9153 args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
9154 struct sample_expr *expr;
9155 unsigned int where;
9156 char *err = NULL;
9157
9158 cur_arg = 1;
9159 proxy->conf.args.ctx = ARGC_TRK;
9160
9161 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
9162 if (!expr) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009163 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9164 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009165 free(err);
9166 goto out_err;
9167 }
9168
9169 where = 0;
9170 if (proxy->cap & PR_CAP_FE)
9171 where |= SMP_VAL_FE_HRS_HDR;
9172 if (proxy->cap & PR_CAP_BE)
9173 where |= SMP_VAL_BE_HRS_HDR;
9174
9175 if (!(expr->fetch->val & where)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009176 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule :"
9177 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
9178 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
9179 args[cur_arg-1], sample_src_names(expr->fetch->use));
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009180 free(expr);
9181 goto out_err;
9182 }
9183
9184 if (strcmp(args[cur_arg], "table") == 0) {
9185 cur_arg++;
9186 if (!args[cur_arg]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009187 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : missing table name.\n",
9188 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009189 free(expr);
9190 goto out_err;
9191 }
9192 /* we copy the table name for now, it will be resolved later */
9193 rule->arg.trk_ctr.table.n = strdup(args[cur_arg]);
9194 cur_arg++;
9195 }
9196 rule->arg.trk_ctr.expr = expr;
9197 rule->action = ACT_ACTION_TRK_SC0 + args[0][8] - '0';
Christopher Faulet78880fb2017-09-18 14:43:55 +02009198 rule->check_ptr = check_trk_action;
William Lallemand73025dd2014-04-24 14:38:37 +02009199 } else if (((custom = action_http_res_custom(args[0])) != NULL)) {
9200 char *errmsg = NULL;
9201 cur_arg = 1;
9202 /* try in the module list */
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02009203 rule->from = ACT_F_HTTP_RES;
Thierry FOURNIER85c6c972015-09-22 19:14:35 +02009204 rule->kw = custom;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02009205 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) == ACT_RET_PRS_ERR) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009206 ha_alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9207 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
William Lallemand73025dd2014-04-24 14:38:37 +02009208 free(errmsg);
9209 goto out_err;
9210 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009211 } else {
Thierry FOURNIERab95e652015-10-02 08:24:51 +02009212 action_build_list(&http_res_keywords.list, &trash);
Christopher Faulet767a84b2017-11-24 16:50:31 +01009213 ha_alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', "
9214 "'add-header', 'del-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', "
9215 "'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', 'track-sc*'"
9216 "%s%s, but got '%s'%s.\n",
9217 file, linenum, *trash.str ? ", " : "", trash.str, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009218 goto out_err;
9219 }
9220
9221 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9222 struct acl_cond *cond;
9223 char *errmsg = NULL;
9224
Christopher Faulet1b421ea2017-09-22 14:38:56 +02009225 if ((cond = build_acl_cond(file, linenum, &proxy->acl, proxy, args+cur_arg, &errmsg)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009226 ha_alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n",
9227 file, linenum, args[0], errmsg);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009228 free(errmsg);
9229 goto out_err;
9230 }
9231 rule->cond = cond;
9232 }
9233 else if (*args[cur_arg]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01009234 ha_alert("parsing [%s:%d]: 'http-response %s' expects"
9235 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9236 file, linenum, args[0], args[cur_arg]);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009237 goto out_err;
9238 }
9239
9240 return rule;
9241 out_err:
9242 free(rule);
9243 return NULL;
9244}
9245
Willy Tarreau4baae242012-12-27 12:00:31 +01009246/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009247 * with <err> filled with the error message. If <use_fmt> is not null, builds a
Willy Tarreaube4653b2015-05-28 15:26:58 +02009248 * dynamic log-format rule instead of a static string. Parameter <dir> indicates
9249 * the direction of the rule, and equals 0 for request, non-zero for responses.
Willy Tarreau4baae242012-12-27 12:00:31 +01009250 */
9251struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
Willy Tarreaube4653b2015-05-28 15:26:58 +02009252 const char **args, char **errmsg, int use_fmt, int dir)
Willy Tarreau4baae242012-12-27 12:00:31 +01009253{
9254 struct redirect_rule *rule;
9255 int cur_arg;
9256 int type = REDIRECT_TYPE_NONE;
9257 int code = 302;
9258 const char *destination = NULL;
9259 const char *cookie = NULL;
9260 int cookie_set = 0;
9261 unsigned int flags = REDIRECT_FLAG_NONE;
9262 struct acl_cond *cond = NULL;
9263
9264 cur_arg = 0;
9265 while (*(args[cur_arg])) {
9266 if (strcmp(args[cur_arg], "location") == 0) {
9267 if (!*args[cur_arg + 1])
9268 goto missing_arg;
9269
9270 type = REDIRECT_TYPE_LOCATION;
9271 cur_arg++;
9272 destination = args[cur_arg];
9273 }
9274 else if (strcmp(args[cur_arg], "prefix") == 0) {
9275 if (!*args[cur_arg + 1])
9276 goto missing_arg;
Willy Tarreau4baae242012-12-27 12:00:31 +01009277 type = REDIRECT_TYPE_PREFIX;
9278 cur_arg++;
9279 destination = args[cur_arg];
9280 }
9281 else if (strcmp(args[cur_arg], "scheme") == 0) {
9282 if (!*args[cur_arg + 1])
9283 goto missing_arg;
9284
9285 type = REDIRECT_TYPE_SCHEME;
9286 cur_arg++;
9287 destination = args[cur_arg];
9288 }
9289 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
9290 if (!*args[cur_arg + 1])
9291 goto missing_arg;
9292
9293 cur_arg++;
9294 cookie = args[cur_arg];
9295 cookie_set = 1;
9296 }
9297 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
9298 if (!*args[cur_arg + 1])
9299 goto missing_arg;
9300
9301 cur_arg++;
9302 cookie = args[cur_arg];
9303 cookie_set = 0;
9304 }
9305 else if (strcmp(args[cur_arg], "code") == 0) {
9306 if (!*args[cur_arg + 1])
9307 goto missing_arg;
9308
9309 cur_arg++;
9310 code = atol(args[cur_arg]);
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009311 if (code < 301 || code > 308 || (code > 303 && code < 307)) {
Willy Tarreau4baae242012-12-27 12:00:31 +01009312 memprintf(errmsg,
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009313 "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)",
Willy Tarreau4baae242012-12-27 12:00:31 +01009314 args[cur_arg - 1], args[cur_arg]);
9315 return NULL;
9316 }
9317 }
9318 else if (!strcmp(args[cur_arg],"drop-query")) {
9319 flags |= REDIRECT_FLAG_DROP_QS;
9320 }
9321 else if (!strcmp(args[cur_arg],"append-slash")) {
9322 flags |= REDIRECT_FLAG_APPEND_SLASH;
9323 }
9324 else if (strcmp(args[cur_arg], "if") == 0 ||
9325 strcmp(args[cur_arg], "unless") == 0) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01009326 cond = build_acl_cond(file, linenum, &curproxy->acl, curproxy, (const char **)args + cur_arg, errmsg);
Willy Tarreau4baae242012-12-27 12:00:31 +01009327 if (!cond) {
9328 memprintf(errmsg, "error in condition: %s", *errmsg);
9329 return NULL;
9330 }
9331 break;
9332 }
9333 else {
9334 memprintf(errmsg,
9335 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
9336 args[cur_arg]);
9337 return NULL;
9338 }
9339 cur_arg++;
9340 }
9341
9342 if (type == REDIRECT_TYPE_NONE) {
9343 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
9344 return NULL;
9345 }
9346
Willy Tarreaube4653b2015-05-28 15:26:58 +02009347 if (dir && type != REDIRECT_TYPE_LOCATION) {
9348 memprintf(errmsg, "response only supports redirect type 'location'");
9349 return NULL;
9350 }
9351
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009352 rule = calloc(1, sizeof(*rule));
Willy Tarreau4baae242012-12-27 12:00:31 +01009353 rule->cond = cond;
Willy Tarreau60e08382013-12-03 00:48:45 +01009354 LIST_INIT(&rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009355
9356 if (!use_fmt) {
9357 /* old-style static redirect rule */
9358 rule->rdr_str = strdup(destination);
9359 rule->rdr_len = strlen(destination);
9360 }
9361 else {
9362 /* log-format based redirect rule */
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009363
9364 /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case,
9365 * if prefix == "/", we don't want to add anything, otherwise it
9366 * makes it hard for the user to configure a self-redirection.
9367 */
Godbachd9722032014-12-18 15:44:58 +08009368 curproxy->conf.args.ctx = ARGC_RDR;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009369 if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) {
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009370 if (!parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP,
9371 dir ? (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRS_HDR : SMP_VAL_BE_HRS_HDR
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009372 : (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9373 errmsg)) {
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009374 return NULL;
9375 }
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009376 free(curproxy->conf.lfs_file);
9377 curproxy->conf.lfs_file = strdup(curproxy->conf.args.file);
9378 curproxy->conf.lfs_line = curproxy->conf.args.line;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009379 }
9380 }
9381
Willy Tarreau4baae242012-12-27 12:00:31 +01009382 if (cookie) {
9383 /* depending on cookie_set, either we want to set the cookie, or to clear it.
9384 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
9385 */
9386 rule->cookie_len = strlen(cookie);
9387 if (cookie_set) {
9388 rule->cookie_str = malloc(rule->cookie_len + 10);
9389 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9390 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
9391 rule->cookie_len += 9;
9392 } else {
9393 rule->cookie_str = malloc(rule->cookie_len + 21);
9394 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9395 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
9396 rule->cookie_len += 20;
9397 }
9398 }
9399 rule->type = type;
9400 rule->code = code;
9401 rule->flags = flags;
9402 LIST_INIT(&rule->list);
9403 return rule;
9404
9405 missing_arg:
9406 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
9407 return NULL;
9408}
9409
Willy Tarreau8797c062007-05-07 00:55:35 +02009410/************************************************************************/
9411/* The code below is dedicated to ACL parsing and matching */
9412/************************************************************************/
9413
9414
Willy Tarreau14174bc2012-04-16 14:34:04 +02009415/* This function ensures that the prerequisites for an L7 fetch are ready,
9416 * which means that a request or response is ready. If some data is missing,
9417 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +02009418 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
9419 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009420 *
9421 * The function returns :
Willy Tarreau506d0502013-07-06 13:29:24 +02009422 * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
9423 * decide whether or not an HTTP message is present ;
9424 * 0 if the requested data cannot be fetched or if it is certain that
9425 * we'll never have any HTTP message there ;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009426 * 1 if an HTTP message is ready
9427 */
James Rosewell91a41cb2015-09-18 17:11:16 +01009428int smp_prefetch_http(struct proxy *px, struct stream *s, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009429 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +02009430{
Willy Tarreau192252e2015-04-04 01:47:55 +02009431 struct http_txn *txn;
9432 struct http_msg *msg;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009433
Willy Tarreaube508f12016-03-10 11:47:01 +01009434 /* Note: it is possible that <s> is NULL when called before stream
9435 * initialization (eg: tcp-request connection), so this function is the
9436 * one responsible for guarding against this case for all HTTP users.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009437 */
Willy Tarreau192252e2015-04-04 01:47:55 +02009438 if (!s)
9439 return 0;
Willy Tarreaube508f12016-03-10 11:47:01 +01009440
Thierry FOURNIERed08d6a2015-09-24 08:40:18 +02009441 if (!s->txn) {
9442 if (unlikely(!http_alloc_txn(s)))
9443 return 0; /* not enough memory */
9444 http_init_txn(s);
9445 }
Willy Tarreau192252e2015-04-04 01:47:55 +02009446 txn = s->txn;
Willy Tarreau192252e2015-04-04 01:47:55 +02009447 msg = &txn->req;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009448
9449 /* Check for a dependency on a request */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009450 smp->data.type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009451
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009452 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreauaae75e32013-03-29 12:31:49 +01009453 /* If the buffer does not leave enough free space at the end,
9454 * we must first realign it.
9455 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009456 if (s->req.buf->p > s->req.buf->data &&
9457 s->req.buf->i + s->req.buf->p > s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)
9458 buffer_slow_realign(s->req.buf);
Willy Tarreauaae75e32013-03-29 12:31:49 +01009459
Willy Tarreau14174bc2012-04-16 14:34:04 +02009460 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau472b1ee2013-10-14 22:41:30 +02009461 if (msg->msg_state == HTTP_MSG_ERROR)
Willy Tarreau506d0502013-07-06 13:29:24 +02009462 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009463
9464 /* Try to decode HTTP request */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009465 if (likely(msg->next < s->req.buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +02009466 http_msg_analyzer(msg, &txn->hdr_idx);
9467
9468 /* Still no valid request ? */
9469 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02009470 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009471 buffer_full(s->req.buf, global.tune.maxrewrite)) {
Willy Tarreau506d0502013-07-06 13:29:24 +02009472 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009473 }
9474 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +02009475 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009476 return 0;
9477 }
9478
9479 /* OK we just got a valid HTTP request. We have some minor
9480 * preparation to perform so that further checks can rely
9481 * on HTTP tests.
9482 */
Willy Tarreauaae75e32013-03-29 12:31:49 +01009483
9484 /* If the request was parsed but was too large, we must absolutely
9485 * return an error so that it is not processed. At the moment this
9486 * cannot happen, but if the parsers are to change in the future,
9487 * we want this check to be maintained.
9488 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009489 if (unlikely(s->req.buf->i + s->req.buf->p >
9490 s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01009491 msg->err_state = msg->msg_state;
Willy Tarreauaae75e32013-03-29 12:31:49 +01009492 msg->msg_state = HTTP_MSG_ERROR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009493 smp->data.u.sint = 1;
Willy Tarreauaae75e32013-03-29 12:31:49 +01009494 return 1;
9495 }
9496
Willy Tarreau9b28e032012-10-12 23:49:43 +02009497 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +02009498 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +02009499 s->flags |= SF_REDIRECTABLE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009500
Willy Tarreau506d0502013-07-06 13:29:24 +02009501 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
9502 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009503 }
9504
Willy Tarreau506d0502013-07-06 13:29:24 +02009505 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009506 return 0; /* data might have moved and indexes changed */
Willy Tarreau506d0502013-07-06 13:29:24 +02009507 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009508
9509 /* otherwise everything's ready for the request */
9510 }
Willy Tarreau24e32d82012-04-23 23:55:44 +02009511 else {
9512 /* Check for a dependency on a response */
Willy Tarreau506d0502013-07-06 13:29:24 +02009513 if (txn->rsp.msg_state < HTTP_MSG_BODY) {
9514 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009515 return 0;
Willy Tarreau506d0502013-07-06 13:29:24 +02009516 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009517 }
9518
9519 /* everything's OK */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009520 smp->data.u.sint = 1;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009521 return 1;
9522}
Willy Tarreau8797c062007-05-07 00:55:35 +02009523
Willy Tarreau8797c062007-05-07 00:55:35 +02009524/* 1. Check on METHOD
9525 * We use the pre-parsed method if it is known, and store its number as an
9526 * integer. If it is unknown, we use the pointer and the length.
9527 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02009528static int pat_parse_meth(const char *text, struct pattern *pattern, int mflags, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +02009529{
9530 int len, meth;
9531
Thierry FOURNIER580c32c2014-01-24 10:58:12 +01009532 len = strlen(text);
9533 meth = find_http_meth(text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02009534
9535 pattern->val.i = meth;
9536 if (meth == HTTP_METH_OTHER) {
Willy Tarreau912c1192014-08-29 15:15:50 +02009537 pattern->ptr.str = (char *)text;
Willy Tarreau8797c062007-05-07 00:55:35 +02009538 pattern->len = len;
9539 }
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009540 else {
9541 pattern->ptr.str = NULL;
9542 pattern->len = 0;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009543 }
Willy Tarreau8797c062007-05-07 00:55:35 +02009544 return 1;
9545}
9546
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009547/* This function fetches the method of current HTTP request and stores
9548 * it in the global pattern struct as a chunk. There are two possibilities :
9549 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
9550 * in <len> and <ptr> is NULL ;
9551 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
9552 * <len> to its length.
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01009553 * This is intended to be used with pat_match_meth() only.
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009554 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009555static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009556smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +02009557{
9558 int meth;
Willy Tarreaube508f12016-03-10 11:47:01 +01009559 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009560
Willy Tarreau24e32d82012-04-23 23:55:44 +02009561 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009562
Willy Tarreaube508f12016-03-10 11:47:01 +01009563 txn = smp->strm->txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009564 meth = txn->meth;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009565 smp->data.type = SMP_T_METH;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009566 smp->data.u.meth.meth = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +02009567 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02009568 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
9569 /* ensure the indexes are not affected */
9570 return 0;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009571 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009572 smp->data.u.meth.str.len = txn->req.sl.rq.m_l;
9573 smp->data.u.meth.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009574 }
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009575 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009576 return 1;
9577}
9578
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009579/* See above how the method is stored in the global pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009580static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill)
Willy Tarreau8797c062007-05-07 00:55:35 +02009581{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009582 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009583 struct pattern_list *lst;
9584 struct pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009585
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009586 list_for_each_entry(lst, &expr->patterns, list) {
9587 pattern = &lst->pat;
Willy Tarreau8797c062007-05-07 00:55:35 +02009588
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009589 /* well-known method */
9590 if (pattern->val.i != HTTP_METH_OTHER) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009591 if (smp->data.u.meth.meth == pattern->val.i)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009592 return pattern;
9593 else
9594 continue;
9595 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009596
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009597 /* Other method, we must compare the strings */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009598 if (pattern->len != smp->data.u.meth.str.len)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009599 continue;
9600
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02009601 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009602 if ((icase && strncasecmp(pattern->ptr.str, smp->data.u.meth.str.str, smp->data.u.meth.str.len) == 0) ||
9603 (!icase && strncmp(pattern->ptr.str, smp->data.u.meth.str.str, smp->data.u.meth.str.len) == 0))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009604 return pattern;
9605 }
9606 return NULL;
Willy Tarreau8797c062007-05-07 00:55:35 +02009607}
9608
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009609static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009610smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +02009611{
Willy Tarreaube508f12016-03-10 11:47:01 +01009612 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009613 char *ptr;
9614 int len;
9615
Willy Tarreauc0239e02012-04-16 14:42:55 +02009616 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009617
Willy Tarreaube508f12016-03-10 11:47:01 +01009618 txn = smp->strm->txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009619 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009620 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02009621
9622 while ((len-- > 0) && (*ptr++ != '/'));
9623 if (len <= 0)
9624 return 0;
9625
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009626 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009627 smp->data.u.str.str = ptr;
9628 smp->data.u.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009629
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009630 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009631 return 1;
9632}
9633
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009634static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009635smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +02009636{
Willy Tarreau15e91e12015-04-04 00:52:09 +02009637 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009638 char *ptr;
9639 int len;
9640
Willy Tarreauc0239e02012-04-16 14:42:55 +02009641 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009642
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02009643 txn = smp->strm->txn;
Willy Tarreauf26b2522012-12-14 08:33:14 +01009644 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9645 return 0;
9646
Willy Tarreau8797c062007-05-07 00:55:35 +02009647 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009648 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009649
9650 while ((len-- > 0) && (*ptr++ != '/'));
9651 if (len <= 0)
9652 return 0;
9653
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009654 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009655 smp->data.u.str.str = ptr;
9656 smp->data.u.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009657
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009658 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009659 return 1;
9660}
9661
9662/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009663static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009664smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +02009665{
Willy Tarreau15e91e12015-04-04 00:52:09 +02009666 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009667 char *ptr;
9668 int len;
9669
Willy Tarreauc0239e02012-04-16 14:42:55 +02009670 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009671
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02009672 txn = smp->strm->txn;
Willy Tarreauf26b2522012-12-14 08:33:14 +01009673 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9674 return 0;
9675
Willy Tarreau8797c062007-05-07 00:55:35 +02009676 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009677 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02009678
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009679 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009680 smp->data.u.sint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +02009681 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009682 return 1;
9683}
9684
Thierry Fournierf4011dd2016-03-29 17:23:51 +02009685static int
9686smp_fetch_uniqueid(const struct arg *args, struct sample *smp, const char *kw, void *private)
9687{
9688 if (LIST_ISEMPTY(&smp->sess->fe->format_unique_id))
9689 return 0;
9690
9691 if (!smp->strm->unique_id) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01009692 if ((smp->strm->unique_id = pool_alloc(pool_head_uniqueid)) == NULL)
Thierry Fournierf4011dd2016-03-29 17:23:51 +02009693 return 0;
9694 smp->strm->unique_id[0] = '\0';
9695 }
9696 smp->data.u.str.len = build_logline(smp->strm, smp->strm->unique_id,
9697 UNIQUEID_LEN, &smp->sess->fe->format_unique_id);
9698
9699 smp->data.type = SMP_T_STR;
9700 smp->data.u.str.str = smp->strm->unique_id;
9701 smp->flags = SMP_F_CONST;
9702 return 1;
9703}
9704
Thierry FOURNIERd7d88812017-04-19 15:15:14 +02009705/* Returns a string block containing all headers including the
9706 * empty line wich separes headers from the body. This is useful
9707 * form some headers analysis.
9708 */
9709static int
9710smp_fetch_hdrs(const struct arg *args, struct sample *smp, const char *kw, void *private)
9711{
9712 struct http_msg *msg;
9713 struct hdr_idx *idx;
9714 struct http_txn *txn;
9715
9716 CHECK_HTTP_MESSAGE_FIRST();
9717
9718 txn = smp->strm->txn;
9719 idx = &txn->hdr_idx;
9720 msg = &txn->req;
9721
9722 smp->data.type = SMP_T_STR;
9723 smp->data.u.str.str = msg->chn->buf->p + hdr_idx_first_pos(idx);
9724 smp->data.u.str.len = msg->eoh - hdr_idx_first_pos(idx) + 1 +
9725 (msg->chn->buf->p[msg->eoh] == '\r');
9726
9727 return 1;
9728}
9729
Thierry FOURNIER5617dce2017-04-09 05:38:19 +02009730/* Returns the header request in a length/value encoded format.
9731 * This is useful for exchanges with the SPOE.
9732 *
9733 * A "length value" is a multibyte code encoding numbers. It uses the
9734 * SPOE format. The encoding is the following:
9735 *
9736 * Each couple "header name" / "header value" is composed
9737 * like this:
9738 * "length value" "header name bytes"
9739 * "length value" "header value bytes"
9740 * When the last header is reached, the header name and the header
9741 * value are empty. Their length are 0
9742 */
9743static int
9744smp_fetch_hdrs_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
9745{
9746 struct http_msg *msg;
9747 struct chunk *temp;
9748 struct hdr_idx *idx;
9749 const char *cur_ptr, *cur_next, *p;
9750 int old_idx, cur_idx;
9751 struct hdr_idx_elem *cur_hdr;
9752 const char *hn, *hv;
9753 int hnl, hvl;
9754 int ret;
9755 struct http_txn *txn;
9756 char *buf;
9757 char *end;
9758
9759 CHECK_HTTP_MESSAGE_FIRST();
9760
9761 temp = get_trash_chunk();
9762 buf = temp->str;
9763 end = temp->str + temp->size;
9764
9765 txn = smp->strm->txn;
9766 idx = &txn->hdr_idx;
9767 msg = &txn->req;
9768
9769 /* Build array of headers. */
9770 old_idx = 0;
9771 cur_next = msg->chn->buf->p + hdr_idx_first_pos(idx);
9772 while (1) {
9773 cur_idx = idx->v[old_idx].next;
9774 if (!cur_idx)
9775 break;
9776 old_idx = cur_idx;
9777
9778 cur_hdr = &idx->v[cur_idx];
9779 cur_ptr = cur_next;
9780 cur_next = cur_ptr + cur_hdr->len + cur_hdr->cr + 1;
9781
9782 /* Now we have one full header at cur_ptr of len cur_hdr->len,
9783 * and the next header starts at cur_next. We'll check
9784 * this header in the list as well as against the default
9785 * rule.
9786 */
9787
9788 /* look for ': *'. */
9789 hn = cur_ptr;
9790 for (p = cur_ptr; p < cur_ptr + cur_hdr->len && *p != ':'; p++);
9791 if (p >= cur_ptr+cur_hdr->len)
9792 continue;
9793 hnl = p - hn;
9794 p++;
9795 while (p < cur_ptr + cur_hdr->len && (*p == ' ' || *p == '\t'))
9796 p++;
9797 if (p >= cur_ptr + cur_hdr->len)
9798 continue;
9799 hv = p;
9800 hvl = cur_ptr + cur_hdr->len-p;
9801
9802 /* encode the header name. */
9803 ret = encode_varint(hnl, &buf, end);
9804 if (ret == -1)
9805 return 0;
9806 if (buf + hnl > end)
9807 return 0;
9808 memcpy(buf, hn, hnl);
9809 buf += hnl;
9810
9811 /* encode and copy the value. */
9812 ret = encode_varint(hvl, &buf, end);
9813 if (ret == -1)
9814 return 0;
9815 if (buf + hvl > end)
9816 return 0;
9817 memcpy(buf, hv, hvl);
9818 buf += hvl;
9819 }
9820
9821 /* encode the end of the header list with empty
9822 * header name and header value.
9823 */
9824 ret = encode_varint(0, &buf, end);
9825 if (ret == -1)
9826 return 0;
9827 ret = encode_varint(0, &buf, end);
9828 if (ret == -1)
9829 return 0;
9830
9831 /* Initialise sample data which will be filled. */
9832 smp->data.type = SMP_T_BIN;
9833 smp->data.u.str.str = temp->str;
9834 smp->data.u.str.len = buf - temp->str;
9835 smp->data.u.str.size = temp->size;
9836
9837 return 1;
9838}
9839
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009840/* returns the longest available part of the body. This requires that the body
9841 * has been waited for using http-buffer-request.
9842 */
9843static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009844smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009845{
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009846 struct http_msg *msg;
9847 unsigned long len;
9848 unsigned long block1;
9849 char *body;
9850 struct chunk *temp;
9851
9852 CHECK_HTTP_MESSAGE_FIRST();
9853
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009854 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +01009855 msg = &smp->strm->txn->req;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009856 else
Willy Tarreaube508f12016-03-10 11:47:01 +01009857 msg = &smp->strm->txn->rsp;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009858
9859 len = http_body_bytes(msg);
9860 body = b_ptr(msg->chn->buf, -http_data_rewind(msg));
9861
9862 block1 = len;
9863 if (block1 > msg->chn->buf->data + msg->chn->buf->size - body)
9864 block1 = msg->chn->buf->data + msg->chn->buf->size - body;
9865
9866 if (block1 == len) {
9867 /* buffer is not wrapped (or empty) */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009868 smp->data.type = SMP_T_BIN;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009869 smp->data.u.str.str = body;
9870 smp->data.u.str.len = len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009871 smp->flags = SMP_F_VOL_TEST | SMP_F_CONST;
9872 }
9873 else {
9874 /* buffer is wrapped, we need to defragment it */
9875 temp = get_trash_chunk();
9876 memcpy(temp->str, body, block1);
9877 memcpy(temp->str + block1, msg->chn->buf->data, len - block1);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009878 smp->data.type = SMP_T_BIN;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009879 smp->data.u.str.str = temp->str;
9880 smp->data.u.str.len = len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009881 smp->flags = SMP_F_VOL_TEST;
9882 }
9883 return 1;
9884}
9885
9886
9887/* returns the available length of the body. This requires that the body
9888 * has been waited for using http-buffer-request.
9889 */
9890static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009891smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009892{
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009893 struct http_msg *msg;
9894
9895 CHECK_HTTP_MESSAGE_FIRST();
9896
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009897 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +01009898 msg = &smp->strm->txn->req;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009899 else
Willy Tarreaube508f12016-03-10 11:47:01 +01009900 msg = &smp->strm->txn->rsp;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009901
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009902 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009903 smp->data.u.sint = http_body_bytes(msg);
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009904
9905 smp->flags = SMP_F_VOL_TEST;
9906 return 1;
9907}
9908
9909
9910/* returns the advertised length of the body, or the advertised size of the
9911 * chunks available in the buffer. This requires that the body has been waited
9912 * for using http-buffer-request.
9913 */
9914static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009915smp_fetch_body_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009916{
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009917 struct http_msg *msg;
9918
9919 CHECK_HTTP_MESSAGE_FIRST();
9920
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009921 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +01009922 msg = &smp->strm->txn->req;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009923 else
Willy Tarreaube508f12016-03-10 11:47:01 +01009924 msg = &smp->strm->txn->rsp;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009925
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009926 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009927 smp->data.u.sint = msg->body_len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +02009928
9929 smp->flags = SMP_F_VOL_TEST;
9930 return 1;
9931}
9932
9933
Willy Tarreau8797c062007-05-07 00:55:35 +02009934/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009935static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009936smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +02009937{
Willy Tarreau15e91e12015-04-04 00:52:09 +02009938 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +02009939
Willy Tarreauc0239e02012-04-16 14:42:55 +02009940 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009941
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02009942 txn = smp->strm->txn;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009943 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009944 smp->data.u.str.len = txn->req.sl.rq.u_l;
9945 smp->data.u.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009946 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009947 return 1;
9948}
9949
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009950static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009951smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009952{
Willy Tarreau15e91e12015-04-04 00:52:09 +02009953 struct http_txn *txn;
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009954 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009955
Willy Tarreauc0239e02012-04-16 14:42:55 +02009956 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009957
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02009958 txn = smp->strm->txn;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01009959 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 +02009960 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +01009961 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009962
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009963 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009964 smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
Willy Tarreau37406352012-04-23 16:16:37 +02009965 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009966 return 1;
9967}
9968
9969static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009970smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009971{
Willy Tarreau15e91e12015-04-04 00:52:09 +02009972 struct http_txn *txn;
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009973 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009974
Willy Tarreauc0239e02012-04-16 14:42:55 +02009975 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009976
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02009977 txn = smp->strm->txn;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01009978 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 +02009979 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
9980 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009981
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02009982 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02009983 smp->data.u.sint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02009984 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009985 return 1;
9986}
9987
Willy Tarreau185b5c42012-04-26 15:11:51 +02009988/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
9989 * Accepts an optional argument of type string containing the header field name,
9990 * and an optional argument of type signed or unsigned integer to request an
9991 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009992 * headers are considered from the first one. It does not stop on commas and
9993 * returns full lines instead (useful for User-Agent or Date for example).
9994 */
9995static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02009996smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009997{
Willy Tarreau15e91e12015-04-04 00:52:09 +02009998 struct hdr_idx *idx;
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009999 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau15e91e12015-04-04 00:52:09 +020010000 const struct http_msg *msg;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010001 int occ = 0;
10002 const char *name_str = NULL;
10003 int name_len = 0;
10004
10005 if (!ctx) {
10006 /* first call */
10007 ctx = &static_hdr_ctx;
10008 ctx->idx = 0;
10009 smp->ctx.a[0] = ctx;
10010 }
10011
10012 if (args) {
10013 if (args[0].type != ARGT_STR)
10014 return 0;
10015 name_str = args[0].data.str.str;
10016 name_len = args[0].data.str.len;
10017
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010018 if (args[1].type == ARGT_SINT)
10019 occ = args[1].data.sint;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010020 }
10021
10022 CHECK_HTTP_MESSAGE_FIRST();
10023
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010024 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010025 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010026
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010027 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
10028 /* search for header from the beginning */
10029 ctx->idx = 0;
10030
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010031 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010032 /* no explicit occurrence and single fetch => last header by default */
10033 occ = -1;
10034
10035 if (!occ)
10036 /* prepare to report multiple occurrences for ACL fetches */
10037 smp->flags |= SMP_F_NOT_LAST;
10038
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010039 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010040 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010041 if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.u.str.str, &smp->data.u.str.len))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010042 return 1;
10043
10044 smp->flags &= ~SMP_F_NOT_LAST;
10045 return 0;
10046}
10047
10048/* 6. Check on HTTP header count. The number of occurrences is returned.
10049 * Accepts exactly 1 argument of type string. It does not stop on commas and
10050 * returns full lines instead (useful for User-Agent or Date for example).
10051 */
10052static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010053smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010054{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010055 struct hdr_idx *idx;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010056 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010057 const struct http_msg *msg;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010058 int cnt;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010059 const char *name = NULL;
10060 int len = 0;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010061
Willy Tarreau601a4d12015-04-01 19:16:09 +020010062 if (args && args->type == ARGT_STR) {
10063 name = args->data.str.str;
10064 len = args->data.str.len;
10065 }
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010066
10067 CHECK_HTTP_MESSAGE_FIRST();
10068
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010069 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010070 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010071
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010072 ctx.idx = 0;
10073 cnt = 0;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010074 while (http_find_full_header2(name, len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010075 cnt++;
10076
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010077 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010078 smp->data.u.sint = cnt;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010079 smp->flags = SMP_F_VOL_HDR;
10080 return 1;
10081}
10082
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010083static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010084smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010085{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010086 struct hdr_idx *idx;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010087 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010088 const struct http_msg *msg;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010089 struct chunk *temp;
10090 char del = ',';
10091
10092 if (args && args->type == ARGT_STR)
10093 del = *args[0].data.str.str;
10094
10095 CHECK_HTTP_MESSAGE_FIRST();
10096
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010097 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010098 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010099
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010100 temp = get_trash_chunk();
10101
10102 ctx.idx = 0;
10103 while (http_find_next_header(msg->chn->buf->p, idx, &ctx)) {
10104 if (temp->len)
10105 temp->str[temp->len++] = del;
10106 memcpy(temp->str + temp->len, ctx.line, ctx.del);
10107 temp->len += ctx.del;
10108 }
10109
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010110 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010111 smp->data.u.str.str = temp->str;
10112 smp->data.u.str.len = temp->len;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010113 smp->flags = SMP_F_VOL_HDR;
10114 return 1;
10115}
10116
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010117/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10118 * Accepts an optional argument of type string containing the header field name,
10119 * and an optional argument of type signed or unsigned integer to request an
10120 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau185b5c42012-04-26 15:11:51 +020010121 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010122 */
Willy Tarreau33a7e692007-06-10 19:45:56 +020010123static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010124smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010125{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010126 struct hdr_idx *idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010127 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau15e91e12015-04-04 00:52:09 +020010128 const struct http_msg *msg;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010129 int occ = 0;
10130 const char *name_str = NULL;
10131 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010132
Willy Tarreaua890d072013-04-02 12:01:06 +020010133 if (!ctx) {
10134 /* first call */
10135 ctx = &static_hdr_ctx;
10136 ctx->idx = 0;
Willy Tarreauffb6f082013-04-02 23:16:53 +020010137 smp->ctx.a[0] = ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010138 }
10139
Willy Tarreau185b5c42012-04-26 15:11:51 +020010140 if (args) {
10141 if (args[0].type != ARGT_STR)
10142 return 0;
10143 name_str = args[0].data.str.str;
10144 name_len = args[0].data.str.len;
10145
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010146 if (args[1].type == ARGT_SINT)
10147 occ = args[1].data.sint;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010148 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010149
Willy Tarreaue333ec92012-04-16 16:26:40 +020010150 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +020010151
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010152 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010153 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010154
Willy Tarreau185b5c42012-04-26 15:11:51 +020010155 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010156 /* search for header from the beginning */
10157 ctx->idx = 0;
10158
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010159 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau185b5c42012-04-26 15:11:51 +020010160 /* no explicit occurrence and single fetch => last header by default */
10161 occ = -1;
10162
10163 if (!occ)
10164 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +020010165 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +010010166
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010167 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010168 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010169 if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.u.str.str, &smp->data.u.str.len))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010170 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010171
Willy Tarreau37406352012-04-23 16:16:37 +020010172 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010173 return 0;
10174}
10175
Willy Tarreauc11416f2007-06-17 16:58:38 +020010176/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +020010177 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010178 */
10179static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010180smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010181{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010182 struct hdr_idx *idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010183 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010184 const struct http_msg *msg;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010185 int cnt;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010186 const char *name = NULL;
10187 int len = 0;
Willy Tarreau8797c062007-05-07 00:55:35 +020010188
Willy Tarreau601a4d12015-04-01 19:16:09 +020010189 if (args && args->type == ARGT_STR) {
10190 name = args->data.str.str;
10191 len = args->data.str.len;
10192 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010193
Willy Tarreaue333ec92012-04-16 16:26:40 +020010194 CHECK_HTTP_MESSAGE_FIRST();
10195
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010196 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010197 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010198
Willy Tarreau33a7e692007-06-10 19:45:56 +020010199 ctx.idx = 0;
10200 cnt = 0;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010201 while (http_find_header2(name, len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010202 cnt++;
10203
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010204 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010205 smp->data.u.sint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010206 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010207 return 1;
10208}
10209
Willy Tarreau185b5c42012-04-26 15:11:51 +020010210/* Fetch an HTTP header's integer value. The integer value is returned. It
10211 * takes a mandatory argument of type string and an optional one of type int
10212 * to designate a specific occurrence. It returns an unsigned integer, which
10213 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +020010214 */
10215static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010216smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010217{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010218 int ret = smp_fetch_hdr(args, smp, kw, private);
Willy Tarreaue333ec92012-04-16 16:26:40 +020010219
Willy Tarreauf853c462012-04-23 18:53:56 +020010220 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010221 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010222 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreauf853c462012-04-23 18:53:56 +020010223 }
Willy Tarreau33a7e692007-06-10 19:45:56 +020010224
Willy Tarreaud53e2422012-04-16 17:21:11 +020010225 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010226}
10227
Cyril Bonté69fa9922012-10-25 00:01:06 +020010228/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
10229 * and an optional one of type int to designate a specific occurrence.
10230 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +020010231 */
10232static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010233smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau106f9792009-09-19 07:54:16 +020010234{
Willy Tarreaud53e2422012-04-16 17:21:11 +020010235 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010236
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010237 while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010238 if (url2ipv4((char *)smp->data.u.str.str, &smp->data.u.ipv4)) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010239 smp->data.type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +020010240 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010241 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +010010242 struct chunk *temp = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010243 if (smp->data.u.str.len < temp->size - 1) {
10244 memcpy(temp->str, smp->data.u.str.str, smp->data.u.str.len);
10245 temp->str[smp->data.u.str.len] = '\0';
10246 if (inet_pton(AF_INET6, temp->str, &smp->data.u.ipv6)) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010247 smp->data.type = SMP_T_IPV6;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010248 break;
10249 }
10250 }
10251 }
10252
Willy Tarreaud53e2422012-04-16 17:21:11 +020010253 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +020010254 if (!(smp->flags & SMP_F_NOT_LAST))
10255 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +020010256 }
Willy Tarreaud53e2422012-04-16 17:21:11 +020010257 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +020010258}
10259
Willy Tarreau737b0c12007-06-10 21:28:46 +020010260/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
10261 * the first '/' after the possible hostname, and ends before the possible '?'.
10262 */
10263static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010264smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010265{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010266 struct http_txn *txn;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010267 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010268
Willy Tarreauc0239e02012-04-16 14:42:55 +020010269 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010270
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010271 txn = smp->strm->txn;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010272 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +010010273 ptr = http_get_path(txn);
10274 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010275 return 0;
10276
10277 /* OK, we got the '/' ! */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010278 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010279 smp->data.u.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010280
10281 while (ptr < end && *ptr != '?')
10282 ptr++;
10283
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010284 smp->data.u.str.len = ptr - smp->data.u.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010285 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010286 return 1;
10287}
10288
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010289/* This produces a concatenation of the first occurrence of the Host header
10290 * followed by the path component if it begins with a slash ('/'). This means
10291 * that '*' will not be added, resulting in exactly the first Host entry.
10292 * If no Host header is found, then the path is returned as-is. The returned
10293 * value is stored in the trash so it does not need to be marked constant.
Willy Tarreaub169eba2013-12-16 15:14:43 +010010294 * The returned sample is of type string.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010295 */
10296static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010297smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010298{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010299 struct http_txn *txn;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010300 char *ptr, *end, *beg;
10301 struct hdr_ctx ctx;
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010302 struct chunk *temp;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010303
10304 CHECK_HTTP_MESSAGE_FIRST();
10305
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010306 txn = smp->strm->txn;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010307 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010308 if (!http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx) || !ctx.vlen)
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010309 return smp_fetch_path(args, smp, kw, private);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010310
10311 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010312 temp = get_trash_chunk();
10313 memcpy(temp->str, ctx.line + ctx.val, ctx.vlen);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010314 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010315 smp->data.u.str.str = temp->str;
10316 smp->data.u.str.len = ctx.vlen;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010317
10318 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010319 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010320 beg = http_get_path(txn);
10321 if (!beg)
10322 beg = end;
10323
10324 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10325
10326 if (beg < ptr && *beg == '/') {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010327 memcpy(smp->data.u.str.str + smp->data.u.str.len, beg, ptr - beg);
10328 smp->data.u.str.len += ptr - beg;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010329 }
10330
10331 smp->flags = SMP_F_VOL_1ST;
10332 return 1;
10333}
10334
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010335/* This produces a 32-bit hash of the concatenation of the first occurrence of
10336 * the Host header followed by the path component if it begins with a slash ('/').
10337 * This means that '*' will not be added, resulting in exactly the first Host
10338 * entry. If no Host header is found, then the path is used. The resulting value
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010339 * is hashed using the path hash followed by a full avalanche hash and provides a
10340 * 32-bit integer value. This fetch is useful for tracking per-path activity on
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010341 * high-traffic sites without having to store whole paths.
10342 */
Thierry FOURNIER055b9d52014-07-15 16:11:07 +020010343int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010344smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010345{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010346 struct http_txn *txn;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010347 struct hdr_ctx ctx;
10348 unsigned int hash = 0;
10349 char *ptr, *beg, *end;
10350 int len;
10351
10352 CHECK_HTTP_MESSAGE_FIRST();
10353
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010354 txn = smp->strm->txn;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010355 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010356 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010357 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10358 ptr = ctx.line + ctx.val;
10359 len = ctx.vlen;
10360 while (len--)
10361 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10362 }
10363
10364 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010365 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010366 beg = http_get_path(txn);
10367 if (!beg)
10368 beg = end;
10369
10370 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10371
10372 if (beg < ptr && *beg == '/') {
10373 while (beg < ptr)
10374 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10375 }
10376 hash = full_hash(hash);
10377
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010378 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010379 smp->data.u.sint = hash;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010380 smp->flags = SMP_F_VOL_1ST;
10381 return 1;
10382}
10383
Willy Tarreau4a550602012-12-09 14:53:32 +010010384/* This concatenates the source address with the 32-bit hash of the Host and
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010385 * path as returned by smp_fetch_base32(). The idea is to have per-source and
10386 * per-path counters. The result is a binary block from 8 to 20 bytes depending
10387 * on the source address length. The path hash is stored before the address so
Willy Tarreau4a550602012-12-09 14:53:32 +010010388 * that in environments where IPv6 is insignificant, truncating the output to
10389 * 8 bytes would still work.
10390 */
10391static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010392smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau4a550602012-12-09 14:53:32 +010010393{
Willy Tarreau47ca5452012-12-23 20:22:19 +010010394 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010395 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010396
10397 if (!cli_conn)
10398 return 0;
Willy Tarreau4a550602012-12-09 14:53:32 +010010399
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010400 if (!smp_fetch_base32(args, smp, kw, private))
Willy Tarreau4a550602012-12-09 14:53:32 +010010401 return 0;
10402
Willy Tarreau47ca5452012-12-23 20:22:19 +010010403 temp = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010404 *(unsigned int *)temp->str = htonl(smp->data.u.sint);
Willy Tarreau5ad6e1d2014-07-15 21:34:06 +020010405 temp->len += sizeof(unsigned int);
Willy Tarreau4a550602012-12-09 14:53:32 +010010406
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010407 switch (cli_conn->addr.from.ss_family) {
Willy Tarreau4a550602012-12-09 14:53:32 +010010408 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010409 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Willy Tarreau4a550602012-12-09 14:53:32 +010010410 temp->len += 4;
10411 break;
10412 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010413 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Willy Tarreau4a550602012-12-09 14:53:32 +010010414 temp->len += 16;
10415 break;
10416 default:
10417 return 0;
10418 }
10419
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010420 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010421 smp->data.type = SMP_T_BIN;
Willy Tarreau4a550602012-12-09 14:53:32 +010010422 return 1;
10423}
10424
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010425/* Extracts the query string, which comes after the question mark '?'. If no
10426 * question mark is found, nothing is returned. Otherwise it returns a sample
10427 * of type string carrying the whole query string.
10428 */
10429static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010430smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010431{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010432 struct http_txn *txn;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010433 char *ptr, *end;
10434
10435 CHECK_HTTP_MESSAGE_FIRST();
10436
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010437 txn = smp->strm->txn;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010438 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
10439 end = ptr + txn->req.sl.rq.u_l;
10440
10441 /* look up the '?' */
10442 do {
10443 if (ptr == end)
10444 return 0;
10445 } while (*ptr++ != '?');
10446
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010447 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010448 smp->data.u.str.str = ptr;
10449 smp->data.u.str.len = end - ptr;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010010450 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
10451 return 1;
10452}
10453
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010454static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010455smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010456{
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010457 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
10458 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
10459 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010460
Willy Tarreau24e32d82012-04-23 23:55:44 +020010461 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010462
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010463 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010464 smp->data.u.sint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010465 return 1;
10466}
10467
Willy Tarreau7f18e522010-10-22 20:04:13 +020010468/* return a valid test if the current request is the first one on the connection */
10469static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010470smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau7f18e522010-10-22 20:04:13 +020010471{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010472 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010473 smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +020010474 return 1;
10475}
10476
Willy Tarreau34db1082012-04-19 17:16:54 +020010477/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010478static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010479smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010480{
10481
Willy Tarreau24e32d82012-04-23 23:55:44 +020010482 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010483 return 0;
10484
Willy Tarreauc0239e02012-04-16 14:42:55 +020010485 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010486
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010487 if (!get_http_auth(smp->strm))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010488 return 0;
10489
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010490 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010491 smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user,
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010492 smp->strm->txn->auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010493 return 1;
10494}
Willy Tarreau8797c062007-05-07 00:55:35 +020010495
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010496/* Accepts exactly 1 argument of type userlist */
10497static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010498smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010499{
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010500 if (!args || args->type != ARGT_USR)
10501 return 0;
10502
10503 CHECK_HTTP_MESSAGE_FIRST();
10504
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010505 if (!get_http_auth(smp->strm))
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010506 return 0;
10507
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010508 /* if the user does not belong to the userlist or has a wrong password,
10509 * report that it unconditionally does not match. Otherwise we return
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010510 * a string containing the username.
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010511 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010512 if (!check_user(args->data.usr, smp->strm->txn->auth.user,
10513 smp->strm->txn->auth.pass))
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010514 return 0;
10515
10516 /* pat_match_auth() will need the user list */
10517 smp->ctx.a[0] = args->data.usr;
10518
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010519 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010520 smp->flags = SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010521 smp->data.u.str.str = smp->strm->txn->auth.user;
10522 smp->data.u.str.len = strlen(smp->strm->txn->auth.user);
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010523
10524 return 1;
10525}
10526
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010527/* Try to find the next occurrence of a cookie name in a cookie header value.
10528 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
10529 * the cookie value is returned into *value and *value_l, and the function
10530 * returns a pointer to the next pointer to search from if the value was found.
10531 * Otherwise if the cookie was not found, NULL is returned and neither value
10532 * nor value_l are touched. The input <hdr> string should first point to the
10533 * header's value, and the <hdr_end> pointer must point to the first character
10534 * not part of the value. <list> must be non-zero if value may represent a list
10535 * of values (cookie headers). This makes it faster to abort parsing when no
10536 * list is expected.
10537 */
David Carlier4686f792015-09-25 14:10:50 +010010538char *
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010539extract_cookie_value(char *hdr, const char *hdr_end,
10540 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +020010541 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010542{
10543 char *equal, *att_end, *att_beg, *val_beg, *val_end;
10544 char *next;
10545
10546 /* we search at least a cookie name followed by an equal, and more
10547 * generally something like this :
10548 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
10549 */
10550 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
10551 /* Iterate through all cookies on this line */
10552
Willy Tarreau2235b262016-11-05 15:50:20 +010010553 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010554 att_beg++;
10555
10556 /* find att_end : this is the first character after the last non
10557 * space before the equal. It may be equal to hdr_end.
10558 */
10559 equal = att_end = att_beg;
10560
10561 while (equal < hdr_end) {
10562 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
10563 break;
Willy Tarreau2235b262016-11-05 15:50:20 +010010564 if (HTTP_IS_SPHT(*equal++))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010565 continue;
10566 att_end = equal;
10567 }
10568
10569 /* here, <equal> points to '=', a delimitor or the end. <att_end>
10570 * is between <att_beg> and <equal>, both may be identical.
10571 */
10572
10573 /* look for end of cookie if there is an equal sign */
10574 if (equal < hdr_end && *equal == '=') {
10575 /* look for the beginning of the value */
10576 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +010010577 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010578 val_beg++;
10579
10580 /* find the end of the value, respecting quotes */
10581 next = find_cookie_value_end(val_beg, hdr_end);
10582
10583 /* make val_end point to the first white space or delimitor after the value */
10584 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +010010585 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010586 val_end--;
10587 } else {
10588 val_beg = val_end = next = equal;
10589 }
10590
10591 /* We have nothing to do with attributes beginning with '$'. However,
10592 * they will automatically be removed if a header before them is removed,
10593 * since they're supposed to be linked together.
10594 */
10595 if (*att_beg == '$')
10596 continue;
10597
10598 /* Ignore cookies with no equal sign */
10599 if (equal == next)
10600 continue;
10601
10602 /* Now we have the cookie name between att_beg and att_end, and
10603 * its value between val_beg and val_end.
10604 */
10605
10606 if (att_end - att_beg == cookie_name_l &&
10607 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
10608 /* let's return this value and indicate where to go on from */
10609 *value = val_beg;
10610 *value_l = val_end - val_beg;
10611 return next + 1;
10612 }
10613
10614 /* Set-Cookie headers only have the name in the first attr=value part */
10615 if (!list)
10616 break;
10617 }
10618
10619 return NULL;
10620}
10621
William Lallemanda43ba4e2014-01-28 18:14:25 +010010622/* Fetch a captured HTTP request header. The index is the position of
10623 * the "capture" option in the configuration file
10624 */
10625static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010626smp_fetch_capture_header_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010627{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010628 struct proxy *fe = strm_fe(smp->strm);
William Lallemanda43ba4e2014-01-28 18:14:25 +010010629 int idx;
10630
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010631 if (!args || args->type != ARGT_SINT)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010632 return 0;
10633
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010634 idx = args->data.sint;
William Lallemanda43ba4e2014-01-28 18:14:25 +010010635
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010636 if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010637 return 0;
10638
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010639 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010640 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010641 smp->data.u.str.str = smp->strm->req_cap[idx];
10642 smp->data.u.str.len = strlen(smp->strm->req_cap[idx]);
William Lallemanda43ba4e2014-01-28 18:14:25 +010010643
10644 return 1;
10645}
10646
10647/* Fetch a captured HTTP response header. The index is the position of
10648 * the "capture" option in the configuration file
10649 */
10650static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010651smp_fetch_capture_header_res(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010652{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010653 struct proxy *fe = strm_fe(smp->strm);
William Lallemanda43ba4e2014-01-28 18:14:25 +010010654 int idx;
10655
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010656 if (!args || args->type != ARGT_SINT)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010657 return 0;
10658
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010659 idx = args->data.sint;
William Lallemanda43ba4e2014-01-28 18:14:25 +010010660
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010661 if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL)
William Lallemanda43ba4e2014-01-28 18:14:25 +010010662 return 0;
10663
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010664 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010665 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010666 smp->data.u.str.str = smp->strm->res_cap[idx];
10667 smp->data.u.str.len = strlen(smp->strm->res_cap[idx]);
William Lallemanda43ba4e2014-01-28 18:14:25 +010010668
10669 return 1;
10670}
10671
William Lallemand65ad6e12014-01-31 15:08:02 +010010672/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
10673static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010674smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemand65ad6e12014-01-31 15:08:02 +010010675{
10676 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010677 struct http_txn *txn = smp->strm->txn;
William Lallemand96a77852014-02-05 00:30:02 +010010678 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010010679
Willy Tarreau15e91e12015-04-04 00:52:09 +020010680 if (!txn || !txn->uri)
William Lallemand65ad6e12014-01-31 15:08:02 +010010681 return 0;
10682
William Lallemand96a77852014-02-05 00:30:02 +010010683 ptr = txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010010684
William Lallemand96a77852014-02-05 00:30:02 +010010685 while (*ptr != ' ' && *ptr != '\0') /* find first space */
10686 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010687
William Lallemand96a77852014-02-05 00:30:02 +010010688 temp = get_trash_chunk();
10689 temp->str = txn->uri;
10690 temp->len = ptr - txn->uri;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010691 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010692 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010693 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010694
10695 return 1;
10696
10697}
10698
10699/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
10700static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010701smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemand65ad6e12014-01-31 15:08:02 +010010702{
10703 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010704 struct http_txn *txn = smp->strm->txn;
William Lallemand65ad6e12014-01-31 15:08:02 +010010705 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010010706
Willy Tarreau15e91e12015-04-04 00:52:09 +020010707 if (!txn || !txn->uri)
William Lallemand65ad6e12014-01-31 15:08:02 +010010708 return 0;
William Lallemand96a77852014-02-05 00:30:02 +010010709
William Lallemand65ad6e12014-01-31 15:08:02 +010010710 ptr = txn->uri;
10711
10712 while (*ptr != ' ' && *ptr != '\0') /* find first space */
10713 ptr++;
William Lallemand96a77852014-02-05 00:30:02 +010010714
William Lallemand65ad6e12014-01-31 15:08:02 +010010715 if (!*ptr)
10716 return 0;
10717
10718 ptr++; /* skip the space */
10719
10720 temp = get_trash_chunk();
William Lallemand96a77852014-02-05 00:30:02 +010010721 ptr = temp->str = http_get_path_from_string(ptr);
William Lallemand65ad6e12014-01-31 15:08:02 +010010722 if (!ptr)
10723 return 0;
10724 while (*ptr != ' ' && *ptr != '\0') /* find space after URI */
10725 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010726
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010727 smp->data.u.str = *temp;
10728 smp->data.u.str.len = ptr - temp->str;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010729 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010730 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010731
10732 return 1;
10733}
10734
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010735/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
10736 * as a string (either "HTTP/1.0" or "HTTP/1.1").
10737 */
10738static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010739smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010740{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010741 struct http_txn *txn = smp->strm->txn;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010742
Willy Tarreau15e91e12015-04-04 00:52:09 +020010743 if (!txn || txn->req.msg_state < HTTP_MSG_HDR_FIRST)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010744 return 0;
10745
10746 if (txn->req.flags & HTTP_MSGF_VER_11)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010747 smp->data.u.str.str = "HTTP/1.1";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010748 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010749 smp->data.u.str.str = "HTTP/1.0";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010750
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010751 smp->data.u.str.len = 8;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010752 smp->data.type = SMP_T_STR;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010753 smp->flags = SMP_F_CONST;
10754 return 1;
10755
10756}
10757
10758/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
10759 * as a string (either "HTTP/1.0" or "HTTP/1.1").
10760 */
10761static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010762smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010763{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010764 struct http_txn *txn = smp->strm->txn;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010765
Willy Tarreau15e91e12015-04-04 00:52:09 +020010766 if (!txn || txn->rsp.msg_state < HTTP_MSG_HDR_FIRST)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010767 return 0;
10768
10769 if (txn->rsp.flags & HTTP_MSGF_VER_11)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010770 smp->data.u.str.str = "HTTP/1.1";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010771 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010772 smp->data.u.str.str = "HTTP/1.0";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010773
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010774 smp->data.u.str.len = 8;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010775 smp->data.type = SMP_T_STR;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010776 smp->flags = SMP_F_CONST;
10777 return 1;
10778
10779}
10780
William Lallemand65ad6e12014-01-31 15:08:02 +010010781
Willy Tarreaue333ec92012-04-16 16:26:40 +020010782/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +020010783 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
Willy Tarreaua890d072013-04-02 12:01:06 +020010784 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +020010785 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +020010786 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +020010787 * Accepts exactly 1 argument of type string. If the input options indicate
10788 * that no iterating is desired, then only last value is fetched if any.
William Lallemand07c8b242014-05-02 17:11:07 +020010789 * The returned sample is of type CSTR. Can be used to parse cookies in other
10790 * files.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010791 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010792int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010793{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010794 struct http_txn *txn;
10795 struct hdr_idx *idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010796 struct hdr_ctx *ctx = smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +020010797 const struct http_msg *msg;
10798 const char *hdr_name;
10799 int hdr_name_len;
10800 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +020010801 int occ = 0;
10802 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010803
Willy Tarreau24e32d82012-04-23 23:55:44 +020010804 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010805 return 0;
10806
Willy Tarreaua890d072013-04-02 12:01:06 +020010807 if (!ctx) {
10808 /* first call */
10809 ctx = &static_hdr_ctx;
10810 ctx->idx = 0;
10811 smp->ctx.a[2] = ctx;
10812 }
10813
Willy Tarreaue333ec92012-04-16 16:26:40 +020010814 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010815
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010816 txn = smp->strm->txn;
10817 idx = &smp->strm->txn->hdr_idx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010818
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010819 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010820 msg = &txn->req;
10821 hdr_name = "Cookie";
10822 hdr_name_len = 6;
10823 } else {
10824 msg = &txn->rsp;
10825 hdr_name = "Set-Cookie";
10826 hdr_name_len = 10;
10827 }
10828
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010829 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau28376d62012-04-26 21:26:10 +020010830 /* no explicit occurrence and single fetch => last cookie by default */
10831 occ = -1;
10832
10833 /* OK so basically here, either we want only one value and it's the
10834 * last one, or we want to iterate over all of them and we fetch the
10835 * next one.
10836 */
10837
Willy Tarreau9b28e032012-10-12 23:49:43 +020010838 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +020010839 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010840 /* search for the header from the beginning, we must first initialize
10841 * the search parameters.
10842 */
Willy Tarreau37406352012-04-23 16:16:37 +020010843 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010844 ctx->idx = 0;
10845 }
10846
Willy Tarreau28376d62012-04-26 21:26:10 +020010847 smp->flags |= SMP_F_VOL_HDR;
10848
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010849 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +020010850 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
10851 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010852 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
10853 goto out;
10854
Willy Tarreau24e32d82012-04-23 23:55:44 +020010855 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010856 continue;
10857
Willy Tarreau37406352012-04-23 16:16:37 +020010858 smp->ctx.a[0] = ctx->line + ctx->val;
10859 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010860 }
10861
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010862 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010863 smp->flags |= SMP_F_CONST;
Willy Tarreau37406352012-04-23 16:16:37 +020010864 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +020010865 args->data.str.str, args->data.str.len,
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010866 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010867 &smp->data.u.str.str,
10868 &smp->data.u.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +020010869 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +020010870 found = 1;
10871 if (occ >= 0) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010872 /* one value was returned into smp->data.u.str.{str,len} */
Willy Tarreau28376d62012-04-26 21:26:10 +020010873 smp->flags |= SMP_F_NOT_LAST;
10874 return 1;
10875 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010876 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010877 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010878 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010879 /* all cookie headers and values were scanned. If we're looking for the
10880 * last occurrence, we may return it now.
10881 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010882 out:
Willy Tarreau37406352012-04-23 16:16:37 +020010883 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +020010884 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010885}
10886
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010887/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +020010888 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreaub169eba2013-12-16 15:14:43 +010010889 * multiple cookies may be parsed on the same line. The returned sample is of
10890 * type UINT. Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010891 */
10892static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010893smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010894{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010895 struct http_txn *txn;
10896 struct hdr_idx *idx;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010897 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010898 const struct http_msg *msg;
10899 const char *hdr_name;
10900 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010901 int cnt;
10902 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010903 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010904
Willy Tarreau24e32d82012-04-23 23:55:44 +020010905 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010906 return 0;
10907
Willy Tarreaue333ec92012-04-16 16:26:40 +020010908 CHECK_HTTP_MESSAGE_FIRST();
10909
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010910 txn = smp->strm->txn;
10911 idx = &smp->strm->txn->hdr_idx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010912
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010913 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010914 msg = &txn->req;
10915 hdr_name = "Cookie";
10916 hdr_name_len = 6;
10917 } else {
10918 msg = &txn->rsp;
10919 hdr_name = "Set-Cookie";
10920 hdr_name_len = 10;
10921 }
10922
Willy Tarreau9b28e032012-10-12 23:49:43 +020010923 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +020010924 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010925 ctx.idx = 0;
10926 cnt = 0;
10927
10928 while (1) {
10929 /* Note: val_beg == NULL every time we need to fetch a new header */
10930 if (!val_beg) {
10931 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
10932 break;
10933
Willy Tarreau24e32d82012-04-23 23:55:44 +020010934 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010935 continue;
10936
10937 val_beg = ctx.line + ctx.val;
10938 val_end = val_beg + ctx.vlen;
10939 }
10940
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010941 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010942 smp->flags |= SMP_F_CONST;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010943 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +020010944 args->data.str.str, args->data.str.len,
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010945 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010946 &smp->data.u.str.str,
10947 &smp->data.u.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010948 cnt++;
10949 }
10950 }
10951
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010952 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010953 smp->data.u.sint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010954 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010955 return 1;
10956}
10957
Willy Tarreau51539362012-05-08 12:46:28 +020010958/* Fetch an cookie's integer value. The integer value is returned. It
10959 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
10960 */
10961static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010962smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau51539362012-05-08 12:46:28 +020010963{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010964 int ret = smp_fetch_cookie(args, smp, kw, private);
Willy Tarreau51539362012-05-08 12:46:28 +020010965
10966 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010967 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010968 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreau51539362012-05-08 12:46:28 +020010969 }
10970
10971 return ret;
10972}
10973
Willy Tarreau8797c062007-05-07 00:55:35 +020010974/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +020010975/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +020010976/************************************************************************/
10977
David Cournapeau16023ee2010-12-23 20:55:41 +090010978/*
10979 * Given a path string and its length, find the position of beginning of the
10980 * query string. Returns NULL if no query string is found in the path.
10981 *
10982 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
10983 *
Willy Tarreau1ede1da2015-05-07 16:06:18 +020010984 * find_query_string(path, n, '?') points to "yo=mama;ye=daddy" string.
David Cournapeau16023ee2010-12-23 20:55:41 +090010985 */
bedis4c75cca2012-10-05 08:38:24 +020010986static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010987{
10988 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +020010989
bedis4c75cca2012-10-05 08:38:24 +020010990 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +090010991 return p ? p + 1 : NULL;
10992}
10993
bedis4c75cca2012-10-05 08:38:24 +020010994static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010995{
bedis4c75cca2012-10-05 08:38:24 +020010996 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +090010997}
10998
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020010999/* after increasing a pointer value, it can exceed the first buffer
11000 * size. This function transform the value of <ptr> according with
11001 * the expected position. <chunks> is an array of the one or two
11002 * avalaible chunks. The first value is the start of the first chunk,
11003 * the second value if the end+1 of the first chunks. The third value
11004 * is NULL or the start of the second chunk and the fourth value is
11005 * the end+1 of the second chunk. The function returns 1 if does a
11006 * wrap, else returns 0.
11007 */
11008static inline int fix_pointer_if_wrap(const char **chunks, const char **ptr)
11009{
11010 if (*ptr < chunks[1])
11011 return 0;
11012 if (!chunks[2])
11013 return 0;
11014 *ptr = chunks[2] + ( *ptr - chunks[1] );
11015 return 1;
11016}
11017
David Cournapeau16023ee2010-12-23 20:55:41 +090011018/*
11019 * Given a url parameter, find the starting position of the first occurence,
11020 * or NULL if the parameter is not found.
11021 *
11022 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
11023 * the function will return query_string+8.
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011024 *
Willy Tarreauf6625822015-12-27 14:51:01 +010011025 * Warning: this function returns a pointer that can point to the first chunk
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011026 * or the second chunk. The caller must be check the position before using the
11027 * result.
David Cournapeau16023ee2010-12-23 20:55:41 +090011028 */
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011029static const char *
11030find_url_param_pos(const char **chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011031 const char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +020011032 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011033{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011034 const char *pos, *last, *equal;
11035 const char **bufs = chunks;
11036 int l1, l2;
David Cournapeau16023ee2010-12-23 20:55:41 +090011037
David Cournapeau16023ee2010-12-23 20:55:41 +090011038
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011039 pos = bufs[0];
11040 last = bufs[1];
Willy Tarreauf6625822015-12-27 14:51:01 +010011041 while (pos < last) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011042 /* Check the equal. */
11043 equal = pos + url_param_name_l;
11044 if (fix_pointer_if_wrap(chunks, &equal)) {
11045 if (equal >= chunks[3])
11046 return NULL;
11047 } else {
11048 if (equal >= chunks[1])
11049 return NULL;
11050 }
11051 if (*equal == '=') {
11052 if (pos + url_param_name_l > last) {
11053 /* process wrap case, we detect a wrap. In this case, the
11054 * comparison is performed in two parts.
11055 */
11056
11057 /* This is the end, we dont have any other chunk. */
11058 if (bufs != chunks || !bufs[2])
11059 return NULL;
11060
11061 /* Compute the length of each part of the comparison. */
11062 l1 = last - pos;
11063 l2 = url_param_name_l - l1;
11064
11065 /* The second buffer is too short to contain the compared string. */
11066 if (bufs[2] + l2 > bufs[3])
11067 return NULL;
11068
11069 if (memcmp(pos, url_param_name, l1) == 0 &&
11070 memcmp(bufs[2], url_param_name+l1, l2) == 0)
11071 return pos;
11072
11073 /* Perform wrapping and jump the string who fail the comparison. */
11074 bufs += 2;
11075 pos = bufs[0] + l2;
11076 last = bufs[1];
11077
11078 } else {
11079 /* process a simple comparison. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011080 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
11081 return pos;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011082 pos += url_param_name_l + 1;
11083 if (fix_pointer_if_wrap(chunks, &pos))
11084 last = bufs[2];
11085 }
11086 }
11087
11088 while (1) {
11089 /* Look for the next delimiter. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011090 while (pos < last && !is_param_delimiter(*pos, delim))
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011091 pos++;
11092 if (pos < last)
11093 break;
11094 /* process buffer wrapping. */
11095 if (bufs != chunks || !bufs[2])
11096 return NULL;
11097 bufs += 2;
11098 pos = bufs[0];
11099 last = bufs[1];
David Cournapeau16023ee2010-12-23 20:55:41 +090011100 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011101 pos++;
11102 }
11103 return NULL;
11104}
11105
11106/*
Cyril Bontéce1ef4d2015-11-26 21:39:56 +010011107 * Given a url parameter name and a query string, find the next value.
11108 * An empty url_param_name matches the first available parameter.
11109 * If the parameter is found, 1 is returned and *vstart / *vend are updated to
11110 * respectively provide a pointer to the value and its end.
11111 * Otherwise, 0 is returned and vstart/vend are not modified.
David Cournapeau16023ee2010-12-23 20:55:41 +090011112 */
11113static int
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011114find_next_url_param(const char **chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011115 const char* url_param_name, size_t url_param_name_l,
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011116 const char **vstart, const char **vend, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011117{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011118 const char *arg_start, *qs_end;
11119 const char *value_start, *value_end;
David Cournapeau16023ee2010-12-23 20:55:41 +090011120
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011121 arg_start = chunks[0];
11122 qs_end = chunks[1];
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011123 if (url_param_name_l) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011124 /* Looks for an argument name. */
11125 arg_start = find_url_param_pos(chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011126 url_param_name, url_param_name_l,
11127 delim);
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011128 /* Check for wrapping. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011129 if (arg_start >= qs_end)
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011130 qs_end = chunks[3];
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011131 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011132 if (!arg_start)
11133 return 0;
11134
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011135 if (!url_param_name_l) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011136 while (1) {
11137 /* looks for the first argument. */
11138 value_start = memchr(arg_start, '=', qs_end - arg_start);
11139 if (!value_start) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011140 /* Check for wrapping. */
11141 if (arg_start >= chunks[0] &&
Willy Tarreauf6625822015-12-27 14:51:01 +010011142 arg_start < chunks[1] &&
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011143 chunks[2]) {
11144 arg_start = chunks[2];
11145 qs_end = chunks[3];
11146 continue;
11147 }
11148 return 0;
11149 }
11150 break;
11151 }
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011152 value_start++;
11153 }
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011154 else {
11155 /* Jump the argument length. */
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011156 value_start = arg_start + url_param_name_l + 1;
11157
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011158 /* Check for pointer wrapping. */
11159 if (fix_pointer_if_wrap(chunks, &value_start)) {
11160 /* Update the end pointer. */
11161 qs_end = chunks[3];
11162
11163 /* Check for overflow. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011164 if (value_start >= qs_end)
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011165 return 0;
11166 }
11167 }
11168
David Cournapeau16023ee2010-12-23 20:55:41 +090011169 value_end = value_start;
11170
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011171 while (1) {
11172 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
11173 value_end++;
11174 if (value_end < qs_end)
11175 break;
11176 /* process buffer wrapping. */
11177 if (value_end >= chunks[0] &&
Willy Tarreauf6625822015-12-27 14:51:01 +010011178 value_end < chunks[1] &&
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011179 chunks[2]) {
11180 value_end = chunks[2];
11181 qs_end = chunks[3];
11182 continue;
11183 }
11184 break;
11185 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011186
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011187 *vstart = value_start;
11188 *vend = value_end;
Cyril Bontéce1ef4d2015-11-26 21:39:56 +010011189 return 1;
David Cournapeau16023ee2010-12-23 20:55:41 +090011190}
11191
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011192/* This scans a URL-encoded query string. It takes an optionally wrapping
11193 * string whose first contigous chunk has its beginning in ctx->a[0] and end
11194 * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
11195 * pointers are updated for next iteration before leaving.
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011196 */
David Cournapeau16023ee2010-12-23 20:55:41 +090011197static int
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011198smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private)
David Cournapeau16023ee2010-12-23 20:55:41 +090011199{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011200 const char *vstart, *vend;
11201 struct chunk *temp;
11202 const char **chunks = (const char **)smp->ctx.a;
bedis4c75cca2012-10-05 08:38:24 +020011203
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011204 if (!find_next_url_param(chunks,
Thierry FOURNIER0948d412015-05-20 15:22:37 +020011205 name, name_len,
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011206 &vstart, &vend,
Thierry FOURNIER0948d412015-05-20 15:22:37 +020011207 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090011208 return 0;
11209
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011210 /* Create sample. If the value is contiguous, return the pointer as CONST,
11211 * if the value is wrapped, copy-it in a buffer.
11212 */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011213 smp->data.type = SMP_T_STR;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011214 if (chunks[2] &&
11215 vstart >= chunks[0] && vstart <= chunks[1] &&
11216 vend >= chunks[2] && vend <= chunks[3]) {
11217 /* Wrapped case. */
11218 temp = get_trash_chunk();
11219 memcpy(temp->str, vstart, chunks[1] - vstart);
11220 memcpy(temp->str + ( chunks[1] - vstart ), chunks[2], vend - chunks[2]);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011221 smp->data.u.str.str = temp->str;
11222 smp->data.u.str.len = ( chunks[1] - vstart ) + ( vend - chunks[2] );
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011223 } else {
11224 /* Contiguous case. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011225 smp->data.u.str.str = (char *)vstart;
11226 smp->data.u.str.len = vend - vstart;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011227 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
11228 }
11229
11230 /* Update context, check wrapping. */
11231 chunks[0] = vend;
11232 if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) {
11233 chunks[1] = chunks[3];
11234 chunks[2] = NULL;
11235 }
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011236
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011237 if (chunks[0] < chunks[1])
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011238 smp->flags |= SMP_F_NOT_LAST;
11239
David Cournapeau16023ee2010-12-23 20:55:41 +090011240 return 1;
11241}
11242
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011243/* This function iterates over each parameter of the query string. It uses
11244 * ctx->a[0] and ctx->a[1] to store the beginning and end of the current
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011245 * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL.
11246 * An optional parameter name is passed in args[0], otherwise any parameter is
11247 * considered. It supports an optional delimiter argument for the beginning of
11248 * the string in args[1], which defaults to "?".
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011249 */
11250static int
11251smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
11252{
11253 struct http_msg *msg;
11254 char delim = '?';
11255 const char *name;
11256 int name_len;
11257
Dragan Dosen26f77e52015-05-25 10:02:11 +020011258 if (!args ||
11259 (args[0].type && args[0].type != ARGT_STR) ||
11260 (args[1].type && args[1].type != ARGT_STR))
11261 return 0;
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011262
Dragan Dosen26f77e52015-05-25 10:02:11 +020011263 name = "";
11264 name_len = 0;
11265 if (args->type == ARGT_STR) {
11266 name = args->data.str.str;
11267 name_len = args->data.str.len;
11268 }
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011269
Dragan Dosen26f77e52015-05-25 10:02:11 +020011270 if (args[1].type)
11271 delim = *args[1].data.str.str;
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011272
Dragan Dosen26f77e52015-05-25 10:02:11 +020011273 if (!smp->ctx.a[0]) { // first call, find the query string
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011274 CHECK_HTTP_MESSAGE_FIRST();
11275
11276 msg = &smp->strm->txn->req;
11277
11278 smp->ctx.a[0] = find_param_list(msg->chn->buf->p + msg->sl.rq.u,
11279 msg->sl.rq.u_l, delim);
11280 if (!smp->ctx.a[0])
11281 return 0;
11282
11283 smp->ctx.a[1] = msg->chn->buf->p + msg->sl.rq.u + msg->sl.rq.u_l;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011284
11285 /* Assume that the context is filled with NULL pointer
11286 * before the first call.
11287 * smp->ctx.a[2] = NULL;
11288 * smp->ctx.a[3] = NULL;
11289 */
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011290 }
11291
11292 return smp_fetch_param(delim, name, name_len, args, smp, kw, private);
11293}
11294
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011295/* This function iterates over each parameter of the body. This requires
11296 * that the body has been waited for using http-buffer-request. It uses
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011297 * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
11298 * contigous part of the body, and optionally ctx->a[2..3] to reference the
11299 * optional second part if the body wraps at the end of the buffer. An optional
11300 * parameter name is passed in args[0], otherwise any parameter is considered.
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011301 */
11302static int
11303smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
11304{
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011305 struct http_msg *msg;
11306 unsigned long len;
11307 unsigned long block1;
11308 char *body;
11309 const char *name;
11310 int name_len;
11311
11312 if (!args || (args[0].type && args[0].type != ARGT_STR))
11313 return 0;
11314
11315 name = "";
11316 name_len = 0;
11317 if (args[0].type == ARGT_STR) {
11318 name = args[0].data.str.str;
11319 name_len = args[0].data.str.len;
11320 }
11321
11322 if (!smp->ctx.a[0]) { // first call, find the query string
11323 CHECK_HTTP_MESSAGE_FIRST();
11324
11325 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +010011326 msg = &smp->strm->txn->req;
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011327 else
Willy Tarreaube508f12016-03-10 11:47:01 +010011328 msg = &smp->strm->txn->rsp;
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011329
11330 len = http_body_bytes(msg);
11331 body = b_ptr(msg->chn->buf, -http_data_rewind(msg));
11332
11333 block1 = len;
11334 if (block1 > msg->chn->buf->data + msg->chn->buf->size - body)
11335 block1 = msg->chn->buf->data + msg->chn->buf->size - body;
11336
11337 if (block1 == len) {
11338 /* buffer is not wrapped (or empty) */
11339 smp->ctx.a[0] = body;
11340 smp->ctx.a[1] = body + len;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011341
11342 /* Assume that the context is filled with NULL pointer
11343 * before the first call.
11344 * smp->ctx.a[2] = NULL;
11345 * smp->ctx.a[3] = NULL;
11346 */
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011347 }
11348 else {
11349 /* buffer is wrapped, we need to defragment it */
11350 smp->ctx.a[0] = body;
11351 smp->ctx.a[1] = body + block1;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011352 smp->ctx.a[2] = msg->chn->buf->data;
11353 smp->ctx.a[3] = msg->chn->buf->data + ( len - block1 );
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011354 }
11355 }
11356 return smp_fetch_param('&', name, name_len, args, smp, kw, private);
11357}
11358
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011359/* Return the signed integer value for the specified url parameter (see url_param
11360 * above).
11361 */
11362static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011363smp_fetch_url_param_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011364{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011365 int ret = smp_fetch_url_param(args, smp, kw, private);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011366
11367 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011368 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011369 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011370 }
11371
11372 return ret;
11373}
11374
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011375/* This produces a 32-bit hash of the concatenation of the first occurrence of
11376 * the Host header followed by the path component if it begins with a slash ('/').
11377 * This means that '*' will not be added, resulting in exactly the first Host
11378 * entry. If no Host header is found, then the path is used. The resulting value
11379 * is hashed using the url hash followed by a full avalanche hash and provides a
11380 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
11381 * high-traffic sites without having to store whole paths.
11382 * this differs from the base32 functions in that it includes the url parameters
11383 * as well as the path
11384 */
11385static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011386smp_fetch_url32(const struct arg *args, struct sample *smp, const char *kw, void *private)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011387{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011388 struct http_txn *txn;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011389 struct hdr_ctx ctx;
11390 unsigned int hash = 0;
11391 char *ptr, *beg, *end;
11392 int len;
11393
11394 CHECK_HTTP_MESSAGE_FIRST();
11395
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011396 txn = smp->strm->txn;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011397 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020011398 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011399 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
11400 ptr = ctx.line + ctx.val;
11401 len = ctx.vlen;
11402 while (len--)
11403 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
11404 }
11405
11406 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020011407 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 +000011408 beg = http_get_path(txn);
11409 if (!beg)
11410 beg = end;
11411
11412 for (ptr = beg; ptr < end ; ptr++);
11413
11414 if (beg < ptr && *beg == '/') {
11415 while (beg < ptr)
11416 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
11417 }
11418 hash = full_hash(hash);
11419
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011420 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011421 smp->data.u.sint = hash;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011422 smp->flags = SMP_F_VOL_1ST;
11423 return 1;
11424}
11425
11426/* This concatenates the source address with the 32-bit hash of the Host and
11427 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
11428 * per-url counters. The result is a binary block from 8 to 20 bytes depending
11429 * on the source address length. The URL hash is stored before the address so
11430 * that in environments where IPv6 is insignificant, truncating the output to
11431 * 8 bytes would still work.
11432 */
11433static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011434smp_fetch_url32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011435{
11436 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011437 struct connection *cli_conn = objt_conn(smp->sess->origin);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011438
Dragan Dosendb5af612016-06-16 11:23:01 +020011439 if (!cli_conn)
11440 return 0;
11441
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011442 if (!smp_fetch_url32(args, smp, kw, private))
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011443 return 0;
11444
11445 temp = get_trash_chunk();
Dragan Dosene5f41332016-06-16 11:08:08 +020011446 *(unsigned int *)temp->str = htonl(smp->data.u.sint);
11447 temp->len += sizeof(unsigned int);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011448
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011449 switch (cli_conn->addr.from.ss_family) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011450 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011451 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011452 temp->len += 4;
11453 break;
11454 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011455 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011456 temp->len += 16;
11457 break;
11458 default:
11459 return 0;
11460 }
11461
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011462 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011463 smp->data.type = SMP_T_BIN;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011464 return 1;
11465}
11466
Willy Tarreau185b5c42012-04-26 15:11:51 +020011467/* This function is used to validate the arguments passed to any "hdr" fetch
11468 * keyword. These keywords support an optional positive or negative occurrence
11469 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
11470 * is assumed that the types are already the correct ones. Returns 0 on error,
11471 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
11472 * error message in case of error, that the caller is responsible for freeing.
11473 * The initial location must either be freeable or NULL.
11474 */
Thierry FOURNIER49f45af2014-12-08 19:50:43 +010011475int val_hdr(struct arg *arg, char **err_msg)
Willy Tarreau185b5c42012-04-26 15:11:51 +020011476{
11477 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +020011478 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +020011479 return 0;
11480 }
11481 return 1;
11482}
11483
Willy Tarreau276fae92013-07-25 14:36:01 +020011484/* takes an UINT value on input supposed to represent the time since EPOCH,
11485 * adds an optional offset found in args[0] and emits a string representing
11486 * the date in RFC-1123/5322 format.
11487 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011488static int sample_conv_http_date(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau276fae92013-07-25 14:36:01 +020011489{
Cyril Bontéf78d8962016-01-22 19:40:28 +010011490 const char day[7][4] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
Willy Tarreau276fae92013-07-25 14:36:01 +020011491 const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
11492 struct chunk *temp;
11493 struct tm *tm;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011494 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011495 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Willy Tarreau276fae92013-07-25 14:36:01 +020011496
11497 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011498 if (args && (args[0].type == ARGT_SINT))
Willy Tarreau276fae92013-07-25 14:36:01 +020011499 curr_date += args[0].data.sint;
11500
11501 tm = gmtime(&curr_date);
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +020011502 if (!tm)
11503 return 0;
Willy Tarreau276fae92013-07-25 14:36:01 +020011504
11505 temp = get_trash_chunk();
11506 temp->len = snprintf(temp->str, temp->size - temp->len,
11507 "%s, %02d %s %04d %02d:%02d:%02d GMT",
11508 day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year,
11509 tm->tm_hour, tm->tm_min, tm->tm_sec);
11510
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011511 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011512 smp->data.type = SMP_T_STR;
Willy Tarreau276fae92013-07-25 14:36:01 +020011513 return 1;
11514}
11515
Thierry FOURNIERad903512014-04-11 17:51:01 +020011516/* Match language range with language tag. RFC2616 14.4:
11517 *
11518 * A language-range matches a language-tag if it exactly equals
11519 * the tag, or if it exactly equals a prefix of the tag such
11520 * that the first tag character following the prefix is "-".
11521 *
11522 * Return 1 if the strings match, else return 0.
11523 */
11524static inline int language_range_match(const char *range, int range_len,
11525 const char *tag, int tag_len)
11526{
11527 const char *end = range + range_len;
11528 const char *tend = tag + tag_len;
11529 while (range < end) {
11530 if (*range == '-' && tag == tend)
11531 return 1;
11532 if (*range != *tag || tag == tend)
11533 return 0;
11534 range++;
11535 tag++;
11536 }
11537 /* Return true only if the last char of the tag is matched. */
11538 return tag == tend;
11539}
11540
11541/* Arguments: The list of expected value, the number of parts returned and the separator */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011542static int sample_conv_q_prefered(const struct arg *args, struct sample *smp, void *private)
Thierry FOURNIERad903512014-04-11 17:51:01 +020011543{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011544 const char *al = smp->data.u.str.str;
11545 const char *end = al + smp->data.u.str.len;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011546 const char *token;
11547 int toklen;
11548 int qvalue;
11549 const char *str;
11550 const char *w;
11551 int best_q = 0;
11552
11553 /* Set the constant to the sample, because the output of the
11554 * function will be peek in the constant configuration string.
11555 */
11556 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011557 smp->data.u.str.size = 0;
11558 smp->data.u.str.str = "";
11559 smp->data.u.str.len = 0;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011560
11561 /* Parse the accept language */
11562 while (1) {
11563
11564 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011565 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011566 al++;
11567 if (al >= end)
11568 break;
11569
11570 /* Start of the fisrt word. */
11571 token = al;
11572
11573 /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011574 while (al < end && *al != ';' && *al != ',' && !isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011575 al++;
11576 if (al == token)
11577 goto expect_comma;
11578
11579 /* Length of the token. */
11580 toklen = al - token;
11581 qvalue = 1000;
11582
11583 /* Check if the token exists in the list. If the token not exists,
11584 * jump to the next token.
11585 */
11586 str = args[0].data.str.str;
11587 w = str;
11588 while (1) {
11589 if (*str == ';' || *str == '\0') {
11590 if (language_range_match(token, toklen, w, str-w))
11591 goto look_for_q;
11592 if (*str == '\0')
11593 goto expect_comma;
11594 w = str + 1;
11595 }
11596 str++;
11597 }
11598 goto expect_comma;
11599
11600look_for_q:
11601
11602 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011603 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011604 al++;
11605 if (al >= end)
11606 goto process_value;
11607
11608 /* If ',' is found, process the result */
11609 if (*al == ',')
11610 goto process_value;
11611
11612 /* If the character is different from ';', look
11613 * for the end of the header part in best effort.
11614 */
11615 if (*al != ';')
11616 goto expect_comma;
11617
11618 /* Assumes that the char is ';', now expect "q=". */
11619 al++;
11620
11621 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011622 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011623 al++;
11624 if (al >= end)
11625 goto process_value;
11626
11627 /* Expect 'q'. If no 'q', continue in best effort */
11628 if (*al != 'q')
11629 goto process_value;
11630 al++;
11631
11632 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011633 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011634 al++;
11635 if (al >= end)
11636 goto process_value;
11637
11638 /* Expect '='. If no '=', continue in best effort */
11639 if (*al != '=')
11640 goto process_value;
11641 al++;
11642
11643 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020011644 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020011645 al++;
11646 if (al >= end)
11647 goto process_value;
11648
11649 /* Parse the q value. */
11650 qvalue = parse_qvalue(al, &al);
11651
11652process_value:
11653
11654 /* If the new q value is the best q value, then store the associated
11655 * language in the response. If qvalue is the biggest value (1000),
11656 * break the process.
11657 */
11658 if (qvalue > best_q) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011659 smp->data.u.str.str = (char *)w;
11660 smp->data.u.str.len = str - w;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011661 if (qvalue >= 1000)
11662 break;
11663 best_q = qvalue;
11664 }
11665
11666expect_comma:
11667
11668 /* Expect comma or end. If the end is detected, quit the loop. */
11669 while (al < end && *al != ',')
11670 al++;
11671 if (al >= end)
11672 break;
11673
11674 /* Comma is found, jump it and restart the analyzer. */
11675 al++;
11676 }
11677
11678 /* Set default value if required. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011679 if (smp->data.u.str.len == 0 && args[1].type == ARGT_STR) {
11680 smp->data.u.str.str = args[1].data.str.str;
11681 smp->data.u.str.len = args[1].data.str.len;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011682 }
11683
11684 /* Return true only if a matching language was found. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011685 return smp->data.u.str.len != 0;
Thierry FOURNIERad903512014-04-11 17:51:01 +020011686}
11687
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020011688/* This fetch url-decode any input string. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011689static int sample_conv_url_dec(const struct arg *args, struct sample *smp, void *private)
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020011690{
11691 /* If the constant flag is set or if not size is avalaible at
11692 * the end of the buffer, copy the string in other buffer
11693 * before decoding.
11694 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011695 if (smp->flags & SMP_F_CONST || smp->data.u.str.size <= smp->data.u.str.len) {
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020011696 struct chunk *str = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011697 memcpy(str->str, smp->data.u.str.str, smp->data.u.str.len);
11698 smp->data.u.str.str = str->str;
11699 smp->data.u.str.size = str->size;
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020011700 smp->flags &= ~SMP_F_CONST;
11701 }
11702
11703 /* Add final \0 required by url_decode(), and convert the input string. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011704 smp->data.u.str.str[smp->data.u.str.len] = '\0';
11705 smp->data.u.str.len = url_decode(smp->data.u.str.str);
Christopher Fauleta2584792017-10-05 10:03:12 +020011706 return (smp->data.u.str.len >= 0);
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020011707}
11708
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011709static int smp_conv_req_capture(const struct arg *args, struct sample *smp, void *private)
11710{
11711 struct proxy *fe = strm_fe(smp->strm);
11712 int idx, i;
11713 struct cap_hdr *hdr;
11714 int len;
11715
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011716 if (!args || args->type != ARGT_SINT)
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011717 return 0;
11718
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011719 idx = args->data.sint;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011720
11721 /* Check the availibity of the capture id. */
11722 if (idx > fe->nb_req_cap - 1)
11723 return 0;
11724
11725 /* Look for the original configuration. */
11726 for (hdr = fe->req_cap, i = fe->nb_req_cap - 1;
11727 hdr != NULL && i != idx ;
11728 i--, hdr = hdr->next);
11729 if (!hdr)
11730 return 0;
11731
11732 /* check for the memory allocation */
11733 if (smp->strm->req_cap[hdr->index] == NULL)
Willy Tarreaubafbe012017-11-24 17:34:44 +010011734 smp->strm->req_cap[hdr->index] = pool_alloc(hdr->pool);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011735 if (smp->strm->req_cap[hdr->index] == NULL)
11736 return 0;
11737
11738 /* Check length. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011739 len = smp->data.u.str.len;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011740 if (len > hdr->len)
11741 len = hdr->len;
11742
11743 /* Capture input data. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011744 memcpy(smp->strm->req_cap[idx], smp->data.u.str.str, len);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011745 smp->strm->req_cap[idx][len] = '\0';
11746
11747 return 1;
11748}
11749
11750static int smp_conv_res_capture(const struct arg *args, struct sample *smp, void *private)
11751{
11752 struct proxy *fe = strm_fe(smp->strm);
11753 int idx, i;
11754 struct cap_hdr *hdr;
11755 int len;
11756
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011757 if (!args || args->type != ARGT_SINT)
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011758 return 0;
11759
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011760 idx = args->data.sint;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011761
11762 /* Check the availibity of the capture id. */
11763 if (idx > fe->nb_rsp_cap - 1)
11764 return 0;
11765
11766 /* Look for the original configuration. */
11767 for (hdr = fe->rsp_cap, i = fe->nb_rsp_cap - 1;
11768 hdr != NULL && i != idx ;
11769 i--, hdr = hdr->next);
11770 if (!hdr)
11771 return 0;
11772
11773 /* check for the memory allocation */
11774 if (smp->strm->res_cap[hdr->index] == NULL)
Willy Tarreaubafbe012017-11-24 17:34:44 +010011775 smp->strm->res_cap[hdr->index] = pool_alloc(hdr->pool);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011776 if (smp->strm->res_cap[hdr->index] == NULL)
11777 return 0;
11778
11779 /* Check length. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011780 len = smp->data.u.str.len;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011781 if (len > hdr->len)
11782 len = hdr->len;
11783
11784 /* Capture input data. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011785 memcpy(smp->strm->res_cap[idx], smp->data.u.str.str, len);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020011786 smp->strm->res_cap[idx][len] = '\0';
11787
11788 return 1;
11789}
11790
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011791/* This function executes one of the set-{method,path,query,uri} actions. It
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011792 * takes the string from the variable 'replace' with length 'len', then modifies
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011793 * the relevant part of the request line accordingly. Then it updates various
11794 * pointers to the next elements which were moved, and the total buffer length.
11795 * It finds the action to be performed in p[2], previously filled by function
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011796 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
11797 * error, though this can be revisited when this code is finally exploited.
11798 *
11799 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
11800 * query string and 3 to replace uri.
11801 *
11802 * In query string case, the mark question '?' must be set at the start of the
11803 * string by the caller, event if the replacement query string is empty.
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011804 */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011805int http_replace_req_line(int action, const char *replace, int len,
Willy Tarreau987e3fb2015-04-04 01:09:08 +020011806 struct proxy *px, struct stream *s)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011807{
Willy Tarreau987e3fb2015-04-04 01:09:08 +020011808 struct http_txn *txn = s->txn;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011809 char *cur_ptr, *cur_end;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011810 int offset = 0;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011811 int delta;
11812
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011813 switch (action) {
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011814 case 0: // method
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010011815 cur_ptr = s->req.buf->p;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011816 cur_end = cur_ptr + txn->req.sl.rq.m_l;
11817
11818 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011819 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011820 txn->req.sl.rq.m_l += delta;
11821 txn->req.sl.rq.u += delta;
11822 txn->req.sl.rq.v += delta;
11823 break;
11824
11825 case 1: // path
11826 cur_ptr = http_get_path(txn);
11827 if (!cur_ptr)
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010011828 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011829
11830 cur_end = cur_ptr;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010011831 while (cur_end < s->req.buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l && *cur_end != '?')
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011832 cur_end++;
11833
11834 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011835 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011836 txn->req.sl.rq.u_l += delta;
11837 txn->req.sl.rq.v += delta;
11838 break;
11839
11840 case 2: // query
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011841 offset = 1;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010011842 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011843 cur_end = cur_ptr + txn->req.sl.rq.u_l;
11844 while (cur_ptr < cur_end && *cur_ptr != '?')
11845 cur_ptr++;
11846
11847 /* skip the question mark or indicate that we must insert it
11848 * (but only if the format string is not empty then).
11849 */
11850 if (cur_ptr < cur_end)
11851 cur_ptr++;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011852 else if (len > 1)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011853 offset = 0;
11854
11855 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011856 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011857 txn->req.sl.rq.u_l += delta;
11858 txn->req.sl.rq.v += delta;
11859 break;
11860
11861 case 3: // uri
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010011862 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011863 cur_end = cur_ptr + txn->req.sl.rq.u_l;
11864
11865 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011866 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011867 txn->req.sl.rq.u_l += delta;
11868 txn->req.sl.rq.v += delta;
11869 break;
11870
11871 default:
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011872 return -1;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011873 }
11874
11875 /* commit changes and adjust end of message */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011876 delta = buffer_replace2(s->req.buf, cur_ptr, cur_end, replace + offset, len - offset);
Thierry FOURNIER7f6192c2015-04-26 18:01:40 +020011877 txn->req.sl.rq.l += delta;
11878 txn->hdr_idx.v[0].len += delta;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011879 http_msg_move_end(&txn->req, delta);
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011880 return 0;
11881}
11882
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011883/* This function replace the HTTP status code and the associated message. The
11884 * variable <status> contains the new status code. This function never fails.
11885 */
Robin H. Johnson52f5db22017-01-01 13:10:52 -080011886void http_set_status(unsigned int status, const char *reason, struct stream *s)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011887{
11888 struct http_txn *txn = s->txn;
11889 char *cur_ptr, *cur_end;
11890 int delta;
11891 char *res;
11892 int c_l;
Robin H. Johnson52f5db22017-01-01 13:10:52 -080011893 const char *msg = reason;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011894 int msg_len;
11895
11896 chunk_reset(&trash);
11897
11898 res = ultoa_o(status, trash.str, trash.size);
11899 c_l = res - trash.str;
11900
11901 trash.str[c_l] = ' ';
11902 trash.len = c_l + 1;
11903
Robin H. Johnson52f5db22017-01-01 13:10:52 -080011904 /* Do we have a custom reason format string? */
11905 if (msg == NULL)
11906 msg = get_reason(status);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011907 msg_len = strlen(msg);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011908 strncpy(&trash.str[trash.len], msg, trash.size - trash.len);
11909 trash.len += msg_len;
11910
11911 cur_ptr = s->res.buf->p + txn->rsp.sl.st.c;
11912 cur_end = s->res.buf->p + txn->rsp.sl.st.r + txn->rsp.sl.st.r_l;
11913
11914 /* commit changes and adjust message */
11915 delta = buffer_replace2(s->res.buf, cur_ptr, cur_end, trash.str, trash.len);
11916
11917 /* adjust res line offsets and lengths */
11918 txn->rsp.sl.st.r += c_l - txn->rsp.sl.st.c_l;
11919 txn->rsp.sl.st.c_l = c_l;
11920 txn->rsp.sl.st.r_l = msg_len;
11921
11922 delta = trash.len - (cur_end - cur_ptr);
11923 txn->rsp.sl.st.l += delta;
11924 txn->hdr_idx.v[0].len += delta;
11925 http_msg_move_end(&txn->rsp, delta);
11926}
11927
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011928/* This function executes one of the set-{method,path,query,uri} actions. It
11929 * builds a string in the trash from the specified format string. It finds
Thierry FOURNIER3f4bc652015-08-26 16:23:34 +020011930 * the action to be performed in <http.action>, previously filled by function
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011931 * parse_set_req_line(). The replacement action is excuted by the function
Thierry FOURNIER3f4bc652015-08-26 16:23:34 +020011932 * http_action_set_req_line(). It always returns ACT_RET_CONT. If an error
11933 * occurs the action is canceled, but the rule processing continue.
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011934 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020011935enum act_return http_action_set_req_line(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020011936 struct session *sess, struct stream *s, int flags)
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011937{
Dragan Dosen2ae327e2017-10-26 11:25:10 +020011938 struct chunk *replace;
11939 enum act_return ret = ACT_RET_ERR;
11940
11941 replace = alloc_trash_chunk();
11942 if (!replace)
11943 goto leave;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011944
11945 /* If we have to create a query string, prepare a '?'. */
Thierry FOURNIER8855a922015-07-31 08:54:25 +020011946 if (rule->arg.http.action == 2)
Dragan Dosen2ae327e2017-10-26 11:25:10 +020011947 replace->str[replace->len++] = '?';
11948 replace->len += build_logline(s, replace->str + replace->len, replace->size - replace->len,
11949 &rule->arg.http.logfmt);
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010011950
Dragan Dosen2ae327e2017-10-26 11:25:10 +020011951 http_replace_req_line(rule->arg.http.action, replace->str, replace->len, px, s);
11952
11953 ret = ACT_RET_CONT;
11954
11955leave:
11956 free_trash_chunk(replace);
11957 return ret;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011958}
11959
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011960/* This function is just a compliant action wrapper for "set-status". */
11961enum act_return action_http_set_status(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020011962 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011963{
Robin H. Johnson52f5db22017-01-01 13:10:52 -080011964 http_set_status(rule->arg.status.code, rule->arg.status.reason, s);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020011965 return ACT_RET_CONT;
11966}
11967
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011968/* parse an http-request action among :
11969 * set-method
11970 * set-path
11971 * set-query
11972 * set-uri
11973 *
11974 * All of them accept a single argument of type string representing a log-format.
11975 * The resulting rule makes use of arg->act.p[0..1] to store the log-format list
11976 * head, and p[2] to store the action as an int (0=method, 1=path, 2=query, 3=uri).
Thierry FOURNIERafa80492015-08-19 09:04:15 +020011977 * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error.
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011978 */
Thierry FOURNIERafa80492015-08-19 09:04:15 +020011979enum act_parse_ret parse_set_req_line(const char **args, int *orig_arg, struct proxy *px,
11980 struct act_rule *rule, char **err)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011981{
11982 int cur_arg = *orig_arg;
11983
Thierry FOURNIER42148732015-09-02 17:17:33 +020011984 rule->action = ACT_CUSTOM;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011985
11986 switch (args[0][4]) {
11987 case 'm' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020011988 rule->arg.http.action = 0;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011989 rule->action_ptr = http_action_set_req_line;
11990 break;
11991 case 'p' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020011992 rule->arg.http.action = 1;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011993 rule->action_ptr = http_action_set_req_line;
11994 break;
11995 case 'q' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020011996 rule->arg.http.action = 2;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010011997 rule->action_ptr = http_action_set_req_line;
11998 break;
11999 case 'u' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012000 rule->arg.http.action = 3;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012001 rule->action_ptr = http_action_set_req_line;
12002 break;
12003 default:
12004 memprintf(err, "internal error: unhandled action '%s'", args[0]);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012005 return ACT_RET_PRS_ERR;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012006 }
12007
12008 if (!*args[cur_arg] ||
12009 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
12010 memprintf(err, "expects exactly 1 argument <format>");
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012011 return ACT_RET_PRS_ERR;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012012 }
12013
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012014 LIST_INIT(&rule->arg.http.logfmt);
Olivier Houchardfbc74e82017-11-24 16:54:05 +010012015 px->conf.args.ctx = ARGC_HRQ;
12016 if (!parse_logformat_string(args[cur_arg], px, &rule->arg.http.logfmt, LOG_OPT_HTTP,
12017 (px->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, err)) {
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +010012018 return ACT_RET_PRS_ERR;
12019 }
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012020
12021 (*orig_arg)++;
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012022 return ACT_RET_PRS_OK;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012023}
12024
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012025/* parse set-status action:
12026 * This action accepts a single argument of type int representing
12027 * an http status code. It returns ACT_RET_PRS_OK on success,
12028 * ACT_RET_PRS_ERR on error.
12029 */
12030enum act_parse_ret parse_http_set_status(const char **args, int *orig_arg, struct proxy *px,
12031 struct act_rule *rule, char **err)
12032{
12033 char *error;
12034
Thierry FOURNIER42148732015-09-02 17:17:33 +020012035 rule->action = ACT_CUSTOM;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012036 rule->action_ptr = action_http_set_status;
12037
12038 /* Check if an argument is available */
12039 if (!*args[*orig_arg]) {
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012040 memprintf(err, "expects 1 argument: <status>; or 3 arguments: <status> reason <fmt>");
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012041 return ACT_RET_PRS_ERR;
12042 }
12043
12044 /* convert status code as integer */
12045 rule->arg.status.code = strtol(args[*orig_arg], &error, 10);
12046 if (*error != '\0' || rule->arg.status.code < 100 || rule->arg.status.code > 999) {
12047 memprintf(err, "expects an integer status code between 100 and 999");
12048 return ACT_RET_PRS_ERR;
12049 }
12050
12051 (*orig_arg)++;
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012052
12053 /* set custom reason string */
12054 rule->arg.status.reason = NULL; // If null, we use the default reason for the status code.
12055 if (*args[*orig_arg] && strcmp(args[*orig_arg], "reason") == 0 &&
12056 (*args[*orig_arg + 1] && strcmp(args[*orig_arg + 1], "if") != 0 && strcmp(args[*orig_arg + 1], "unless") != 0)) {
12057 (*orig_arg)++;
12058 rule->arg.status.reason = strdup(args[*orig_arg]);
12059 (*orig_arg)++;
12060 }
12061
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012062 return ACT_RET_PRS_OK;
12063}
12064
Willy Tarreau53275e82017-11-24 07:52:01 +010012065/* This function executes the "reject" HTTP action. It clears the request and
12066 * response buffer without sending any response. It can be useful as an HTTP
12067 * alternative to the silent-drop action to defend against DoS attacks, and may
12068 * also be used with HTTP/2 to close a connection instead of just a stream.
12069 * The txn status is unchanged, indicating no response was sent. The termination
12070 * flags will indicate "PR". It always returns ACT_RET_STOP.
12071 */
12072enum act_return http_action_reject(struct act_rule *rule, struct proxy *px,
12073 struct session *sess, struct stream *s, int flags)
12074{
12075 channel_abort(&s->req);
12076 channel_abort(&s->res);
12077 s->req.analysers = 0;
12078 s->res.analysers = 0;
12079
12080 HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
12081 HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
12082 if (sess->listener && sess->listener->counters)
12083 HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
12084
12085 if (!(s->flags & SF_ERR_MASK))
12086 s->flags |= SF_ERR_PRXCOND;
12087 if (!(s->flags & SF_FINST_MASK))
12088 s->flags |= SF_FINST_R;
12089
12090 return ACT_RET_CONT;
12091}
12092
12093/* parse the "reject" action:
12094 * This action takes no argument and returns ACT_RET_PRS_OK on success,
12095 * ACT_RET_PRS_ERR on error.
12096 */
12097enum act_parse_ret parse_http_action_reject(const char **args, int *orig_arg, struct proxy *px,
12098 struct act_rule *rule, char **err)
12099{
12100 rule->action = ACT_CUSTOM;
12101 rule->action_ptr = http_action_reject;
12102 return ACT_RET_PRS_OK;
12103}
12104
Willy Tarreaua9083d02015-05-08 15:27:59 +020012105/* This function executes the "capture" action. It executes a fetch expression,
12106 * turns the result into a string and puts it in a capture slot. It always
12107 * returns 1. If an error occurs the action is cancelled, but the rule
12108 * processing continues.
12109 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012110enum act_return http_action_req_capture(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012111 struct session *sess, struct stream *s, int flags)
Willy Tarreaua9083d02015-05-08 15:27:59 +020012112{
Willy Tarreaua9083d02015-05-08 15:27:59 +020012113 struct sample *key;
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012114 struct cap_hdr *h = rule->arg.cap.hdr;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012115 char **cap = s->req_cap;
12116 int len;
12117
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012118 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.cap.expr, SMP_T_STR);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012119 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012120 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012121
12122 if (cap[h->index] == NULL)
Willy Tarreaubafbe012017-11-24 17:34:44 +010012123 cap[h->index] = pool_alloc(h->pool);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012124
12125 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012126 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012127
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012128 len = key->data.u.str.len;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012129 if (len > h->len)
12130 len = h->len;
12131
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012132 memcpy(cap[h->index], key->data.u.str.str, len);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012133 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012134 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012135}
12136
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012137/* This function executes the "capture" action and store the result in a
12138 * capture slot if exists. It executes a fetch expression, turns the result
12139 * into a string and puts it in a capture slot. It always returns 1. If an
12140 * error occurs the action is cancelled, but the rule processing continues.
12141 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012142enum act_return http_action_req_capture_by_id(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012143 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012144{
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012145 struct sample *key;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012146 struct cap_hdr *h;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012147 char **cap = s->req_cap;
12148 struct proxy *fe = strm_fe(s);
12149 int len;
12150 int i;
12151
12152 /* Look for the original configuration. */
12153 for (h = fe->req_cap, i = fe->nb_req_cap - 1;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012154 h != NULL && i != rule->arg.capid.idx ;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012155 i--, h = h->next);
12156 if (!h)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012157 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012158
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012159 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012160 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012161 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012162
12163 if (cap[h->index] == NULL)
Willy Tarreaubafbe012017-11-24 17:34:44 +010012164 cap[h->index] = pool_alloc(h->pool);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012165
12166 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012167 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012168
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012169 len = key->data.u.str.len;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012170 if (len > h->len)
12171 len = h->len;
12172
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012173 memcpy(cap[h->index], key->data.u.str.str, len);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012174 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012175 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012176}
12177
Christopher Faulet29730ba2017-09-18 15:26:32 +020012178/* Check an "http-request capture" action.
12179 *
12180 * The function returns 1 in success case, otherwise, it returns 0 and err is
12181 * filled.
12182 */
12183int check_http_req_capture(struct act_rule *rule, struct proxy *px, char **err)
12184{
Christopher Fauletfd608dd2017-12-04 09:45:15 +010012185 if (rule->action_ptr != http_action_req_capture_by_id)
12186 return 1;
12187
Christopher Faulet29730ba2017-09-18 15:26:32 +020012188 if (rule->arg.capid.idx >= px->nb_req_cap) {
12189 memprintf(err, "unable to find capture id '%d' referenced by http-request capture rule",
12190 rule->arg.capid.idx);
12191 return 0;
12192 }
12193
12194 return 1;
12195}
12196
Willy Tarreaua9083d02015-05-08 15:27:59 +020012197/* parse an "http-request capture" action. It takes a single argument which is
12198 * a sample fetch expression. It stores the expression into arg->act.p[0] and
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012199 * the allocated hdr_cap struct or the preallocated "id" into arg->act.p[1].
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012200 * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error.
Willy Tarreaua9083d02015-05-08 15:27:59 +020012201 */
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012202enum act_parse_ret parse_http_req_capture(const char **args, int *orig_arg, struct proxy *px,
12203 struct act_rule *rule, char **err)
Willy Tarreaua9083d02015-05-08 15:27:59 +020012204{
12205 struct sample_expr *expr;
12206 struct cap_hdr *hdr;
12207 int cur_arg;
Willy Tarreau3986ac12015-05-08 16:13:42 +020012208 int len = 0;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012209
12210 for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++)
12211 if (strcmp(args[cur_arg], "if") == 0 ||
12212 strcmp(args[cur_arg], "unless") == 0)
12213 break;
12214
12215 if (cur_arg < *orig_arg + 3) {
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012216 memprintf(err, "expects <expression> [ 'len' <length> | id <idx> ]");
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012217 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012218 }
12219
Willy Tarreaua9083d02015-05-08 15:27:59 +020012220 cur_arg = *orig_arg;
12221 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
12222 if (!expr)
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012223 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012224
12225 if (!(expr->fetch->val & SMP_VAL_FE_HRQ_HDR)) {
12226 memprintf(err,
12227 "fetch method '%s' extracts information from '%s', none of which is available here",
12228 args[cur_arg-1], sample_src_names(expr->fetch->use));
12229 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012230 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012231 }
12232
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012233 if (!args[cur_arg] || !*args[cur_arg]) {
12234 memprintf(err, "expects 'len or 'id'");
12235 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012236 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012237 }
12238
Willy Tarreaua9083d02015-05-08 15:27:59 +020012239 if (strcmp(args[cur_arg], "len") == 0) {
12240 cur_arg++;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012241
12242 if (!(px->cap & PR_CAP_FE)) {
12243 memprintf(err, "proxy '%s' has no frontend capability", px->id);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012244 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012245 }
12246
Olivier Houchardfbc74e82017-11-24 16:54:05 +010012247 px->conf.args.ctx = ARGC_CAP;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012248
Willy Tarreaua9083d02015-05-08 15:27:59 +020012249 if (!args[cur_arg]) {
12250 memprintf(err, "missing length value");
12251 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012252 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012253 }
12254 /* we copy the table name for now, it will be resolved later */
12255 len = atoi(args[cur_arg]);
12256 if (len <= 0) {
12257 memprintf(err, "length must be > 0");
12258 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012259 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012260 }
12261 cur_arg++;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012262
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012263 if (!len) {
12264 memprintf(err, "a positive 'len' argument is mandatory");
12265 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012266 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012267 }
12268
Vincent Bernat02779b62016-04-03 13:48:43 +020012269 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012270 hdr->next = px->req_cap;
12271 hdr->name = NULL; /* not a header capture */
12272 hdr->namelen = 0;
12273 hdr->len = len;
12274 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
12275 hdr->index = px->nb_req_cap++;
12276
12277 px->req_cap = hdr;
12278 px->to_log |= LW_REQHDR;
12279
Thierry FOURNIER42148732015-09-02 17:17:33 +020012280 rule->action = ACT_CUSTOM;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012281 rule->action_ptr = http_action_req_capture;
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012282 rule->arg.cap.expr = expr;
12283 rule->arg.cap.hdr = hdr;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012284 }
12285
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012286 else if (strcmp(args[cur_arg], "id") == 0) {
12287 int id;
12288 char *error;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012289
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012290 cur_arg++;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012291
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012292 if (!args[cur_arg]) {
12293 memprintf(err, "missing id value");
12294 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012295 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012296 }
Willy Tarreaua9083d02015-05-08 15:27:59 +020012297
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012298 id = strtol(args[cur_arg], &error, 10);
12299 if (*error != '\0') {
12300 memprintf(err, "cannot parse id '%s'", args[cur_arg]);
12301 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012302 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012303 }
12304 cur_arg++;
12305
Olivier Houchardfbc74e82017-11-24 16:54:05 +010012306 px->conf.args.ctx = ARGC_CAP;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012307
Thierry FOURNIER42148732015-09-02 17:17:33 +020012308 rule->action = ACT_CUSTOM;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012309 rule->action_ptr = http_action_req_capture_by_id;
Christopher Faulet29730ba2017-09-18 15:26:32 +020012310 rule->check_ptr = check_http_req_capture;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012311 rule->arg.capid.expr = expr;
12312 rule->arg.capid.idx = id;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012313 }
12314
12315 else {
12316 memprintf(err, "expects 'len' or 'id', found '%s'", args[cur_arg]);
12317 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012318 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012319 }
Willy Tarreaua9083d02015-05-08 15:27:59 +020012320
12321 *orig_arg = cur_arg;
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012322 return ACT_RET_PRS_OK;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012323}
12324
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012325/* This function executes the "capture" action and store the result in a
12326 * capture slot if exists. It executes a fetch expression, turns the result
12327 * into a string and puts it in a capture slot. It always returns 1. If an
12328 * error occurs the action is cancelled, but the rule processing continues.
12329 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012330enum act_return http_action_res_capture_by_id(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012331 struct session *sess, struct stream *s, int flags)
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012332{
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012333 struct sample *key;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012334 struct cap_hdr *h;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012335 char **cap = s->res_cap;
12336 struct proxy *fe = strm_fe(s);
12337 int len;
12338 int i;
12339
12340 /* Look for the original configuration. */
12341 for (h = fe->rsp_cap, i = fe->nb_rsp_cap - 1;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012342 h != NULL && i != rule->arg.capid.idx ;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012343 i--, h = h->next);
12344 if (!h)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012345 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012346
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012347 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012348 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012349 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012350
12351 if (cap[h->index] == NULL)
Willy Tarreaubafbe012017-11-24 17:34:44 +010012352 cap[h->index] = pool_alloc(h->pool);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012353
12354 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012355 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012356
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012357 len = key->data.u.str.len;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012358 if (len > h->len)
12359 len = h->len;
12360
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012361 memcpy(cap[h->index], key->data.u.str.str, len);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012362 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012363 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012364}
12365
Christopher Faulet29730ba2017-09-18 15:26:32 +020012366/* Check an "http-response capture" action.
12367 *
12368 * The function returns 1 in success case, otherwise, it returns 0 and err is
12369 * filled.
12370 */
12371int check_http_res_capture(struct act_rule *rule, struct proxy *px, char **err)
12372{
Christopher Fauletfd608dd2017-12-04 09:45:15 +010012373 if (rule->action_ptr != http_action_res_capture_by_id)
12374 return 1;
12375
Christopher Faulet29730ba2017-09-18 15:26:32 +020012376 if (rule->arg.capid.idx >= px->nb_rsp_cap) {
12377 memprintf(err, "unable to find capture id '%d' referenced by http-response capture rule",
12378 rule->arg.capid.idx);
12379 return 0;
12380 }
12381
12382 return 1;
12383}
12384
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012385/* parse an "http-response capture" action. It takes a single argument which is
12386 * a sample fetch expression. It stores the expression into arg->act.p[0] and
12387 * the allocated hdr_cap struct od the preallocated id into arg->act.p[1].
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012388 * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error.
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012389 */
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012390enum act_parse_ret parse_http_res_capture(const char **args, int *orig_arg, struct proxy *px,
12391 struct act_rule *rule, char **err)
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012392{
12393 struct sample_expr *expr;
12394 int cur_arg;
12395 int id;
12396 char *error;
12397
12398 for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++)
12399 if (strcmp(args[cur_arg], "if") == 0 ||
12400 strcmp(args[cur_arg], "unless") == 0)
12401 break;
12402
12403 if (cur_arg < *orig_arg + 3) {
Willy Tarreau29bdb1c2016-06-24 15:36:34 +020012404 memprintf(err, "expects <expression> id <idx>");
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012405 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012406 }
12407
12408 cur_arg = *orig_arg;
12409 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
12410 if (!expr)
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012411 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012412
12413 if (!(expr->fetch->val & SMP_VAL_FE_HRS_HDR)) {
12414 memprintf(err,
12415 "fetch method '%s' extracts information from '%s', none of which is available here",
12416 args[cur_arg-1], sample_src_names(expr->fetch->use));
12417 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012418 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012419 }
12420
12421 if (!args[cur_arg] || !*args[cur_arg]) {
Willy Tarreau29bdb1c2016-06-24 15:36:34 +020012422 memprintf(err, "expects 'id'");
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012423 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012424 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012425 }
12426
12427 if (strcmp(args[cur_arg], "id") != 0) {
12428 memprintf(err, "expects 'id', found '%s'", args[cur_arg]);
12429 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012430 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012431 }
12432
12433 cur_arg++;
12434
12435 if (!args[cur_arg]) {
12436 memprintf(err, "missing id value");
12437 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012438 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012439 }
12440
12441 id = strtol(args[cur_arg], &error, 10);
12442 if (*error != '\0') {
12443 memprintf(err, "cannot parse id '%s'", args[cur_arg]);
12444 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012445 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012446 }
12447 cur_arg++;
12448
Olivier Houchardfbc74e82017-11-24 16:54:05 +010012449 px->conf.args.ctx = ARGC_CAP;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012450
Thierry FOURNIER42148732015-09-02 17:17:33 +020012451 rule->action = ACT_CUSTOM;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012452 rule->action_ptr = http_action_res_capture_by_id;
Christopher Faulet29730ba2017-09-18 15:26:32 +020012453 rule->check_ptr = check_http_res_capture;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012454 rule->arg.capid.expr = expr;
12455 rule->arg.capid.idx = id;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012456
12457 *orig_arg = cur_arg;
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012458 return ACT_RET_PRS_OK;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012459}
12460
William Lallemand73025dd2014-04-24 14:38:37 +020012461/*
12462 * Return the struct http_req_action_kw associated to a keyword.
12463 */
Thierry FOURNIER36481b82015-08-19 09:01:53 +020012464struct action_kw *action_http_req_custom(const char *kw)
William Lallemand73025dd2014-04-24 14:38:37 +020012465{
Thierry FOURNIER322a1242015-08-19 09:07:47 +020012466 return action_lookup(&http_req_keywords.list, kw);
William Lallemand73025dd2014-04-24 14:38:37 +020012467}
12468
12469/*
12470 * Return the struct http_res_action_kw associated to a keyword.
12471 */
Thierry FOURNIER36481b82015-08-19 09:01:53 +020012472struct action_kw *action_http_res_custom(const char *kw)
William Lallemand73025dd2014-04-24 14:38:37 +020012473{
Thierry FOURNIER322a1242015-08-19 09:07:47 +020012474 return action_lookup(&http_res_keywords.list, kw);
William Lallemand73025dd2014-04-24 14:38:37 +020012475}
12476
Willy Tarreau12207b32016-11-22 19:48:51 +010012477
12478/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
12479 * now.
12480 */
12481static int cli_parse_show_errors(char **args, struct appctx *appctx, void *private)
12482{
12483 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
12484 return 1;
12485
Willy Tarreau234ba2d2016-11-25 08:39:10 +010012486 if (*args[2]) {
12487 struct proxy *px;
12488
12489 px = proxy_find_by_name(args[2], 0, 0);
12490 if (px)
12491 appctx->ctx.errors.iid = px->uuid;
12492 else
12493 appctx->ctx.errors.iid = atoi(args[2]);
12494
12495 if (!appctx->ctx.errors.iid) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +020012496 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau234ba2d2016-11-25 08:39:10 +010012497 appctx->ctx.cli.msg = "No such proxy.\n";
12498 appctx->st0 = CLI_ST_PRINT;
12499 return 1;
12500 }
12501 }
Willy Tarreau12207b32016-11-22 19:48:51 +010012502 else
Willy Tarreau234ba2d2016-11-25 08:39:10 +010012503 appctx->ctx.errors.iid = -1; // dump all proxies
12504
Willy Tarreau35069f82016-11-25 09:16:37 +010012505 appctx->ctx.errors.flag = 0;
12506 if (strcmp(args[3], "request") == 0)
12507 appctx->ctx.errors.flag |= 4; // ignore response
12508 else if (strcmp(args[3], "response") == 0)
12509 appctx->ctx.errors.flag |= 2; // ignore request
Willy Tarreau12207b32016-11-22 19:48:51 +010012510 appctx->ctx.errors.px = NULL;
Willy Tarreau12207b32016-11-22 19:48:51 +010012511 return 0;
12512}
12513
12514/* This function dumps all captured errors onto the stream interface's
12515 * read buffer. It returns 0 if the output buffer is full and it needs
12516 * to be called again, otherwise non-zero.
12517 */
12518static int cli_io_handler_show_errors(struct appctx *appctx)
12519{
12520 struct stream_interface *si = appctx->owner;
12521 extern const char *monthname[12];
12522
12523 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
12524 return 1;
12525
12526 chunk_reset(&trash);
12527
12528 if (!appctx->ctx.errors.px) {
12529 /* the function had not been called yet, let's prepare the
12530 * buffer for a response.
12531 */
12532 struct tm tm;
12533
12534 get_localtime(date.tv_sec, &tm);
12535 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
12536 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
12537 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
12538 error_snapshot_id);
12539
Willy Tarreau06d80a92017-10-19 14:32:15 +020012540 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau12207b32016-11-22 19:48:51 +010012541 /* Socket buffer full. Let's try again later from the same point */
12542 si_applet_cant_put(si);
12543 return 0;
12544 }
12545
Olivier Houchardfbc74e82017-11-24 16:54:05 +010012546 appctx->ctx.errors.px = proxies_list;
Willy Tarreau12207b32016-11-22 19:48:51 +010012547 appctx->ctx.errors.bol = 0;
12548 appctx->ctx.errors.ptr = -1;
12549 }
12550
12551 /* we have two inner loops here, one for the proxy, the other one for
12552 * the buffer.
12553 */
12554 while (appctx->ctx.errors.px) {
12555 struct error_snapshot *es;
12556
Willy Tarreau35069f82016-11-25 09:16:37 +010012557 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreau12207b32016-11-22 19:48:51 +010012558 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau35069f82016-11-25 09:16:37 +010012559 if (appctx->ctx.errors.flag & 2) // skip req
12560 goto next;
12561 }
12562 else {
Willy Tarreau12207b32016-11-22 19:48:51 +010012563 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau35069f82016-11-25 09:16:37 +010012564 if (appctx->ctx.errors.flag & 4) // skip resp
12565 goto next;
12566 }
Willy Tarreau12207b32016-11-22 19:48:51 +010012567
12568 if (!es->when.tv_sec)
12569 goto next;
12570
12571 if (appctx->ctx.errors.iid >= 0 &&
12572 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
12573 es->oe->uuid != appctx->ctx.errors.iid)
12574 goto next;
12575
12576 if (appctx->ctx.errors.ptr < 0) {
12577 /* just print headers now */
12578
12579 char pn[INET6_ADDRSTRLEN];
12580 struct tm tm;
12581 int port;
12582
12583 get_localtime(es->when.tv_sec, &tm);
12584 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
12585 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
12586 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
12587
12588 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
12589 case AF_INET:
12590 case AF_INET6:
12591 port = get_host_port(&es->src);
12592 break;
12593 default:
12594 port = 0;
12595 }
12596
Willy Tarreau35069f82016-11-25 09:16:37 +010012597 switch (appctx->ctx.errors.flag & 1) {
Willy Tarreau12207b32016-11-22 19:48:51 +010012598 case 0:
12599 chunk_appendf(&trash,
12600 " frontend %s (#%d): invalid request\n"
12601 " backend %s (#%d)",
12602 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
12603 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
12604 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
12605 break;
12606 case 1:
12607 chunk_appendf(&trash,
12608 " backend %s (#%d): invalid response\n"
12609 " frontend %s (#%d)",
12610 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
12611 es->oe->id, es->oe->uuid);
12612 break;
12613 }
12614
12615 chunk_appendf(&trash,
12616 ", server %s (#%d), event #%u\n"
12617 " src %s:%d, session #%d, session flags 0x%08x\n"
Willy Tarreau10e61cb2017-01-04 14:51:22 +010012618 " HTTP msg state %s(%d), msg flags 0x%08x, tx flags 0x%08x\n"
Willy Tarreau12207b32016-11-22 19:48:51 +010012619 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
12620 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
12621 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
12622 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
12623 es->ev_id,
12624 pn, port, es->sid, es->s_flags,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +020012625 h1_msg_state_str(es->state), es->state, es->m_flags, es->t_flags,
Willy Tarreau12207b32016-11-22 19:48:51 +010012626 es->m_clen, es->m_blen,
12627 es->b_flags, es->b_out, es->b_tot,
12628 es->len, es->b_wrap, es->pos);
12629
Willy Tarreau06d80a92017-10-19 14:32:15 +020012630 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau12207b32016-11-22 19:48:51 +010012631 /* Socket buffer full. Let's try again later from the same point */
12632 si_applet_cant_put(si);
12633 return 0;
12634 }
12635 appctx->ctx.errors.ptr = 0;
12636 appctx->ctx.errors.sid = es->sid;
12637 }
12638
12639 if (appctx->ctx.errors.sid != es->sid) {
12640 /* the snapshot changed while we were dumping it */
12641 chunk_appendf(&trash,
12642 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +020012643 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau12207b32016-11-22 19:48:51 +010012644 si_applet_cant_put(si);
12645 return 0;
12646 }
12647 goto next;
12648 }
12649
12650 /* OK, ptr >= 0, so we have to dump the current line */
12651 while (es->buf && appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < global.tune.bufsize) {
12652 int newptr;
12653 int newline;
12654
12655 newline = appctx->ctx.errors.bol;
12656 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->len, &newline, appctx->ctx.errors.ptr);
12657 if (newptr == appctx->ctx.errors.ptr)
12658 return 0;
12659
Willy Tarreau06d80a92017-10-19 14:32:15 +020012660 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau12207b32016-11-22 19:48:51 +010012661 /* Socket buffer full. Let's try again later from the same point */
12662 si_applet_cant_put(si);
12663 return 0;
12664 }
12665 appctx->ctx.errors.ptr = newptr;
12666 appctx->ctx.errors.bol = newline;
12667 };
12668 next:
12669 appctx->ctx.errors.bol = 0;
12670 appctx->ctx.errors.ptr = -1;
Willy Tarreau35069f82016-11-25 09:16:37 +010012671 appctx->ctx.errors.flag ^= 1;
12672 if (!(appctx->ctx.errors.flag & 1))
Willy Tarreau12207b32016-11-22 19:48:51 +010012673 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau12207b32016-11-22 19:48:51 +010012674 }
12675
12676 /* dump complete */
12677 return 1;
12678}
12679
12680/* register cli keywords */
12681static struct cli_kw_list cli_kws = {{ },{
12682 { { "show", "errors", NULL },
12683 "show errors : report last request and response errors for each proxy",
12684 cli_parse_show_errors, cli_io_handler_show_errors, NULL,
12685 },
12686 {{},}
12687}};
12688
Willy Tarreau4a568972010-05-12 08:08:50 +020012689/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012690/* All supported ACL keywords must be declared here. */
12691/************************************************************************/
12692
12693/* Note: must not be declared <const> as its list will be overwritten.
12694 * Please take care of keeping this list alphabetically sorted.
12695 */
Willy Tarreaudc13c112013-06-21 23:16:39 +020012696static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012697 { "base", "base", PAT_MATCH_STR },
12698 { "base_beg", "base", PAT_MATCH_BEG },
12699 { "base_dir", "base", PAT_MATCH_DIR },
12700 { "base_dom", "base", PAT_MATCH_DOM },
12701 { "base_end", "base", PAT_MATCH_END },
12702 { "base_len", "base", PAT_MATCH_LEN },
12703 { "base_reg", "base", PAT_MATCH_REG },
12704 { "base_sub", "base", PAT_MATCH_SUB },
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020012705
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012706 { "cook", "req.cook", PAT_MATCH_STR },
12707 { "cook_beg", "req.cook", PAT_MATCH_BEG },
12708 { "cook_dir", "req.cook", PAT_MATCH_DIR },
12709 { "cook_dom", "req.cook", PAT_MATCH_DOM },
12710 { "cook_end", "req.cook", PAT_MATCH_END },
12711 { "cook_len", "req.cook", PAT_MATCH_LEN },
12712 { "cook_reg", "req.cook", PAT_MATCH_REG },
12713 { "cook_sub", "req.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012714
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012715 { "hdr", "req.hdr", PAT_MATCH_STR },
12716 { "hdr_beg", "req.hdr", PAT_MATCH_BEG },
12717 { "hdr_dir", "req.hdr", PAT_MATCH_DIR },
12718 { "hdr_dom", "req.hdr", PAT_MATCH_DOM },
12719 { "hdr_end", "req.hdr", PAT_MATCH_END },
12720 { "hdr_len", "req.hdr", PAT_MATCH_LEN },
12721 { "hdr_reg", "req.hdr", PAT_MATCH_REG },
12722 { "hdr_sub", "req.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012723
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012724 /* these two declarations uses strings with list storage (in place
12725 * of tree storage). The basic match is PAT_MATCH_STR, but the indexation
12726 * and delete functions are relative to the list management. The parse
12727 * and match method are related to the corresponding fetch methods. This
12728 * is very particular ACL declaration mode.
12729 */
12730 { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth },
12731 { "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 +020012732
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012733 { "path", "path", PAT_MATCH_STR },
12734 { "path_beg", "path", PAT_MATCH_BEG },
12735 { "path_dir", "path", PAT_MATCH_DIR },
12736 { "path_dom", "path", PAT_MATCH_DOM },
12737 { "path_end", "path", PAT_MATCH_END },
12738 { "path_len", "path", PAT_MATCH_LEN },
12739 { "path_reg", "path", PAT_MATCH_REG },
12740 { "path_sub", "path", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012741
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012742 { "req_ver", "req.ver", PAT_MATCH_STR },
12743 { "resp_ver", "res.ver", PAT_MATCH_STR },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012744
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012745 { "scook", "res.cook", PAT_MATCH_STR },
12746 { "scook_beg", "res.cook", PAT_MATCH_BEG },
12747 { "scook_dir", "res.cook", PAT_MATCH_DIR },
12748 { "scook_dom", "res.cook", PAT_MATCH_DOM },
12749 { "scook_end", "res.cook", PAT_MATCH_END },
12750 { "scook_len", "res.cook", PAT_MATCH_LEN },
12751 { "scook_reg", "res.cook", PAT_MATCH_REG },
12752 { "scook_sub", "res.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012753
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012754 { "shdr", "res.hdr", PAT_MATCH_STR },
12755 { "shdr_beg", "res.hdr", PAT_MATCH_BEG },
12756 { "shdr_dir", "res.hdr", PAT_MATCH_DIR },
12757 { "shdr_dom", "res.hdr", PAT_MATCH_DOM },
12758 { "shdr_end", "res.hdr", PAT_MATCH_END },
12759 { "shdr_len", "res.hdr", PAT_MATCH_LEN },
12760 { "shdr_reg", "res.hdr", PAT_MATCH_REG },
12761 { "shdr_sub", "res.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012762
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012763 { "url", "url", PAT_MATCH_STR },
12764 { "url_beg", "url", PAT_MATCH_BEG },
12765 { "url_dir", "url", PAT_MATCH_DIR },
12766 { "url_dom", "url", PAT_MATCH_DOM },
12767 { "url_end", "url", PAT_MATCH_END },
12768 { "url_len", "url", PAT_MATCH_LEN },
12769 { "url_reg", "url", PAT_MATCH_REG },
12770 { "url_sub", "url", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012771
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010012772 { "urlp", "urlp", PAT_MATCH_STR },
12773 { "urlp_beg", "urlp", PAT_MATCH_BEG },
12774 { "urlp_dir", "urlp", PAT_MATCH_DIR },
12775 { "urlp_dom", "urlp", PAT_MATCH_DOM },
12776 { "urlp_end", "urlp", PAT_MATCH_END },
12777 { "urlp_len", "urlp", PAT_MATCH_LEN },
12778 { "urlp_reg", "urlp", PAT_MATCH_REG },
12779 { "urlp_sub", "urlp", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012780
Willy Tarreau8ed669b2013-01-11 15:49:37 +010012781 { /* END */ },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020012782}};
12783
12784/************************************************************************/
12785/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +020012786/************************************************************************/
12787/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +020012788static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012789 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012790 { "base32", smp_fetch_base32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012791 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
12792
Willy Tarreau87b09662015-04-03 00:22:06 +020012793 /* capture are allocated and are permanent in the stream */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012794 { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020012795
12796 /* retrieve these captures from the HTTP logs */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012797 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
12798 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
12799 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020012800
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012801 { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
12802 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
William Lallemanda43ba4e2014-01-28 18:14:25 +010012803
Willy Tarreau409bcde2013-01-08 00:31:00 +010012804 /* cookie is valid in both directions (eg: for "stick ...") but cook*
12805 * are only here to match the ACL's name, are request-only and are used
12806 * for ACL compatibility only.
12807 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012808 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
12809 { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012810 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
12811 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012812
12813 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
12814 * only here to match the ACL's name, are request-only and are used for
12815 * ACL compatibility only.
12816 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012817 { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012818 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012819 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012820 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012821
Willy Tarreau0a0daec2013-04-02 22:44:58 +020012822 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012823 { "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 +010012824 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Thierry FOURNIERd4373142013-12-17 01:10:10 +010012825 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012826 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau49ad95c2015-01-19 15:06:26 +010012827 { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012828
12829 /* HTTP protocol on the request path */
12830 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012831 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012832
12833 /* HTTP version on the request path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012834 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
12835 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012836
Willy Tarreaua5910cc2015-05-02 00:46:08 +020012837 { "req.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012838 { "req.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
12839 { "req.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020012840 { "req.body_param", smp_fetch_body_param, ARG1(0,STR), NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreaua5910cc2015-05-02 00:46:08 +020012841
Thierry FOURNIERd7d88812017-04-19 15:15:14 +020012842 { "req.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Thierry FOURNIER5617dce2017-04-09 05:38:19 +020012843 { "req.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
12844
Willy Tarreau18ed2562013-01-14 15:56:36 +010012845 /* HTTP version on the response path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012846 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
12847 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012848
Willy Tarreau18ed2562013-01-14 15:56:36 +010012849 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012850 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012851 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
12852 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012853
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012854 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012855 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012856 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012857 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012858 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
Willy Tarreaueb27ec72015-02-20 13:55:29 +010012859 { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012860 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012861
12862 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012863 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012864 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
12865 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012866
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012867 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012868 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012869 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012870 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012871 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
Willy Tarreaueb27ec72015-02-20 13:55:29 +010012872 { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012873 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010012874
Willy Tarreau409bcde2013-01-08 00:31:00 +010012875 /* scook is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012876 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012877 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
12878 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012879 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
Willy Tarreau409bcde2013-01-08 00:31:00 +010012880
12881 /* shdr is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012882 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012883 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012884 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012885 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012886
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012887 { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP },
Thierry Fournier0e00dca2016-04-07 15:47:40 +020012888 { "unique-id", smp_fetch_uniqueid, 0, NULL, SMP_T_STR, SMP_SRC_L4SRV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010012889 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012890 { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012891 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012892 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012893 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau1ede1da2015-05-07 16:06:18 +020012894 { "url_param", smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
12895 { "urlp" , smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012896 { "urlp_val", smp_fetch_url_param_val, ARG2(0,STR,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010012897 { /* END */ },
Willy Tarreau4a568972010-05-12 08:08:50 +020012898}};
12899
Willy Tarreau8797c062007-05-07 00:55:35 +020012900
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012901/************************************************************************/
12902/* All supported converter keywords must be declared here. */
12903/************************************************************************/
Willy Tarreau276fae92013-07-25 14:36:01 +020012904/* Note: must not be declared <const> as its list will be overwritten */
12905static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020012906 { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_T_STR},
Thierry FOURNIERad903512014-04-11 17:51:01 +020012907 { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR},
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012908 { "capture-req", smp_conv_req_capture, ARG1(1,SINT), NULL, SMP_T_STR, SMP_T_STR},
12909 { "capture-res", smp_conv_res_capture, ARG1(1,SINT), NULL, SMP_T_STR, SMP_T_STR},
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012910 { "url_dec", sample_conv_url_dec, 0, NULL, SMP_T_STR, SMP_T_STR},
Willy Tarreau276fae92013-07-25 14:36:01 +020012911 { NULL, NULL, 0, 0, 0 },
12912}};
12913
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012914
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012915/************************************************************************/
12916/* All supported http-request action keywords must be declared here. */
12917/************************************************************************/
Thierry FOURNIER36481b82015-08-19 09:01:53 +020012918struct action_kw_list http_req_actions = {
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012919 .kw = {
Willy Tarreaua9083d02015-05-08 15:27:59 +020012920 { "capture", parse_http_req_capture },
Willy Tarreau53275e82017-11-24 07:52:01 +010012921 { "reject", parse_http_action_reject },
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012922 { "set-method", parse_set_req_line },
12923 { "set-path", parse_set_req_line },
12924 { "set-query", parse_set_req_line },
12925 { "set-uri", parse_set_req_line },
Willy Tarreaucb703b02015-04-03 09:52:01 +020012926 { NULL, NULL }
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012927 }
12928};
12929
Thierry FOURNIER36481b82015-08-19 09:01:53 +020012930struct action_kw_list http_res_actions = {
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012931 .kw = {
12932 { "capture", parse_http_res_capture },
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012933 { "set-status", parse_http_set_status },
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012934 { NULL, NULL }
12935 }
12936};
12937
Willy Tarreau8797c062007-05-07 00:55:35 +020012938__attribute__((constructor))
12939static void __http_protocol_init(void)
12940{
12941 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +020012942 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau276fae92013-07-25 14:36:01 +020012943 sample_register_convs(&sample_conv_kws);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012944 http_req_keywords_register(&http_req_actions);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012945 http_res_keywords_register(&http_res_actions);
Willy Tarreau12207b32016-11-22 19:48:51 +010012946 cli_register_kw(&cli_kws);
Willy Tarreau8797c062007-05-07 00:55:35 +020012947}
12948
12949
Willy Tarreau58f10d72006-12-04 02:26:12 +010012950/*
Willy Tarreaubaaee002006-06-26 02:48:02 +020012951 * Local variables:
12952 * c-indent-level: 8
12953 * c-basic-offset: 8
12954 * End:
12955 */