Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTTP protocol analyzer |
| 3 | * |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 4 | * Copyright 2000-2011 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 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 Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 20 | #include <time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #include <sys/socket.h> |
| 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
| 25 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 26 | #include <common/appsession.h> |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 27 | #include <common/base64.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 28 | #include <common/compat.h> |
| 29 | #include <common/config.h> |
Willy Tarreau | a4cd1f5 | 2006-12-16 19:57:26 +0100 | [diff] [blame] | 30 | #include <common/debug.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 31 | #include <common/memory.h> |
| 32 | #include <common/mini-clist.h> |
| 33 | #include <common/standard.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 34 | #include <common/ticks.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 35 | #include <common/time.h> |
| 36 | #include <common/uri_auth.h> |
| 37 | #include <common/version.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 38 | |
| 39 | #include <types/capture.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 40 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 42 | #include <proto/acl.h> |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 43 | #include <proto/auth.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | #include <proto/backend.h> |
| 45 | #include <proto/buffers.h> |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 46 | #include <proto/checks.h> |
Willy Tarreau | 9186126 | 2007-10-17 17:06:05 +0200 | [diff] [blame] | 47 | #include <proto/dumpstats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #include <proto/fd.h> |
Willy Tarreau | 03fa5df | 2010-05-24 21:02:37 +0200 | [diff] [blame] | 49 | #include <proto/frontend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 50 | #include <proto/log.h> |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 51 | #include <proto/hdr_idx.h> |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 52 | #include <proto/pattern.h> |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 53 | #include <proto/proto_tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 54 | #include <proto/proto_http.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 55 | #include <proto/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 56 | #include <proto/queue.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 57 | #include <proto/server.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 58 | #include <proto/session.h> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 59 | #include <proto/stream_interface.h> |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 60 | #include <proto/stream_sock.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 61 | #include <proto/task.h> |
| 62 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 63 | const char HTTP_100[] = |
| 64 | "HTTP/1.1 100 Continue\r\n\r\n"; |
| 65 | |
| 66 | const struct chunk http_100_chunk = { |
| 67 | .str = (char *)&HTTP_100, |
| 68 | .len = sizeof(HTTP_100)-1 |
| 69 | }; |
| 70 | |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 71 | /* Warning: no "connection" header is provided with the 3xx messages below */ |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 72 | const char *HTTP_301 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 73 | "HTTP/1.1 301 Moved Permanently\r\n" |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 74 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 75 | "Content-length: 0\r\n" |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 76 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 77 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 78 | const char *HTTP_302 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 79 | "HTTP/1.1 302 Found\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 80 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 81 | "Content-length: 0\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 82 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 83 | |
| 84 | /* same as 302 except that the browser MUST retry with the GET method */ |
| 85 | const char *HTTP_303 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 86 | "HTTP/1.1 303 See Other\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 87 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 88 | "Content-length: 0\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 89 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 90 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 91 | /* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */ |
| 92 | const char *HTTP_401_fmt = |
| 93 | "HTTP/1.0 401 Unauthorized\r\n" |
| 94 | "Cache-Control: no-cache\r\n" |
| 95 | "Connection: close\r\n" |
Willy Tarreau | 791d66d | 2006-07-08 16:53:38 +0200 | [diff] [blame] | 96 | "Content-Type: text/html\r\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 97 | "WWW-Authenticate: Basic realm=\"%s\"\r\n" |
| 98 | "\r\n" |
| 99 | "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n"; |
| 100 | |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 101 | const char *HTTP_407_fmt = |
| 102 | "HTTP/1.0 407 Unauthorized\r\n" |
| 103 | "Cache-Control: no-cache\r\n" |
| 104 | "Connection: close\r\n" |
| 105 | "Content-Type: text/html\r\n" |
| 106 | "Proxy-Authenticate: Basic realm=\"%s\"\r\n" |
| 107 | "\r\n" |
| 108 | "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n"; |
| 109 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 110 | |
| 111 | const int http_err_codes[HTTP_ERR_SIZE] = { |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 112 | [HTTP_ERR_200] = 200, /* used by "monitor-uri" */ |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 113 | [HTTP_ERR_400] = 400, |
| 114 | [HTTP_ERR_403] = 403, |
| 115 | [HTTP_ERR_408] = 408, |
| 116 | [HTTP_ERR_500] = 500, |
| 117 | [HTTP_ERR_502] = 502, |
| 118 | [HTTP_ERR_503] = 503, |
| 119 | [HTTP_ERR_504] = 504, |
| 120 | }; |
| 121 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 122 | static const char *http_err_msgs[HTTP_ERR_SIZE] = { |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 123 | [HTTP_ERR_200] = |
| 124 | "HTTP/1.0 200 OK\r\n" |
| 125 | "Cache-Control: no-cache\r\n" |
| 126 | "Connection: close\r\n" |
| 127 | "Content-Type: text/html\r\n" |
| 128 | "\r\n" |
| 129 | "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n", |
| 130 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 131 | [HTTP_ERR_400] = |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 132 | "HTTP/1.0 400 Bad request\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 133 | "Cache-Control: no-cache\r\n" |
| 134 | "Connection: close\r\n" |
| 135 | "Content-Type: text/html\r\n" |
| 136 | "\r\n" |
| 137 | "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n", |
| 138 | |
| 139 | [HTTP_ERR_403] = |
| 140 | "HTTP/1.0 403 Forbidden\r\n" |
| 141 | "Cache-Control: no-cache\r\n" |
| 142 | "Connection: close\r\n" |
| 143 | "Content-Type: text/html\r\n" |
| 144 | "\r\n" |
| 145 | "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n", |
| 146 | |
| 147 | [HTTP_ERR_408] = |
| 148 | "HTTP/1.0 408 Request Time-out\r\n" |
| 149 | "Cache-Control: no-cache\r\n" |
| 150 | "Connection: close\r\n" |
| 151 | "Content-Type: text/html\r\n" |
| 152 | "\r\n" |
| 153 | "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n", |
| 154 | |
| 155 | [HTTP_ERR_500] = |
| 156 | "HTTP/1.0 500 Server Error\r\n" |
| 157 | "Cache-Control: no-cache\r\n" |
| 158 | "Connection: close\r\n" |
| 159 | "Content-Type: text/html\r\n" |
| 160 | "\r\n" |
| 161 | "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n", |
| 162 | |
| 163 | [HTTP_ERR_502] = |
| 164 | "HTTP/1.0 502 Bad Gateway\r\n" |
| 165 | "Cache-Control: no-cache\r\n" |
| 166 | "Connection: close\r\n" |
| 167 | "Content-Type: text/html\r\n" |
| 168 | "\r\n" |
| 169 | "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n", |
| 170 | |
| 171 | [HTTP_ERR_503] = |
| 172 | "HTTP/1.0 503 Service Unavailable\r\n" |
| 173 | "Cache-Control: no-cache\r\n" |
| 174 | "Connection: close\r\n" |
| 175 | "Content-Type: text/html\r\n" |
| 176 | "\r\n" |
| 177 | "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n", |
| 178 | |
| 179 | [HTTP_ERR_504] = |
| 180 | "HTTP/1.0 504 Gateway Time-out\r\n" |
| 181 | "Cache-Control: no-cache\r\n" |
| 182 | "Connection: close\r\n" |
| 183 | "Content-Type: text/html\r\n" |
| 184 | "\r\n" |
| 185 | "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n", |
| 186 | |
| 187 | }; |
| 188 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 189 | /* We must put the messages here since GCC cannot initialize consts depending |
| 190 | * on strlen(). |
| 191 | */ |
| 192 | struct chunk http_err_chunks[HTTP_ERR_SIZE]; |
| 193 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 194 | #define FD_SETS_ARE_BITFIELDS |
| 195 | #ifdef FD_SETS_ARE_BITFIELDS |
| 196 | /* |
| 197 | * This map is used with all the FD_* macros to check whether a particular bit |
| 198 | * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes |
| 199 | * which should be encoded. When FD_ISSET() returns non-zero, it means that the |
| 200 | * byte should be encoded. Be careful to always pass bytes from 0 to 255 |
| 201 | * exclusively to the macros. |
| 202 | */ |
| 203 | fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))]; |
| 204 | fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))]; |
| 205 | |
| 206 | #else |
| 207 | #error "Check if your OS uses bitfields for fd_sets" |
| 208 | #endif |
| 209 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 210 | void init_proto_http() |
| 211 | { |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 212 | int i; |
| 213 | char *tmp; |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 214 | int msg; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 215 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 216 | for (msg = 0; msg < HTTP_ERR_SIZE; msg++) { |
| 217 | if (!http_err_msgs[msg]) { |
| 218 | Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg); |
| 219 | abort(); |
| 220 | } |
| 221 | |
| 222 | http_err_chunks[msg].str = (char *)http_err_msgs[msg]; |
| 223 | http_err_chunks[msg].len = strlen(http_err_msgs[msg]); |
| 224 | } |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 225 | |
| 226 | /* initialize the log header encoding map : '{|}"#' should be encoded with |
| 227 | * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ). |
| 228 | * URL encoding only requires '"', '#' to be encoded as well as non- |
| 229 | * printable characters above. |
| 230 | */ |
| 231 | memset(hdr_encode_map, 0, sizeof(hdr_encode_map)); |
| 232 | memset(url_encode_map, 0, sizeof(url_encode_map)); |
| 233 | for (i = 0; i < 32; i++) { |
| 234 | FD_SET(i, hdr_encode_map); |
| 235 | FD_SET(i, url_encode_map); |
| 236 | } |
| 237 | for (i = 127; i < 256; i++) { |
| 238 | FD_SET(i, hdr_encode_map); |
| 239 | FD_SET(i, url_encode_map); |
| 240 | } |
| 241 | |
| 242 | tmp = "\"#{|}"; |
| 243 | while (*tmp) { |
| 244 | FD_SET(*tmp, hdr_encode_map); |
| 245 | tmp++; |
| 246 | } |
| 247 | |
| 248 | tmp = "\"#"; |
| 249 | while (*tmp) { |
| 250 | FD_SET(*tmp, url_encode_map); |
| 251 | tmp++; |
| 252 | } |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 253 | |
| 254 | /* memory allocations */ |
| 255 | pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED); |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 256 | pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 257 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 258 | |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 259 | /* |
| 260 | * We have 26 list of methods (1 per first letter), each of which can have |
| 261 | * up to 3 entries (2 valid, 1 null). |
| 262 | */ |
| 263 | struct http_method_desc { |
| 264 | http_meth_t meth; |
| 265 | int len; |
| 266 | const char text[8]; |
| 267 | }; |
| 268 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 269 | const struct http_method_desc http_methods[26][3] = { |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 270 | ['C' - 'A'] = { |
| 271 | [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" }, |
| 272 | }, |
| 273 | ['D' - 'A'] = { |
| 274 | [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" }, |
| 275 | }, |
| 276 | ['G' - 'A'] = { |
| 277 | [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" }, |
| 278 | }, |
| 279 | ['H' - 'A'] = { |
| 280 | [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" }, |
| 281 | }, |
| 282 | ['P' - 'A'] = { |
| 283 | [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" }, |
| 284 | [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" }, |
| 285 | }, |
| 286 | ['T' - 'A'] = { |
| 287 | [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" }, |
| 288 | }, |
| 289 | /* rest is empty like this : |
| 290 | * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" }, |
| 291 | */ |
| 292 | }; |
| 293 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 294 | /* It is about twice as fast on recent architectures to lookup a byte in a |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 295 | * table than to perform a boolean AND or OR between two tests. Refer to |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 296 | * RFC2616 for those chars. |
| 297 | */ |
| 298 | |
| 299 | const char http_is_spht[256] = { |
| 300 | [' '] = 1, ['\t'] = 1, |
| 301 | }; |
| 302 | |
| 303 | const char http_is_crlf[256] = { |
| 304 | ['\r'] = 1, ['\n'] = 1, |
| 305 | }; |
| 306 | |
| 307 | const char http_is_lws[256] = { |
| 308 | [' '] = 1, ['\t'] = 1, |
| 309 | ['\r'] = 1, ['\n'] = 1, |
| 310 | }; |
| 311 | |
| 312 | const char http_is_sep[256] = { |
| 313 | ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1, |
| 314 | ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1, |
| 315 | ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1, |
| 316 | ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1, |
| 317 | [' '] = 1, ['\t'] = 1, ['\\'] = 1, |
| 318 | }; |
| 319 | |
| 320 | const char http_is_ctl[256] = { |
| 321 | [0 ... 31] = 1, |
| 322 | [127] = 1, |
| 323 | }; |
| 324 | |
| 325 | /* |
| 326 | * A token is any ASCII char that is neither a separator nor a CTL char. |
| 327 | * Do not overwrite values in assignment since gcc-2.95 will not handle |
| 328 | * them correctly. Instead, define every non-CTL char's status. |
| 329 | */ |
| 330 | const char http_is_token[256] = { |
| 331 | [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1, |
| 332 | ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1, |
| 333 | ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1, |
| 334 | [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0, |
| 335 | ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, |
| 336 | ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1, |
| 337 | ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0, |
| 338 | ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0, |
| 339 | ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1, |
| 340 | ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1, |
| 341 | ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1, |
| 342 | ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1, |
| 343 | ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1, |
| 344 | ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1, |
| 345 | ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0, |
| 346 | ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1, |
| 347 | ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1, |
| 348 | ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1, |
| 349 | ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1, |
| 350 | ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1, |
| 351 | ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1, |
| 352 | ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1, |
| 353 | ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0, |
| 354 | ['|'] = 1, ['}'] = 0, ['~'] = 1, |
| 355 | }; |
| 356 | |
| 357 | |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 358 | /* |
| 359 | * An http ver_token is any ASCII which can be found in an HTTP version, |
| 360 | * which includes 'H', 'T', 'P', '/', '.' and any digit. |
| 361 | */ |
| 362 | const char http_is_ver_token[256] = { |
| 363 | ['.'] = 1, ['/'] = 1, |
| 364 | ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1, |
| 365 | ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1, |
| 366 | ['H'] = 1, ['P'] = 1, ['T'] = 1, |
| 367 | }; |
| 368 | |
| 369 | |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 370 | /* |
Willy Tarreau | e988a79 | 2010-01-04 21:13:14 +0100 | [diff] [blame] | 371 | * Silent debug that outputs only in strace, using fd #-1. Trash is modified. |
| 372 | */ |
| 373 | #if defined(DEBUG_FSM) |
| 374 | static void http_silent_debug(int line, struct session *s) |
| 375 | { |
| 376 | int size = 0; |
| 377 | size += snprintf(trash + size, sizeof(trash) - size, |
| 378 | "[%04d] req: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p lr=%p sm=%d fw=%ld tf=%08x\n", |
| 379 | line, |
| 380 | s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers, |
| 381 | s->req->data, s->req->size, s->req->l, s->req->w, s->req->r, s->req->lr, s->req->send_max, s->req->to_forward, s->txn.flags); |
| 382 | write(-1, trash, size); |
| 383 | size = 0; |
| 384 | size += snprintf(trash + size, sizeof(trash) - size, |
| 385 | " %04d rep: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p lr=%p sm=%d fw=%ld\n", |
| 386 | line, |
| 387 | s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers, |
| 388 | s->rep->data, s->rep->size, s->rep->l, s->rep->w, s->rep->r, s->rep->lr, s->rep->send_max, s->rep->to_forward); |
| 389 | |
| 390 | write(-1, trash, size); |
| 391 | } |
| 392 | #else |
| 393 | #define http_silent_debug(l,s) do { } while (0) |
| 394 | #endif |
| 395 | |
| 396 | /* |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 397 | * Adds a header and its CRLF at the tail of buffer <b>, just before the last |
| 398 | * CRLF. Text length is measured first, so it cannot be NULL. |
| 399 | * The header is also automatically added to the index <hdr_idx>, and the end |
| 400 | * of headers is automatically adjusted. The number of bytes added is returned |
| 401 | * on success, otherwise <0 is returned indicating an error. |
| 402 | */ |
| 403 | int http_header_add_tail(struct buffer *b, struct http_msg *msg, |
| 404 | struct hdr_idx *hdr_idx, const char *text) |
| 405 | { |
| 406 | int bytes, len; |
| 407 | |
| 408 | len = strlen(text); |
| 409 | bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len); |
| 410 | if (!bytes) |
| 411 | return -1; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 412 | http_msg_move_end(msg, bytes); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 413 | return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail); |
| 414 | } |
| 415 | |
| 416 | /* |
| 417 | * Adds a header and its CRLF at the tail of buffer <b>, just before the last |
| 418 | * CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then |
| 419 | * the buffer is only opened and the space reserved, but nothing is copied. |
| 420 | * The header is also automatically added to the index <hdr_idx>, and the end |
| 421 | * of headers is automatically adjusted. The number of bytes added is returned |
| 422 | * on success, otherwise <0 is returned indicating an error. |
| 423 | */ |
| 424 | int http_header_add_tail2(struct buffer *b, struct http_msg *msg, |
| 425 | struct hdr_idx *hdr_idx, const char *text, int len) |
| 426 | { |
| 427 | int bytes; |
| 428 | |
| 429 | bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len); |
| 430 | if (!bytes) |
| 431 | return -1; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 432 | http_msg_move_end(msg, bytes); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 433 | return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail); |
| 434 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 435 | |
| 436 | /* |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 437 | * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon. |
| 438 | * If so, returns the position of the first non-space character relative to |
| 439 | * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries |
| 440 | * to return a pointer to the place after the first space. Returns 0 if the |
| 441 | * header name does not match. Checks are case-insensitive. |
| 442 | */ |
| 443 | int http_header_match2(const char *hdr, const char *end, |
| 444 | const char *name, int len) |
| 445 | { |
| 446 | const char *val; |
| 447 | |
| 448 | if (hdr + len >= end) |
| 449 | return 0; |
| 450 | if (hdr[len] != ':') |
| 451 | return 0; |
| 452 | if (strncasecmp(hdr, name, len) != 0) |
| 453 | return 0; |
| 454 | val = hdr + len + 1; |
| 455 | while (val < end && HTTP_IS_SPHT(*val)) |
| 456 | val++; |
| 457 | if ((val >= end) && (len + 2 <= end - hdr)) |
| 458 | return len + 2; /* we may replace starting from second space */ |
| 459 | return val - hdr; |
| 460 | } |
| 461 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 462 | /* Find the end of the header value contained between <s> and <e>. See RFC2616, |
| 463 | * par 2.2 for more information. Note that it requires a valid header to return |
| 464 | * a valid result. This works for headers defined as comma-separated lists. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 465 | */ |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 466 | char *find_hdr_value_end(char *s, const char *e) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 467 | { |
| 468 | int quoted, qdpair; |
| 469 | |
| 470 | quoted = qdpair = 0; |
| 471 | for (; s < e; s++) { |
| 472 | if (qdpair) qdpair = 0; |
Willy Tarreau | 0f7f51f | 2010-08-30 11:06:34 +0200 | [diff] [blame] | 473 | else if (quoted) { |
| 474 | if (*s == '\\') qdpair = 1; |
| 475 | else if (*s == '"') quoted = 0; |
| 476 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 477 | else if (*s == '"') quoted = 1; |
| 478 | else if (*s == ',') return s; |
| 479 | } |
| 480 | return s; |
| 481 | } |
| 482 | |
| 483 | /* Find the first or next occurrence of header <name> in message buffer <sol> |
| 484 | * using headers index <idx>, and return it in the <ctx> structure. This |
| 485 | * structure holds everything necessary to use the header and find next |
| 486 | * occurrence. If its <idx> member is 0, the header is searched from the |
| 487 | * beginning. Otherwise, the next occurrence is returned. The function returns |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 488 | * 1 when it finds a value, and 0 when there is no more. It is designed to work |
| 489 | * with headers defined as comma-separated lists. As a special case, if ctx->val |
| 490 | * is NULL when searching for a new values of a header, the current header is |
| 491 | * rescanned. This allows rescanning after a header deletion. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 492 | */ |
| 493 | int http_find_header2(const char *name, int len, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 494 | char *sol, struct hdr_idx *idx, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 495 | struct hdr_ctx *ctx) |
| 496 | { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 497 | char *eol, *sov; |
| 498 | int cur_idx, old_idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 499 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 500 | cur_idx = ctx->idx; |
| 501 | if (cur_idx) { |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 502 | /* We have previously returned a value, let's search |
| 503 | * another one on the same line. |
| 504 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 505 | sol = ctx->line; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 506 | ctx->del = ctx->val + ctx->vlen + ctx->tws; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 507 | sov = sol + ctx->del; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 508 | eol = sol + idx->v[cur_idx].len; |
| 509 | |
| 510 | if (sov >= eol) |
| 511 | /* no more values in this header */ |
| 512 | goto next_hdr; |
| 513 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 514 | /* values remaining for this header, skip the comma but save it |
| 515 | * for later use (eg: for header deletion). |
| 516 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 517 | sov++; |
| 518 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 519 | sov++; |
| 520 | |
| 521 | goto return_hdr; |
| 522 | } |
| 523 | |
| 524 | /* first request for this header */ |
| 525 | sol += hdr_idx_first_pos(idx); |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 526 | old_idx = 0; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 527 | cur_idx = hdr_idx_first_idx(idx); |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 528 | while (cur_idx) { |
| 529 | eol = sol + idx->v[cur_idx].len; |
| 530 | |
Willy Tarreau | 1ad7c6d | 2007-06-10 21:42:55 +0200 | [diff] [blame] | 531 | if (len == 0) { |
| 532 | /* No argument was passed, we want any header. |
| 533 | * To achieve this, we simply build a fake request. */ |
| 534 | while (sol + len < eol && sol[len] != ':') |
| 535 | len++; |
| 536 | name = sol; |
| 537 | } |
| 538 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 539 | if ((len < eol - sol) && |
| 540 | (sol[len] == ':') && |
| 541 | (strncasecmp(sol, name, len) == 0)) { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 542 | ctx->del = len; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 543 | sov = sol + len + 1; |
| 544 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 545 | sov++; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 546 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 547 | ctx->line = sol; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 548 | ctx->prev = old_idx; |
| 549 | return_hdr: |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 550 | ctx->idx = cur_idx; |
| 551 | ctx->val = sov - sol; |
| 552 | |
| 553 | eol = find_hdr_value_end(sov, eol); |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 554 | ctx->tws = 0; |
| 555 | while (http_is_lws[(unsigned char)*(eol - 1)]) { |
| 556 | eol--; |
| 557 | ctx->tws++; |
| 558 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 559 | ctx->vlen = eol - sov; |
| 560 | return 1; |
| 561 | } |
| 562 | next_hdr: |
| 563 | sol = eol + idx->v[cur_idx].cr + 1; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 564 | old_idx = cur_idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 565 | cur_idx = idx->v[cur_idx].next; |
| 566 | } |
| 567 | return 0; |
| 568 | } |
| 569 | |
| 570 | int http_find_header(const char *name, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 571 | char *sol, struct hdr_idx *idx, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 572 | struct hdr_ctx *ctx) |
| 573 | { |
| 574 | return http_find_header2(name, strlen(name), sol, idx, ctx); |
| 575 | } |
| 576 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 577 | /* Remove one value of a header. This only works on a <ctx> returned by one of |
| 578 | * the http_find_header functions. The value is removed, as well as surrounding |
| 579 | * commas if any. If the removed value was alone, the whole header is removed. |
| 580 | * The ctx is always updated accordingly, as well as buffer <buf> and HTTP |
| 581 | * message <msg>. The new index is returned. If it is zero, it means there is |
| 582 | * no more header, so any processing may stop. The ctx is always left in a form |
| 583 | * that can be handled by http_find_header2() to find next occurrence. |
| 584 | */ |
| 585 | int http_remove_header2(struct http_msg *msg, struct buffer *buf, |
| 586 | struct hdr_idx *idx, struct hdr_ctx *ctx) |
| 587 | { |
| 588 | int cur_idx = ctx->idx; |
| 589 | char *sol = ctx->line; |
| 590 | struct hdr_idx_elem *hdr; |
| 591 | int delta, skip_comma; |
| 592 | |
| 593 | if (!cur_idx) |
| 594 | return 0; |
| 595 | |
| 596 | hdr = &idx->v[cur_idx]; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 597 | if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 598 | /* This was the only value of the header, we must now remove it entirely. */ |
| 599 | delta = buffer_replace2(buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0); |
| 600 | http_msg_move_end(msg, delta); |
| 601 | idx->used--; |
| 602 | hdr->len = 0; /* unused entry */ |
| 603 | idx->v[ctx->prev].next = idx->v[ctx->idx].next; |
Willy Tarreau | 5c4784f | 2011-02-12 13:07:35 +0100 | [diff] [blame] | 604 | if (idx->tail == ctx->idx) |
| 605 | idx->tail = ctx->prev; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 606 | ctx->idx = ctx->prev; /* walk back to the end of previous header */ |
| 607 | ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1; |
| 608 | ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */ |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 609 | ctx->tws = ctx->vlen = 0; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 610 | return ctx->idx; |
| 611 | } |
| 612 | |
| 613 | /* This was not the only value of this header. We have to remove between |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 614 | * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the |
| 615 | * last entry of the list, we remove the last separator. |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 616 | */ |
| 617 | |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 618 | skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 619 | delta = buffer_replace2(buf, sol + ctx->del + skip_comma, |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 620 | sol + ctx->val + ctx->vlen + ctx->tws + skip_comma, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 621 | NULL, 0); |
| 622 | hdr->len += delta; |
| 623 | http_msg_move_end(msg, delta); |
| 624 | ctx->val = ctx->del; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 625 | ctx->tws = ctx->vlen = 0; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 626 | return ctx->idx; |
| 627 | } |
| 628 | |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 629 | /* This function handles a server error at the stream interface level. The |
| 630 | * stream interface is assumed to be already in a closed state. An optional |
| 631 | * message is copied into the input buffer, and an HTTP status code stored. |
| 632 | * The error flags are set to the values in arguments. Any pending request |
Willy Tarreau | 6f0aa47 | 2009-03-08 20:33:29 +0100 | [diff] [blame] | 633 | * in this buffer will be lost. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 634 | */ |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 635 | static void http_server_error(struct session *t, struct stream_interface *si, |
| 636 | int err, int finst, int status, const struct chunk *msg) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 637 | { |
Willy Tarreau | d5fd51c | 2010-01-22 14:17:47 +0100 | [diff] [blame] | 638 | buffer_auto_read(si->ob); |
| 639 | buffer_abort(si->ob); |
| 640 | buffer_auto_close(si->ob); |
| 641 | buffer_erase(si->ob); |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 642 | buffer_auto_close(si->ib); |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 643 | buffer_auto_read(si->ib); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 644 | if (status > 0 && msg) { |
Willy Tarreau | 3bac9ff | 2007-03-18 17:31:28 +0100 | [diff] [blame] | 645 | t->txn.status = status; |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 646 | buffer_write(si->ib, msg->str, msg->len); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 647 | } |
| 648 | if (!(t->flags & SN_ERR_MASK)) |
| 649 | t->flags |= err; |
| 650 | if (!(t->flags & SN_FINST_MASK)) |
| 651 | t->flags |= finst; |
| 652 | } |
| 653 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 654 | /* This function returns the appropriate error location for the given session |
| 655 | * and message. |
| 656 | */ |
| 657 | |
| 658 | struct chunk *error_message(struct session *s, int msgnum) |
| 659 | { |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 660 | if (s->be->errmsg[msgnum].str) |
| 661 | return &s->be->errmsg[msgnum]; |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 662 | else if (s->fe->errmsg[msgnum].str) |
| 663 | return &s->fe->errmsg[msgnum]; |
| 664 | else |
| 665 | return &http_err_chunks[msgnum]; |
| 666 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 667 | |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 668 | /* |
| 669 | * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text |
| 670 | * string), HTTP_METH_OTHER for unknown methods, or the identified method. |
| 671 | */ |
| 672 | static http_meth_t find_http_meth(const char *str, const int len) |
| 673 | { |
| 674 | unsigned char m; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 675 | const struct http_method_desc *h; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 676 | |
| 677 | m = ((unsigned)*str - 'A'); |
| 678 | |
| 679 | if (m < 26) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 680 | for (h = http_methods[m]; h->len > 0; h++) { |
| 681 | if (unlikely(h->len != len)) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 682 | continue; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 683 | if (likely(memcmp(str, h->text, h->len) == 0)) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 684 | return h->meth; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 685 | }; |
| 686 | return HTTP_METH_OTHER; |
| 687 | } |
| 688 | return HTTP_METH_NONE; |
| 689 | |
| 690 | } |
| 691 | |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 692 | /* Parse the URI from the given transaction (which is assumed to be in request |
| 693 | * phase) and look for the "/" beginning the PATH. If not found, return NULL. |
| 694 | * It is returned otherwise. |
| 695 | */ |
| 696 | static char * |
| 697 | http_get_path(struct http_txn *txn) |
| 698 | { |
| 699 | char *ptr, *end; |
| 700 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 701 | ptr = txn->req.sol + txn->req.sl.rq.u; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 702 | end = ptr + txn->req.sl.rq.u_l; |
| 703 | |
| 704 | if (ptr >= end) |
| 705 | return NULL; |
| 706 | |
| 707 | /* RFC2616, par. 5.1.2 : |
| 708 | * Request-URI = "*" | absuri | abspath | authority |
| 709 | */ |
| 710 | |
| 711 | if (*ptr == '*') |
| 712 | return NULL; |
| 713 | |
| 714 | if (isalpha((unsigned char)*ptr)) { |
| 715 | /* this is a scheme as described by RFC3986, par. 3.1 */ |
| 716 | ptr++; |
| 717 | while (ptr < end && |
| 718 | (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')) |
| 719 | ptr++; |
| 720 | /* skip '://' */ |
| 721 | if (ptr == end || *ptr++ != ':') |
| 722 | return NULL; |
| 723 | if (ptr == end || *ptr++ != '/') |
| 724 | return NULL; |
| 725 | if (ptr == end || *ptr++ != '/') |
| 726 | return NULL; |
| 727 | } |
| 728 | /* skip [user[:passwd]@]host[:[port]] */ |
| 729 | |
| 730 | while (ptr < end && *ptr != '/') |
| 731 | ptr++; |
| 732 | |
| 733 | if (ptr == end) |
| 734 | return NULL; |
| 735 | |
| 736 | /* OK, we got the '/' ! */ |
| 737 | return ptr; |
| 738 | } |
| 739 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 740 | /* Returns a 302 for a redirectable request. This may only be called just after |
| 741 | * the stream interface has moved to SI_ST_ASS. Unprocessable requests are |
| 742 | * left unchanged and will follow normal proxy processing. |
| 743 | */ |
Willy Tarreau | 55a8d0e | 2008-11-30 18:47:21 +0100 | [diff] [blame] | 744 | void perform_http_redirect(struct session *s, struct stream_interface *si) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 745 | { |
| 746 | struct http_txn *txn; |
| 747 | struct chunk rdr; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 748 | struct server *srv; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 749 | char *path; |
| 750 | int len; |
| 751 | |
| 752 | /* 1: create the response header */ |
| 753 | rdr.len = strlen(HTTP_302); |
| 754 | rdr.str = trash; |
Willy Tarreau | 59e0b0f | 2010-01-09 21:29:23 +0100 | [diff] [blame] | 755 | rdr.size = sizeof(trash); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 756 | memcpy(rdr.str, HTTP_302, rdr.len); |
| 757 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 758 | srv = target_srv(&s->target); |
| 759 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 760 | /* 2: add the server's prefix */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 761 | if (rdr.len + srv->rdr_len > rdr.size) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 762 | return; |
| 763 | |
Willy Tarreau | dcb75c4 | 2010-01-10 00:24:22 +0100 | [diff] [blame] | 764 | /* special prefix "/" means don't change URL */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 765 | if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') { |
| 766 | memcpy(rdr.str + rdr.len, srv->rdr_pfx, srv->rdr_len); |
| 767 | rdr.len += srv->rdr_len; |
Willy Tarreau | dcb75c4 | 2010-01-10 00:24:22 +0100 | [diff] [blame] | 768 | } |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 769 | |
| 770 | /* 3: add the request URI */ |
| 771 | txn = &s->txn; |
| 772 | path = http_get_path(txn); |
| 773 | if (!path) |
| 774 | return; |
| 775 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 776 | len = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path; |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 777 | if (rdr.len + len > rdr.size - 4) /* 4 for CRLF-CRLF */ |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 778 | return; |
| 779 | |
| 780 | memcpy(rdr.str + rdr.len, path, len); |
| 781 | rdr.len += len; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 782 | |
| 783 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 784 | memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29); |
| 785 | rdr.len += 29; |
| 786 | } else { |
| 787 | memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23); |
| 788 | rdr.len += 23; |
| 789 | } |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 790 | |
| 791 | /* prepare to return without error. */ |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 792 | si->shutr(si); |
| 793 | si->shutw(si); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 794 | si->err_type = SI_ET_NONE; |
| 795 | si->err_loc = NULL; |
| 796 | si->state = SI_ST_CLO; |
| 797 | |
| 798 | /* send the message */ |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 799 | http_server_error(s, si, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 800 | |
| 801 | /* FIXME: we should increase a counter of redirects per server and per backend. */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 802 | if (srv) |
| 803 | srv_inc_sess_ctr(srv); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 804 | } |
| 805 | |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 806 | /* Return the error message corresponding to si->err_type. It is assumed |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 807 | * that the server side is closed. Note that err_type is actually a |
| 808 | * bitmask, where almost only aborts may be cumulated with other |
| 809 | * values. We consider that aborted operations are more important |
| 810 | * than timeouts or errors due to the fact that nobody else in the |
| 811 | * logs might explain incomplete retries. All others should avoid |
| 812 | * being cumulated. It should normally not be possible to have multiple |
| 813 | * aborts at once, but just in case, the first one in sequence is reported. |
| 814 | */ |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 815 | void http_return_srv_error(struct session *s, struct stream_interface *si) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 816 | { |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 817 | int err_type = si->err_type; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 818 | |
| 819 | if (err_type & SI_ET_QUEUE_ABRT) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 820 | http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q, |
| 821 | 503, error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 822 | else if (err_type & SI_ET_CONN_ABRT) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 823 | http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C, |
| 824 | 503, error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 825 | else if (err_type & SI_ET_QUEUE_TO) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 826 | http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q, |
| 827 | 503, error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 828 | else if (err_type & SI_ET_QUEUE_ERR) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 829 | http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q, |
| 830 | 503, error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 831 | else if (err_type & SI_ET_CONN_TO) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 832 | http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C, |
| 833 | 503, error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 834 | else if (err_type & SI_ET_CONN_ERR) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 835 | http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C, |
| 836 | 503, error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 837 | else /* SI_ET_CONN_OTHER and others */ |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 838 | http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C, |
| 839 | 500, error_message(s, HTTP_ERR_500)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 840 | } |
| 841 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 842 | extern const char sess_term_cond[8]; |
| 843 | extern const char sess_fin_state[8]; |
| 844 | extern const char *monthname[12]; |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 845 | const char sess_cookie[8] = "NIDVEO67"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie, Expired cookie, Old cookie, unknown */ |
| 846 | const char sess_set_cookie[8] = "NPDIRU67"; /* No set-cookie, Set-cookie found and left unchanged (passive), |
| 847 | Set-cookie Deleted, Set-Cookie Inserted, Set-cookie Rewritten, |
| 848 | Set-cookie Updated, unknown, unknown */ |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 849 | struct pool_head *pool2_requri; |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 850 | struct pool_head *pool2_capture; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 851 | |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 852 | void http_sess_clflog(struct session *s) |
| 853 | { |
Cyril Bonté | acd7d63 | 2010-11-01 19:26:02 +0100 | [diff] [blame] | 854 | char pn[INET6_ADDRSTRLEN]; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 855 | struct proxy *fe = s->fe; |
| 856 | struct proxy *be = s->be; |
| 857 | struct proxy *prx_log; |
| 858 | struct http_txn *txn = &s->txn; |
| 859 | int tolog, level, err; |
| 860 | char *uri, *h; |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 861 | const char *svid; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 862 | struct tm tm; |
| 863 | static char tmpline[MAX_SYSLOG_LEN]; |
| 864 | int hdr; |
| 865 | size_t w; |
| 866 | int t_request; |
| 867 | |
| 868 | prx_log = fe; |
| 869 | err = (s->flags & (SN_ERR_MASK | SN_REDISP)) || |
Willy Tarreau | ee28de0 | 2010-06-01 09:51:00 +0200 | [diff] [blame] | 870 | (s->req->cons->conn_retries != be->conn_retries) || |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 871 | txn->status >= 500; |
| 872 | |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 873 | if (addr_to_str(&s->req->prod->addr.c.from, pn, sizeof(pn)) == AF_UNIX) |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 874 | snprintf(pn, sizeof(pn), "unix:%d", s->listener->luid); |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 875 | |
| 876 | get_gmtime(s->logs.accept_date.tv_sec, &tm); |
| 877 | |
| 878 | /* FIXME: let's limit ourselves to frontend logging for now. */ |
| 879 | tolog = fe->to_log; |
| 880 | |
| 881 | h = tmpline; |
| 882 | |
| 883 | w = snprintf(h, sizeof(tmpline), |
| 884 | "%s - - [%02d/%s/%04d:%02d:%02d:%02d +0000]", |
| 885 | pn, |
| 886 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 887 | tm.tm_hour, tm.tm_min, tm.tm_sec); |
| 888 | if (w < 0 || w >= sizeof(tmpline) - (h - tmpline)) |
| 889 | goto trunc; |
| 890 | h += w; |
| 891 | |
| 892 | if (h >= tmpline + sizeof(tmpline) - 4) |
| 893 | goto trunc; |
| 894 | |
| 895 | *(h++) = ' '; |
| 896 | *(h++) = '\"'; |
| 897 | uri = txn->uri ? txn->uri : "<BADREQ>"; |
| 898 | h = encode_string(h, tmpline + sizeof(tmpline) - 1, |
| 899 | '#', url_encode_map, uri); |
| 900 | *(h++) = '\"'; |
| 901 | |
| 902 | w = snprintf(h, sizeof(tmpline) - (h - tmpline), " %d %lld", txn->status, s->logs.bytes_out); |
| 903 | if (w < 0 || w >= sizeof(tmpline) - (h - tmpline)) |
| 904 | goto trunc; |
| 905 | h += w; |
| 906 | |
| 907 | if (h >= tmpline + sizeof(tmpline) - 9) |
| 908 | goto trunc; |
| 909 | memcpy(h, " \"-\" \"-\"", 8); |
| 910 | h += 8; |
| 911 | |
| 912 | w = snprintf(h, sizeof(tmpline) - (h - tmpline), |
| 913 | " %d %03d", |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 914 | s->req->prod->addr.c.from.ss_family == AF_UNIX ? s->listener->luid : |
Willy Tarreau | 86ad42c | 2011-08-27 12:29:07 +0200 | [diff] [blame] | 915 | get_host_port(&s->req->prod->addr.c.from), |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 916 | (int)s->logs.accept_date.tv_usec/1000); |
| 917 | if (w < 0 || w >= sizeof(tmpline) - (h - tmpline)) |
| 918 | goto trunc; |
| 919 | h += w; |
| 920 | |
| 921 | w = strlen(fe->id); |
| 922 | if (h >= tmpline + sizeof(tmpline) - 4 - w) |
| 923 | goto trunc; |
| 924 | *(h++) = ' '; |
| 925 | *(h++) = '\"'; |
| 926 | memcpy(h, fe->id, w); |
| 927 | h += w; |
| 928 | *(h++) = '\"'; |
| 929 | |
| 930 | w = strlen(be->id); |
| 931 | if (h >= tmpline + sizeof(tmpline) - 4 - w) |
| 932 | goto trunc; |
| 933 | *(h++) = ' '; |
| 934 | *(h++) = '\"'; |
| 935 | memcpy(h, be->id, w); |
| 936 | h += w; |
| 937 | *(h++) = '\"'; |
| 938 | |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 939 | if (!(tolog & LW_SVID)) |
| 940 | svid = "-"; |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 941 | else switch (s->target.type) { |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 942 | case TARG_TYPE_SERVER: |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 943 | svid = s->target.ptr.s->id; |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 944 | break; |
| 945 | case TARG_TYPE_APPLET: |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 946 | svid = s->target.ptr.a->name; |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 947 | break; |
| 948 | default: |
| 949 | svid = "<NOSRV>"; |
| 950 | break; |
| 951 | } |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 952 | |
| 953 | w = strlen(svid); |
| 954 | if (h >= tmpline + sizeof(tmpline) - 4 - w) |
| 955 | goto trunc; |
| 956 | *(h++) = ' '; |
| 957 | *(h++) = '\"'; |
| 958 | memcpy(h, svid, w); |
| 959 | h += w; |
| 960 | *(h++) = '\"'; |
| 961 | |
| 962 | t_request = -1; |
| 963 | if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept)) |
| 964 | t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request); |
| 965 | w = snprintf(h, sizeof(tmpline) - (h - tmpline), |
| 966 | " %d %ld %ld %ld %ld", |
| 967 | t_request, |
| 968 | (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1, |
| 969 | (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1, |
| 970 | (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1, |
| 971 | s->logs.t_close); |
| 972 | if (w < 0 || w >= sizeof(tmpline) - (h - tmpline)) |
| 973 | goto trunc; |
| 974 | h += w; |
| 975 | |
| 976 | if (h >= tmpline + sizeof(tmpline) - 8) |
| 977 | goto trunc; |
| 978 | *(h++) = ' '; |
| 979 | *(h++) = '\"'; |
| 980 | *(h++) = sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT]; |
| 981 | *(h++) = sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT]; |
| 982 | *(h++) = (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-', |
| 983 | *(h++) = (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-'; |
| 984 | *(h++) = '\"'; |
| 985 | |
| 986 | w = snprintf(h, sizeof(tmpline) - (h - tmpline), |
| 987 | " %d %d %d %d %d %ld %ld", |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 988 | actconn, fe->feconn, be->beconn, target_srv(&s->target) ? target_srv(&s->target)->cur_sess : 0, |
Willy Tarreau | ee28de0 | 2010-06-01 09:51:00 +0200 | [diff] [blame] | 989 | (s->req->cons->conn_retries > 0) ? (be->conn_retries - s->req->cons->conn_retries) : be->conn_retries, |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 990 | s->logs.srv_queue_size, s->logs.prx_queue_size); |
| 991 | |
| 992 | if (w < 0 || w >= sizeof(tmpline) - (h - tmpline)) |
| 993 | goto trunc; |
| 994 | h += w; |
| 995 | |
| 996 | if (txn->cli_cookie) { |
| 997 | w = strlen(txn->cli_cookie); |
| 998 | if (h >= tmpline + sizeof(tmpline) - 4 - w) |
| 999 | goto trunc; |
| 1000 | *(h++) = ' '; |
| 1001 | *(h++) = '\"'; |
| 1002 | memcpy(h, txn->cli_cookie, w); |
| 1003 | h += w; |
| 1004 | *(h++) = '\"'; |
| 1005 | } else { |
| 1006 | if (h >= tmpline + sizeof(tmpline) - 5) |
| 1007 | goto trunc; |
| 1008 | memcpy(h, " \"-\"", 4); |
| 1009 | h += 4; |
| 1010 | } |
| 1011 | |
| 1012 | if (txn->srv_cookie) { |
| 1013 | w = strlen(txn->srv_cookie); |
| 1014 | if (h >= tmpline + sizeof(tmpline) - 4 - w) |
| 1015 | goto trunc; |
| 1016 | *(h++) = ' '; |
| 1017 | *(h++) = '\"'; |
| 1018 | memcpy(h, txn->srv_cookie, w); |
| 1019 | h += w; |
| 1020 | *(h++) = '\"'; |
| 1021 | } else { |
| 1022 | if (h >= tmpline + sizeof(tmpline) - 5) |
| 1023 | goto trunc; |
| 1024 | memcpy(h, " \"-\"", 4); |
| 1025 | h += 4; |
| 1026 | } |
| 1027 | |
| 1028 | if ((fe->to_log & LW_REQHDR) && txn->req.cap) { |
| 1029 | for (hdr = 0; hdr < fe->nb_req_cap; hdr++) { |
| 1030 | if (h >= sizeof (tmpline) + tmpline - 4) |
| 1031 | goto trunc; |
Cyril Bonté | 7f2c539 | 2010-03-13 15:15:07 +0100 | [diff] [blame] | 1032 | if (txn->req.cap[hdr] != NULL) { |
| 1033 | *(h++) = ' '; |
| 1034 | *(h++) = '\"'; |
| 1035 | h = encode_string(h, tmpline + sizeof(tmpline) - 2, |
| 1036 | '#', hdr_encode_map, txn->req.cap[hdr]); |
| 1037 | *(h++) = '\"'; |
| 1038 | } else { |
| 1039 | memcpy(h, " \"-\"", 4); |
| 1040 | h += 4; |
| 1041 | } |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | |
| 1045 | if ((fe->to_log & LW_RSPHDR) && txn->rsp.cap) { |
| 1046 | for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) { |
| 1047 | if (h >= sizeof (tmpline) + tmpline - 4) |
| 1048 | goto trunc; |
Cyril Bonté | 7f2c539 | 2010-03-13 15:15:07 +0100 | [diff] [blame] | 1049 | if (txn->rsp.cap[hdr] != NULL) { |
| 1050 | *(h++) = ' '; |
| 1051 | *(h++) = '\"'; |
| 1052 | h = encode_string(h, tmpline + sizeof(tmpline) - 2, |
| 1053 | '#', hdr_encode_map, txn->rsp.cap[hdr]); |
| 1054 | *(h++) = '\"'; |
| 1055 | } else { |
| 1056 | memcpy(h, " \"-\"", 4); |
| 1057 | h += 4; |
| 1058 | } |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 1059 | } |
| 1060 | } |
| 1061 | |
| 1062 | trunc: |
| 1063 | *h = '\0'; |
| 1064 | |
| 1065 | level = LOG_INFO; |
| 1066 | if (err && (fe->options2 & PR_O2_LOGERRORS)) |
| 1067 | level = LOG_ERR; |
| 1068 | |
| 1069 | send_log(prx_log, level, "%s\n", tmpline); |
| 1070 | |
| 1071 | s->logs.logwait = 0; |
| 1072 | } |
| 1073 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1074 | /* |
| 1075 | * send a log for the session when we have enough info about it. |
| 1076 | * Will not log if the frontend has no log defined. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1077 | */ |
Willy Tarreau | 55a8d0e | 2008-11-30 18:47:21 +0100 | [diff] [blame] | 1078 | void http_sess_log(struct session *s) |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1079 | { |
Cyril Bonté | acd7d63 | 2010-11-01 19:26:02 +0100 | [diff] [blame] | 1080 | char pn[INET6_ADDRSTRLEN]; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1081 | struct proxy *fe = s->fe; |
| 1082 | struct proxy *be = s->be; |
| 1083 | struct proxy *prx_log; |
| 1084 | struct http_txn *txn = &s->txn; |
Willy Tarreau | c9bd0cc | 2009-05-10 11:57:02 +0200 | [diff] [blame] | 1085 | int tolog, level, err; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1086 | char *uri, *h; |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 1087 | const char *svid; |
Willy Tarreau | fe94460 | 2007-10-25 10:34:16 +0200 | [diff] [blame] | 1088 | struct tm tm; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1089 | static char tmpline[MAX_SYSLOG_LEN]; |
Willy Tarreau | 7008987 | 2008-06-13 21:12:51 +0200 | [diff] [blame] | 1090 | int t_request; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1091 | int hdr; |
| 1092 | |
Willy Tarreau | c9bd0cc | 2009-05-10 11:57:02 +0200 | [diff] [blame] | 1093 | /* if we don't want to log normal traffic, return now */ |
| 1094 | err = (s->flags & (SN_ERR_MASK | SN_REDISP)) || |
Willy Tarreau | ee28de0 | 2010-06-01 09:51:00 +0200 | [diff] [blame] | 1095 | (s->req->cons->conn_retries != be->conn_retries) || |
Willy Tarreau | c9bd0cc | 2009-05-10 11:57:02 +0200 | [diff] [blame] | 1096 | txn->status >= 500; |
| 1097 | if (!err && (fe->options2 & PR_O2_NOLOGNORM)) |
| 1098 | return; |
| 1099 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1100 | if (fe->logfac1 < 0 && fe->logfac2 < 0) |
| 1101 | return; |
| 1102 | prx_log = fe; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1103 | |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 1104 | if (prx_log->options2 & PR_O2_CLFLOG) |
| 1105 | return http_sess_clflog(s); |
| 1106 | |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 1107 | if (addr_to_str(&s->req->prod->addr.c.from, pn, sizeof(pn)) == AF_UNIX) |
| 1108 | snprintf(pn, sizeof(pn), "unix:%d", s->listener->luid); |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1109 | |
Willy Tarreau | b7f694f | 2008-06-22 17:18:02 +0200 | [diff] [blame] | 1110 | get_localtime(s->logs.accept_date.tv_sec, &tm); |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1111 | |
| 1112 | /* FIXME: let's limit ourselves to frontend logging for now. */ |
| 1113 | tolog = fe->to_log; |
| 1114 | |
| 1115 | h = tmpline; |
| 1116 | if (fe->to_log & LW_REQHDR && |
| 1117 | txn->req.cap && |
| 1118 | (h < tmpline + sizeof(tmpline) - 10)) { |
| 1119 | *(h++) = ' '; |
| 1120 | *(h++) = '{'; |
| 1121 | for (hdr = 0; hdr < fe->nb_req_cap; hdr++) { |
| 1122 | if (hdr) |
| 1123 | *(h++) = '|'; |
| 1124 | if (txn->req.cap[hdr] != NULL) |
| 1125 | h = encode_string(h, tmpline + sizeof(tmpline) - 7, |
| 1126 | '#', hdr_encode_map, txn->req.cap[hdr]); |
| 1127 | } |
| 1128 | *(h++) = '}'; |
| 1129 | } |
| 1130 | |
| 1131 | if (fe->to_log & LW_RSPHDR && |
| 1132 | txn->rsp.cap && |
| 1133 | (h < tmpline + sizeof(tmpline) - 7)) { |
| 1134 | *(h++) = ' '; |
| 1135 | *(h++) = '{'; |
| 1136 | for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) { |
| 1137 | if (hdr) |
| 1138 | *(h++) = '|'; |
| 1139 | if (txn->rsp.cap[hdr] != NULL) |
| 1140 | h = encode_string(h, tmpline + sizeof(tmpline) - 4, |
| 1141 | '#', hdr_encode_map, txn->rsp.cap[hdr]); |
| 1142 | } |
| 1143 | *(h++) = '}'; |
| 1144 | } |
| 1145 | |
| 1146 | if (h < tmpline + sizeof(tmpline) - 4) { |
| 1147 | *(h++) = ' '; |
| 1148 | *(h++) = '"'; |
| 1149 | uri = txn->uri ? txn->uri : "<BADREQ>"; |
| 1150 | h = encode_string(h, tmpline + sizeof(tmpline) - 1, |
| 1151 | '#', url_encode_map, uri); |
| 1152 | *(h++) = '"'; |
| 1153 | } |
| 1154 | *h = '\0'; |
| 1155 | |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 1156 | if (!(tolog & LW_SVID)) |
| 1157 | svid = "-"; |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 1158 | else switch (s->target.type) { |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 1159 | case TARG_TYPE_SERVER: |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 1160 | svid = s->target.ptr.s->id; |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 1161 | break; |
| 1162 | case TARG_TYPE_APPLET: |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 1163 | svid = s->target.ptr.a->name; |
Willy Tarreau | 71904a4 | 2011-02-13 14:30:26 +0100 | [diff] [blame] | 1164 | break; |
| 1165 | default: |
| 1166 | svid = "<NOSRV>"; |
| 1167 | break; |
| 1168 | } |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1169 | |
Willy Tarreau | 7008987 | 2008-06-13 21:12:51 +0200 | [diff] [blame] | 1170 | t_request = -1; |
| 1171 | if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept)) |
| 1172 | t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request); |
| 1173 | |
Willy Tarreau | c9bd0cc | 2009-05-10 11:57:02 +0200 | [diff] [blame] | 1174 | level = LOG_INFO; |
| 1175 | if (err && (fe->options2 & PR_O2_LOGERRORS)) |
| 1176 | level = LOG_ERR; |
| 1177 | |
| 1178 | send_log(prx_log, level, |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1179 | "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]" |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 1180 | " %s %s/%s %d/%ld/%ld/%ld/%s%ld %d %s%lld" |
| 1181 | " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %ld/%ld%s\n", |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 1182 | (s->req->prod->addr.c.from.ss_family == AF_UNIX) ? "unix" : pn, |
| 1183 | (s->req->prod->addr.c.from.ss_family == AF_UNIX) ? s->listener->luid : |
Willy Tarreau | 86ad42c | 2011-08-27 12:29:07 +0200 | [diff] [blame] | 1184 | get_host_port(&s->req->prod->addr.c.from), |
Willy Tarreau | fe94460 | 2007-10-25 10:34:16 +0200 | [diff] [blame] | 1185 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 1186 | tm.tm_hour, tm.tm_min, tm.tm_sec, (int)s->logs.accept_date.tv_usec/1000, |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1187 | fe->id, be->id, svid, |
Willy Tarreau | 7008987 | 2008-06-13 21:12:51 +0200 | [diff] [blame] | 1188 | t_request, |
| 1189 | (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1, |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1190 | (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1, |
| 1191 | (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1, |
| 1192 | (tolog & LW_BYTES) ? "" : "+", s->logs.t_close, |
| 1193 | txn->status, |
Willy Tarreau | 8b3977f | 2008-01-18 11:16:32 +0100 | [diff] [blame] | 1194 | (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out, |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1195 | txn->cli_cookie ? txn->cli_cookie : "-", |
| 1196 | txn->srv_cookie ? txn->srv_cookie : "-", |
| 1197 | sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT], |
| 1198 | sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT], |
| 1199 | (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-', |
| 1200 | (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-', |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1201 | actconn, fe->feconn, be->beconn, target_srv(&s->target) ? target_srv(&s->target)->cur_sess : 0, |
Krzysztof Piotr Oledzki | 25b501a | 2008-01-06 16:36:16 +0100 | [diff] [blame] | 1202 | (s->flags & SN_REDISP)?"+":"", |
Willy Tarreau | ee28de0 | 2010-06-01 09:51:00 +0200 | [diff] [blame] | 1203 | (s->req->cons->conn_retries>0)?(be->conn_retries - s->req->cons->conn_retries):be->conn_retries, |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1204 | s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline); |
| 1205 | |
| 1206 | s->logs.logwait = 0; |
| 1207 | } |
| 1208 | |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1209 | |
| 1210 | /* |
| 1211 | * Capture headers from message starting at <som> according to header list |
| 1212 | * <cap_hdr>, and fill the <idx> structure appropriately. |
| 1213 | */ |
| 1214 | void capture_headers(char *som, struct hdr_idx *idx, |
| 1215 | char **cap, struct cap_hdr *cap_hdr) |
| 1216 | { |
| 1217 | char *eol, *sol, *col, *sov; |
| 1218 | int cur_idx; |
| 1219 | struct cap_hdr *h; |
| 1220 | int len; |
| 1221 | |
| 1222 | sol = som + hdr_idx_first_pos(idx); |
| 1223 | cur_idx = hdr_idx_first_idx(idx); |
| 1224 | |
| 1225 | while (cur_idx) { |
| 1226 | eol = sol + idx->v[cur_idx].len; |
| 1227 | |
| 1228 | col = sol; |
| 1229 | while (col < eol && *col != ':') |
| 1230 | col++; |
| 1231 | |
| 1232 | sov = col + 1; |
| 1233 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 1234 | sov++; |
| 1235 | |
| 1236 | for (h = cap_hdr; h; h = h->next) { |
| 1237 | if ((h->namelen == col - sol) && |
| 1238 | (strncasecmp(sol, h->name, h->namelen) == 0)) { |
| 1239 | if (cap[h->index] == NULL) |
| 1240 | cap[h->index] = |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 1241 | pool_alloc2(h->pool); |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1242 | |
| 1243 | if (cap[h->index] == NULL) { |
| 1244 | Alert("HTTP capture : out of memory.\n"); |
| 1245 | continue; |
| 1246 | } |
| 1247 | |
| 1248 | len = eol - sov; |
| 1249 | if (len > h->len) |
| 1250 | len = h->len; |
| 1251 | |
| 1252 | memcpy(cap[h->index], sov, len); |
| 1253 | cap[h->index][len]=0; |
| 1254 | } |
| 1255 | } |
| 1256 | sol = eol + idx->v[cur_idx].cr + 1; |
| 1257 | cur_idx = idx->v[cur_idx].next; |
| 1258 | } |
| 1259 | } |
| 1260 | |
| 1261 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1262 | /* either we find an LF at <ptr> or we jump to <bad>. |
| 1263 | */ |
| 1264 | #define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0) |
| 1265 | |
| 1266 | /* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK, |
| 1267 | * otherwise to <http_msg_ood> with <state> set to <st>. |
| 1268 | */ |
| 1269 | #define EAT_AND_JUMP_OR_RETURN(good, st) do { \ |
| 1270 | ptr++; \ |
| 1271 | if (likely(ptr < end)) \ |
| 1272 | goto good; \ |
| 1273 | else { \ |
| 1274 | state = (st); \ |
| 1275 | goto http_msg_ood; \ |
| 1276 | } \ |
| 1277 | } while (0) |
| 1278 | |
| 1279 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1280 | /* |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 1281 | * This function parses a status line between <ptr> and <end>, starting with |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1282 | * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP, |
| 1283 | * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others |
| 1284 | * will give undefined results. |
| 1285 | * Note that it is upon the caller's responsibility to ensure that ptr < end, |
| 1286 | * and that msg->sol points to the beginning of the response. |
| 1287 | * If a complete line is found (which implies that at least one CR or LF is |
| 1288 | * found before <end>, the updated <ptr> is returned, otherwise NULL is |
| 1289 | * returned indicating an incomplete line (which does not mean that parts have |
| 1290 | * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are |
| 1291 | * non-NULL, they are fed with the new <ptr> and <state> values to be passed |
| 1292 | * upon next call. |
| 1293 | * |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1294 | * This function was intentionally designed to be called from |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1295 | * http_msg_analyzer() with the lowest overhead. It should integrate perfectly |
| 1296 | * within its state machine and use the same macros, hence the need for same |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1297 | * labels and variable names. Note that msg->sol is left unchanged. |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1298 | */ |
Willy Tarreau | e69eada | 2008-01-27 00:34:10 +0100 | [diff] [blame] | 1299 | const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf, |
| 1300 | unsigned int state, const char *ptr, const char *end, |
| 1301 | char **ret_ptr, unsigned int *ret_state) |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1302 | { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1303 | switch (state) { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1304 | case HTTP_MSG_RPVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1305 | http_msg_rpver: |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1306 | if (likely(HTTP_IS_VER_TOKEN(*ptr))) |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1307 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER); |
| 1308 | |
| 1309 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1310 | msg->sl.st.v_l = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1311 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP); |
| 1312 | } |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1313 | state = HTTP_MSG_ERROR; |
| 1314 | break; |
| 1315 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1316 | case HTTP_MSG_RPVER_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1317 | http_msg_rpver_sp: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1318 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1319 | msg->sl.st.c = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1320 | goto http_msg_rpcode; |
| 1321 | } |
| 1322 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1323 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP); |
| 1324 | /* so it's a CR/LF, this is invalid */ |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1325 | state = HTTP_MSG_ERROR; |
| 1326 | break; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1327 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1328 | case HTTP_MSG_RPCODE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1329 | http_msg_rpcode: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1330 | if (likely(!HTTP_IS_LWS(*ptr))) |
| 1331 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE); |
| 1332 | |
| 1333 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1334 | msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1335 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP); |
| 1336 | } |
| 1337 | |
| 1338 | /* so it's a CR/LF, so there is no reason phrase */ |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1339 | msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1340 | http_msg_rsp_reason: |
| 1341 | /* FIXME: should we support HTTP responses without any reason phrase ? */ |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1342 | msg->sl.st.r = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1343 | msg->sl.st.r_l = 0; |
| 1344 | goto http_msg_rpline_eol; |
| 1345 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1346 | case HTTP_MSG_RPCODE_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1347 | http_msg_rpcode_sp: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1348 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1349 | msg->sl.st.r = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1350 | goto http_msg_rpreason; |
| 1351 | } |
| 1352 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1353 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP); |
| 1354 | /* so it's a CR/LF, so there is no reason phrase */ |
| 1355 | goto http_msg_rsp_reason; |
| 1356 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1357 | case HTTP_MSG_RPREASON: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1358 | http_msg_rpreason: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1359 | if (likely(!HTTP_IS_CRLF(*ptr))) |
| 1360 | EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON); |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1361 | msg->sl.st.r_l = (ptr - msg_buf) - msg->som - msg->sl.st.r; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1362 | http_msg_rpline_eol: |
| 1363 | /* We have seen the end of line. Note that we do not |
| 1364 | * necessarily have the \n yet, but at least we know that we |
| 1365 | * have EITHER \r OR \n, otherwise the response would not be |
| 1366 | * complete. We can then record the response length and return |
| 1367 | * to the caller which will be able to register it. |
| 1368 | */ |
| 1369 | msg->sl.st.l = ptr - msg->sol; |
| 1370 | return ptr; |
| 1371 | |
| 1372 | #ifdef DEBUG_FULL |
| 1373 | default: |
| 1374 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1375 | exit(1); |
| 1376 | #endif |
| 1377 | } |
| 1378 | |
| 1379 | http_msg_ood: |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1380 | /* out of valid data */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1381 | if (ret_state) |
| 1382 | *ret_state = state; |
| 1383 | if (ret_ptr) |
| 1384 | *ret_ptr = (char *)ptr; |
| 1385 | return NULL; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1386 | } |
| 1387 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1388 | /* |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1389 | * This function parses a request line between <ptr> and <end>, starting with |
| 1390 | * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP, |
| 1391 | * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others |
| 1392 | * will give undefined results. |
| 1393 | * Note that it is upon the caller's responsibility to ensure that ptr < end, |
| 1394 | * and that msg->sol points to the beginning of the request. |
| 1395 | * If a complete line is found (which implies that at least one CR or LF is |
| 1396 | * found before <end>, the updated <ptr> is returned, otherwise NULL is |
| 1397 | * returned indicating an incomplete line (which does not mean that parts have |
| 1398 | * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are |
| 1399 | * non-NULL, they are fed with the new <ptr> and <state> values to be passed |
| 1400 | * upon next call. |
| 1401 | * |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1402 | * This function was intentionally designed to be called from |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1403 | * http_msg_analyzer() with the lowest overhead. It should integrate perfectly |
| 1404 | * within its state machine and use the same macros, hence the need for same |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1405 | * labels and variable names. Note that msg->sol is left unchanged. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1406 | */ |
Willy Tarreau | e69eada | 2008-01-27 00:34:10 +0100 | [diff] [blame] | 1407 | const char *http_parse_reqline(struct http_msg *msg, const char *msg_buf, |
| 1408 | unsigned int state, const char *ptr, const char *end, |
| 1409 | char **ret_ptr, unsigned int *ret_state) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1410 | { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1411 | switch (state) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1412 | case HTTP_MSG_RQMETH: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1413 | http_msg_rqmeth: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1414 | if (likely(HTTP_IS_TOKEN(*ptr))) |
| 1415 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1416 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1417 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1418 | msg->sl.rq.m_l = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1419 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP); |
| 1420 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1421 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1422 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 1423 | /* HTTP 0.9 request */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1424 | msg->sl.rq.m_l = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1425 | http_msg_req09_uri: |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1426 | msg->sl.rq.u = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1427 | http_msg_req09_uri_e: |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1428 | msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1429 | http_msg_req09_ver: |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1430 | msg->sl.rq.v = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1431 | msg->sl.rq.v_l = 0; |
| 1432 | goto http_msg_rqline_eol; |
| 1433 | } |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1434 | state = HTTP_MSG_ERROR; |
| 1435 | break; |
| 1436 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1437 | case HTTP_MSG_RQMETH_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1438 | http_msg_rqmeth_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1439 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1440 | msg->sl.rq.u = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1441 | goto http_msg_rquri; |
| 1442 | } |
| 1443 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1444 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP); |
| 1445 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1446 | goto http_msg_req09_uri; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1447 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1448 | case HTTP_MSG_RQURI: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1449 | http_msg_rquri: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1450 | if (likely(!HTTP_IS_LWS(*ptr))) |
| 1451 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1452 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1453 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1454 | msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1455 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP); |
| 1456 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1457 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1458 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1459 | goto http_msg_req09_uri_e; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1460 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1461 | case HTTP_MSG_RQURI_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1462 | http_msg_rquri_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1463 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1464 | msg->sl.rq.v = (ptr - msg_buf) - msg->som; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1465 | goto http_msg_rqver; |
| 1466 | } |
| 1467 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1468 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP); |
| 1469 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1470 | goto http_msg_req09_ver; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1471 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1472 | case HTTP_MSG_RQVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1473 | http_msg_rqver: |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1474 | if (likely(HTTP_IS_VER_TOKEN(*ptr))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1475 | EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER); |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1476 | |
| 1477 | if (likely(HTTP_IS_CRLF(*ptr))) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1478 | msg->sl.rq.v_l = (ptr - msg_buf) - msg->som - msg->sl.rq.v; |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1479 | http_msg_rqline_eol: |
| 1480 | /* We have seen the end of line. Note that we do not |
| 1481 | * necessarily have the \n yet, but at least we know that we |
| 1482 | * have EITHER \r OR \n, otherwise the request would not be |
| 1483 | * complete. We can then record the request length and return |
| 1484 | * to the caller which will be able to register it. |
| 1485 | */ |
| 1486 | msg->sl.rq.l = ptr - msg->sol; |
| 1487 | return ptr; |
| 1488 | } |
| 1489 | |
| 1490 | /* neither an HTTP_VER token nor a CRLF */ |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1491 | state = HTTP_MSG_ERROR; |
| 1492 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1493 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1494 | #ifdef DEBUG_FULL |
| 1495 | default: |
| 1496 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1497 | exit(1); |
| 1498 | #endif |
| 1499 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1500 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1501 | http_msg_ood: |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1502 | /* out of valid data */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1503 | if (ret_state) |
| 1504 | *ret_state = state; |
| 1505 | if (ret_ptr) |
| 1506 | *ret_ptr = (char *)ptr; |
| 1507 | return NULL; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1508 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1509 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1510 | /* |
| 1511 | * Returns the data from Authorization header. Function may be called more |
| 1512 | * than once so data is stored in txn->auth_data. When no header is found |
| 1513 | * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid |
| 1514 | * searching again for something we are unable to find anyway. |
| 1515 | */ |
| 1516 | |
| 1517 | char get_http_auth_buff[BUFSIZE]; |
| 1518 | |
| 1519 | int |
| 1520 | get_http_auth(struct session *s) |
| 1521 | { |
| 1522 | |
| 1523 | struct http_txn *txn = &s->txn; |
| 1524 | struct chunk auth_method; |
| 1525 | struct hdr_ctx ctx; |
| 1526 | char *h, *p; |
| 1527 | int len; |
| 1528 | |
| 1529 | #ifdef DEBUG_AUTH |
| 1530 | printf("Auth for session %p: %d\n", s, txn->auth.method); |
| 1531 | #endif |
| 1532 | |
| 1533 | if (txn->auth.method == HTTP_AUTH_WRONG) |
| 1534 | return 0; |
| 1535 | |
| 1536 | if (txn->auth.method) |
| 1537 | return 1; |
| 1538 | |
| 1539 | txn->auth.method = HTTP_AUTH_WRONG; |
| 1540 | |
| 1541 | ctx.idx = 0; |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 1542 | |
| 1543 | if (txn->flags & TX_USE_PX_CONN) { |
| 1544 | h = "Proxy-Authorization"; |
| 1545 | len = strlen(h); |
| 1546 | } else { |
| 1547 | h = "Authorization"; |
| 1548 | len = strlen(h); |
| 1549 | } |
| 1550 | |
| 1551 | if (!http_find_header2(h, len, txn->req.sol, &txn->hdr_idx, &ctx)) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1552 | return 0; |
| 1553 | |
| 1554 | h = ctx.line + ctx.val; |
| 1555 | |
| 1556 | p = memchr(h, ' ', ctx.vlen); |
| 1557 | if (!p || p == h) |
| 1558 | return 0; |
| 1559 | |
| 1560 | chunk_initlen(&auth_method, h, 0, p-h); |
| 1561 | chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1); |
| 1562 | |
| 1563 | if (!strncasecmp("Basic", auth_method.str, auth_method.len)) { |
| 1564 | |
| 1565 | len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len, |
| 1566 | get_http_auth_buff, BUFSIZE - 1); |
| 1567 | |
| 1568 | if (len < 0) |
| 1569 | return 0; |
| 1570 | |
| 1571 | |
| 1572 | get_http_auth_buff[len] = '\0'; |
| 1573 | |
| 1574 | p = strchr(get_http_auth_buff, ':'); |
| 1575 | |
| 1576 | if (!p) |
| 1577 | return 0; |
| 1578 | |
| 1579 | txn->auth.user = get_http_auth_buff; |
| 1580 | *p = '\0'; |
| 1581 | txn->auth.pass = p+1; |
| 1582 | |
| 1583 | txn->auth.method = HTTP_AUTH_BASIC; |
| 1584 | return 1; |
| 1585 | } |
| 1586 | |
| 1587 | return 0; |
| 1588 | } |
| 1589 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1590 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1591 | /* |
| 1592 | * This function parses an HTTP message, either a request or a response, |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1593 | * depending on the initial msg->msg_state. It can be preempted everywhere |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1594 | * when data are missing and recalled at the exact same location with no |
| 1595 | * information loss. The header index is re-initialized when switching from |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1596 | * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1597 | * fields. Note that msg->som and msg->sol will be initialized after completing |
| 1598 | * the first state, so that none of the msg pointers has to be initialized |
| 1599 | * prior to the first call. |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1600 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1601 | void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx) |
| 1602 | { |
Willy Tarreau | e69eada | 2008-01-27 00:34:10 +0100 | [diff] [blame] | 1603 | unsigned int state; /* updated only when leaving the FSM */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1604 | register char *ptr, *end; /* request pointers, to avoid dereferences */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1605 | |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1606 | state = msg->msg_state; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1607 | ptr = buf->lr; |
| 1608 | end = buf->r; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1609 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1610 | if (unlikely(ptr >= end)) |
| 1611 | goto http_msg_ood; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1612 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1613 | switch (state) { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1614 | /* |
| 1615 | * First, states that are specific to the response only. |
| 1616 | * We check them first so that request and headers are |
| 1617 | * closer to each other (accessed more often). |
| 1618 | */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1619 | case HTTP_MSG_RPBEFORE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1620 | http_msg_rpbefore: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1621 | if (likely(HTTP_IS_TOKEN(*ptr))) { |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1622 | /* we have a start of message, but we have to check |
| 1623 | * first if we need to remove some CRLF. We can only |
| 1624 | * do this when send_max=0. |
| 1625 | */ |
| 1626 | char *beg = buf->w + buf->send_max; |
| 1627 | if (beg >= buf->data + buf->size) |
| 1628 | beg -= buf->size; |
| 1629 | if (unlikely(ptr != beg)) { |
| 1630 | if (buf->send_max) |
| 1631 | goto http_msg_ood; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1632 | /* Remove empty leading lines, as recommended by RFC2616. */ |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1633 | buffer_ignore(buf, ptr - beg); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1634 | } |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1635 | msg->som = ptr - buf->data; |
Willy Tarreau | 816b979 | 2009-09-15 21:25:21 +0200 | [diff] [blame] | 1636 | msg->sol = ptr; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1637 | hdr_idx_init(idx); |
| 1638 | state = HTTP_MSG_RPVER; |
| 1639 | goto http_msg_rpver; |
| 1640 | } |
| 1641 | |
| 1642 | if (unlikely(!HTTP_IS_CRLF(*ptr))) |
| 1643 | goto http_msg_invalid; |
| 1644 | |
| 1645 | if (unlikely(*ptr == '\n')) |
| 1646 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE); |
| 1647 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR); |
| 1648 | /* stop here */ |
| 1649 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1650 | case HTTP_MSG_RPBEFORE_CR: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1651 | http_msg_rpbefore_cr: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1652 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1653 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE); |
| 1654 | /* stop here */ |
| 1655 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1656 | case HTTP_MSG_RPVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1657 | http_msg_rpver: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1658 | case HTTP_MSG_RPVER_SP: |
| 1659 | case HTTP_MSG_RPCODE: |
| 1660 | case HTTP_MSG_RPCODE_SP: |
| 1661 | case HTTP_MSG_RPREASON: |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 1662 | ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end, |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1663 | &buf->lr, &msg->msg_state); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1664 | if (unlikely(!ptr)) |
| 1665 | return; |
| 1666 | |
| 1667 | /* we have a full response and we know that we have either a CR |
| 1668 | * or an LF at <ptr>. |
| 1669 | */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1670 | //fprintf(stderr,"som=%d rq.l=%d *ptr=0x%02x\n", msg->som, msg->sl.st.l, *ptr); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1671 | hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r'); |
| 1672 | |
| 1673 | msg->sol = ptr; |
| 1674 | if (likely(*ptr == '\r')) |
| 1675 | EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END); |
| 1676 | goto http_msg_rpline_end; |
| 1677 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1678 | case HTTP_MSG_RPLINE_END: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1679 | http_msg_rpline_end: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1680 | /* msg->sol must point to the first of CR or LF. */ |
| 1681 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1682 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST); |
| 1683 | /* stop here */ |
| 1684 | |
| 1685 | /* |
| 1686 | * Second, states that are specific to the request only |
| 1687 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1688 | case HTTP_MSG_RQBEFORE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1689 | http_msg_rqbefore: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1690 | if (likely(HTTP_IS_TOKEN(*ptr))) { |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1691 | /* we have a start of message, but we have to check |
| 1692 | * first if we need to remove some CRLF. We can only |
| 1693 | * do this when send_max=0. |
| 1694 | */ |
| 1695 | char *beg = buf->w + buf->send_max; |
| 1696 | if (beg >= buf->data + buf->size) |
| 1697 | beg -= buf->size; |
| 1698 | if (likely(ptr != beg)) { |
| 1699 | if (buf->send_max) |
| 1700 | goto http_msg_ood; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1701 | /* Remove empty leading lines, as recommended by RFC2616. */ |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1702 | buffer_ignore(buf, ptr - beg); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1703 | } |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1704 | msg->som = ptr - buf->data; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1705 | msg->sol = ptr; |
Willy Tarreau | f0d058e | 2007-01-25 12:03:42 +0100 | [diff] [blame] | 1706 | /* we will need this when keep-alive will be supported |
| 1707 | hdr_idx_init(idx); |
| 1708 | */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1709 | state = HTTP_MSG_RQMETH; |
| 1710 | goto http_msg_rqmeth; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1711 | } |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1712 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1713 | if (unlikely(!HTTP_IS_CRLF(*ptr))) |
| 1714 | goto http_msg_invalid; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1715 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1716 | if (unlikely(*ptr == '\n')) |
| 1717 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE); |
| 1718 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1719 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1720 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1721 | case HTTP_MSG_RQBEFORE_CR: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1722 | http_msg_rqbefore_cr: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1723 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1724 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1725 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1726 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1727 | case HTTP_MSG_RQMETH: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1728 | http_msg_rqmeth: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1729 | case HTTP_MSG_RQMETH_SP: |
| 1730 | case HTTP_MSG_RQURI: |
| 1731 | case HTTP_MSG_RQURI_SP: |
| 1732 | case HTTP_MSG_RQVER: |
| 1733 | ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end, |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1734 | &buf->lr, &msg->msg_state); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1735 | if (unlikely(!ptr)) |
| 1736 | return; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1737 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1738 | /* we have a full request and we know that we have either a CR |
| 1739 | * or an LF at <ptr>. |
| 1740 | */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1741 | //fprintf(stderr,"som=%d rq.l=%d *ptr=0x%02x\n", msg->som, msg->sl.rq.l, *ptr); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1742 | hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r'); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1743 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1744 | msg->sol = ptr; |
| 1745 | if (likely(*ptr == '\r')) |
| 1746 | EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1747 | goto http_msg_rqline_end; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1748 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1749 | case HTTP_MSG_RQLINE_END: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1750 | http_msg_rqline_end: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1751 | /* check for HTTP/0.9 request : no version information available. |
| 1752 | * msg->sol must point to the first of CR or LF. |
| 1753 | */ |
| 1754 | if (unlikely(msg->sl.rq.v_l == 0)) |
| 1755 | goto http_msg_last_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1756 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1757 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1758 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1759 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1760 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1761 | /* |
| 1762 | * Common states below |
| 1763 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1764 | case HTTP_MSG_HDR_FIRST: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1765 | http_msg_hdr_first: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1766 | msg->sol = ptr; |
| 1767 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1768 | goto http_msg_hdr_name; |
| 1769 | } |
| 1770 | |
| 1771 | if (likely(*ptr == '\r')) |
| 1772 | EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF); |
| 1773 | goto http_msg_last_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1774 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1775 | case HTTP_MSG_HDR_NAME: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1776 | http_msg_hdr_name: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1777 | /* assumes msg->sol points to the first char */ |
| 1778 | if (likely(HTTP_IS_TOKEN(*ptr))) |
| 1779 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1780 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1781 | if (likely(*ptr == ':')) { |
| 1782 | msg->col = ptr - buf->data; |
| 1783 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP); |
| 1784 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1785 | |
Willy Tarreau | 32a4ec0 | 2009-04-02 11:35:18 +0200 | [diff] [blame] | 1786 | if (likely(msg->err_pos < -1) || *ptr == '\n') |
| 1787 | goto http_msg_invalid; |
| 1788 | |
| 1789 | if (msg->err_pos == -1) /* capture error pointer */ |
| 1790 | msg->err_pos = ptr - buf->data; /* >= 0 now */ |
| 1791 | |
| 1792 | /* and we still accept this non-token character */ |
| 1793 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1794 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1795 | case HTTP_MSG_HDR_L1_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1796 | http_msg_hdr_l1_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1797 | /* assumes msg->sol points to the first char and msg->col to the colon */ |
| 1798 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1799 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1800 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1801 | /* header value can be basically anything except CR/LF */ |
| 1802 | msg->sov = ptr - buf->data; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1803 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1804 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1805 | goto http_msg_hdr_val; |
| 1806 | } |
| 1807 | |
| 1808 | if (likely(*ptr == '\r')) |
| 1809 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF); |
| 1810 | goto http_msg_hdr_l1_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1811 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1812 | case HTTP_MSG_HDR_L1_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1813 | http_msg_hdr_l1_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1814 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1815 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1816 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1817 | case HTTP_MSG_HDR_L1_LWS: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1818 | http_msg_hdr_l1_lws: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1819 | if (likely(HTTP_IS_SPHT(*ptr))) { |
| 1820 | /* replace HT,CR,LF with spaces */ |
| 1821 | for (; buf->data+msg->sov < ptr; msg->sov++) |
| 1822 | buf->data[msg->sov] = ' '; |
| 1823 | goto http_msg_hdr_l1_sp; |
| 1824 | } |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 1825 | /* we had a header consisting only in spaces ! */ |
| 1826 | msg->eol = buf->data + msg->sov; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1827 | goto http_msg_complete_header; |
| 1828 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1829 | case HTTP_MSG_HDR_VAL: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1830 | http_msg_hdr_val: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1831 | /* assumes msg->sol points to the first char, msg->col to the |
| 1832 | * colon, and msg->sov points to the first character of the |
| 1833 | * value. |
| 1834 | */ |
| 1835 | if (likely(!HTTP_IS_CRLF(*ptr))) |
| 1836 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1837 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1838 | msg->eol = ptr; |
| 1839 | /* Note: we could also copy eol into ->eoh so that we have the |
| 1840 | * real header end in case it ends with lots of LWS, but is this |
| 1841 | * really needed ? |
| 1842 | */ |
| 1843 | if (likely(*ptr == '\r')) |
| 1844 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF); |
| 1845 | goto http_msg_hdr_l2_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1846 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1847 | case HTTP_MSG_HDR_L2_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1848 | http_msg_hdr_l2_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1849 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1850 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1851 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1852 | case HTTP_MSG_HDR_L2_LWS: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1853 | http_msg_hdr_l2_lws: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1854 | if (unlikely(HTTP_IS_SPHT(*ptr))) { |
| 1855 | /* LWS: replace HT,CR,LF with spaces */ |
| 1856 | for (; msg->eol < ptr; msg->eol++) |
| 1857 | *msg->eol = ' '; |
| 1858 | goto http_msg_hdr_val; |
| 1859 | } |
| 1860 | http_msg_complete_header: |
| 1861 | /* |
| 1862 | * It was a new header, so the last one is finished. |
| 1863 | * Assumes msg->sol points to the first char, msg->col to the |
| 1864 | * colon, msg->sov points to the first character of the value |
| 1865 | * and msg->eol to the first CR or LF so we know how the line |
| 1866 | * ends. We insert last header into the index. |
| 1867 | */ |
| 1868 | /* |
| 1869 | fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol); |
| 1870 | write(2, msg->sol, msg->eol-msg->sol); |
| 1871 | fprintf(stderr,"\n"); |
| 1872 | */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1873 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1874 | if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r', |
| 1875 | idx, idx->tail) < 0)) |
| 1876 | goto http_msg_invalid; |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1877 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1878 | msg->sol = ptr; |
| 1879 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1880 | goto http_msg_hdr_name; |
| 1881 | } |
| 1882 | |
| 1883 | if (likely(*ptr == '\r')) |
| 1884 | EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF); |
| 1885 | goto http_msg_last_lf; |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1886 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1887 | case HTTP_MSG_LAST_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1888 | http_msg_last_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1889 | /* Assumes msg->sol points to the first of either CR or LF */ |
| 1890 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1891 | ptr++; |
| 1892 | buf->lr = ptr; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 1893 | msg->col = msg->sov = buf->lr - buf->data; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1894 | msg->eoh = msg->sol - buf->data; |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 1895 | msg->sol = buf->data + msg->som; |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1896 | msg->msg_state = HTTP_MSG_BODY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1897 | return; |
| 1898 | #ifdef DEBUG_FULL |
| 1899 | default: |
| 1900 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1901 | exit(1); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1902 | #endif |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1903 | } |
| 1904 | http_msg_ood: |
| 1905 | /* out of data */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1906 | msg->msg_state = state; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1907 | buf->lr = ptr; |
| 1908 | return; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1909 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1910 | http_msg_invalid: |
| 1911 | /* invalid message */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1912 | msg->msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1913 | buf->lr = ptr; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1914 | return; |
| 1915 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1916 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1917 | /* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the |
| 1918 | * conversion succeeded, 0 in case of error. If the request was already 1.X, |
| 1919 | * nothing is done and 1 is returned. |
| 1920 | */ |
| 1921 | static int http_upgrade_v09_to_v10(struct buffer *req, struct http_msg *msg, struct http_txn *txn) |
| 1922 | { |
| 1923 | int delta; |
| 1924 | char *cur_end; |
| 1925 | |
| 1926 | if (msg->sl.rq.v_l != 0) |
| 1927 | return 1; |
| 1928 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1929 | cur_end = msg->sol + msg->sl.rq.l; |
| 1930 | delta = 0; |
| 1931 | |
| 1932 | if (msg->sl.rq.u_l == 0) { |
| 1933 | /* if no URI was set, add "/" */ |
| 1934 | delta = buffer_replace2(req, cur_end, cur_end, " /", 2); |
| 1935 | cur_end += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 1936 | http_msg_move_end(msg, delta); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1937 | } |
| 1938 | /* add HTTP version */ |
| 1939 | delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11); |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 1940 | http_msg_move_end(msg, delta); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1941 | cur_end += delta; |
| 1942 | cur_end = (char *)http_parse_reqline(msg, req->data, |
| 1943 | HTTP_MSG_RQMETH, |
| 1944 | msg->sol, cur_end + 1, |
| 1945 | NULL, NULL); |
| 1946 | if (unlikely(!cur_end)) |
| 1947 | return 0; |
| 1948 | |
| 1949 | /* we have a full HTTP/1.0 request now and we know that |
| 1950 | * we have either a CR or an LF at <ptr>. |
| 1951 | */ |
| 1952 | hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r'); |
| 1953 | return 1; |
| 1954 | } |
| 1955 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1956 | /* Parse the Connection: header of an HTTP request, looking for both "close" |
| 1957 | * and "keep-alive" values. If a buffer is provided and we already know that |
| 1958 | * some headers may safely be removed, we remove them now. The <to_del> flags |
| 1959 | * are used for that : |
| 1960 | * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses) |
| 1961 | * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1). |
| 1962 | * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was |
| 1963 | * found, and TX_CON_*_SET is adjusted depending on what is left so only |
| 1964 | * harmless combinations may be removed. Do not call that after changes have |
| 1965 | * been processed. If unused, the buffer can be NULL, and no data will be |
| 1966 | * changed. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1967 | */ |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1968 | void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int to_del) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1969 | { |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1970 | struct hdr_ctx ctx; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1971 | const char *hdr_val = "Connection"; |
| 1972 | int hdr_len = 10; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1973 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1974 | if (txn->flags & TX_HDR_CONN_PRS) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1975 | return; |
| 1976 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1977 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1978 | hdr_val = "Proxy-Connection"; |
| 1979 | hdr_len = 16; |
| 1980 | } |
| 1981 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1982 | ctx.idx = 0; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1983 | txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET); |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1984 | while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1985 | if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) { |
| 1986 | txn->flags |= TX_HDR_CONN_KAL; |
| 1987 | if ((to_del & 2) && buf) |
| 1988 | http_remove_header2(msg, buf, &txn->hdr_idx, &ctx); |
| 1989 | else |
| 1990 | txn->flags |= TX_CON_KAL_SET; |
| 1991 | } |
| 1992 | else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) { |
| 1993 | txn->flags |= TX_HDR_CONN_CLO; |
| 1994 | if ((to_del & 1) && buf) |
| 1995 | http_remove_header2(msg, buf, &txn->hdr_idx, &ctx); |
| 1996 | else |
| 1997 | txn->flags |= TX_CON_CLO_SET; |
| 1998 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1999 | } |
| 2000 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2001 | txn->flags |= TX_HDR_CONN_PRS; |
| 2002 | return; |
| 2003 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2004 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2005 | /* Apply desired changes on the Connection: header. Values may be removed and/or |
| 2006 | * added depending on the <wanted> flags, which are exclusively composed of |
| 2007 | * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The |
| 2008 | * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left. |
| 2009 | */ |
| 2010 | void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int wanted) |
| 2011 | { |
| 2012 | struct hdr_ctx ctx; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2013 | const char *hdr_val = "Connection"; |
| 2014 | int hdr_len = 10; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2015 | |
| 2016 | ctx.idx = 0; |
| 2017 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2018 | |
| 2019 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 2020 | hdr_val = "Proxy-Connection"; |
| 2021 | hdr_len = 16; |
| 2022 | } |
| 2023 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2024 | txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET); |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2025 | while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2026 | if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) { |
| 2027 | if (wanted & TX_CON_KAL_SET) |
| 2028 | txn->flags |= TX_CON_KAL_SET; |
| 2029 | else |
| 2030 | http_remove_header2(msg, buf, &txn->hdr_idx, &ctx); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2031 | } |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2032 | else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) { |
| 2033 | if (wanted & TX_CON_CLO_SET) |
| 2034 | txn->flags |= TX_CON_CLO_SET; |
| 2035 | else |
| 2036 | http_remove_header2(msg, buf, &txn->hdr_idx, &ctx); |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 2037 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2038 | } |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2039 | |
| 2040 | if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
| 2041 | return; |
| 2042 | |
| 2043 | if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) { |
| 2044 | txn->flags |= TX_CON_CLO_SET; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2045 | hdr_val = "Connection: close"; |
| 2046 | hdr_len = 17; |
| 2047 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 2048 | hdr_val = "Proxy-Connection: close"; |
| 2049 | hdr_len = 23; |
| 2050 | } |
| 2051 | http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2052 | } |
| 2053 | |
| 2054 | if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) { |
| 2055 | txn->flags |= TX_CON_KAL_SET; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2056 | hdr_val = "Connection: keep-alive"; |
| 2057 | hdr_len = 22; |
| 2058 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 2059 | hdr_val = "Proxy-Connection: keep-alive"; |
| 2060 | hdr_len = 28; |
| 2061 | } |
| 2062 | http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2063 | } |
| 2064 | return; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2065 | } |
| 2066 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2067 | /* Parse the chunk size at buf->lr. Once done, it adjusts ->lr to point to the |
| 2068 | * first byte of body, and increments msg->sov by the number of bytes parsed, |
| 2069 | * so that we know we can forward between ->som and ->sov. Note that due to |
| 2070 | * possible wrapping at the end of the buffer, it is possible that msg->sov is |
| 2071 | * lower than msg->som. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2072 | * Return >0 on success, 0 when some data is missing, <0 on error. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2073 | * Note: this function is designed to parse wrapped CRLF at the end of the buffer. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2074 | */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2075 | int http_parse_chunk_size(struct buffer *buf, struct http_msg *msg) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2076 | { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2077 | char *ptr = buf->lr; |
| 2078 | char *end = buf->data + buf->size; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2079 | unsigned int chunk = 0; |
| 2080 | |
| 2081 | /* The chunk size is in the following form, though we are only |
| 2082 | * interested in the size and CRLF : |
| 2083 | * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF |
| 2084 | */ |
| 2085 | while (1) { |
| 2086 | int c; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2087 | if (ptr == buf->r) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2088 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2089 | c = hex2i(*ptr); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2090 | if (c < 0) /* not a hex digit anymore */ |
| 2091 | break; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2092 | if (++ptr >= end) |
| 2093 | ptr = buf->data; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2094 | if (chunk & 0xF000000) /* overflow will occur */ |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2095 | goto error; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2096 | chunk = (chunk << 4) + c; |
| 2097 | } |
| 2098 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2099 | /* empty size not allowed */ |
| 2100 | if (ptr == buf->lr) |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2101 | goto error; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2102 | |
| 2103 | while (http_is_spht[(unsigned char)*ptr]) { |
| 2104 | if (++ptr >= end) |
| 2105 | ptr = buf->data; |
| 2106 | if (ptr == buf->r) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2107 | return 0; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2108 | } |
| 2109 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2110 | /* Up to there, we know that at least one byte is present at *ptr. Check |
| 2111 | * for the end of chunk size. |
| 2112 | */ |
| 2113 | while (1) { |
| 2114 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 2115 | /* we now have a CR or an LF at ptr */ |
| 2116 | if (likely(*ptr == '\r')) { |
| 2117 | if (++ptr >= end) |
| 2118 | ptr = buf->data; |
| 2119 | if (ptr == buf->r) |
| 2120 | return 0; |
| 2121 | } |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2122 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2123 | if (*ptr != '\n') |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2124 | goto error; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2125 | if (++ptr >= end) |
| 2126 | ptr = buf->data; |
| 2127 | /* done */ |
| 2128 | break; |
| 2129 | } |
| 2130 | else if (*ptr == ';') { |
| 2131 | /* chunk extension, ends at next CRLF */ |
| 2132 | if (++ptr >= end) |
| 2133 | ptr = buf->data; |
| 2134 | if (ptr == buf->r) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2135 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2136 | |
| 2137 | while (!HTTP_IS_CRLF(*ptr)) { |
| 2138 | if (++ptr >= end) |
| 2139 | ptr = buf->data; |
| 2140 | if (ptr == buf->r) |
| 2141 | return 0; |
| 2142 | } |
| 2143 | /* we have a CRLF now, loop above */ |
| 2144 | continue; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2145 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2146 | else |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2147 | goto error; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2148 | } |
| 2149 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2150 | /* OK we found our CRLF and now <ptr> points to the next byte, |
| 2151 | * which may or may not be present. We save that into ->lr and |
| 2152 | * ->sov. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2153 | */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2154 | msg->sov += ptr - buf->lr; |
| 2155 | buf->lr = ptr; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 2156 | msg->chunk_len = chunk; |
| 2157 | msg->body_len += chunk; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2158 | msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2159 | return 1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2160 | error: |
| 2161 | msg->err_pos = ptr - buf->data; |
| 2162 | return -1; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2163 | } |
| 2164 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2165 | /* This function skips trailers in the buffer <buf> associated with HTTP |
| 2166 | * message <msg>. The first visited position is buf->lr. If the end of |
| 2167 | * the trailers is found, it is automatically scheduled to be forwarded, |
| 2168 | * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0. |
| 2169 | * If not enough data are available, the function does not change anything |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2170 | * except maybe buf->lr and msg->sov if it could parse some lines, and returns |
| 2171 | * zero. If a parse error is encountered, the function returns < 0 and does not |
| 2172 | * change anything except maybe buf->lr and msg->sov. Note that the message |
| 2173 | * must already be in HTTP_MSG_TRAILERS state before calling this function, |
| 2174 | * which implies that all non-trailers data have already been scheduled for |
| 2175 | * forwarding, and that the difference between msg->som and msg->sov exactly |
| 2176 | * matches the length of trailers already parsed and not forwarded. It is also |
| 2177 | * important to note that this function is designed to be able to parse wrapped |
| 2178 | * headers at end of buffer. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2179 | */ |
| 2180 | int http_forward_trailers(struct buffer *buf, struct http_msg *msg) |
| 2181 | { |
| 2182 | /* we have buf->lr which points to next line. Look for CRLF. */ |
| 2183 | while (1) { |
| 2184 | char *p1 = NULL, *p2 = NULL; |
| 2185 | char *ptr = buf->lr; |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2186 | int bytes; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2187 | |
| 2188 | /* scan current line and stop at LF or CRLF */ |
| 2189 | while (1) { |
| 2190 | if (ptr == buf->r) |
| 2191 | return 0; |
| 2192 | |
| 2193 | if (*ptr == '\n') { |
| 2194 | if (!p1) |
| 2195 | p1 = ptr; |
| 2196 | p2 = ptr; |
| 2197 | break; |
| 2198 | } |
| 2199 | |
| 2200 | if (*ptr == '\r') { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2201 | if (p1) { |
| 2202 | msg->err_pos = ptr - buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2203 | return -1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2204 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2205 | p1 = ptr; |
| 2206 | } |
| 2207 | |
| 2208 | ptr++; |
| 2209 | if (ptr >= buf->data + buf->size) |
| 2210 | ptr = buf->data; |
| 2211 | } |
| 2212 | |
| 2213 | /* after LF; point to beginning of next line */ |
| 2214 | p2++; |
| 2215 | if (p2 >= buf->data + buf->size) |
| 2216 | p2 = buf->data; |
| 2217 | |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2218 | bytes = p2 - buf->lr; |
| 2219 | if (bytes < 0) |
| 2220 | bytes += buf->size; |
| 2221 | |
| 2222 | /* schedule this line for forwarding */ |
| 2223 | msg->sov += bytes; |
| 2224 | if (msg->sov >= buf->size) |
| 2225 | msg->sov -= buf->size; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2226 | |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2227 | if (p1 == buf->lr) { |
| 2228 | /* LF/CRLF at beginning of line => end of trailers at p2. |
| 2229 | * Everything was scheduled for forwarding, there's nothing |
| 2230 | * left from this message. |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 2231 | */ |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2232 | buf->lr = p2; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2233 | msg->msg_state = HTTP_MSG_DONE; |
| 2234 | return 1; |
| 2235 | } |
| 2236 | /* OK, next line then */ |
| 2237 | buf->lr = p2; |
| 2238 | } |
| 2239 | } |
| 2240 | |
| 2241 | /* This function may be called only in HTTP_MSG_DATA_CRLF. It reads the CRLF or |
| 2242 | * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov, |
| 2243 | * ->som, buf->lr in order to include this part into the next forwarding phase. |
| 2244 | * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If |
| 2245 | * not enough data are available, the function does not change anything and |
| 2246 | * returns zero. If a parse error is encountered, the function returns < 0 and |
| 2247 | * does not change anything. Note: this function is designed to parse wrapped |
| 2248 | * CRLF at the end of the buffer. |
| 2249 | */ |
| 2250 | int http_skip_chunk_crlf(struct buffer *buf, struct http_msg *msg) |
| 2251 | { |
| 2252 | char *ptr; |
| 2253 | int bytes; |
| 2254 | |
| 2255 | /* NB: we'll check data availabilty at the end. It's not a |
| 2256 | * problem because whatever we match first will be checked |
| 2257 | * against the correct length. |
| 2258 | */ |
| 2259 | bytes = 1; |
| 2260 | ptr = buf->lr; |
| 2261 | if (*ptr == '\r') { |
| 2262 | bytes++; |
| 2263 | ptr++; |
| 2264 | if (ptr >= buf->data + buf->size) |
| 2265 | ptr = buf->data; |
| 2266 | } |
| 2267 | |
Willy Tarreau | bf3f1de | 2010-03-17 15:54:24 +0100 | [diff] [blame] | 2268 | if (bytes > buf->l - buf->send_max) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2269 | return 0; |
| 2270 | |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2271 | if (*ptr != '\n') { |
| 2272 | msg->err_pos = ptr - buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2273 | return -1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2274 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2275 | |
| 2276 | ptr++; |
| 2277 | if (ptr >= buf->data + buf->size) |
| 2278 | ptr = buf->data; |
| 2279 | buf->lr = ptr; |
| 2280 | /* prepare the CRLF to be forwarded. msg->som may be before data but we don't care */ |
| 2281 | msg->sov = ptr - buf->data; |
| 2282 | msg->som = msg->sov - bytes; |
| 2283 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 2284 | return 1; |
| 2285 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2286 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2287 | void http_buffer_heavy_realign(struct buffer *buf, struct http_msg *msg) |
| 2288 | { |
| 2289 | char *end = buf->data + buf->size; |
| 2290 | int off = buf->data + buf->size - buf->w; |
| 2291 | |
| 2292 | /* two possible cases : |
| 2293 | * - the buffer is in one contiguous block, we move it in-place |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 2294 | * - the buffer is in two blocks, we move it via the swap_buffer |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2295 | */ |
| 2296 | if (buf->l) { |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 2297 | int block1 = buf->l; |
| 2298 | int block2 = 0; |
| 2299 | if (buf->r <= buf->w) { |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2300 | /* non-contiguous block */ |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 2301 | block1 = buf->data + buf->size - buf->w; |
| 2302 | block2 = buf->r - buf->data; |
| 2303 | } |
| 2304 | if (block2) |
| 2305 | memcpy(swap_buffer, buf->data, block2); |
| 2306 | memmove(buf->data, buf->w, block1); |
| 2307 | if (block2) |
| 2308 | memcpy(buf->data + block1, swap_buffer, block2); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | /* adjust all known pointers */ |
| 2312 | buf->w = buf->data; |
| 2313 | buf->lr += off; if (buf->lr >= end) buf->lr -= buf->size; |
| 2314 | buf->r += off; if (buf->r >= end) buf->r -= buf->size; |
| 2315 | msg->sol += off; if (msg->sol >= end) msg->sol -= buf->size; |
| 2316 | msg->eol += off; if (msg->eol >= end) msg->eol -= buf->size; |
| 2317 | |
| 2318 | /* adjust relative pointers */ |
| 2319 | msg->som = 0; |
| 2320 | msg->eoh += off; if (msg->eoh >= buf->size) msg->eoh -= buf->size; |
| 2321 | msg->col += off; if (msg->col >= buf->size) msg->col -= buf->size; |
| 2322 | msg->sov += off; if (msg->sov >= buf->size) msg->sov -= buf->size; |
| 2323 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2324 | if (msg->err_pos >= 0) { |
| 2325 | msg->err_pos += off; |
| 2326 | if (msg->err_pos >= buf->size) |
| 2327 | msg->err_pos -= buf->size; |
| 2328 | } |
| 2329 | |
| 2330 | buf->flags &= ~BF_FULL; |
| 2331 | if (buf->l >= buffer_max_len(buf)) |
| 2332 | buf->flags |= BF_FULL; |
| 2333 | } |
| 2334 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2335 | /* This stream analyser waits for a complete HTTP request. It returns 1 if the |
| 2336 | * processing can continue on next analysers, or zero if it either needs more |
| 2337 | * data or wants to immediately abort the request (eg: timeout, error, ...). It |
| 2338 | * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers |
| 2339 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 2340 | * abort. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2341 | */ |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 2342 | int http_wait_for_request(struct session *s, struct buffer *req, int an_bit) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2343 | { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2344 | /* |
| 2345 | * We will parse the partial (or complete) lines. |
| 2346 | * We will check the request syntax, and also join multi-line |
| 2347 | * headers. An index of all the lines will be elaborated while |
| 2348 | * parsing. |
| 2349 | * |
| 2350 | * For the parsing, we use a 28 states FSM. |
| 2351 | * |
| 2352 | * Here is the information we currently have : |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 2353 | * req->data + msg->som = beginning of request |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2354 | * req->data + msg->eoh = end of processed headers / start of current one |
| 2355 | * msg->eol = end of current header or line (LF or CRLF) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2356 | * req->lr = first non-visited byte |
| 2357 | * req->r = end of data |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2358 | * |
| 2359 | * At end of parsing, we may perform a capture of the error (if any), and |
| 2360 | * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE). |
| 2361 | * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and |
| 2362 | * finally headers capture. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2363 | */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 2364 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2365 | int cur_idx; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2366 | int use_close_only; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2367 | struct http_txn *txn = &s->txn; |
| 2368 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2369 | struct hdr_ctx ctx; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 2370 | |
Willy Tarreau | 6bf1736 | 2009-02-24 10:48:35 +0100 | [diff] [blame] | 2371 | DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n", |
| 2372 | now_ms, __FUNCTION__, |
| 2373 | s, |
| 2374 | req, |
| 2375 | req->rex, req->wex, |
| 2376 | req->flags, |
| 2377 | req->l, |
| 2378 | req->analysers); |
| 2379 | |
Willy Tarreau | 52a0c60 | 2009-08-16 22:45:38 +0200 | [diff] [blame] | 2380 | /* we're speaking HTTP here, so let's speak HTTP to the client */ |
| 2381 | s->srv_error = http_return_srv_error; |
| 2382 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2383 | /* There's a protected area at the end of the buffer for rewriting |
| 2384 | * purposes. We don't want to start to parse the request if the |
| 2385 | * protected area is affected, because we may have to move processed |
| 2386 | * data later, which is much more complicated. |
| 2387 | */ |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2388 | if (req->l && msg->msg_state < HTTP_MSG_ERROR) { |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2389 | if ((txn->flags & TX_NOT_FIRST) && |
| 2390 | unlikely((req->flags & BF_FULL) || |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2391 | req->r < req->lr || |
| 2392 | req->r > req->data + req->size - global.tune.maxrewrite)) { |
| 2393 | if (req->send_max) { |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 2394 | if (req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) |
| 2395 | goto failed_keep_alive; |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2396 | /* some data has still not left the buffer, wake us once that's done */ |
| 2397 | buffer_dont_connect(req); |
| 2398 | req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */ |
| 2399 | return 0; |
| 2400 | } |
Willy Tarreau | 0499e35 | 2010-12-17 07:13:42 +0100 | [diff] [blame] | 2401 | if (req->r < req->lr || req->r > req->data + req->size - global.tune.maxrewrite) |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2402 | http_buffer_heavy_realign(req, msg); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2403 | } |
| 2404 | |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2405 | /* Note that we have the same problem with the response ; we |
| 2406 | * may want to send a redirect, error or anything which requires |
| 2407 | * some spare space. So we'll ensure that we have at least |
| 2408 | * maxrewrite bytes available in the response buffer before |
| 2409 | * processing that one. This will only affect pipelined |
| 2410 | * keep-alive requests. |
| 2411 | */ |
| 2412 | if ((txn->flags & TX_NOT_FIRST) && |
| 2413 | unlikely((s->rep->flags & BF_FULL) || |
| 2414 | s->rep->r < s->rep->lr || |
| 2415 | s->rep->r > s->rep->data + s->rep->size - global.tune.maxrewrite)) { |
| 2416 | if (s->rep->send_max) { |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 2417 | if (s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) |
| 2418 | goto failed_keep_alive; |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2419 | /* don't let a connection request be initiated */ |
| 2420 | buffer_dont_connect(req); |
Willy Tarreau | ff7b588 | 2010-01-22 14:41:29 +0100 | [diff] [blame] | 2421 | s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 0499e35 | 2010-12-17 07:13:42 +0100 | [diff] [blame] | 2422 | s->rep->analysers |= an_bit; /* wake us up once it changes */ |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2423 | return 0; |
| 2424 | } |
| 2425 | } |
| 2426 | |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2427 | if (likely(req->lr < req->r)) |
| 2428 | http_msg_analyzer(req, msg, &txn->hdr_idx); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2429 | } |
| 2430 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2431 | /* 1: we might have to print this header in debug mode */ |
| 2432 | if (unlikely((global.mode & MODE_DEBUG) && |
| 2433 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
Willy Tarreau | c3bfeeb | 2010-04-16 09:14:45 +0200 | [diff] [blame] | 2434 | msg->sol && |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2435 | (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2436 | char *eol, *sol; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2437 | |
Willy Tarreau | 663308b | 2010-06-07 14:06:08 +0200 | [diff] [blame] | 2438 | sol = req->data + msg->som; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2439 | eol = sol + msg->sl.rq.l; |
| 2440 | debug_hdr("clireq", s, sol, eol); |
Willy Tarreau | 45e73e3 | 2006-12-17 00:05:15 +0100 | [diff] [blame] | 2441 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2442 | sol += hdr_idx_first_pos(&txn->hdr_idx); |
| 2443 | cur_idx = hdr_idx_first_idx(&txn->hdr_idx); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2444 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2445 | while (cur_idx) { |
| 2446 | eol = sol + txn->hdr_idx.v[cur_idx].len; |
| 2447 | debug_hdr("clihdr", s, sol, eol); |
| 2448 | sol = eol + txn->hdr_idx.v[cur_idx].cr + 1; |
| 2449 | cur_idx = txn->hdr_idx.v[cur_idx].next; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2450 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2451 | } |
| 2452 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2453 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2454 | /* |
| 2455 | * Now we quickly check if we have found a full valid request. |
| 2456 | * If not so, we check the FD and buffer states before leaving. |
| 2457 | * A full request is indicated by the fact that we have seen |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2458 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2459 | * requests are checked first. When waiting for a second request |
| 2460 | * on a keep-alive session, if we encounter and error, close, t/o, |
| 2461 | * we note the error in the session flags but don't set any state. |
| 2462 | * Since the error will be noted there, it will not be counted by |
| 2463 | * process_session() as a frontend error. |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2464 | * Last, we may increase some tracked counters' http request errors on |
| 2465 | * the cases that are deliberately the client's fault. For instance, |
| 2466 | * a timeout or connection reset is not counted as an error. However |
| 2467 | * a bad request is. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2468 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2469 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2470 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2471 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2472 | * First, let's catch bad requests. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2473 | */ |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2474 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2475 | session_inc_http_req_ctr(s); |
| 2476 | session_inc_http_err_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2477 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2478 | goto return_bad_req; |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2479 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2480 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2481 | /* 1: Since we are in header mode, if there's no space |
| 2482 | * left for headers, we won't be able to free more |
| 2483 | * later, so the session will never terminate. We |
| 2484 | * must terminate it now. |
| 2485 | */ |
| 2486 | if (unlikely(req->flags & BF_FULL)) { |
| 2487 | /* FIXME: check if URI is set and return Status |
| 2488 | * 414 Request URI too long instead. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2489 | */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2490 | session_inc_http_req_ctr(s); |
| 2491 | session_inc_http_err_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2492 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | fec4d89 | 2011-09-02 20:04:57 +0200 | [diff] [blame] | 2493 | if (msg->err_pos < 0) |
| 2494 | msg->err_pos = req->l; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2495 | goto return_bad_req; |
| 2496 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2497 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2498 | /* 2: have we encountered a read error ? */ |
| 2499 | else if (req->flags & BF_READ_ERROR) { |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2500 | if (!(s->flags & SN_ERR_MASK)) |
| 2501 | s->flags |= SN_ERR_CLICL; |
| 2502 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2503 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2504 | goto failed_keep_alive; |
| 2505 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2506 | /* we cannot return any message on error */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2507 | if (msg->err_pos >= 0) { |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 2508 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2509 | session_inc_http_err_ctr(s); |
| 2510 | } |
| 2511 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2512 | msg->msg_state = HTTP_MSG_ERROR; |
| 2513 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2514 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2515 | session_inc_http_req_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2516 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2517 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2518 | if (s->listener->counters) |
| 2519 | s->listener->counters->failed_req++; |
| 2520 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2521 | if (!(s->flags & SN_FINST_MASK)) |
| 2522 | s->flags |= SN_FINST_R; |
| 2523 | return 0; |
| 2524 | } |
Willy Tarreau | f9839bd | 2008-08-27 23:57:16 +0200 | [diff] [blame] | 2525 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2526 | /* 3: has the read timeout expired ? */ |
| 2527 | else if (req->flags & BF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) { |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2528 | if (!(s->flags & SN_ERR_MASK)) |
| 2529 | s->flags |= SN_ERR_CLITO; |
| 2530 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2531 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2532 | goto failed_keep_alive; |
| 2533 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2534 | /* read timeout : give up with an error message. */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2535 | if (msg->err_pos >= 0) { |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 2536 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2537 | session_inc_http_err_ctr(s); |
| 2538 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2539 | txn->status = 408; |
| 2540 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408)); |
| 2541 | msg->msg_state = HTTP_MSG_ERROR; |
| 2542 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2543 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2544 | session_inc_http_req_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2545 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2546 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2547 | if (s->listener->counters) |
| 2548 | s->listener->counters->failed_req++; |
| 2549 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2550 | if (!(s->flags & SN_FINST_MASK)) |
| 2551 | s->flags |= SN_FINST_R; |
| 2552 | return 0; |
| 2553 | } |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 2554 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2555 | /* 4: have we encountered a close ? */ |
| 2556 | else if (req->flags & BF_SHUTR) { |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2557 | if (!(s->flags & SN_ERR_MASK)) |
| 2558 | s->flags |= SN_ERR_CLICL; |
| 2559 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2560 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2561 | goto failed_keep_alive; |
| 2562 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 2563 | if (msg->err_pos >= 0) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 2564 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2565 | txn->status = 400; |
| 2566 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400)); |
| 2567 | msg->msg_state = HTTP_MSG_ERROR; |
| 2568 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2569 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2570 | session_inc_http_err_ctr(s); |
| 2571 | session_inc_http_req_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2572 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2573 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2574 | if (s->listener->counters) |
| 2575 | s->listener->counters->failed_req++; |
| 2576 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2577 | if (!(s->flags & SN_FINST_MASK)) |
| 2578 | s->flags |= SN_FINST_R; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 2579 | return 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2580 | } |
| 2581 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 2582 | buffer_dont_connect(req); |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 2583 | req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | ff7b588 | 2010-01-22 14:41:29 +0100 | [diff] [blame] | 2584 | s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 2585 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2586 | if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) { |
| 2587 | /* If the client starts to talk, let's fall back to |
| 2588 | * request timeout processing. |
| 2589 | */ |
| 2590 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2591 | req->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2592 | } |
| 2593 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2594 | /* just set the request timeout once at the beginning of the request */ |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2595 | if (!tick_isset(req->analyse_exp)) { |
| 2596 | if ((msg->msg_state == HTTP_MSG_RQBEFORE) && |
| 2597 | (txn->flags & TX_WAIT_NEXT_RQ) && |
| 2598 | tick_isset(s->be->timeout.httpka)) |
| 2599 | req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka); |
| 2600 | else |
| 2601 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
| 2602 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2603 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2604 | /* we're not ready yet */ |
| 2605 | return 0; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2606 | |
| 2607 | failed_keep_alive: |
| 2608 | /* Here we process low-level errors for keep-alive requests. In |
| 2609 | * short, if the request is not the first one and it experiences |
| 2610 | * a timeout, read error or shutdown, we just silently close so |
| 2611 | * that the client can try again. |
| 2612 | */ |
| 2613 | txn->status = 0; |
| 2614 | msg->msg_state = HTTP_MSG_RQBEFORE; |
| 2615 | req->analysers = 0; |
| 2616 | s->logs.logwait = 0; |
Willy Tarreau | ff7b588 | 2010-01-22 14:41:29 +0100 | [diff] [blame] | 2617 | s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 2618 | stream_int_retnclose(req->prod, NULL); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2619 | return 0; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2620 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2621 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2622 | /* OK now we have a complete HTTP request with indexed headers. Let's |
| 2623 | * complete the request parsing by setting a few fields we will need |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 2624 | * later. At this point, we have the last CRLF at req->data + msg->eoh. |
| 2625 | * If the request is in HTTP/0.9 form, the rule is still true, and eoh |
| 2626 | * points to the CRLF of the request line. req->lr points to the first |
| 2627 | * byte after the last LF. msg->col and msg->sov point to the first |
| 2628 | * byte of data. msg->eol cannot be trusted because it may have been |
| 2629 | * left uninitialized (for instance in the absence of headers). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2630 | */ |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 2631 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2632 | session_inc_http_req_ctr(s); |
Willy Tarreau | d9b587f | 2010-02-26 10:05:55 +0100 | [diff] [blame] | 2633 | proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */ |
| 2634 | |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2635 | if (txn->flags & TX_WAIT_NEXT_RQ) { |
| 2636 | /* kill the pending keep-alive timeout */ |
| 2637 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
| 2638 | req->analyse_exp = TICK_ETERNITY; |
| 2639 | } |
| 2640 | |
| 2641 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2642 | /* Maybe we found in invalid header name while we were configured not |
| 2643 | * to block on that, so we have to capture it now. |
| 2644 | */ |
| 2645 | if (unlikely(msg->err_pos >= 0)) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 2646 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 2647 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2648 | /* |
| 2649 | * 1: identify the method |
| 2650 | */ |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 2651 | txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2652 | |
| 2653 | /* we can make use of server redirect on GET and HEAD */ |
| 2654 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 2655 | s->flags |= SN_REDIRECTABLE; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 2656 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2657 | /* |
| 2658 | * 2: check if the URI matches the monitor_uri. |
| 2659 | * We have to do this for every request which gets in, because |
| 2660 | * the monitor-uri is defined by the frontend. |
| 2661 | */ |
| 2662 | if (unlikely((s->fe->monitor_uri_len != 0) && |
| 2663 | (s->fe->monitor_uri_len == msg->sl.rq.u_l) && |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 2664 | !memcmp(msg->sol + msg->sl.rq.u, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2665 | s->fe->monitor_uri, |
| 2666 | s->fe->monitor_uri_len))) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2667 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2668 | * We have found the monitor URI |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2669 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2670 | struct acl_cond *cond; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2671 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2672 | s->flags |= SN_MONITOR; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2673 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2674 | /* Check if we want to fail this monitor request or not */ |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2675 | list_for_each_entry(cond, &s->fe->mon_fail_cond, list) { |
| 2676 | int ret = acl_exec_cond(cond, s->fe, s, txn, ACL_DIR_REQ); |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 2677 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2678 | ret = acl_pass(ret); |
| 2679 | if (cond->pol == ACL_COND_UNLESS) |
| 2680 | ret = !ret; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2681 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2682 | if (ret) { |
| 2683 | /* we fail this request, let's return 503 service unavail */ |
| 2684 | txn->status = 503; |
| 2685 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_503)); |
| 2686 | goto return_prx_cond; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2687 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2688 | } |
Willy Tarreau | a5555ec | 2008-11-30 19:02:32 +0100 | [diff] [blame] | 2689 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2690 | /* nothing to fail, let's reply normaly */ |
| 2691 | txn->status = 200; |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 2692 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_200)); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2693 | goto return_prx_cond; |
| 2694 | } |
| 2695 | |
| 2696 | /* |
| 2697 | * 3: Maybe we have to copy the original REQURI for the logs ? |
| 2698 | * Note: we cannot log anymore if the request has been |
| 2699 | * classified as invalid. |
| 2700 | */ |
| 2701 | if (unlikely(s->logs.logwait & LW_REQ)) { |
| 2702 | /* we have a complete HTTP request that we must log */ |
| 2703 | if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) { |
| 2704 | int urilen = msg->sl.rq.l; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2705 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2706 | if (urilen >= REQURI_LEN) |
| 2707 | urilen = REQURI_LEN - 1; |
| 2708 | memcpy(txn->uri, &req->data[msg->som], urilen); |
| 2709 | txn->uri[urilen] = 0; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2710 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2711 | if (!(s->logs.logwait &= ~LW_REQ)) |
| 2712 | s->do_log(s); |
| 2713 | } else { |
| 2714 | Alert("HTTP logging : out of memory.\n"); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2715 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2716 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 2717 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2718 | /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */ |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 2719 | if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn)) |
| 2720 | goto return_bad_req; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2721 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2722 | /* ... and check if the request is HTTP/1.1 or above */ |
| 2723 | if ((msg->sl.rq.v_l == 8) && |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 2724 | ((msg->sol[msg->sl.rq.v + 5] > '1') || |
| 2725 | ((msg->sol[msg->sl.rq.v + 5] == '1') && |
| 2726 | (msg->sol[msg->sl.rq.v + 7] >= '1')))) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2727 | txn->flags |= TX_REQ_VER_11; |
| 2728 | |
| 2729 | /* "connection" has not been parsed yet */ |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 2730 | txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2731 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2732 | /* if the frontend has "option http-use-proxy-header", we'll check if |
| 2733 | * we have what looks like a proxied connection instead of a connection, |
| 2734 | * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection. |
| 2735 | * Note that this is *not* RFC-compliant, however browsers and proxies |
| 2736 | * happen to do that despite being non-standard :-( |
| 2737 | * We consider that a request not beginning with either '/' or '*' is |
| 2738 | * a proxied connection, which covers both "scheme://location" and |
| 2739 | * CONNECT ip:port. |
| 2740 | */ |
| 2741 | if ((s->fe->options2 & PR_O2_USE_PXHDR) && |
| 2742 | msg->sol[msg->sl.rq.u] != '/' && msg->sol[msg->sl.rq.u] != '*') |
| 2743 | txn->flags |= TX_USE_PX_CONN; |
| 2744 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2745 | /* transfer length unknown*/ |
| 2746 | txn->flags &= ~TX_REQ_XFER_LEN; |
| 2747 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2748 | /* 5: we may need to capture headers */ |
| 2749 | if (unlikely((s->logs.logwait & LW_REQHDR) && s->fe->req_cap)) |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 2750 | capture_headers(msg->sol, &txn->hdr_idx, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2751 | txn->req.cap, s->fe->req_cap); |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 2752 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2753 | /* 6: determine the transfer-length. |
| 2754 | * According to RFC2616 #4.4, amended by the HTTPbis working group, |
| 2755 | * the presence of a message-body in a REQUEST and its transfer length |
| 2756 | * must be determined that way (in order of precedence) : |
| 2757 | * 1. The presence of a message-body in a request is signaled by the |
| 2758 | * inclusion of a Content-Length or Transfer-Encoding header field |
| 2759 | * in the request's header fields. When a request message contains |
| 2760 | * both a message-body of non-zero length and a method that does |
| 2761 | * not define any semantics for that request message-body, then an |
| 2762 | * origin server SHOULD either ignore the message-body or respond |
| 2763 | * with an appropriate error message (e.g., 413). A proxy or |
| 2764 | * gateway, when presented the same request, SHOULD either forward |
| 2765 | * the request inbound with the message- body or ignore the |
| 2766 | * message-body when determining a response. |
| 2767 | * |
| 2768 | * 2. If a Transfer-Encoding header field (Section 9.7) is present |
| 2769 | * and the "chunked" transfer-coding (Section 6.2) is used, the |
| 2770 | * transfer-length is defined by the use of this transfer-coding. |
| 2771 | * If a Transfer-Encoding header field is present and the "chunked" |
| 2772 | * transfer-coding is not present, the transfer-length is defined |
| 2773 | * by the sender closing the connection. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2774 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2775 | * 3. If a Content-Length header field is present, its decimal value in |
| 2776 | * OCTETs represents both the entity-length and the transfer-length. |
| 2777 | * If a message is received with both a Transfer-Encoding header |
| 2778 | * field and a Content-Length header field, the latter MUST be ignored. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2779 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2780 | * 4. By the server closing the connection. (Closing the connection |
| 2781 | * cannot be used to indicate the end of a request body, since that |
| 2782 | * would leave no possibility for the server to send back a response.) |
| 2783 | * |
| 2784 | * Whenever a transfer-coding is applied to a message-body, the set of |
| 2785 | * transfer-codings MUST include "chunked", unless the message indicates |
| 2786 | * it is terminated by closing the connection. When the "chunked" |
| 2787 | * transfer-coding is used, it MUST be the last transfer-coding applied |
| 2788 | * to the message-body. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2789 | */ |
| 2790 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2791 | use_close_only = 0; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2792 | ctx.idx = 0; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2793 | /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */ |
Willy Tarreau | 9e13c3c | 2009-12-22 09:59:58 +0100 | [diff] [blame] | 2794 | while ((txn->flags & TX_REQ_VER_11) && |
| 2795 | http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2796 | if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0) |
| 2797 | txn->flags |= (TX_REQ_TE_CHNK | TX_REQ_XFER_LEN); |
| 2798 | else if (txn->flags & TX_REQ_TE_CHNK) { |
| 2799 | /* bad transfer-encoding (chunked followed by something else) */ |
| 2800 | use_close_only = 1; |
| 2801 | txn->flags &= ~(TX_REQ_TE_CHNK | TX_REQ_XFER_LEN); |
| 2802 | break; |
| 2803 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2804 | } |
| 2805 | |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2806 | ctx.idx = 0; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2807 | while (!(txn->flags & TX_REQ_TE_CHNK) && !use_close_only && |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2808 | http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) { |
| 2809 | signed long long cl; |
| 2810 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2811 | if (!ctx.vlen) { |
| 2812 | msg->err_pos = ctx.line + ctx.val - req->data; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2813 | goto return_bad_req; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2814 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2815 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2816 | if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) { |
| 2817 | msg->err_pos = ctx.line + ctx.val - req->data; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2818 | goto return_bad_req; /* parse failure */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2819 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2820 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2821 | if (cl < 0) { |
| 2822 | msg->err_pos = ctx.line + ctx.val - req->data; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2823 | goto return_bad_req; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2824 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2825 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2826 | if ((txn->flags & TX_REQ_CNT_LEN) && (msg->chunk_len != cl)) { |
| 2827 | msg->err_pos = ctx.line + ctx.val - req->data; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2828 | goto return_bad_req; /* already specified, was different */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2829 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2830 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2831 | txn->flags |= TX_REQ_CNT_LEN | TX_REQ_XFER_LEN; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 2832 | msg->body_len = msg->chunk_len = cl; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2833 | } |
| 2834 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2835 | /* bodyless requests have a known length */ |
| 2836 | if (!use_close_only) |
| 2837 | txn->flags |= TX_REQ_XFER_LEN; |
| 2838 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2839 | /* end of job, return OK */ |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 2840 | req->analysers &= ~an_bit; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2841 | req->analyse_exp = TICK_ETERNITY; |
| 2842 | return 1; |
| 2843 | |
| 2844 | return_bad_req: |
| 2845 | /* We centralize bad requests processing here */ |
| 2846 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
| 2847 | /* we detected a parsing error. We want to archive this request |
| 2848 | * in the dedicated proxy area for later troubleshooting. |
| 2849 | */ |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 2850 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2851 | } |
| 2852 | |
| 2853 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 2854 | txn->status = 400; |
| 2855 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2856 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2857 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2858 | if (s->listener->counters) |
| 2859 | s->listener->counters->failed_req++; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2860 | |
| 2861 | return_prx_cond: |
| 2862 | if (!(s->flags & SN_ERR_MASK)) |
| 2863 | s->flags |= SN_ERR_PRXCOND; |
| 2864 | if (!(s->flags & SN_FINST_MASK)) |
| 2865 | s->flags |= SN_FINST_R; |
| 2866 | |
| 2867 | req->analysers = 0; |
| 2868 | req->analyse_exp = TICK_ETERNITY; |
| 2869 | return 0; |
| 2870 | } |
| 2871 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2872 | /* We reached the stats page through a POST request. |
| 2873 | * Parse the posted data and enable/disable servers if necessary. |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 2874 | * Returns 1 if request was parsed or zero if it needs more data. |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2875 | */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 2876 | int http_process_req_stat_post(struct stream_interface *si, struct http_txn *txn, struct buffer *req) |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2877 | { |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2878 | struct proxy *px; |
| 2879 | struct server *sv; |
| 2880 | |
| 2881 | char *backend = NULL; |
| 2882 | int action = 0; |
| 2883 | |
| 2884 | char *first_param, *cur_param, *next_param, *end_params; |
| 2885 | |
| 2886 | first_param = req->data + txn->req.eoh + 2; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 2887 | end_params = first_param + txn->req.body_len; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2888 | |
| 2889 | cur_param = next_param = end_params; |
| 2890 | |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 2891 | if (end_params >= req->data + req->size - global.tune.maxrewrite) { |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2892 | /* Prevent buffer overflow */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 2893 | si->applet.ctx.stats.st_code = STAT_STATUS_EXCD; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2894 | return 1; |
| 2895 | } |
| 2896 | else if (end_params > req->data + req->l) { |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 2897 | /* we need more data */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 2898 | si->applet.ctx.stats.st_code = STAT_STATUS_NONE; |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 2899 | return 0; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2900 | } |
| 2901 | |
| 2902 | *end_params = '\0'; |
| 2903 | |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 2904 | si->applet.ctx.stats.st_code = STAT_STATUS_NONE; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2905 | |
| 2906 | /* |
| 2907 | * Parse the parameters in reverse order to only store the last value. |
| 2908 | * From the html form, the backend and the action are at the end. |
| 2909 | */ |
| 2910 | while (cur_param > first_param) { |
| 2911 | char *key, *value; |
| 2912 | |
| 2913 | cur_param--; |
| 2914 | if ((*cur_param == '&') || (cur_param == first_param)) { |
| 2915 | /* Parse the key */ |
| 2916 | key = cur_param; |
| 2917 | if (cur_param != first_param) { |
| 2918 | /* delimit the string for the next loop */ |
| 2919 | *key++ = '\0'; |
| 2920 | } |
| 2921 | |
| 2922 | /* Parse the value */ |
| 2923 | value = key; |
| 2924 | while (*value != '\0' && *value != '=') { |
| 2925 | value++; |
| 2926 | } |
| 2927 | if (*value == '=') { |
| 2928 | /* Ok, a value is found, we can mark the end of the key */ |
| 2929 | *value++ = '\0'; |
| 2930 | } |
| 2931 | |
Willy Tarreau | bf9c2fc | 2011-05-31 18:06:18 +0200 | [diff] [blame] | 2932 | if (!url_decode(key) || !url_decode(value)) |
| 2933 | break; |
| 2934 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2935 | /* Now we can check the key to see what to do */ |
| 2936 | if (!backend && strcmp(key, "b") == 0) { |
| 2937 | backend = value; |
| 2938 | } |
| 2939 | else if (!action && strcmp(key, "action") == 0) { |
| 2940 | if (strcmp(value, "disable") == 0) { |
| 2941 | action = 1; |
| 2942 | } |
| 2943 | else if (strcmp(value, "enable") == 0) { |
| 2944 | action = 2; |
| 2945 | } else { |
| 2946 | /* unknown action, no need to continue */ |
| 2947 | break; |
| 2948 | } |
| 2949 | } |
| 2950 | else if (strcmp(key, "s") == 0) { |
| 2951 | if (backend && action && get_backend_server(backend, value, &px, &sv)) { |
| 2952 | switch (action) { |
| 2953 | case 1: |
Cyril Bonté | 1e2a170 | 2011-03-03 21:05:17 +0100 | [diff] [blame] | 2954 | if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) { |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2955 | /* Not already in maintenance, we can change the server state */ |
| 2956 | sv->state |= SRV_MAINTAIN; |
| 2957 | set_server_down(sv); |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 2958 | si->applet.ctx.stats.st_code = STAT_STATUS_DONE; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2959 | } |
| 2960 | break; |
| 2961 | case 2: |
Cyril Bonté | 1e2a170 | 2011-03-03 21:05:17 +0100 | [diff] [blame] | 2962 | if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) { |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2963 | /* Already in maintenance, we can change the server state */ |
| 2964 | set_server_up(sv); |
Willy Tarreau | 7046130 | 2010-10-22 14:39:02 +0200 | [diff] [blame] | 2965 | sv->health = sv->rise; /* up, but will fall down at first failure */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 2966 | si->applet.ctx.stats.st_code = STAT_STATUS_DONE; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2967 | } |
| 2968 | break; |
| 2969 | } |
| 2970 | } |
| 2971 | } |
| 2972 | next_param = cur_param; |
| 2973 | } |
| 2974 | } |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 2975 | return 1; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 2976 | } |
| 2977 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2978 | /* returns a pointer to the first rule which forbids access (deny or http_auth), |
| 2979 | * or NULL if everything's OK. |
| 2980 | */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2981 | static inline struct http_req_rule * |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2982 | http_check_access_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn) |
| 2983 | { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2984 | struct http_req_rule *rule; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2985 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2986 | list_for_each_entry(rule, rules, list) { |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2987 | int ret = 1; |
| 2988 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2989 | if (rule->action >= HTTP_REQ_ACT_MAX) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2990 | continue; |
| 2991 | |
| 2992 | /* check condition, but only if attached */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2993 | if (rule->cond) { |
| 2994 | ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ); |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2995 | ret = acl_pass(ret); |
| 2996 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2997 | if (rule->cond->pol == ACL_COND_UNLESS) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 2998 | ret = !ret; |
| 2999 | } |
| 3000 | |
| 3001 | if (ret) { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3002 | if (rule->action == HTTP_REQ_ACT_ALLOW) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3003 | return NULL; /* no problem */ |
| 3004 | else |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3005 | return rule; /* most likely a deny or auth rule */ |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3006 | } |
| 3007 | } |
| 3008 | return NULL; |
| 3009 | } |
| 3010 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3011 | /* This stream analyser runs all HTTP request processing which is common to |
| 3012 | * frontends and backends, which means blocking ACLs, filters, connection-close, |
| 3013 | * reqadd, stats and redirects. This is performed for the designated proxy. |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3014 | * It returns 1 if the processing can continue on next analysers, or zero if it |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3015 | * either needs more data or wants to immediately abort the request (eg: deny, |
| 3016 | * error, ...). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3017 | */ |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3018 | int http_process_req_common(struct session *s, struct buffer *req, int an_bit, struct proxy *px) |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3019 | { |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3020 | struct http_txn *txn = &s->txn; |
| 3021 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3022 | struct acl_cond *cond; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3023 | struct http_req_rule *http_req_last_rule = NULL; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3024 | struct redirect_rule *rule; |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 3025 | struct cond_wordlist *wl; |
Simon Horman | 70735c9 | 2011-06-07 11:07:50 +0900 | [diff] [blame] | 3026 | int do_stats; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3027 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 3028 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3029 | /* we need more data */ |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 3030 | buffer_dont_connect(req); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3031 | return 0; |
| 3032 | } |
| 3033 | |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 3034 | req->analysers &= ~an_bit; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3035 | req->analyse_exp = TICK_ETERNITY; |
| 3036 | |
| 3037 | DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n", |
| 3038 | now_ms, __FUNCTION__, |
| 3039 | s, |
| 3040 | req, |
| 3041 | req->rex, req->wex, |
| 3042 | req->flags, |
| 3043 | req->l, |
| 3044 | req->analysers); |
| 3045 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3046 | /* first check whether we have some ACLs set to block this request */ |
| 3047 | list_for_each_entry(cond, &px->block_cond, list) { |
| 3048 | int ret = acl_exec_cond(cond, px, s, txn, ACL_DIR_REQ); |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3049 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3050 | ret = acl_pass(ret); |
| 3051 | if (cond->pol == ACL_COND_UNLESS) |
| 3052 | ret = !ret; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 3053 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3054 | if (ret) { |
| 3055 | txn->status = 403; |
| 3056 | /* let's log the request time */ |
| 3057 | s->logs.tv_request = now; |
| 3058 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403)); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3059 | session_inc_http_err_ctr(s); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3060 | goto return_prx_cond; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3061 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3062 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3063 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3064 | /* evaluate http-request rules */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3065 | http_req_last_rule = http_check_access_rule(px, &px->http_req_rules, s, txn); |
Willy Tarreau | 5142594 | 2010-02-01 10:40:19 +0100 | [diff] [blame] | 3066 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3067 | /* evaluate stats http-request rules only if http-request is OK */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3068 | if (!http_req_last_rule) { |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3069 | do_stats = stats_check_uri(s->rep->prod, txn, px); |
| 3070 | if (do_stats) |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3071 | http_req_last_rule = http_check_access_rule(px, &px->uri_auth->http_req_rules, s, txn); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3072 | } |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3073 | else |
| 3074 | do_stats = 0; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3075 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3076 | /* return a 403 if either rule has blocked */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3077 | if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_DENY) { |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3078 | txn->status = 403; |
| 3079 | s->logs.tv_request = now; |
| 3080 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403)); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3081 | session_inc_http_err_ctr(s); |
Willy Tarreau | 6da0f6d | 2011-01-06 18:19:50 +0100 | [diff] [blame] | 3082 | s->fe->fe_counters.denied_req++; |
| 3083 | if (an_bit == AN_REQ_HTTP_PROCESS_BE) |
| 3084 | s->be->be_counters.denied_req++; |
| 3085 | if (s->listener->counters) |
| 3086 | s->listener->counters->denied_req++; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3087 | goto return_prx_cond; |
| 3088 | } |
| 3089 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3090 | /* try headers filters */ |
| 3091 | if (px->req_exp != NULL) { |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 3092 | if (apply_filters_to_request(s, req, px) < 0) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3093 | goto return_bad_req; |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3094 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3095 | /* has the request been denied ? */ |
| 3096 | if (txn->flags & TX_CLDENY) { |
| 3097 | /* no need to go further */ |
| 3098 | txn->status = 403; |
| 3099 | /* let's log the request time */ |
| 3100 | s->logs.tv_request = now; |
| 3101 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403)); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3102 | session_inc_http_err_ctr(s); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3103 | goto return_prx_cond; |
| 3104 | } |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3105 | |
| 3106 | /* When a connection is tarpitted, we use the tarpit timeout, |
| 3107 | * which may be the same as the connect timeout if unspecified. |
| 3108 | * If unset, then set it to zero because we really want it to |
| 3109 | * eventually expire. We build the tarpit as an analyser. |
| 3110 | */ |
| 3111 | if (txn->flags & TX_CLTARPIT) { |
| 3112 | buffer_erase(s->req); |
| 3113 | /* wipe the request out so that we can drop the connection early |
| 3114 | * if the client closes first. |
| 3115 | */ |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 3116 | buffer_dont_connect(req); |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3117 | req->analysers = 0; /* remove switching rules etc... */ |
| 3118 | req->analysers |= AN_REQ_HTTP_TARPIT; |
| 3119 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit); |
| 3120 | if (!req->analyse_exp) |
| 3121 | req->analyse_exp = tick_add(now_ms, 0); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3122 | session_inc_http_err_ctr(s); |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3123 | return 1; |
| 3124 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3125 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3126 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3127 | /* Until set to anything else, the connection mode is set as TUNNEL. It will |
| 3128 | * only change if both the request and the config reference something else. |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 3129 | * Option httpclose by itself does not set a mode, it remains a tunnel mode |
| 3130 | * in which headers are mangled. However, if another mode is set, it will |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3131 | * affect it (eg: server-close/keep-alive + httpclose = close). Note that we |
| 3132 | * avoid to redo the same work if FE and BE have the same settings (common). |
| 3133 | * The method consists in checking if options changed between the two calls |
| 3134 | * (implying that either one is non-null, or one of them is non-null and we |
| 3135 | * are there for the first time. |
Willy Tarreau | 4273664 | 2009-10-18 21:04:35 +0200 | [diff] [blame] | 3136 | */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3137 | |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 3138 | if ((!(txn->flags & TX_HDR_CONN_PRS) && |
| 3139 | (s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) || |
| 3140 | ((s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) != |
| 3141 | (s->be->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)))) { |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3142 | int tmp = TX_CON_WANT_TUN; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3143 | |
Cyril Bonté | 9ea2b9a | 2010-12-29 09:36:56 +0100 | [diff] [blame] | 3144 | if ((s->fe->options|s->be->options) & PR_O_KEEPALIVE || |
| 3145 | ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3146 | tmp = TX_CON_WANT_KAL; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 3147 | if ((s->fe->options|s->be->options) & PR_O_SERVER_CLO) |
| 3148 | tmp = TX_CON_WANT_SCL; |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 3149 | if ((s->fe->options|s->be->options) & PR_O_FORCE_CLO) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3150 | tmp = TX_CON_WANT_CLO; |
| 3151 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3152 | if ((txn->flags & TX_CON_WANT_MSK) < tmp) |
| 3153 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp; |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 3154 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3155 | if (!(txn->flags & TX_HDR_CONN_PRS)) { |
| 3156 | /* parse the Connection header and possibly clean it */ |
| 3157 | int to_del = 0; |
| 3158 | if ((txn->flags & TX_REQ_VER_11) || |
Willy Tarreau | 8a8e1d9 | 2010-04-05 16:15:16 +0200 | [diff] [blame] | 3159 | ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL && |
| 3160 | !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3161 | to_del |= 2; /* remove "keep-alive" */ |
| 3162 | if (!(txn->flags & TX_REQ_VER_11)) |
| 3163 | to_del |= 1; /* remove "close" */ |
| 3164 | http_parse_connection_header(txn, msg, req, to_del); |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 3165 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3166 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3167 | /* check if client or config asks for explicit close in KAL/SCL */ |
| 3168 | if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 3169 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) && |
| 3170 | ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */ |
| 3171 | (txn->flags & (TX_REQ_VER_11|TX_HDR_CONN_KAL)) == 0 || /* no "connection: k-a" in 1.0 */ |
Cyril Bonté | 9ea2b9a | 2010-12-29 09:36:56 +0100 | [diff] [blame] | 3172 | ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE) || /* httpclose+any = forceclose */ |
Willy Tarreau | c3e8b25 | 2010-01-28 15:01:20 +0100 | [diff] [blame] | 3173 | !(txn->flags & TX_REQ_XFER_LEN) || /* no length known => close */ |
| 3174 | s->fe->state == PR_STSTOPPED)) /* frontend is stopping */ |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3175 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
| 3176 | } |
Willy Tarreau | 7859991 | 2009-10-17 20:12:21 +0200 | [diff] [blame] | 3177 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3178 | /* we can be blocked here because the request needs to be authenticated, |
| 3179 | * either to pass or to access stats. |
| 3180 | */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3181 | if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_HTTP_AUTH) { |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3182 | struct chunk msg; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3183 | char *realm = http_req_last_rule->http_auth.realm; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3184 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3185 | if (!realm) |
| 3186 | realm = do_stats?STATS_DEFAULT_REALM:px->id; |
| 3187 | |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 3188 | sprintf(trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3189 | chunk_initlen(&msg, trash, sizeof(trash), strlen(trash)); |
| 3190 | txn->status = 401; |
| 3191 | stream_int_retnclose(req->prod, &msg); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3192 | /* on 401 we still count one error, because normal browsing |
| 3193 | * won't significantly increase the counter but brute force |
| 3194 | * attempts will. |
| 3195 | */ |
| 3196 | session_inc_http_err_ctr(s); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3197 | goto return_prx_cond; |
| 3198 | } |
| 3199 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3200 | /* add request headers from the rule sets in the same order */ |
| 3201 | list_for_each_entry(wl, &px->req_add, list) { |
| 3202 | if (wl->cond) { |
| 3203 | int ret = acl_exec_cond(wl->cond, px, s, txn, ACL_DIR_REQ); |
| 3204 | ret = acl_pass(ret); |
| 3205 | if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS) |
| 3206 | ret = !ret; |
| 3207 | if (!ret) |
| 3208 | continue; |
| 3209 | } |
| 3210 | |
| 3211 | if (unlikely(http_header_add_tail(req, &txn->req, &txn->hdr_idx, wl->s) < 0)) |
| 3212 | goto return_bad_req; |
| 3213 | } |
| 3214 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3215 | if (do_stats) { |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 3216 | struct stats_admin_rule *stats_admin_rule; |
| 3217 | |
| 3218 | /* We need to provide stats for this request. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3219 | * FIXME!!! that one is rather dangerous, we want to |
| 3220 | * make it follow standard rules (eg: clear req->analysers). |
| 3221 | */ |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3222 | |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 3223 | /* now check whether we have some admin rules for this request */ |
| 3224 | list_for_each_entry(stats_admin_rule, &s->be->uri_auth->admin_rules, list) { |
| 3225 | int ret = 1; |
| 3226 | |
| 3227 | if (stats_admin_rule->cond) { |
| 3228 | ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, ACL_DIR_REQ); |
| 3229 | ret = acl_pass(ret); |
| 3230 | if (stats_admin_rule->cond->pol == ACL_COND_UNLESS) |
| 3231 | ret = !ret; |
| 3232 | } |
| 3233 | |
| 3234 | if (ret) { |
| 3235 | /* no rule, or the rule matches */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 3236 | s->rep->prod->applet.ctx.stats.flags |= STAT_ADMIN; |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 3237 | break; |
| 3238 | } |
| 3239 | } |
| 3240 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 3241 | /* Was the status page requested with a POST ? */ |
| 3242 | if (txn->meth == HTTP_METH_POST) { |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 3243 | if (s->rep->prod->applet.ctx.stats.flags & STAT_ADMIN) { |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 3244 | if (msg->msg_state < HTTP_MSG_100_SENT) { |
| 3245 | /* If we have HTTP/1.1 and Expect: 100-continue, then we must |
| 3246 | * send an HTTP/1.1 100 Continue intermediate response. |
| 3247 | */ |
| 3248 | if (txn->flags & TX_REQ_VER_11) { |
| 3249 | struct hdr_ctx ctx; |
| 3250 | ctx.idx = 0; |
| 3251 | /* Expect is allowed in 1.1, look for it */ |
| 3252 | if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) && |
| 3253 | unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) { |
| 3254 | buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len); |
| 3255 | } |
| 3256 | } |
| 3257 | msg->msg_state = HTTP_MSG_100_SENT; |
| 3258 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 3259 | } |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 3260 | if (!http_process_req_stat_post(s->rep->prod, txn, req)) { |
Cyril Bonté | 23b39d9 | 2011-02-10 22:54:44 +0100 | [diff] [blame] | 3261 | /* we need more data */ |
| 3262 | req->analysers |= an_bit; |
| 3263 | buffer_dont_connect(req); |
| 3264 | return 0; |
| 3265 | } |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 3266 | } else { |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 3267 | s->rep->prod->applet.ctx.stats.st_code = STAT_STATUS_DENY; |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 3268 | } |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 3269 | } |
| 3270 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3271 | s->logs.tv_request = now; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3272 | s->task->nice = -32; /* small boost for HTTP statistics */ |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 3273 | stream_int_register_handler(s->rep->prod, &http_stats_applet); |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 3274 | copy_target(&s->target, &s->rep->prod->target); // for logging only |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 3275 | s->rep->prod->applet.private = s; |
| 3276 | s->rep->prod->applet.st0 = s->rep->prod->applet.st1 = 0; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3277 | req->analysers = 0; |
| 3278 | |
| 3279 | return 0; |
| 3280 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3281 | } |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 3282 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3283 | /* check whether we have some ACLs set to redirect this request */ |
| 3284 | list_for_each_entry(rule, &px->redirect_rules, list) { |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 3285 | int ret = ACL_PAT_PASS; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3286 | |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 3287 | if (rule->cond) { |
| 3288 | ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ); |
| 3289 | ret = acl_pass(ret); |
| 3290 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 3291 | ret = !ret; |
| 3292 | } |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3293 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3294 | if (ret) { |
Willy Tarreau | 3bb9c23 | 2010-01-03 12:24:37 +0100 | [diff] [blame] | 3295 | struct chunk rdr = { .str = trash, .size = sizeof(trash), .len = 0 }; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3296 | const char *msg_fmt; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3297 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3298 | /* build redirect message */ |
| 3299 | switch(rule->code) { |
| 3300 | case 303: |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3301 | msg_fmt = HTTP_303; |
| 3302 | break; |
| 3303 | case 301: |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3304 | msg_fmt = HTTP_301; |
| 3305 | break; |
| 3306 | case 302: |
| 3307 | default: |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3308 | msg_fmt = HTTP_302; |
| 3309 | break; |
| 3310 | } |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3311 | |
Willy Tarreau | 3bb9c23 | 2010-01-03 12:24:37 +0100 | [diff] [blame] | 3312 | if (unlikely(!chunk_strcpy(&rdr, msg_fmt))) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3313 | goto return_bad_req; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3314 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3315 | switch(rule->type) { |
| 3316 | case REDIRECT_TYPE_PREFIX: { |
| 3317 | const char *path; |
| 3318 | int pathlen; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3319 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3320 | path = http_get_path(txn); |
| 3321 | /* build message using path */ |
| 3322 | if (path) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 3323 | pathlen = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3324 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 3325 | int qs = 0; |
| 3326 | while (qs < pathlen) { |
| 3327 | if (path[qs] == '?') { |
| 3328 | pathlen = qs; |
| 3329 | break; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3330 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3331 | qs++; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3332 | } |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3333 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3334 | } else { |
| 3335 | path = "/"; |
| 3336 | pathlen = 1; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3337 | } |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3338 | |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 3339 | if (rdr.len + rule->rdr_len + pathlen > rdr.size - 4) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3340 | goto return_bad_req; |
| 3341 | |
| 3342 | /* add prefix. Note that if prefix == "/", we don't want to |
| 3343 | * add anything, otherwise it makes it hard for the user to |
| 3344 | * configure a self-redirection. |
| 3345 | */ |
| 3346 | if (rule->rdr_len != 1 || *rule->rdr_str != '/') { |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3347 | memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len); |
| 3348 | rdr.len += rule->rdr_len; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3349 | } |
| 3350 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3351 | /* add path */ |
| 3352 | memcpy(rdr.str + rdr.len, path, pathlen); |
| 3353 | rdr.len += pathlen; |
Willy Tarreau | 81e3b4f | 2010-01-10 00:42:19 +0100 | [diff] [blame] | 3354 | |
| 3355 | /* append a slash at the end of the location is needed and missing */ |
| 3356 | if (rdr.len && rdr.str[rdr.len - 1] != '/' && |
| 3357 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 3358 | if (rdr.len > rdr.size - 5) |
| 3359 | goto return_bad_req; |
| 3360 | rdr.str[rdr.len] = '/'; |
| 3361 | rdr.len++; |
| 3362 | } |
| 3363 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3364 | break; |
| 3365 | } |
| 3366 | case REDIRECT_TYPE_LOCATION: |
| 3367 | default: |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 3368 | if (rdr.len + rule->rdr_len > rdr.size - 4) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3369 | goto return_bad_req; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3370 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3371 | /* add location */ |
| 3372 | memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len); |
| 3373 | rdr.len += rule->rdr_len; |
| 3374 | break; |
| 3375 | } |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3376 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3377 | if (rule->cookie_len) { |
| 3378 | memcpy(rdr.str + rdr.len, "\r\nSet-Cookie: ", 14); |
| 3379 | rdr.len += 14; |
| 3380 | memcpy(rdr.str + rdr.len, rule->cookie_str, rule->cookie_len); |
| 3381 | rdr.len += rule->cookie_len; |
| 3382 | memcpy(rdr.str + rdr.len, "\r\n", 2); |
| 3383 | rdr.len += 2; |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3384 | } |
Willy Tarreau | 06b917c | 2009-07-06 16:34:52 +0200 | [diff] [blame] | 3385 | |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3386 | /* add end of headers and the keep-alive/close status. |
| 3387 | * We may choose to set keep-alive if the Location begins |
| 3388 | * with a slash, because the client will come back to the |
| 3389 | * same server. |
| 3390 | */ |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3391 | txn->status = rule->code; |
| 3392 | /* let's log the request time */ |
| 3393 | s->logs.tv_request = now; |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3394 | |
| 3395 | if (rule->rdr_len >= 1 && *rule->rdr_str == '/' && |
| 3396 | (txn->flags & TX_REQ_XFER_LEN) && |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 3397 | !(txn->flags & TX_REQ_TE_CHNK) && !txn->req.body_len && |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3398 | ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL || |
| 3399 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) { |
| 3400 | /* keep-alive possible */ |
Willy Tarreau | 7566145 | 2010-01-10 10:35:01 +0100 | [diff] [blame] | 3401 | if (!(txn->flags & TX_REQ_VER_11)) { |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 3402 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 3403 | memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: keep-alive", 30); |
| 3404 | rdr.len += 30; |
| 3405 | } else { |
| 3406 | memcpy(rdr.str + rdr.len, "\r\nConnection: keep-alive", 24); |
| 3407 | rdr.len += 24; |
| 3408 | } |
Willy Tarreau | 7566145 | 2010-01-10 10:35:01 +0100 | [diff] [blame] | 3409 | } |
| 3410 | memcpy(rdr.str + rdr.len, "\r\n\r\n", 4); |
| 3411 | rdr.len += 4; |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3412 | buffer_write(req->prod->ob, rdr.str, rdr.len); |
| 3413 | /* "eat" the request */ |
| 3414 | buffer_ignore(req, msg->sov - msg->som); |
| 3415 | msg->som = msg->sov; |
| 3416 | req->analysers = AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 9300fb2 | 2010-01-05 00:58:24 +0100 | [diff] [blame] | 3417 | s->rep->analysers = AN_RES_HTTP_XFER_BODY; |
| 3418 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 3419 | txn->rsp.msg_state = HTTP_MSG_DONE; |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3420 | break; |
| 3421 | } else { |
| 3422 | /* keep-alive not possible */ |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 3423 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 3424 | memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29); |
| 3425 | rdr.len += 29; |
| 3426 | } else { |
| 3427 | memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23); |
| 3428 | rdr.len += 23; |
| 3429 | } |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 3430 | stream_int_retnclose(req->prod, &rdr); |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3431 | goto return_prx_cond; |
| 3432 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3433 | } |
| 3434 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3435 | |
Willy Tarreau | 2be3939 | 2010-01-03 17:24:51 +0100 | [diff] [blame] | 3436 | /* POST requests may be accompanied with an "Expect: 100-Continue" header. |
| 3437 | * If this happens, then the data will not come immediately, so we must |
| 3438 | * send all what we have without waiting. Note that due to the small gain |
| 3439 | * in waiting for the body of the request, it's easier to simply put the |
| 3440 | * BF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove |
| 3441 | * itself once used. |
| 3442 | */ |
| 3443 | req->flags |= BF_SEND_DONTWAIT; |
| 3444 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3445 | /* that's OK for us now, let's move on to next analysers */ |
| 3446 | return 1; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 3447 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3448 | return_bad_req: |
| 3449 | /* We centralize bad requests processing here */ |
| 3450 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
| 3451 | /* we detected a parsing error. We want to archive this request |
| 3452 | * in the dedicated proxy area for later troubleshooting. |
| 3453 | */ |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 3454 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3455 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3456 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3457 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 3458 | txn->status = 400; |
| 3459 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3460 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3461 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3462 | if (s->listener->counters) |
| 3463 | s->listener->counters->failed_req++; |
Willy Tarreau | 6e4261e | 2007-09-18 18:36:05 +0200 | [diff] [blame] | 3464 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3465 | return_prx_cond: |
| 3466 | if (!(s->flags & SN_ERR_MASK)) |
| 3467 | s->flags |= SN_ERR_PRXCOND; |
| 3468 | if (!(s->flags & SN_FINST_MASK)) |
| 3469 | s->flags |= SN_FINST_R; |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 3470 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3471 | req->analysers = 0; |
| 3472 | req->analyse_exp = TICK_ETERNITY; |
| 3473 | return 0; |
| 3474 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 3475 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3476 | /* This function performs all the processing enabled for the current request. |
| 3477 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 3478 | * needs more data, encounters an error, or wants to immediately abort the |
| 3479 | * request. It relies on buffers flags, and updates s->req->analysers. |
| 3480 | */ |
| 3481 | int http_process_request(struct session *s, struct buffer *req, int an_bit) |
| 3482 | { |
| 3483 | struct http_txn *txn = &s->txn; |
| 3484 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 3485 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 3486 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3487 | /* we need more data */ |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 3488 | buffer_dont_connect(req); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3489 | return 0; |
| 3490 | } |
| 3491 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3492 | DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n", |
| 3493 | now_ms, __FUNCTION__, |
| 3494 | s, |
| 3495 | req, |
| 3496 | req->rex, req->wex, |
| 3497 | req->flags, |
| 3498 | req->l, |
| 3499 | req->analysers); |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3500 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3501 | /* |
| 3502 | * Right now, we know that we have processed the entire headers |
| 3503 | * and that unwanted requests have been filtered out. We can do |
| 3504 | * whatever we want with the remaining request. Also, now we |
| 3505 | * may have separate values for ->fe, ->be. |
| 3506 | */ |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3507 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3508 | /* |
| 3509 | * If HTTP PROXY is set we simply get remote server address |
| 3510 | * parsing incoming request. |
| 3511 | */ |
| 3512 | if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) { |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3513 | url2sa(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l, &s->req->cons->addr.s.to); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3514 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 3515 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3516 | /* |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 3517 | * 7: Now we can work with the cookies. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3518 | * Note that doing so might move headers in the request, but |
| 3519 | * the fields will stay coherent and the URI will not move. |
| 3520 | * This should only be performed in the backend. |
| 3521 | */ |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 3522 | if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3523 | && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) |
| 3524 | manage_client_side_cookies(s, req); |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 3525 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3526 | /* |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 3527 | * 8: the appsession cookie was looked up very early in 1.2, |
| 3528 | * so let's do the same now. |
| 3529 | */ |
| 3530 | |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3531 | /* It needs to look into the URI unless persistence must be ignored */ |
| 3532 | if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 3533 | get_srv_from_appsession(s, msg->sol + msg->sl.rq.u, msg->sl.rq.u_l); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 3534 | } |
| 3535 | |
| 3536 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3537 | * 9: add X-Forwarded-For if either the frontend or the backend |
| 3538 | * asks for it. |
| 3539 | */ |
| 3540 | if ((s->fe->options | s->be->options) & PR_O_FWDFOR) { |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 3541 | struct hdr_ctx ctx = { .idx = 0 }; |
| 3542 | |
| 3543 | if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) && |
| 3544 | http_find_header2("X-Forwarded-For", 15, txn->req.sol, &txn->hdr_idx, &ctx)) { |
| 3545 | /* The header is set to be added only if none is present |
| 3546 | * and we found it, so don't do anything. |
| 3547 | */ |
| 3548 | } |
| 3549 | else if (s->req->prod->addr.c.from.ss_family == AF_INET) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3550 | /* Add an X-Forwarded-For header unless the source IP is |
| 3551 | * in the 'except' network range. |
| 3552 | */ |
| 3553 | if ((!s->fe->except_mask.s_addr || |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3554 | (((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr.s_addr & s->fe->except_mask.s_addr) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3555 | != s->fe->except_net.s_addr) && |
| 3556 | (!s->be->except_mask.s_addr || |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3557 | (((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr.s_addr & s->be->except_mask.s_addr) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3558 | != s->be->except_net.s_addr)) { |
Willy Tarreau | 2a32428 | 2006-12-05 00:05:46 +0100 | [diff] [blame] | 3559 | int len; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3560 | unsigned char *pn; |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3561 | pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 3562 | |
| 3563 | /* Note: we rely on the backend to get the header name to be used for |
| 3564 | * x-forwarded-for, because the header is really meant for the backends. |
| 3565 | * However, if the backend did not specify any option, we have to rely |
| 3566 | * on the frontend's header name. |
| 3567 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3568 | if (s->be->fwdfor_hdr_len) { |
| 3569 | len = s->be->fwdfor_hdr_len; |
| 3570 | memcpy(trash, s->be->fwdfor_hdr_name, len); |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 3571 | } else { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3572 | len = s->fe->fwdfor_hdr_len; |
| 3573 | memcpy(trash, s->fe->fwdfor_hdr_name, len); |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 3574 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3575 | len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
Willy Tarreau | edcf668 | 2008-11-30 23:15:34 +0100 | [diff] [blame] | 3576 | |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 3577 | if (unlikely(http_header_add_tail2(req, &txn->req, |
Willy Tarreau | 58cc872 | 2009-12-28 06:57:33 +0100 | [diff] [blame] | 3578 | &txn->hdr_idx, trash, len) < 0)) |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3579 | goto return_bad_req; |
Willy Tarreau | 2a32428 | 2006-12-05 00:05:46 +0100 | [diff] [blame] | 3580 | } |
| 3581 | } |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3582 | else if (s->req->prod->addr.c.from.ss_family == AF_INET6) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3583 | /* FIXME: for the sake of completeness, we should also support |
| 3584 | * 'except' here, although it is mostly useless in this case. |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 3585 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3586 | int len; |
| 3587 | char pn[INET6_ADDRSTRLEN]; |
| 3588 | inet_ntop(AF_INET6, |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3589 | (const void *)&((struct sockaddr_in6 *)(&s->req->prod->addr.c.from))->sin6_addr, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3590 | pn, sizeof(pn)); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 3591 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3592 | /* Note: we rely on the backend to get the header name to be used for |
| 3593 | * x-forwarded-for, because the header is really meant for the backends. |
| 3594 | * However, if the backend did not specify any option, we have to rely |
| 3595 | * on the frontend's header name. |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 3596 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3597 | if (s->be->fwdfor_hdr_len) { |
| 3598 | len = s->be->fwdfor_hdr_len; |
| 3599 | memcpy(trash, s->be->fwdfor_hdr_name, len); |
| 3600 | } else { |
| 3601 | len = s->fe->fwdfor_hdr_len; |
| 3602 | memcpy(trash, s->fe->fwdfor_hdr_name, len); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 3603 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3604 | len += sprintf(trash + len, ": %s", pn); |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 3605 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3606 | if (unlikely(http_header_add_tail2(req, &txn->req, |
Willy Tarreau | 58cc872 | 2009-12-28 06:57:33 +0100 | [diff] [blame] | 3607 | &txn->hdr_idx, trash, len) < 0)) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3608 | goto return_bad_req; |
| 3609 | } |
| 3610 | } |
| 3611 | |
| 3612 | /* |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 3613 | * 10: add X-Original-To if either the frontend or the backend |
| 3614 | * asks for it. |
| 3615 | */ |
| 3616 | if ((s->fe->options | s->be->options) & PR_O_ORGTO) { |
| 3617 | |
| 3618 | /* FIXME: don't know if IPv6 can handle that case too. */ |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3619 | if (s->req->prod->addr.c.from.ss_family == AF_INET) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 3620 | /* Add an X-Original-To header unless the destination IP is |
| 3621 | * in the 'except' network range. |
| 3622 | */ |
| 3623 | if (!(s->flags & SN_FRT_ADDR_SET)) |
| 3624 | get_frt_addr(s); |
| 3625 | |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3626 | if (s->req->prod->addr.c.to.ss_family == AF_INET && |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 3627 | ((!s->fe->except_mask_to.s_addr || |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3628 | (((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr) |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 3629 | != s->fe->except_to.s_addr) && |
| 3630 | (!s->be->except_mask_to.s_addr || |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3631 | (((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr) |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 3632 | != s->be->except_to.s_addr))) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 3633 | int len; |
| 3634 | unsigned char *pn; |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 3635 | pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 3636 | |
| 3637 | /* Note: we rely on the backend to get the header name to be used for |
| 3638 | * x-original-to, because the header is really meant for the backends. |
| 3639 | * However, if the backend did not specify any option, we have to rely |
| 3640 | * on the frontend's header name. |
| 3641 | */ |
| 3642 | if (s->be->orgto_hdr_len) { |
| 3643 | len = s->be->orgto_hdr_len; |
| 3644 | memcpy(trash, s->be->orgto_hdr_name, len); |
| 3645 | } else { |
| 3646 | len = s->fe->orgto_hdr_len; |
| 3647 | memcpy(trash, s->fe->orgto_hdr_name, len); |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 3648 | } |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 3649 | len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
| 3650 | |
| 3651 | if (unlikely(http_header_add_tail2(req, &txn->req, |
Willy Tarreau | 58cc872 | 2009-12-28 06:57:33 +0100 | [diff] [blame] | 3652 | &txn->hdr_idx, trash, len) < 0)) |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 3653 | goto return_bad_req; |
| 3654 | } |
| 3655 | } |
| 3656 | } |
| 3657 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3658 | /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. */ |
| 3659 | if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) || |
Cyril Bonté | 9ea2b9a | 2010-12-29 09:36:56 +0100 | [diff] [blame] | 3660 | ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3661 | unsigned int want_flags = 0; |
| 3662 | |
| 3663 | if (txn->flags & TX_REQ_VER_11) { |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 3664 | if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL || |
| 3665 | ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) && |
| 3666 | !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3667 | want_flags |= TX_CON_CLO_SET; |
| 3668 | } else { |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 3669 | if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL && |
| 3670 | !((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) || |
| 3671 | ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3672 | want_flags |= TX_CON_KAL_SET; |
| 3673 | } |
| 3674 | |
| 3675 | if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
| 3676 | http_change_connection_header(txn, msg, req, want_flags); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3677 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3678 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3679 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3680 | /* If we have no server assigned yet and we're balancing on url_param |
| 3681 | * with a POST request, we may be interested in checking the body for |
| 3682 | * that parameter. This will be done in another analyser. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3683 | */ |
| 3684 | if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) && |
| 3685 | s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL && |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3686 | s->be->url_param_post_limit != 0 && |
Willy Tarreau | 61a21a3 | 2011-03-01 20:35:49 +0100 | [diff] [blame] | 3687 | (txn->flags & (TX_REQ_CNT_LEN|TX_REQ_TE_CHNK))) { |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3688 | buffer_dont_connect(req); |
| 3689 | req->analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3690 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3691 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 3692 | if (txn->flags & TX_REQ_XFER_LEN) |
| 3693 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 0394594 | 2009-12-22 16:50:27 +0100 | [diff] [blame] | 3694 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3695 | /************************************************************* |
| 3696 | * OK, that's finished for the headers. We have done what we * |
| 3697 | * could. Let's switch to the DATA state. * |
| 3698 | ************************************************************/ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3699 | req->analyse_exp = TICK_ETERNITY; |
| 3700 | req->analysers &= ~an_bit; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3701 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3702 | s->logs.tv_request = now; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3703 | /* OK let's go on with the BODY now */ |
| 3704 | return 1; |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3705 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3706 | return_bad_req: /* let's centralize all bad requests */ |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 3707 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 3708 | /* we detected a parsing error. We want to archive this request |
| 3709 | * in the dedicated proxy area for later troubleshooting. |
| 3710 | */ |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 3711 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe); |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 3712 | } |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 3713 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3714 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 3715 | txn->status = 400; |
| 3716 | req->analysers = 0; |
| 3717 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3718 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3719 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3720 | if (s->listener->counters) |
| 3721 | s->listener->counters->failed_req++; |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 3722 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3723 | if (!(s->flags & SN_ERR_MASK)) |
| 3724 | s->flags |= SN_ERR_PRXCOND; |
| 3725 | if (!(s->flags & SN_FINST_MASK)) |
| 3726 | s->flags |= SN_FINST_R; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 3727 | return 0; |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 3728 | } |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 3729 | |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 3730 | /* This function is an analyser which processes the HTTP tarpit. It always |
| 3731 | * returns zero, at the beginning because it prevents any other processing |
| 3732 | * from occurring, and at the end because it terminates the request. |
| 3733 | */ |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 3734 | int http_process_tarpit(struct session *s, struct buffer *req, int an_bit) |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 3735 | { |
| 3736 | struct http_txn *txn = &s->txn; |
| 3737 | |
| 3738 | /* This connection is being tarpitted. The CLIENT side has |
| 3739 | * already set the connect expiration date to the right |
| 3740 | * timeout. We just have to check that the client is still |
| 3741 | * there and that the timeout has not expired. |
| 3742 | */ |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 3743 | buffer_dont_connect(req); |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 3744 | if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 && |
| 3745 | !tick_is_expired(req->analyse_exp, now_ms)) |
| 3746 | return 0; |
| 3747 | |
| 3748 | /* We will set the queue timer to the time spent, just for |
| 3749 | * logging purposes. We fake a 500 server error, so that the |
| 3750 | * attacker will not suspect his connection has been tarpitted. |
| 3751 | * It will not cause trouble to the logs because we can exclude |
| 3752 | * the tarpitted connections by filtering on the 'PT' status flags. |
| 3753 | */ |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 3754 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 3755 | |
| 3756 | txn->status = 500; |
| 3757 | if (req->flags != BF_READ_ERROR) |
| 3758 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_500)); |
| 3759 | |
| 3760 | req->analysers = 0; |
| 3761 | req->analyse_exp = TICK_ETERNITY; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3762 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3763 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3764 | if (s->listener->counters) |
| 3765 | s->listener->counters->failed_req++; |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 3766 | |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 3767 | if (!(s->flags & SN_ERR_MASK)) |
| 3768 | s->flags |= SN_ERR_PRXCOND; |
| 3769 | if (!(s->flags & SN_FINST_MASK)) |
| 3770 | s->flags |= SN_FINST_T; |
| 3771 | return 0; |
| 3772 | } |
| 3773 | |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3774 | /* This function is an analyser which processes the HTTP request body. It looks |
| 3775 | * for parameters to be used for the load balancing algorithm (url_param). It |
| 3776 | * must only be called after the standard HTTP request processing has occurred, |
| 3777 | * because it expects the request to be parsed. It returns zero if it needs to |
| 3778 | * read more data, or 1 once it has completed its analysis. |
| 3779 | */ |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 3780 | int http_process_request_body(struct session *s, struct buffer *req, int an_bit) |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3781 | { |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3782 | struct http_txn *txn = &s->txn; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3783 | struct http_msg *msg = &s->txn.req; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3784 | long long limit = s->be->url_param_post_limit; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3785 | |
| 3786 | /* We have to parse the HTTP request body to find any required data. |
| 3787 | * "balance url_param check_post" should have been the only way to get |
| 3788 | * into this. We were brought here after HTTP header analysis, so all |
| 3789 | * related structures are ready. |
| 3790 | */ |
| 3791 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3792 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 3793 | goto missing_data; |
| 3794 | |
| 3795 | if (msg->msg_state < HTTP_MSG_100_SENT) { |
| 3796 | /* If we have HTTP/1.1 and Expect: 100-continue, then we must |
| 3797 | * send an HTTP/1.1 100 Continue intermediate response. |
| 3798 | */ |
Willy Tarreau | 9e13c3c | 2009-12-22 09:59:58 +0100 | [diff] [blame] | 3799 | if (txn->flags & TX_REQ_VER_11) { |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3800 | struct hdr_ctx ctx; |
| 3801 | ctx.idx = 0; |
| 3802 | /* Expect is allowed in 1.1, look for it */ |
| 3803 | if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) && |
| 3804 | unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) { |
| 3805 | buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len); |
| 3806 | } |
| 3807 | } |
| 3808 | msg->msg_state = HTTP_MSG_100_SENT; |
| 3809 | } |
| 3810 | |
| 3811 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 3812 | /* we have msg->col and msg->sov which both point to the first |
| 3813 | * byte of message body. msg->som still points to the beginning |
| 3814 | * of the message. We must save the body in req->lr because it |
| 3815 | * survives buffer re-alignments. |
| 3816 | */ |
| 3817 | req->lr = req->data + msg->sov; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3818 | if (txn->flags & TX_REQ_TE_CHNK) |
| 3819 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 3820 | else |
| 3821 | msg->msg_state = HTTP_MSG_DATA; |
| 3822 | } |
| 3823 | |
| 3824 | if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 3825 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 3826 | * set ->sov and ->lr to point to the body and switch to DATA or |
| 3827 | * TRAILERS state. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 3828 | */ |
| 3829 | int ret = http_parse_chunk_size(req, msg); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3830 | |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 3831 | if (!ret) |
| 3832 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3833 | else if (ret < 0) { |
| 3834 | session_inc_http_err_ctr(s); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3835 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3836 | } |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3837 | } |
| 3838 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 3839 | /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state. |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3840 | * We have the first non-header byte in msg->col, which is either the |
| 3841 | * beginning of the chunk size or of the data. The first data byte is in |
| 3842 | * msg->sov, which is equal to msg->col when not using transfer-encoding. |
| 3843 | * We're waiting for at least <url_param_post_limit> bytes after msg->sov. |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3844 | */ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3845 | |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 3846 | if (msg->body_len < limit) |
| 3847 | limit = msg->body_len; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3848 | |
Willy Tarreau | 7c96f67 | 2009-12-27 22:47:25 +0100 | [diff] [blame] | 3849 | if (req->l - (msg->sov - msg->som) >= limit) /* we have enough bytes now */ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3850 | goto http_end; |
| 3851 | |
| 3852 | missing_data: |
| 3853 | /* we get here if we need to wait for more data */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3854 | if (req->flags & BF_FULL) { |
| 3855 | session_inc_http_err_ctr(s); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 3856 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3857 | } |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 3858 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3859 | if ((req->flags & BF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) { |
| 3860 | txn->status = 408; |
| 3861 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408)); |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 3862 | |
| 3863 | if (!(s->flags & SN_ERR_MASK)) |
| 3864 | s->flags |= SN_ERR_CLITO; |
| 3865 | if (!(s->flags & SN_FINST_MASK)) |
| 3866 | s->flags |= SN_FINST_D; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3867 | goto return_err_msg; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3868 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3869 | |
| 3870 | /* we get here if we need to wait for more data */ |
| 3871 | if (!(req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR))) { |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3872 | /* Not enough data. We'll re-use the http-request |
| 3873 | * timeout here. Ideally, we should set the timeout |
| 3874 | * relative to the accept() date. We just set the |
| 3875 | * request timeout once at the beginning of the |
| 3876 | * request. |
| 3877 | */ |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 3878 | buffer_dont_connect(req); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3879 | if (!tick_isset(req->analyse_exp)) |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 3880 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3881 | return 0; |
| 3882 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3883 | |
| 3884 | http_end: |
| 3885 | /* The situation will not evolve, so let's give up on the analysis. */ |
| 3886 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 3887 | req->analysers &= ~an_bit; |
| 3888 | req->analyse_exp = TICK_ETERNITY; |
| 3889 | return 1; |
| 3890 | |
| 3891 | return_bad_req: /* let's centralize all bad requests */ |
| 3892 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 3893 | txn->status = 400; |
| 3894 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400)); |
| 3895 | |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 3896 | if (!(s->flags & SN_ERR_MASK)) |
| 3897 | s->flags |= SN_ERR_PRXCOND; |
| 3898 | if (!(s->flags & SN_FINST_MASK)) |
| 3899 | s->flags |= SN_FINST_R; |
| 3900 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3901 | return_err_msg: |
| 3902 | req->analysers = 0; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3903 | s->fe->fe_counters.failed_req++; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3904 | if (s->listener->counters) |
| 3905 | s->listener->counters->failed_req++; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 3906 | return 0; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 3907 | } |
| 3908 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3909 | /* Terminate current transaction and prepare a new one. This is very tricky |
| 3910 | * right now but it works. |
| 3911 | */ |
| 3912 | void http_end_txn_clean_session(struct session *s) |
| 3913 | { |
| 3914 | /* FIXME: We need a more portable way of releasing a backend's and a |
| 3915 | * server's connections. We need a safer way to reinitialize buffer |
| 3916 | * flags. We also need a more accurate method for computing per-request |
| 3917 | * data. |
| 3918 | */ |
| 3919 | http_silent_debug(__LINE__, s); |
| 3920 | |
| 3921 | s->req->cons->flags |= SI_FL_NOLINGER; |
| 3922 | s->req->cons->shutr(s->req->cons); |
| 3923 | s->req->cons->shutw(s->req->cons); |
| 3924 | |
| 3925 | http_silent_debug(__LINE__, s); |
| 3926 | |
| 3927 | if (s->flags & SN_BE_ASSIGNED) |
| 3928 | s->be->beconn--; |
| 3929 | |
| 3930 | s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 3931 | session_process_counters(s); |
Willy Tarreau | f059a0f | 2010-08-03 16:29:52 +0200 | [diff] [blame] | 3932 | session_stop_backend_counters(s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3933 | |
| 3934 | if (s->txn.status) { |
| 3935 | int n; |
| 3936 | |
| 3937 | n = s->txn.status / 100; |
| 3938 | if (n < 1 || n > 5) |
| 3939 | n = 0; |
| 3940 | |
| 3941 | if (s->fe->mode == PR_MODE_HTTP) |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3942 | s->fe->fe_counters.p.http.rsp[n]++; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3943 | |
Willy Tarreau | 2465779 | 2010-02-26 10:30:28 +0100 | [diff] [blame] | 3944 | if ((s->flags & SN_BE_ASSIGNED) && |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3945 | (s->be->mode == PR_MODE_HTTP)) |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3946 | s->be->be_counters.p.http.rsp[n]++; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3947 | } |
| 3948 | |
| 3949 | /* don't count other requests' data */ |
| 3950 | s->logs.bytes_in -= s->req->l - s->req->send_max; |
| 3951 | s->logs.bytes_out -= s->rep->l - s->rep->send_max; |
| 3952 | |
| 3953 | /* let's do a final log if we need it */ |
| 3954 | if (s->logs.logwait && |
| 3955 | !(s->flags & SN_MONITOR) && |
| 3956 | (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) { |
| 3957 | s->do_log(s); |
| 3958 | } |
| 3959 | |
| 3960 | s->logs.accept_date = date; /* user-visible date for logging */ |
| 3961 | s->logs.tv_accept = now; /* corrected date for internal use */ |
| 3962 | tv_zero(&s->logs.tv_request); |
| 3963 | s->logs.t_queue = -1; |
| 3964 | s->logs.t_connect = -1; |
| 3965 | s->logs.t_data = -1; |
| 3966 | s->logs.t_close = 0; |
| 3967 | s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */ |
| 3968 | s->logs.srv_queue_size = 0; /* we will get this number soon */ |
| 3969 | |
| 3970 | s->logs.bytes_in = s->req->total = s->req->l - s->req->send_max; |
| 3971 | s->logs.bytes_out = s->rep->total = s->rep->l - s->rep->send_max; |
| 3972 | |
| 3973 | if (s->pend_pos) |
| 3974 | pendconn_free(s->pend_pos); |
| 3975 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 3976 | if (target_srv(&s->target)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3977 | if (s->flags & SN_CURR_SESS) { |
| 3978 | s->flags &= ~SN_CURR_SESS; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 3979 | target_srv(&s->target)->cur_sess--; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3980 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 3981 | if (may_dequeue_tasks(target_srv(&s->target), s->be)) |
| 3982 | process_srv_queue(target_srv(&s->target)); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3983 | } |
| 3984 | |
| 3985 | if (unlikely(s->srv_conn)) |
| 3986 | sess_change_server(s, NULL); |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 3987 | clear_target(&s->target); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3988 | |
| 3989 | s->req->cons->state = s->req->cons->prev_state = SI_ST_INI; |
| 3990 | s->req->cons->fd = -1; /* just to help with debugging */ |
| 3991 | s->req->cons->err_type = SI_ET_NONE; |
Willy Tarreau | 0b3a411 | 2011-03-27 19:16:56 +0200 | [diff] [blame] | 3992 | s->req->cons->conn_retries = 0; /* used for logging too */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3993 | s->req->cons->err_loc = NULL; |
| 3994 | s->req->cons->exp = TICK_ETERNITY; |
| 3995 | s->req->cons->flags = SI_FL_NONE; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 3996 | s->req->flags &= ~(BF_SHUTW|BF_SHUTW_NOW|BF_AUTO_CONNECT|BF_WRITE_ERROR|BF_STREAMER|BF_STREAMER_FAST|BF_NEVER_WAIT); |
| 3997 | s->rep->flags &= ~(BF_SHUTR|BF_SHUTR_NOW|BF_READ_ATTACHED|BF_READ_ERROR|BF_READ_NOEXP|BF_STREAMER|BF_STREAMER_FAST|BF_WRITE_PARTIAL|BF_NEVER_WAIT); |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3998 | s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 3999 | s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE); |
| 4000 | s->txn.meth = 0; |
| 4001 | http_reset_txn(s); |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 4002 | s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ; |
Willy Tarreau | ee55dc0 | 2010-06-01 10:56:34 +0200 | [diff] [blame] | 4003 | if (s->fe->options2 & PR_O2_INDEPSTR) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4004 | s->req->cons->flags |= SI_FL_INDEP_STR; |
| 4005 | |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 4006 | if (s->fe->options2 & PR_O2_NODELAY) { |
| 4007 | s->req->flags |= BF_NEVER_WAIT; |
| 4008 | s->rep->flags |= BF_NEVER_WAIT; |
| 4009 | } |
| 4010 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4011 | /* if the request buffer is not empty, it means we're |
| 4012 | * about to process another request, so send pending |
| 4013 | * data with MSG_MORE to merge TCP packets when possible. |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 4014 | * Just don't do this if the buffer is close to be full, |
| 4015 | * because the request will wait for it to flush a little |
| 4016 | * bit before proceeding. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4017 | */ |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 4018 | if (s->req->l > s->req->send_max) { |
| 4019 | if (s->rep->send_max && |
| 4020 | !(s->rep->flags & BF_FULL) && |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 4021 | s->rep->r <= s->rep->data + s->rep->size - global.tune.maxrewrite) |
| 4022 | s->rep->flags |= BF_EXPECT_MORE; |
| 4023 | } |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4024 | |
| 4025 | /* we're removing the analysers, we MUST re-enable events detection */ |
| 4026 | buffer_auto_read(s->req); |
| 4027 | buffer_auto_close(s->req); |
| 4028 | buffer_auto_read(s->rep); |
| 4029 | buffer_auto_close(s->rep); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4030 | |
| 4031 | /* make ->lr point to the first non-forwarded byte */ |
| 4032 | s->req->lr = s->req->w + s->req->send_max; |
| 4033 | if (s->req->lr >= s->req->data + s->req->size) |
| 4034 | s->req->lr -= s->req->size; |
| 4035 | s->rep->lr = s->rep->w + s->rep->send_max; |
| 4036 | if (s->rep->lr >= s->rep->data + s->rep->size) |
| 4037 | s->rep->lr -= s->req->size; |
| 4038 | |
Willy Tarreau | 342b11c | 2010-11-24 16:22:09 +0100 | [diff] [blame] | 4039 | s->req->analysers = s->listener->analysers; |
| 4040 | s->req->analysers &= ~AN_REQ_DECODE_PROXY; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4041 | s->rep->analysers = 0; |
| 4042 | |
| 4043 | http_silent_debug(__LINE__, s); |
| 4044 | } |
| 4045 | |
| 4046 | |
| 4047 | /* This function updates the request state machine according to the response |
| 4048 | * state machine and buffer flags. It returns 1 if it changes anything (flag |
| 4049 | * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as |
| 4050 | * it is only used to find when a request/response couple is complete. Both |
| 4051 | * this function and its equivalent should loop until both return zero. It |
| 4052 | * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR. |
| 4053 | */ |
| 4054 | int http_sync_req_state(struct session *s) |
| 4055 | { |
| 4056 | struct buffer *buf = s->req; |
| 4057 | struct http_txn *txn = &s->txn; |
| 4058 | unsigned int old_flags = buf->flags; |
| 4059 | unsigned int old_state = txn->req.msg_state; |
| 4060 | |
| 4061 | http_silent_debug(__LINE__, s); |
| 4062 | if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) |
| 4063 | return 0; |
| 4064 | |
| 4065 | if (txn->req.msg_state == HTTP_MSG_DONE) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4066 | /* No need to read anymore, the request was completely parsed. |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 4067 | * We can shut the read side unless we want to abort_on_close, |
| 4068 | * or we have a POST request. The issue with POST requests is |
| 4069 | * that some browsers still send a CRLF after the request, and |
| 4070 | * this CRLF must be read so that it does not remain in the kernel |
| 4071 | * buffers, otherwise a close could cause an RST on some systems |
| 4072 | * (eg: Linux). |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4073 | */ |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 4074 | if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST) |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4075 | buffer_dont_read(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4076 | |
| 4077 | if (txn->rsp.msg_state == HTTP_MSG_ERROR) |
| 4078 | goto wait_other_side; |
| 4079 | |
| 4080 | if (txn->rsp.msg_state < HTTP_MSG_DONE) { |
| 4081 | /* The server has not finished to respond, so we |
| 4082 | * don't want to move in order not to upset it. |
| 4083 | */ |
| 4084 | goto wait_other_side; |
| 4085 | } |
| 4086 | |
| 4087 | if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) { |
| 4088 | /* if any side switches to tunnel mode, the other one does too */ |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4089 | buffer_auto_read(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4090 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
| 4091 | goto wait_other_side; |
| 4092 | } |
| 4093 | |
| 4094 | /* When we get here, it means that both the request and the |
| 4095 | * response have finished receiving. Depending on the connection |
| 4096 | * mode, we'll have to wait for the last bytes to leave in either |
| 4097 | * direction, and sometimes for a close to be effective. |
| 4098 | */ |
| 4099 | |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4100 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 4101 | /* Server-close mode : queue a connection close to the server */ |
| 4102 | if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4103 | buffer_shutw_now(buf); |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4104 | } |
| 4105 | else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 4106 | /* Option forceclose is set, or either side wants to close, |
| 4107 | * let's enforce it now that we're not expecting any new |
| 4108 | * data to come. The caller knows the session is complete |
| 4109 | * once both states are CLOSED. |
| 4110 | */ |
| 4111 | if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4112 | buffer_shutr_now(buf); |
| 4113 | buffer_shutw_now(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4114 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4115 | } |
| 4116 | else { |
| 4117 | /* The last possible modes are keep-alive and tunnel. Since tunnel |
| 4118 | * mode does not set the body analyser, we can't reach this place |
| 4119 | * in tunnel mode, so we're left with keep-alive only. |
| 4120 | * This mode is currently not implemented, we switch to tunnel mode. |
| 4121 | */ |
| 4122 | buffer_auto_read(buf); |
| 4123 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4124 | } |
| 4125 | |
| 4126 | if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) { |
| 4127 | /* if we've just closed an output, let's switch */ |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4128 | buf->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */ |
| 4129 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4130 | if (!(buf->flags & BF_OUT_EMPTY)) { |
| 4131 | txn->req.msg_state = HTTP_MSG_CLOSING; |
| 4132 | goto http_msg_closing; |
| 4133 | } |
| 4134 | else { |
| 4135 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4136 | goto http_msg_closed; |
| 4137 | } |
| 4138 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4139 | goto wait_other_side; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4140 | } |
| 4141 | |
| 4142 | if (txn->req.msg_state == HTTP_MSG_CLOSING) { |
| 4143 | http_msg_closing: |
| 4144 | /* nothing else to forward, just waiting for the output buffer |
| 4145 | * to be empty and for the shutw_now to take effect. |
| 4146 | */ |
| 4147 | if (buf->flags & BF_OUT_EMPTY) { |
| 4148 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4149 | goto http_msg_closed; |
| 4150 | } |
| 4151 | else if (buf->flags & BF_SHUTW) { |
| 4152 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4153 | goto wait_other_side; |
| 4154 | } |
| 4155 | } |
| 4156 | |
| 4157 | if (txn->req.msg_state == HTTP_MSG_CLOSED) { |
| 4158 | http_msg_closed: |
| 4159 | goto wait_other_side; |
| 4160 | } |
| 4161 | |
| 4162 | wait_other_side: |
| 4163 | http_silent_debug(__LINE__, s); |
| 4164 | return txn->req.msg_state != old_state || buf->flags != old_flags; |
| 4165 | } |
| 4166 | |
| 4167 | |
| 4168 | /* This function updates the response state machine according to the request |
| 4169 | * state machine and buffer flags. It returns 1 if it changes anything (flag |
| 4170 | * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as |
| 4171 | * it is only used to find when a request/response couple is complete. Both |
| 4172 | * this function and its equivalent should loop until both return zero. It |
| 4173 | * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR. |
| 4174 | */ |
| 4175 | int http_sync_res_state(struct session *s) |
| 4176 | { |
| 4177 | struct buffer *buf = s->rep; |
| 4178 | struct http_txn *txn = &s->txn; |
| 4179 | unsigned int old_flags = buf->flags; |
| 4180 | unsigned int old_state = txn->rsp.msg_state; |
| 4181 | |
| 4182 | http_silent_debug(__LINE__, s); |
| 4183 | if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY)) |
| 4184 | return 0; |
| 4185 | |
| 4186 | if (txn->rsp.msg_state == HTTP_MSG_DONE) { |
| 4187 | /* In theory, we don't need to read anymore, but we must |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4188 | * still monitor the server connection for a possible close |
| 4189 | * while the request is being uploaded, so we don't disable |
| 4190 | * reading. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4191 | */ |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4192 | /* buffer_dont_read(buf); */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4193 | |
| 4194 | if (txn->req.msg_state == HTTP_MSG_ERROR) |
| 4195 | goto wait_other_side; |
| 4196 | |
| 4197 | if (txn->req.msg_state < HTTP_MSG_DONE) { |
| 4198 | /* The client seems to still be sending data, probably |
| 4199 | * because we got an error response during an upload. |
| 4200 | * We have the choice of either breaking the connection |
| 4201 | * or letting it pass through. Let's do the later. |
| 4202 | */ |
| 4203 | goto wait_other_side; |
| 4204 | } |
| 4205 | |
| 4206 | if (txn->req.msg_state == HTTP_MSG_TUNNEL) { |
| 4207 | /* if any side switches to tunnel mode, the other one does too */ |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4208 | buffer_auto_read(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4209 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
| 4210 | goto wait_other_side; |
| 4211 | } |
| 4212 | |
| 4213 | /* When we get here, it means that both the request and the |
| 4214 | * response have finished receiving. Depending on the connection |
| 4215 | * mode, we'll have to wait for the last bytes to leave in either |
| 4216 | * direction, and sometimes for a close to be effective. |
| 4217 | */ |
| 4218 | |
| 4219 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 4220 | /* Server-close mode : shut read and wait for the request |
| 4221 | * side to close its output buffer. The caller will detect |
| 4222 | * when we're in DONE and the other is in CLOSED and will |
| 4223 | * catch that for the final cleanup. |
| 4224 | */ |
| 4225 | if (!(buf->flags & (BF_SHUTR|BF_SHUTR_NOW))) |
| 4226 | buffer_shutr_now(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4227 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4228 | else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 4229 | /* Option forceclose is set, or either side wants to close, |
| 4230 | * let's enforce it now that we're not expecting any new |
| 4231 | * data to come. The caller knows the session is complete |
| 4232 | * once both states are CLOSED. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4233 | */ |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4234 | if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) { |
| 4235 | buffer_shutr_now(buf); |
| 4236 | buffer_shutw_now(buf); |
| 4237 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4238 | } |
| 4239 | else { |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4240 | /* The last possible modes are keep-alive and tunnel. Since tunnel |
| 4241 | * mode does not set the body analyser, we can't reach this place |
| 4242 | * in tunnel mode, so we're left with keep-alive only. |
| 4243 | * This mode is currently not implemented, we switch to tunnel mode. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4244 | */ |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4245 | buffer_auto_read(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4246 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4247 | } |
| 4248 | |
| 4249 | if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) { |
| 4250 | /* if we've just closed an output, let's switch */ |
| 4251 | if (!(buf->flags & BF_OUT_EMPTY)) { |
| 4252 | txn->rsp.msg_state = HTTP_MSG_CLOSING; |
| 4253 | goto http_msg_closing; |
| 4254 | } |
| 4255 | else { |
| 4256 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 4257 | goto http_msg_closed; |
| 4258 | } |
| 4259 | } |
| 4260 | goto wait_other_side; |
| 4261 | } |
| 4262 | |
| 4263 | if (txn->rsp.msg_state == HTTP_MSG_CLOSING) { |
| 4264 | http_msg_closing: |
| 4265 | /* nothing else to forward, just waiting for the output buffer |
| 4266 | * to be empty and for the shutw_now to take effect. |
| 4267 | */ |
| 4268 | if (buf->flags & BF_OUT_EMPTY) { |
| 4269 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 4270 | goto http_msg_closed; |
| 4271 | } |
| 4272 | else if (buf->flags & BF_SHUTW) { |
| 4273 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4274 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4275 | if (target_srv(&s->target)) |
| 4276 | target_srv(&s->target)->counters.cli_aborts++; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4277 | goto wait_other_side; |
| 4278 | } |
| 4279 | } |
| 4280 | |
| 4281 | if (txn->rsp.msg_state == HTTP_MSG_CLOSED) { |
| 4282 | http_msg_closed: |
| 4283 | /* drop any pending data */ |
| 4284 | buffer_ignore(buf, buf->l - buf->send_max); |
| 4285 | buffer_auto_close(buf); |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4286 | buffer_auto_read(buf); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4287 | goto wait_other_side; |
| 4288 | } |
| 4289 | |
| 4290 | wait_other_side: |
| 4291 | http_silent_debug(__LINE__, s); |
| 4292 | return txn->rsp.msg_state != old_state || buf->flags != old_flags; |
| 4293 | } |
| 4294 | |
| 4295 | |
| 4296 | /* Resync the request and response state machines. Return 1 if either state |
| 4297 | * changes. |
| 4298 | */ |
| 4299 | int http_resync_states(struct session *s) |
| 4300 | { |
| 4301 | struct http_txn *txn = &s->txn; |
| 4302 | int old_req_state = txn->req.msg_state; |
| 4303 | int old_res_state = txn->rsp.msg_state; |
| 4304 | |
| 4305 | http_silent_debug(__LINE__, s); |
| 4306 | http_sync_req_state(s); |
| 4307 | while (1) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4308 | http_silent_debug(__LINE__, s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4309 | if (!http_sync_res_state(s)) |
| 4310 | break; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4311 | http_silent_debug(__LINE__, s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4312 | if (!http_sync_req_state(s)) |
| 4313 | break; |
| 4314 | } |
| 4315 | http_silent_debug(__LINE__, s); |
| 4316 | /* OK, both state machines agree on a compatible state. |
| 4317 | * There are a few cases we're interested in : |
| 4318 | * - HTTP_MSG_TUNNEL on either means we have to disable both analysers |
| 4319 | * - HTTP_MSG_CLOSED on both sides means we've reached the end in both |
| 4320 | * directions, so let's simply disable both analysers. |
| 4321 | * - HTTP_MSG_CLOSED on the response only means we must abort the |
| 4322 | * request. |
| 4323 | * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response |
| 4324 | * with server-close mode means we've completed one request and we |
| 4325 | * must re-initialize the server connection. |
| 4326 | */ |
| 4327 | |
| 4328 | if (txn->req.msg_state == HTTP_MSG_TUNNEL || |
| 4329 | txn->rsp.msg_state == HTTP_MSG_TUNNEL || |
| 4330 | (txn->req.msg_state == HTTP_MSG_CLOSED && |
| 4331 | txn->rsp.msg_state == HTTP_MSG_CLOSED)) { |
| 4332 | s->req->analysers = 0; |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 4333 | buffer_auto_close(s->req); |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4334 | buffer_auto_read(s->req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4335 | s->rep->analysers = 0; |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 4336 | buffer_auto_close(s->rep); |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4337 | buffer_auto_read(s->rep); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4338 | } |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 4339 | else if (txn->rsp.msg_state == HTTP_MSG_CLOSED || |
| 4340 | txn->rsp.msg_state == HTTP_MSG_ERROR || |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 4341 | txn->req.msg_state == HTTP_MSG_ERROR || |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 4342 | (s->rep->flags & BF_SHUTW)) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4343 | s->rep->analysers = 0; |
| 4344 | buffer_auto_close(s->rep); |
| 4345 | buffer_auto_read(s->rep); |
| 4346 | s->req->analysers = 0; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4347 | buffer_abort(s->req); |
| 4348 | buffer_auto_close(s->req); |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4349 | buffer_auto_read(s->req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4350 | buffer_ignore(s->req, s->req->l - s->req->send_max); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4351 | } |
| 4352 | else if (txn->req.msg_state == HTTP_MSG_CLOSED && |
| 4353 | txn->rsp.msg_state == HTTP_MSG_DONE && |
| 4354 | ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)) { |
| 4355 | /* server-close: terminate this server connection and |
| 4356 | * reinitialize a fresh-new transaction. |
| 4357 | */ |
| 4358 | http_end_txn_clean_session(s); |
| 4359 | } |
| 4360 | |
| 4361 | http_silent_debug(__LINE__, s); |
| 4362 | return txn->req.msg_state != old_req_state || |
| 4363 | txn->rsp.msg_state != old_res_state; |
| 4364 | } |
| 4365 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4366 | /* This function is an analyser which forwards request body (including chunk |
| 4367 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 4368 | * zero byte. The only situation where it must not be called is when we're in |
| 4369 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 4370 | * remaining data and to resync after end of body. It expects the msg_state to |
| 4371 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 4372 | * read more data, or 1 once we can go on with next request or end the session. |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 4373 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4374 | * bytes of pending data + the headers if not already done (between som and sov). |
| 4375 | * It eventually adjusts som to match sov after the data in between have been sent. |
| 4376 | */ |
| 4377 | int http_request_forward_body(struct session *s, struct buffer *req, int an_bit) |
| 4378 | { |
| 4379 | struct http_txn *txn = &s->txn; |
| 4380 | struct http_msg *msg = &s->txn.req; |
| 4381 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4382 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 4383 | return 0; |
| 4384 | |
Willy Tarreau | 6c2cbe1 | 2010-01-03 17:07:49 +0100 | [diff] [blame] | 4385 | if ((req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) || |
| 4386 | ((req->flags & BF_SHUTW) && (req->to_forward || req->send_max))) { |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 4387 | /* Output closed while we were sending data. We must abort and |
| 4388 | * wake the other side up. |
| 4389 | */ |
| 4390 | msg->msg_state = HTTP_MSG_ERROR; |
| 4391 | http_resync_states(s); |
Willy Tarreau | 082b01c | 2010-01-02 23:58:04 +0100 | [diff] [blame] | 4392 | return 1; |
| 4393 | } |
| 4394 | |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 4395 | /* in most states, we should abort in case of early close */ |
| 4396 | buffer_auto_close(req); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4397 | |
| 4398 | /* Note that we don't have to send 100-continue back because we don't |
| 4399 | * need the data to complete our job, and it's up to the server to |
| 4400 | * decide whether to return 100, 417 or anything else in return of |
| 4401 | * an "Expect: 100-continue" header. |
| 4402 | */ |
| 4403 | |
| 4404 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
| 4405 | /* we have msg->col and msg->sov which both point to the first |
| 4406 | * byte of message body. msg->som still points to the beginning |
| 4407 | * of the message. We must save the body in req->lr because it |
| 4408 | * survives buffer re-alignments. |
| 4409 | */ |
| 4410 | req->lr = req->data + msg->sov; |
| 4411 | if (txn->flags & TX_REQ_TE_CHNK) |
| 4412 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 4413 | else { |
| 4414 | msg->msg_state = HTTP_MSG_DATA; |
| 4415 | } |
| 4416 | } |
| 4417 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4418 | while (1) { |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 4419 | int bytes; |
| 4420 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4421 | http_silent_debug(__LINE__, s); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 4422 | /* we may have some data pending */ |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 4423 | bytes = msg->sov - msg->som; |
| 4424 | if (msg->chunk_len || bytes) { |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 4425 | msg->som = msg->sov; |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 4426 | if (likely(bytes < 0)) /* sov may have wrapped at the end */ |
| 4427 | bytes += req->size; |
| 4428 | msg->chunk_len += (unsigned int)bytes; |
| 4429 | msg->chunk_len -= buffer_forward(req, msg->chunk_len); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 4430 | } |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 4431 | |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 4432 | if (msg->msg_state == HTTP_MSG_DATA) { |
| 4433 | /* must still forward */ |
| 4434 | if (req->to_forward) |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4435 | goto missing_data; |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 4436 | |
| 4437 | /* nothing left to forward */ |
| 4438 | if (txn->flags & TX_REQ_TE_CHNK) |
| 4439 | msg->msg_state = HTTP_MSG_DATA_CRLF; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4440 | else |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 4441 | msg->msg_state = HTTP_MSG_DONE; |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 4442 | } |
| 4443 | else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 4444 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4445 | * set ->sov and ->lr to point to the body and switch to DATA or |
| 4446 | * TRAILERS state. |
| 4447 | */ |
| 4448 | int ret = http_parse_chunk_size(req, msg); |
| 4449 | |
| 4450 | if (!ret) |
| 4451 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4452 | else if (ret < 0) { |
| 4453 | session_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 4454 | if (msg->err_pos >= 0) |
| 4455 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_CHUNK_SIZE, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4456 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4457 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4458 | /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4459 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4460 | else if (msg->msg_state == HTTP_MSG_DATA_CRLF) { |
| 4461 | /* we want the CRLF after the data */ |
| 4462 | int ret; |
| 4463 | |
Willy Tarreau | d3347ee | 2010-01-04 02:02:25 +0100 | [diff] [blame] | 4464 | req->lr = req->w + req->send_max; |
| 4465 | if (req->lr >= req->data + req->size) |
| 4466 | req->lr -= req->size; |
| 4467 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4468 | ret = http_skip_chunk_crlf(req, msg); |
| 4469 | |
| 4470 | if (ret == 0) |
| 4471 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4472 | else if (ret < 0) { |
| 4473 | session_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 4474 | if (msg->err_pos >= 0) |
| 4475 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_DATA_CRLF, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4476 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4477 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4478 | /* we're in MSG_CHUNK_SIZE now */ |
| 4479 | } |
| 4480 | else if (msg->msg_state == HTTP_MSG_TRAILERS) { |
| 4481 | int ret = http_forward_trailers(req, msg); |
| 4482 | |
| 4483 | if (ret == 0) |
| 4484 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4485 | else if (ret < 0) { |
| 4486 | session_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 4487 | if (msg->err_pos >= 0) |
| 4488 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_TRAILERS, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4489 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4490 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4491 | /* we're in HTTP_MSG_DONE now */ |
| 4492 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4493 | else { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 4494 | int old_state = msg->msg_state; |
| 4495 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4496 | /* other states, DONE...TUNNEL */ |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 4497 | /* for keep-alive we don't want to forward closes on DONE */ |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 4498 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 4499 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
| 4500 | buffer_dont_close(req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4501 | if (http_resync_states(s)) { |
| 4502 | /* some state changes occurred, maybe the analyser |
| 4503 | * was disabled too. |
Willy Tarreau | face839 | 2010-01-03 11:37:54 +0100 | [diff] [blame] | 4504 | */ |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 4505 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 4506 | if (req->flags & BF_SHUTW) { |
| 4507 | /* request errors are most likely due to |
| 4508 | * the server aborting the transfer. |
| 4509 | */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4510 | goto aborted_xfer; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 4511 | } |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 4512 | if (msg->err_pos >= 0) |
| 4513 | http_capture_bad_message(&s->fe->invalid_req, s, req, msg, old_state, s->be); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4514 | goto return_bad_req; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 4515 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4516 | return 1; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 4517 | } |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 4518 | |
| 4519 | /* If "option abortonclose" is set on the backend, we |
| 4520 | * want to monitor the client's connection and forward |
| 4521 | * any shutdown notification to the server, which will |
| 4522 | * decide whether to close or to go on processing the |
| 4523 | * request. |
| 4524 | */ |
| 4525 | if (s->be->options & PR_O_ABRT_CLOSE) { |
| 4526 | buffer_auto_read(req); |
| 4527 | buffer_auto_close(req); |
| 4528 | } |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 4529 | else if (s->txn.meth == HTTP_METH_POST) { |
| 4530 | /* POST requests may require to read extra CRLF |
| 4531 | * sent by broken browsers and which could cause |
| 4532 | * an RST to be sent upon close on some systems |
| 4533 | * (eg: Linux). |
| 4534 | */ |
| 4535 | buffer_auto_read(req); |
| 4536 | } |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 4537 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4538 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4539 | } |
| 4540 | } |
| 4541 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4542 | missing_data: |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4543 | /* stop waiting for data if the input is closed before the end */ |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 4544 | if (req->flags & BF_SHUTR) { |
| 4545 | if (!(s->flags & SN_ERR_MASK)) |
| 4546 | s->flags |= SN_ERR_CLICL; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4547 | if (!(s->flags & SN_FINST_MASK)) { |
| 4548 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
| 4549 | s->flags |= SN_FINST_H; |
| 4550 | else |
| 4551 | s->flags |= SN_FINST_D; |
| 4552 | } |
| 4553 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4554 | s->fe->fe_counters.cli_aborts++; |
| 4555 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4556 | if (target_srv(&s->target)) |
| 4557 | target_srv(&s->target)->counters.cli_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4558 | |
| 4559 | goto return_bad_req_stats_ok; |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 4560 | } |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4561 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4562 | /* waiting for the last bits to leave the buffer */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4563 | if (req->flags & BF_SHUTW) |
| 4564 | goto aborted_xfer; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4565 | |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 4566 | /* When TE: chunked is used, we need to get there again to parse remaining |
| 4567 | * chunks even if the client has closed, so we don't want to set BF_DONTCLOSE. |
| 4568 | */ |
| 4569 | if (txn->flags & TX_REQ_TE_CHNK) |
| 4570 | buffer_dont_close(req); |
| 4571 | |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 4572 | /* We know that more data are expected, but we couldn't send more that |
Willy Tarreau | 0729303 | 2011-05-30 18:29:28 +0200 | [diff] [blame] | 4573 | * what we did. So we always set the BF_EXPECT_MORE flag so that the |
| 4574 | * system knows it must not set a PUSH on this first part. Interactive |
| 4575 | * modes are already handled by the stream sock layer. |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 4576 | */ |
Willy Tarreau | 0729303 | 2011-05-30 18:29:28 +0200 | [diff] [blame] | 4577 | req->flags |= BF_EXPECT_MORE; |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 4578 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4579 | http_silent_debug(__LINE__, s); |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4580 | return 0; |
| 4581 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4582 | return_bad_req: /* let's centralize all bad requests */ |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4583 | s->fe->fe_counters.failed_req++; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4584 | if (s->listener->counters) |
| 4585 | s->listener->counters->failed_req++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4586 | return_bad_req_stats_ok: |
| 4587 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4588 | if (txn->status) { |
| 4589 | /* Note: we don't send any error if some data were already sent */ |
| 4590 | stream_int_retnclose(req->prod, NULL); |
| 4591 | } else { |
| 4592 | txn->status = 400; |
| 4593 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400)); |
| 4594 | } |
| 4595 | req->analysers = 0; |
| 4596 | s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4597 | |
| 4598 | if (!(s->flags & SN_ERR_MASK)) |
| 4599 | s->flags |= SN_ERR_PRXCOND; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4600 | if (!(s->flags & SN_FINST_MASK)) { |
| 4601 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
| 4602 | s->flags |= SN_FINST_H; |
| 4603 | else |
| 4604 | s->flags |= SN_FINST_D; |
| 4605 | } |
| 4606 | return 0; |
| 4607 | |
| 4608 | aborted_xfer: |
| 4609 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4610 | if (txn->status) { |
| 4611 | /* Note: we don't send any error if some data were already sent */ |
| 4612 | stream_int_retnclose(req->prod, NULL); |
| 4613 | } else { |
| 4614 | txn->status = 502; |
| 4615 | stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_502)); |
| 4616 | } |
| 4617 | req->analysers = 0; |
| 4618 | s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */ |
| 4619 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4620 | s->fe->fe_counters.srv_aborts++; |
| 4621 | s->be->be_counters.srv_aborts++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4622 | if (target_srv(&s->target)) |
| 4623 | target_srv(&s->target)->counters.srv_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 4624 | |
| 4625 | if (!(s->flags & SN_ERR_MASK)) |
| 4626 | s->flags |= SN_ERR_SRVCL; |
| 4627 | if (!(s->flags & SN_FINST_MASK)) { |
| 4628 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
| 4629 | s->flags |= SN_FINST_H; |
| 4630 | else |
| 4631 | s->flags |= SN_FINST_D; |
| 4632 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4633 | return 0; |
| 4634 | } |
| 4635 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4636 | /* This stream analyser waits for a complete HTTP response. It returns 1 if the |
| 4637 | * processing can continue on next analysers, or zero if it either needs more |
| 4638 | * data or wants to immediately abort the response (eg: timeout, error, ...). It |
| 4639 | * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers |
| 4640 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 4641 | * abort. |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 4642 | */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4643 | int http_wait_for_response(struct session *s, struct buffer *rep, int an_bit) |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 4644 | { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4645 | struct http_txn *txn = &s->txn; |
| 4646 | struct http_msg *msg = &txn->rsp; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 4647 | struct hdr_ctx ctx; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 4648 | int use_close_only; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4649 | int cur_idx; |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 4650 | int n; |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4651 | |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 4652 | DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n", |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 4653 | now_ms, __FUNCTION__, |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4654 | s, |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 4655 | rep, |
| 4656 | rep->rex, rep->wex, |
| 4657 | rep->flags, |
| 4658 | rep->l, |
| 4659 | rep->analysers); |
Willy Tarreau | 67f0eea | 2008-08-10 22:55:22 +0200 | [diff] [blame] | 4660 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4661 | /* |
| 4662 | * Now parse the partial (or complete) lines. |
| 4663 | * We will check the response syntax, and also join multi-line |
| 4664 | * headers. An index of all the lines will be elaborated while |
| 4665 | * parsing. |
| 4666 | * |
| 4667 | * For the parsing, we use a 28 states FSM. |
| 4668 | * |
| 4669 | * Here is the information we currently have : |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 4670 | * rep->data + msg->som = beginning of response |
| 4671 | * rep->data + msg->eoh = end of processed headers / start of current one |
| 4672 | * msg->eol = end of current header or line (LF or CRLF) |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4673 | * rep->lr = first non-visited byte |
| 4674 | * rep->r = end of data |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 4675 | * Once we reach MSG_BODY, rep->sol = rep->data + msg->som |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4676 | */ |
| 4677 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 4678 | /* There's a protected area at the end of the buffer for rewriting |
| 4679 | * purposes. We don't want to start to parse the request if the |
| 4680 | * protected area is affected, because we may have to move processed |
| 4681 | * data later, which is much more complicated. |
| 4682 | */ |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 4683 | if (rep->l && msg->msg_state < HTTP_MSG_ERROR) { |
| 4684 | if (unlikely((rep->flags & BF_FULL) || |
| 4685 | rep->r < rep->lr || |
| 4686 | rep->r > rep->data + rep->size - global.tune.maxrewrite)) { |
| 4687 | if (rep->send_max) { |
| 4688 | /* some data has still not left the buffer, wake us once that's done */ |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 4689 | if (rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) |
| 4690 | goto abort_response; |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 4691 | buffer_dont_close(rep); |
| 4692 | rep->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */ |
| 4693 | return 0; |
| 4694 | } |
| 4695 | if (rep->l <= rep->size - global.tune.maxrewrite) |
| 4696 | http_buffer_heavy_realign(rep, msg); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 4697 | } |
| 4698 | |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 4699 | if (likely(rep->lr < rep->r)) |
| 4700 | http_msg_analyzer(rep, msg, &txn->hdr_idx); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 4701 | } |
| 4702 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4703 | /* 1: we might have to print this header in debug mode */ |
| 4704 | if (unlikely((global.mode & MODE_DEBUG) && |
| 4705 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
Willy Tarreau | c3bfeeb | 2010-04-16 09:14:45 +0200 | [diff] [blame] | 4706 | msg->sol && |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 4707 | (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4708 | char *eol, *sol; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4709 | |
Willy Tarreau | 663308b | 2010-06-07 14:06:08 +0200 | [diff] [blame] | 4710 | sol = rep->data + msg->som; |
Willy Tarreau | 1ba0e5f | 2010-06-07 13:57:32 +0200 | [diff] [blame] | 4711 | eol = sol + msg->sl.st.l; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4712 | debug_hdr("srvrep", s, sol, eol); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4713 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4714 | sol += hdr_idx_first_pos(&txn->hdr_idx); |
| 4715 | cur_idx = hdr_idx_first_idx(&txn->hdr_idx); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4716 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4717 | while (cur_idx) { |
| 4718 | eol = sol + txn->hdr_idx.v[cur_idx].len; |
| 4719 | debug_hdr("srvhdr", s, sol, eol); |
| 4720 | sol = eol + txn->hdr_idx.v[cur_idx].cr + 1; |
| 4721 | cur_idx = txn->hdr_idx.v[cur_idx].next; |
| 4722 | } |
| 4723 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4724 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4725 | /* |
| 4726 | * Now we quickly check if we have found a full valid response. |
| 4727 | * If not so, we check the FD and buffer states before leaving. |
| 4728 | * A full response is indicated by the fact that we have seen |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 4729 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4730 | * responses are checked first. |
| 4731 | * |
| 4732 | * Depending on whether the client is still there or not, we |
| 4733 | * may send an error response back or not. Note that normally |
| 4734 | * we should only check for HTTP status there, and check I/O |
| 4735 | * errors somewhere else. |
| 4736 | */ |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4737 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 4738 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4739 | /* Invalid response */ |
| 4740 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 4741 | /* we detected a parsing error. We want to archive this response |
| 4742 | * in the dedicated proxy area for later troubleshooting. |
| 4743 | */ |
| 4744 | hdr_response_bad: |
| 4745 | if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 4746 | http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4747 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4748 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4749 | if (target_srv(&s->target)) { |
| 4750 | target_srv(&s->target)->counters.failed_resp++; |
| 4751 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 4752 | } |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 4753 | abort_response: |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4754 | buffer_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4755 | rep->analysers = 0; |
| 4756 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 4757 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 0b89fbb | 2010-02-02 09:57:24 +0100 | [diff] [blame] | 4758 | buffer_ignore(rep, rep->l - rep->send_max); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4759 | stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502)); |
| 4760 | |
| 4761 | if (!(s->flags & SN_ERR_MASK)) |
| 4762 | s->flags |= SN_ERR_PRXCOND; |
| 4763 | if (!(s->flags & SN_FINST_MASK)) |
| 4764 | s->flags |= SN_FINST_H; |
| 4765 | |
| 4766 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4767 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4768 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4769 | /* too large response does not fit in buffer. */ |
| 4770 | else if (rep->flags & BF_FULL) { |
Willy Tarreau | fec4d89 | 2011-09-02 20:04:57 +0200 | [diff] [blame] | 4771 | if (msg->err_pos < 0) |
| 4772 | msg->err_pos = rep->l; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4773 | goto hdr_response_bad; |
| 4774 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4775 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4776 | /* read error */ |
| 4777 | else if (rep->flags & BF_READ_ERROR) { |
| 4778 | if (msg->err_pos >= 0) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 4779 | http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 4780 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4781 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4782 | if (target_srv(&s->target)) { |
| 4783 | target_srv(&s->target)->counters.failed_resp++; |
| 4784 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_ERROR); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 4785 | } |
Willy Tarreau | 461f662 | 2008-08-15 23:43:19 +0200 | [diff] [blame] | 4786 | |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4787 | buffer_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4788 | rep->analysers = 0; |
| 4789 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 4790 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 0b89fbb | 2010-02-02 09:57:24 +0100 | [diff] [blame] | 4791 | buffer_ignore(rep, rep->l - rep->send_max); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4792 | stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502)); |
Willy Tarreau | 816b979 | 2009-09-15 21:25:21 +0200 | [diff] [blame] | 4793 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4794 | if (!(s->flags & SN_ERR_MASK)) |
| 4795 | s->flags |= SN_ERR_SRVCL; |
| 4796 | if (!(s->flags & SN_FINST_MASK)) |
| 4797 | s->flags |= SN_FINST_H; |
Willy Tarreau | cebf57e | 2008-08-15 18:16:37 +0200 | [diff] [blame] | 4798 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4799 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4800 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4801 | /* read timeout : return a 504 to the client. */ |
| 4802 | else if (rep->flags & BF_READ_TIMEOUT) { |
| 4803 | if (msg->err_pos >= 0) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 4804 | http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe); |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 4805 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4806 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4807 | if (target_srv(&s->target)) { |
| 4808 | target_srv(&s->target)->counters.failed_resp++; |
| 4809 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_TIMEOUT); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 4810 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 4811 | |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4812 | buffer_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4813 | rep->analysers = 0; |
| 4814 | txn->status = 504; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 4815 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 0b89fbb | 2010-02-02 09:57:24 +0100 | [diff] [blame] | 4816 | buffer_ignore(rep, rep->l - rep->send_max); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4817 | stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_504)); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 4818 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4819 | if (!(s->flags & SN_ERR_MASK)) |
| 4820 | s->flags |= SN_ERR_SRVTO; |
| 4821 | if (!(s->flags & SN_FINST_MASK)) |
| 4822 | s->flags |= SN_FINST_H; |
| 4823 | return 0; |
| 4824 | } |
Willy Tarreau | a7c5276 | 2008-08-16 18:40:18 +0200 | [diff] [blame] | 4825 | |
Willy Tarreau | 3b8c08a | 2011-09-02 20:16:24 +0200 | [diff] [blame] | 4826 | /* close from server, capture the response if the server has started to respond */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4827 | else if (rep->flags & BF_SHUTR) { |
Willy Tarreau | 3b8c08a | 2011-09-02 20:16:24 +0200 | [diff] [blame] | 4828 | if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 4829 | http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe); |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 4830 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4831 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4832 | if (target_srv(&s->target)) { |
| 4833 | target_srv(&s->target)->counters.failed_resp++; |
| 4834 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_BROKEN_PIPE); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 4835 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 4836 | |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4837 | buffer_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4838 | rep->analysers = 0; |
| 4839 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 4840 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 0b89fbb | 2010-02-02 09:57:24 +0100 | [diff] [blame] | 4841 | buffer_ignore(rep, rep->l - rep->send_max); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4842 | stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502)); |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 4843 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4844 | if (!(s->flags & SN_ERR_MASK)) |
| 4845 | s->flags |= SN_ERR_SRVCL; |
| 4846 | if (!(s->flags & SN_FINST_MASK)) |
| 4847 | s->flags |= SN_FINST_H; |
| 4848 | return 0; |
| 4849 | } |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 4850 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4851 | /* write error to client (we don't send any message then) */ |
| 4852 | else if (rep->flags & BF_WRITE_ERROR) { |
| 4853 | if (msg->err_pos >= 0) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 4854 | http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe); |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 4855 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4856 | s->be->be_counters.failed_resp++; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4857 | rep->analysers = 0; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4858 | buffer_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4859 | |
| 4860 | if (!(s->flags & SN_ERR_MASK)) |
| 4861 | s->flags |= SN_ERR_CLICL; |
| 4862 | if (!(s->flags & SN_FINST_MASK)) |
| 4863 | s->flags |= SN_FINST_H; |
| 4864 | |
| 4865 | /* process_session() will take care of the error */ |
| 4866 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4867 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 4868 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4869 | buffer_dont_close(rep); |
| 4870 | return 0; |
| 4871 | } |
| 4872 | |
| 4873 | /* More interesting part now : we know that we have a complete |
| 4874 | * response which at least looks like HTTP. We have an indicator |
| 4875 | * of each header's length, so we can parse them quickly. |
| 4876 | */ |
| 4877 | |
| 4878 | if (unlikely(msg->err_pos >= 0)) |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 4879 | http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4880 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4881 | /* |
| 4882 | * 1: get the status code |
| 4883 | */ |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 4884 | n = msg->sol[msg->sl.st.c] - '0'; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4885 | if (n < 1 || n > 5) |
| 4886 | n = 0; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4887 | /* when the client triggers a 4xx from the server, it's most often due |
| 4888 | * to a missing object or permission. These events should be tracked |
| 4889 | * because if they happen often, it may indicate a brute force or a |
| 4890 | * vulnerability scan. |
| 4891 | */ |
| 4892 | if (n == 4) |
| 4893 | session_inc_http_err_ctr(s); |
| 4894 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4895 | if (target_srv(&s->target)) |
| 4896 | target_srv(&s->target)->counters.p.http.rsp[n]++; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4897 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 4898 | /* check if the response is HTTP/1.1 or above */ |
| 4899 | if ((msg->sl.st.v_l == 8) && |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 4900 | ((msg->sol[5] > '1') || |
| 4901 | ((msg->sol[5] == '1') && |
| 4902 | (msg->sol[7] >= '1')))) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 4903 | txn->flags |= TX_RES_VER_11; |
| 4904 | |
| 4905 | /* "connection" has not been parsed yet */ |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 4906 | txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_CON_CLO_SET|TX_CON_KAL_SET); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 4907 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 4908 | /* transfer length unknown*/ |
| 4909 | txn->flags &= ~TX_RES_XFER_LEN; |
| 4910 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 4911 | txn->status = strl2ui(msg->sol + msg->sl.st.c, msg->sl.st.c_l); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4912 | |
Willy Tarreau | 3965040 | 2010-03-15 19:44:39 +0100 | [diff] [blame] | 4913 | /* Adjust server's health based on status code. Note: status codes 501 |
| 4914 | * and 505 are triggered on demand by client request, so we must not |
| 4915 | * count them as server failures. |
| 4916 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4917 | if (target_srv(&s->target)) { |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 4918 | if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505)) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4919 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_OK); |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 4920 | else |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 4921 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_STS); |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 4922 | } |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 4923 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4924 | /* |
| 4925 | * 2: check for cacheability. |
| 4926 | */ |
| 4927 | |
| 4928 | switch (txn->status) { |
| 4929 | case 200: |
| 4930 | case 203: |
| 4931 | case 206: |
| 4932 | case 300: |
| 4933 | case 301: |
| 4934 | case 410: |
| 4935 | /* RFC2616 @13.4: |
| 4936 | * "A response received with a status code of |
| 4937 | * 200, 203, 206, 300, 301 or 410 MAY be stored |
| 4938 | * by a cache (...) unless a cache-control |
| 4939 | * directive prohibits caching." |
| 4940 | * |
| 4941 | * RFC2616 @9.5: POST method : |
| 4942 | * "Responses to this method are not cacheable, |
| 4943 | * unless the response includes appropriate |
| 4944 | * Cache-Control or Expires header fields." |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4945 | */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4946 | if (likely(txn->meth != HTTP_METH_POST) && |
| 4947 | (s->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC))) |
| 4948 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
| 4949 | break; |
| 4950 | default: |
| 4951 | break; |
| 4952 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 4953 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4954 | /* |
| 4955 | * 3: we may need to capture headers |
| 4956 | */ |
| 4957 | s->logs.logwait &= ~LW_RESP; |
| 4958 | if (unlikely((s->logs.logwait & LW_RSPHDR) && s->fe->rsp_cap)) |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 4959 | capture_headers(msg->sol, &txn->hdr_idx, |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 4960 | txn->rsp.cap, s->fe->rsp_cap); |
| 4961 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 4962 | /* 4: determine the transfer-length. |
| 4963 | * According to RFC2616 #4.4, amended by the HTTPbis working group, |
| 4964 | * the presence of a message-body in a RESPONSE and its transfer length |
| 4965 | * must be determined that way : |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 4966 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 4967 | * All responses to the HEAD request method MUST NOT include a |
| 4968 | * message-body, even though the presence of entity-header fields |
| 4969 | * might lead one to believe they do. All 1xx (informational), 204 |
| 4970 | * (No Content), and 304 (Not Modified) responses MUST NOT include a |
| 4971 | * message-body. All other responses do include a message-body, |
| 4972 | * although it MAY be of zero length. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 4973 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 4974 | * 1. Any response which "MUST NOT" include a message-body (such as the |
| 4975 | * 1xx, 204 and 304 responses and any response to a HEAD request) is |
| 4976 | * always terminated by the first empty line after the header fields, |
| 4977 | * regardless of the entity-header fields present in the message. |
| 4978 | * |
| 4979 | * 2. If a Transfer-Encoding header field (Section 9.7) is present and |
| 4980 | * the "chunked" transfer-coding (Section 6.2) is used, the |
| 4981 | * transfer-length is defined by the use of this transfer-coding. |
| 4982 | * If a Transfer-Encoding header field is present and the "chunked" |
| 4983 | * transfer-coding is not present, the transfer-length is defined by |
| 4984 | * the sender closing the connection. |
| 4985 | * |
| 4986 | * 3. If a Content-Length header field is present, its decimal value in |
| 4987 | * OCTETs represents both the entity-length and the transfer-length. |
| 4988 | * If a message is received with both a Transfer-Encoding header |
| 4989 | * field and a Content-Length header field, the latter MUST be ignored. |
| 4990 | * |
| 4991 | * 4. If the message uses the media type "multipart/byteranges", and |
| 4992 | * the transfer-length is not otherwise specified, then this self- |
| 4993 | * delimiting media type defines the transfer-length. This media |
| 4994 | * type MUST NOT be used unless the sender knows that the recipient |
| 4995 | * can parse it; the presence in a request of a Range header with |
| 4996 | * multiple byte-range specifiers from a 1.1 client implies that the |
| 4997 | * client can parse multipart/byteranges responses. |
| 4998 | * |
| 4999 | * 5. By the server closing the connection. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5000 | */ |
| 5001 | |
| 5002 | /* Skip parsing if no content length is possible. The response flags |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5003 | * remain 0 as well as the chunk_len, which may or may not mirror |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5004 | * the real header value, and we note that we know the response's length. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5005 | * FIXME: should we parse anyway and return an error on chunked encoding ? |
| 5006 | */ |
| 5007 | if (txn->meth == HTTP_METH_HEAD || |
| 5008 | (txn->status >= 100 && txn->status < 200) || |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5009 | txn->status == 204 || txn->status == 304) { |
| 5010 | txn->flags |= TX_RES_XFER_LEN; |
| 5011 | goto skip_content_length; |
| 5012 | } |
| 5013 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5014 | use_close_only = 0; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5015 | ctx.idx = 0; |
Willy Tarreau | 9e13c3c | 2009-12-22 09:59:58 +0100 | [diff] [blame] | 5016 | while ((txn->flags & TX_RES_VER_11) && |
| 5017 | http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5018 | if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0) |
| 5019 | txn->flags |= (TX_RES_TE_CHNK | TX_RES_XFER_LEN); |
| 5020 | else if (txn->flags & TX_RES_TE_CHNK) { |
| 5021 | /* bad transfer-encoding (chunked followed by something else) */ |
| 5022 | use_close_only = 1; |
| 5023 | txn->flags &= ~(TX_RES_TE_CHNK | TX_RES_XFER_LEN); |
| 5024 | break; |
| 5025 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5026 | } |
| 5027 | |
| 5028 | /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */ |
| 5029 | ctx.idx = 0; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5030 | while (!(txn->flags & TX_RES_TE_CHNK) && !use_close_only && |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5031 | http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) { |
| 5032 | signed long long cl; |
| 5033 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5034 | if (!ctx.vlen) { |
| 5035 | msg->err_pos = ctx.line + ctx.val - rep->data; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5036 | goto hdr_response_bad; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5037 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5038 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5039 | if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) { |
| 5040 | msg->err_pos = ctx.line + ctx.val - rep->data; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5041 | goto hdr_response_bad; /* parse failure */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5042 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5043 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5044 | if (cl < 0) { |
| 5045 | msg->err_pos = ctx.line + ctx.val - rep->data; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5046 | goto hdr_response_bad; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5047 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5048 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5049 | if ((txn->flags & TX_RES_CNT_LEN) && (msg->chunk_len != cl)) { |
| 5050 | msg->err_pos = ctx.line + ctx.val - rep->data; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5051 | goto hdr_response_bad; /* already specified, was different */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5052 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5053 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5054 | txn->flags |= TX_RES_CNT_LEN | TX_RES_XFER_LEN; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5055 | msg->body_len = msg->chunk_len = cl; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5056 | } |
| 5057 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5058 | /* FIXME: we should also implement the multipart/byterange method. |
| 5059 | * For now on, we resort to close mode in this case (unknown length). |
| 5060 | */ |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5061 | skip_content_length: |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5062 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5063 | /* end of job, return OK */ |
| 5064 | rep->analysers &= ~an_bit; |
| 5065 | rep->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 5066 | buffer_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5067 | return 1; |
| 5068 | } |
| 5069 | |
| 5070 | /* This function performs all the processing enabled for the current response. |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 5071 | * It normally returns 1 unless it wants to break. It relies on buffers flags, |
| 5072 | * and updates t->rep->analysers. It might make sense to explode it into several |
| 5073 | * other functions. It works like process_request (see indications above). |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5074 | */ |
| 5075 | int http_process_res_common(struct session *t, struct buffer *rep, int an_bit, struct proxy *px) |
| 5076 | { |
| 5077 | struct http_txn *txn = &t->txn; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5078 | struct http_msg *msg = &txn->rsp; |
| 5079 | struct proxy *cur_proxy; |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 5080 | struct cond_wordlist *wl; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5081 | |
| 5082 | DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n", |
| 5083 | now_ms, __FUNCTION__, |
| 5084 | t, |
| 5085 | rep, |
| 5086 | rep->rex, rep->wex, |
| 5087 | rep->flags, |
| 5088 | rep->l, |
| 5089 | rep->analysers); |
| 5090 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5091 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5092 | return 0; |
| 5093 | |
| 5094 | rep->analysers &= ~an_bit; |
| 5095 | rep->analyse_exp = TICK_ETERNITY; |
| 5096 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5097 | /* Now we have to check if we need to modify the Connection header. |
| 5098 | * This is more difficult on the response than it is on the request, |
| 5099 | * because we can have two different HTTP versions and we don't know |
| 5100 | * how the client will interprete a response. For instance, let's say |
| 5101 | * that the client sends a keep-alive request in HTTP/1.0 and gets an |
| 5102 | * HTTP/1.1 response without any header. Maybe it will bound itself to |
| 5103 | * HTTP/1.0 because it only knows about it, and will consider the lack |
| 5104 | * of header as a close, or maybe it knows HTTP/1.1 and can consider |
| 5105 | * the lack of header as a keep-alive. Thus we will use two flags |
| 5106 | * indicating how a request MAY be understood by the client. In case |
| 5107 | * of multiple possibilities, we'll fix the header to be explicit. If |
| 5108 | * ambiguous cases such as both close and keepalive are seen, then we |
| 5109 | * will fall back to explicit close. Note that we won't take risks with |
| 5110 | * HTTP/1.0 clients which may not necessarily understand keep-alive. |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5111 | * See doc/internals/connection-header.txt for the complete matrix. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5112 | */ |
| 5113 | |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5114 | if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || |
| 5115 | txn->status == 101)) { |
| 5116 | /* Either we've established an explicit tunnel, or we're |
| 5117 | * switching the protocol. In both cases, we're very unlikely |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5118 | * to understand the next protocols. We have to switch to tunnel |
| 5119 | * mode, so that we transfer the request and responses then let |
| 5120 | * this protocol pass unmodified. When we later implement specific |
| 5121 | * parsers for such protocols, we'll want to check the Upgrade |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5122 | * header which contains information about that protocol for |
| 5123 | * responses with status 101 (eg: see RFC2817 about TLS). |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5124 | */ |
| 5125 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN; |
| 5126 | } |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5127 | else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) && |
| 5128 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN || |
| 5129 | ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) { |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5130 | int to_del = 0; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5131 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5132 | /* on unknown transfer length, we must close */ |
| 5133 | if (!(txn->flags & TX_RES_XFER_LEN) && |
| 5134 | (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) |
| 5135 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5136 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5137 | /* now adjust header transformations depending on current state */ |
| 5138 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN || |
| 5139 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 5140 | to_del |= 2; /* remove "keep-alive" on any response */ |
| 5141 | if (!(txn->flags & TX_RES_VER_11)) |
| 5142 | to_del |= 1; /* remove "close" for HTTP/1.0 responses */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5143 | } |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5144 | else { /* SCL / KAL */ |
| 5145 | to_del |= 1; /* remove "close" on any response */ |
| 5146 | if ((txn->flags & (TX_RES_VER_11|TX_REQ_VER_11)) == (TX_RES_VER_11|TX_REQ_VER_11)) |
| 5147 | to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5148 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5149 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5150 | /* Parse and remove some headers from the connection header */ |
| 5151 | http_parse_connection_header(txn, msg, rep, to_del); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5152 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5153 | /* Some keep-alive responses are converted to Server-close if |
| 5154 | * the server wants to close. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5155 | */ |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5156 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) { |
| 5157 | if ((txn->flags & TX_HDR_CONN_CLO) || |
| 5158 | (txn->flags & (TX_HDR_CONN_KAL|TX_RES_VER_11)) == 0) |
| 5159 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 5160 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5161 | } |
| 5162 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5163 | if (1) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5164 | /* |
| 5165 | * 3: we will have to evaluate the filters. |
| 5166 | * As opposed to version 1.2, now they will be evaluated in the |
| 5167 | * filters order and not in the header order. This means that |
| 5168 | * each filter has to be validated among all headers. |
| 5169 | * |
| 5170 | * Filters are tried with ->be first, then with ->fe if it is |
| 5171 | * different from ->be. |
| 5172 | */ |
| 5173 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5174 | cur_proxy = t->be; |
| 5175 | while (1) { |
| 5176 | struct proxy *rule_set = cur_proxy; |
| 5177 | |
| 5178 | /* try headers filters */ |
| 5179 | if (rule_set->rsp_exp != NULL) { |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 5180 | if (apply_filters_to_response(t, rep, rule_set) < 0) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5181 | return_bad_resp: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5182 | if (target_srv(&t->target)) { |
| 5183 | target_srv(&t->target)->counters.failed_resp++; |
| 5184 | health_adjust(target_srv(&t->target), HANA_STATUS_HTTP_RSP); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5185 | } |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5186 | t->be->be_counters.failed_resp++; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5187 | return_srv_prx_502: |
Willy Tarreau | 2df28e8 | 2008-08-17 15:20:19 +0200 | [diff] [blame] | 5188 | rep->analysers = 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5189 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 5190 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 0b89fbb | 2010-02-02 09:57:24 +0100 | [diff] [blame] | 5191 | buffer_ignore(rep, rep->l - rep->send_max); |
Willy Tarreau | 8e89b84 | 2009-10-18 23:56:35 +0200 | [diff] [blame] | 5192 | stream_int_retnclose(rep->cons, error_message(t, HTTP_ERR_502)); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5193 | if (!(t->flags & SN_ERR_MASK)) |
| 5194 | t->flags |= SN_ERR_PRXCOND; |
| 5195 | if (!(t->flags & SN_FINST_MASK)) |
| 5196 | t->flags |= SN_FINST_H; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 5197 | return 0; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5198 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5199 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5200 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5201 | /* has the response been denied ? */ |
| 5202 | if (txn->flags & TX_SVDENY) { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5203 | if (target_srv(&t->target)) |
| 5204 | target_srv(&t->target)->counters.failed_secu++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5205 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5206 | t->be->be_counters.denied_resp++; |
| 5207 | t->fe->fe_counters.denied_resp++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5208 | if (t->listener->counters) |
| 5209 | t->listener->counters->denied_resp++; |
| 5210 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5211 | goto return_srv_prx_502; |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 5212 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5213 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5214 | /* add response headers from the rule sets in the same order */ |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 5215 | list_for_each_entry(wl, &rule_set->rsp_add, list) { |
Willy Tarreau | 816b979 | 2009-09-15 21:25:21 +0200 | [diff] [blame] | 5216 | if (txn->status < 200) |
| 5217 | break; |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 5218 | if (wl->cond) { |
| 5219 | int ret = acl_exec_cond(wl->cond, px, t, txn, ACL_DIR_RTR); |
| 5220 | ret = acl_pass(ret); |
| 5221 | if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS) |
| 5222 | ret = !ret; |
| 5223 | if (!ret) |
| 5224 | continue; |
| 5225 | } |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 5226 | if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx, wl->s) < 0)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5227 | goto return_bad_resp; |
Willy Tarreau | 0bbc3cf | 2006-10-15 14:26:02 +0200 | [diff] [blame] | 5228 | } |
| 5229 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5230 | /* check whether we're already working on the frontend */ |
| 5231 | if (cur_proxy == t->fe) |
| 5232 | break; |
| 5233 | cur_proxy = t->fe; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5234 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5235 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5236 | /* |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5237 | * We may be facing a 100-continue response, in which case this |
| 5238 | * is not the right response, and we're waiting for the next one. |
| 5239 | * Let's allow this response to go to the client and wait for the |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5240 | * next one. |
| 5241 | */ |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5242 | if (unlikely(txn->status == 100)) { |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5243 | hdr_idx_init(&txn->hdr_idx); |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 5244 | buffer_forward(rep, rep->lr - msg->sol); |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5245 | msg->msg_state = HTTP_MSG_RPBEFORE; |
| 5246 | txn->status = 0; |
| 5247 | rep->analysers |= AN_RES_WAIT_HTTP | an_bit; |
| 5248 | return 1; |
| 5249 | } |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5250 | else if (unlikely(txn->status < 200)) |
| 5251 | goto skip_header_mangling; |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5252 | |
| 5253 | /* we don't have any 1xx status code now */ |
| 5254 | |
| 5255 | /* |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5256 | * 4: check for server cookie. |
| 5257 | */ |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5258 | if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name || |
| 5259 | (t->be->options & PR_O_CHK_CACHE)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5260 | manage_server_side_cookies(t, rep); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5261 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5262 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5263 | /* |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5264 | * 5: check for cache-control or pragma headers if required. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5265 | */ |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5266 | if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5267 | check_response_for_cacheability(t, rep); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5268 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5269 | /* |
| 5270 | * 6: add server cookie in the response if needed |
| 5271 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5272 | if (target_srv(&t->target) && (t->be->options & PR_O_COOK_INS) && |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 5273 | !((txn->flags & TX_SCK_FOUND) && (t->be->options2 & PR_O2_COOK_PSV)) && |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5274 | (!(t->flags & SN_DIRECT) || |
| 5275 | ((t->be->cookie_maxidle || txn->cookie_last_date) && |
| 5276 | (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) || |
| 5277 | (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date |
| 5278 | (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 5279 | (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST)) && |
| 5280 | !(t->flags & SN_IGNORE_PRST)) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5281 | int len; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5282 | /* the server is known, it's not the one the client requested, or the |
| 5283 | * cookie's last seen date needs to be refreshed. We have to |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5284 | * insert a set-cookie here, except if we want to insert only on POST |
| 5285 | * requests and this one isn't. Note that servers which don't have cookies |
| 5286 | * (eg: some backup servers) will return a full cookie removal request. |
| 5287 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5288 | if (!target_srv(&t->target)->cookie) { |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5289 | len = sprintf(trash, |
| 5290 | "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/", |
| 5291 | t->be->cookie_name); |
| 5292 | } |
| 5293 | else { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5294 | len = sprintf(trash, "Set-Cookie: %s=%s", t->be->cookie_name, target_srv(&t->target)->cookie); |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5295 | |
| 5296 | if (t->be->cookie_maxidle || t->be->cookie_maxlife) { |
| 5297 | /* emit last_date, which is mandatory */ |
| 5298 | trash[len++] = COOKIE_DELIM_DATE; |
| 5299 | s30tob64((date.tv_sec+3) >> 2, trash + len); len += 5; |
| 5300 | if (t->be->cookie_maxlife) { |
| 5301 | /* emit first_date, which is either the original one or |
| 5302 | * the current date. |
| 5303 | */ |
| 5304 | trash[len++] = COOKIE_DELIM_DATE; |
| 5305 | s30tob64(txn->cookie_first_date ? |
| 5306 | txn->cookie_first_date >> 2 : |
| 5307 | (date.tv_sec+3) >> 2, trash + len); |
| 5308 | len += 5; |
| 5309 | } |
| 5310 | } |
| 5311 | len += sprintf(trash + len, "; path=/"); |
| 5312 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5313 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5314 | if (t->be->cookie_domain) |
| 5315 | len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5316 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5317 | if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx, |
Willy Tarreau | 58cc872 | 2009-12-28 06:57:33 +0100 | [diff] [blame] | 5318 | trash, len) < 0)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5319 | goto return_bad_resp; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5320 | |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 5321 | txn->flags &= ~TX_SCK_MASK; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5322 | if (target_srv(&t->target)->cookie && (t->flags & SN_DIRECT)) |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5323 | /* the server did not change, only the date was updated */ |
| 5324 | txn->flags |= TX_SCK_UPDATED; |
| 5325 | else |
| 5326 | txn->flags |= TX_SCK_INSERTED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5327 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5328 | /* Here, we will tell an eventual cache on the client side that we don't |
| 5329 | * want it to cache this reply because HTTP/1.0 caches also cache cookies ! |
| 5330 | * Some caches understand the correct form: 'no-cache="set-cookie"', but |
| 5331 | * others don't (eg: apache <= 1.3.26). So we use 'private' instead. |
| 5332 | */ |
| 5333 | if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5334 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5335 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 5336 | |
| 5337 | if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx, |
Willy Tarreau | 58cc872 | 2009-12-28 06:57:33 +0100 | [diff] [blame] | 5338 | "Cache-control: private", 22) < 0)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5339 | goto return_bad_resp; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5340 | } |
| 5341 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5342 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5343 | /* |
| 5344 | * 7: check if result will be cacheable with a cookie. |
| 5345 | * We'll block the response if security checks have caught |
| 5346 | * nasty things such as a cacheable cookie. |
| 5347 | */ |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 5348 | if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) == |
| 5349 | (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) && |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5350 | (t->be->options & PR_O_CHK_CACHE)) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5351 | |
| 5352 | /* we're in presence of a cacheable response containing |
| 5353 | * a set-cookie header. We'll block it as requested by |
| 5354 | * the 'checkcache' option, and send an alert. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5355 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5356 | if (target_srv(&t->target)) |
| 5357 | target_srv(&t->target)->counters.failed_secu++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5358 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5359 | t->be->be_counters.denied_resp++; |
| 5360 | t->fe->fe_counters.denied_resp++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5361 | if (t->listener->counters) |
| 5362 | t->listener->counters->denied_resp++; |
| 5363 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5364 | Alert("Blocking cacheable cookie in response from instance %s, server %s.\n", |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5365 | t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>"); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5366 | send_log(t->be, LOG_ALERT, |
| 5367 | "Blocking cacheable cookie in response from instance %s, server %s.\n", |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5368 | t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>"); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5369 | goto return_srv_prx_502; |
| 5370 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5371 | |
| 5372 | /* |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5373 | * 8: adjust "Connection: close" or "Connection: keep-alive" if needed. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5374 | */ |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5375 | if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) || |
| 5376 | ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE)) { |
| 5377 | unsigned int want_flags = 0; |
| 5378 | |
| 5379 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 5380 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 5381 | /* we want a keep-alive response here. Keep-alive header |
| 5382 | * required if either side is not 1.1. |
| 5383 | */ |
| 5384 | if ((txn->flags & (TX_REQ_VER_11|TX_RES_VER_11)) != (TX_REQ_VER_11|TX_RES_VER_11)) |
| 5385 | want_flags |= TX_CON_KAL_SET; |
| 5386 | } |
| 5387 | else { |
| 5388 | /* we want a close response here. Close header required if |
| 5389 | * the server is 1.1, regardless of the client. |
| 5390 | */ |
| 5391 | if (txn->flags & TX_RES_VER_11) |
| 5392 | want_flags |= TX_CON_CLO_SET; |
| 5393 | } |
| 5394 | |
| 5395 | if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
| 5396 | http_change_connection_header(txn, msg, rep, want_flags); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 5397 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5398 | |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5399 | skip_header_mangling: |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5400 | if ((txn->flags & TX_RES_XFER_LEN) || |
| 5401 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5402 | rep->analysers |= AN_RES_HTTP_XFER_BODY; |
Willy Tarreau | 0394594 | 2009-12-22 16:50:27 +0100 | [diff] [blame] | 5403 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5404 | /************************************************************* |
| 5405 | * OK, that's finished for the headers. We have done what we * |
| 5406 | * could. Let's switch to the DATA state. * |
| 5407 | ************************************************************/ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5408 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5409 | t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5410 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5411 | /* if the user wants to log as soon as possible, without counting |
| 5412 | * bytes from the server, then this is the right moment. We have |
| 5413 | * to temporarily assign bytes_out to log what we currently have. |
| 5414 | */ |
| 5415 | if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) { |
| 5416 | t->logs.t_close = t->logs.t_data; /* to get a valid end date */ |
| 5417 | t->logs.bytes_out = txn->rsp.eoh; |
Willy Tarreau | a5555ec | 2008-11-30 19:02:32 +0100 | [diff] [blame] | 5418 | t->do_log(t); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5419 | t->logs.bytes_out = 0; |
| 5420 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5421 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5422 | /* Note: we must not try to cheat by jumping directly to DATA, |
| 5423 | * otherwise we would not let the client side wake up. |
| 5424 | */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5425 | |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 5426 | return 1; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5427 | } |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 5428 | return 1; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5429 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5430 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5431 | /* This function is an analyser which forwards response body (including chunk |
| 5432 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 5433 | * zero byte. The only situation where it must not be called is when we're in |
| 5434 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 5435 | * remaining data and to resync after end of body. It expects the msg_state to |
| 5436 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 5437 | * read more data, or 1 once we can go on with next request or end the session. |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5438 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5439 | * bytes of pending data + the headers if not already done (between som and sov). |
| 5440 | * It eventually adjusts som to match sov after the data in between have been sent. |
| 5441 | */ |
| 5442 | int http_response_forward_body(struct session *s, struct buffer *res, int an_bit) |
| 5443 | { |
| 5444 | struct http_txn *txn = &s->txn; |
| 5445 | struct http_msg *msg = &s->txn.rsp; |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5446 | int bytes; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5447 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5448 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 5449 | return 0; |
| 5450 | |
Willy Tarreau | 6c2cbe1 | 2010-01-03 17:07:49 +0100 | [diff] [blame] | 5451 | if ((res->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) || |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 5452 | ((res->flags & BF_SHUTW) && (res->to_forward || res->send_max)) || |
Willy Tarreau | 6c2cbe1 | 2010-01-03 17:07:49 +0100 | [diff] [blame] | 5453 | !s->req->analysers) { |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 5454 | /* Output closed while we were sending data. We must abort and |
| 5455 | * wake the other side up. |
| 5456 | */ |
| 5457 | msg->msg_state = HTTP_MSG_ERROR; |
| 5458 | http_resync_states(s); |
Willy Tarreau | 082b01c | 2010-01-02 23:58:04 +0100 | [diff] [blame] | 5459 | return 1; |
| 5460 | } |
| 5461 | |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 5462 | /* in most states, we should abort in case of early close */ |
| 5463 | buffer_auto_close(res); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 5464 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5465 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
| 5466 | /* we have msg->col and msg->sov which both point to the first |
| 5467 | * byte of message body. msg->som still points to the beginning |
| 5468 | * of the message. We must save the body in req->lr because it |
| 5469 | * survives buffer re-alignments. |
| 5470 | */ |
| 5471 | res->lr = res->data + msg->sov; |
| 5472 | if (txn->flags & TX_RES_TE_CHNK) |
| 5473 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 5474 | else { |
| 5475 | msg->msg_state = HTTP_MSG_DATA; |
| 5476 | } |
| 5477 | } |
| 5478 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5479 | while (1) { |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5480 | int bytes; |
| 5481 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5482 | http_silent_debug(__LINE__, s); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 5483 | /* we may have some data pending */ |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5484 | bytes = msg->sov - msg->som; |
| 5485 | if (msg->chunk_len || bytes) { |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 5486 | msg->som = msg->sov; |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5487 | if (likely(bytes < 0)) /* sov may have wrapped at the end */ |
| 5488 | bytes += res->size; |
| 5489 | msg->chunk_len += (unsigned int)bytes; |
| 5490 | msg->chunk_len -= buffer_forward(res, msg->chunk_len); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 5491 | } |
| 5492 | |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5493 | |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5494 | if (msg->msg_state == HTTP_MSG_DATA) { |
| 5495 | /* must still forward */ |
| 5496 | if (res->to_forward) |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5497 | goto missing_data; |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5498 | |
| 5499 | /* nothing left to forward */ |
| 5500 | if (txn->flags & TX_RES_TE_CHNK) |
| 5501 | msg->msg_state = HTTP_MSG_DATA_CRLF; |
| 5502 | else |
| 5503 | msg->msg_state = HTTP_MSG_DONE; |
| 5504 | } |
| 5505 | else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5506 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5507 | * set ->sov to point to the body and switch to DATA or TRAILERS state. |
| 5508 | */ |
| 5509 | int ret = http_parse_chunk_size(res, msg); |
| 5510 | |
| 5511 | if (!ret) |
| 5512 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5513 | else if (ret < 0) { |
| 5514 | if (msg->err_pos >= 0) |
| 5515 | http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_CHUNK_SIZE, s->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5516 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5517 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5518 | /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5519 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5520 | else if (msg->msg_state == HTTP_MSG_DATA_CRLF) { |
| 5521 | /* we want the CRLF after the data */ |
| 5522 | int ret; |
| 5523 | |
Willy Tarreau | d3347ee | 2010-01-04 02:02:25 +0100 | [diff] [blame] | 5524 | res->lr = res->w + res->send_max; |
| 5525 | if (res->lr >= res->data + res->size) |
| 5526 | res->lr -= res->size; |
| 5527 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5528 | ret = http_skip_chunk_crlf(res, msg); |
| 5529 | |
| 5530 | if (!ret) |
| 5531 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5532 | else if (ret < 0) { |
| 5533 | if (msg->err_pos >= 0) |
| 5534 | http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_DATA_CRLF, s->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5535 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5536 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5537 | /* we're in MSG_CHUNK_SIZE now */ |
| 5538 | } |
| 5539 | else if (msg->msg_state == HTTP_MSG_TRAILERS) { |
| 5540 | int ret = http_forward_trailers(res, msg); |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 5541 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5542 | if (ret == 0) |
| 5543 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5544 | else if (ret < 0) { |
| 5545 | if (msg->err_pos >= 0) |
| 5546 | http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_TRAILERS, s->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5547 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5548 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5549 | /* we're in HTTP_MSG_DONE now */ |
| 5550 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5551 | else { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5552 | int old_state = msg->msg_state; |
| 5553 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5554 | /* other states, DONE...TUNNEL */ |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 5555 | /* for keep-alive we don't want to forward closes on DONE */ |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5556 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 5557 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
| 5558 | buffer_dont_close(res); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5559 | if (http_resync_states(s)) { |
| 5560 | http_silent_debug(__LINE__, s); |
| 5561 | /* some state changes occurred, maybe the analyser |
| 5562 | * was disabled too. |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 5563 | */ |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5564 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 5565 | if (res->flags & BF_SHUTW) { |
| 5566 | /* response errors are most likely due to |
| 5567 | * the client aborting the transfer. |
| 5568 | */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5569 | goto aborted_xfer; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5570 | } |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5571 | if (msg->err_pos >= 0) |
| 5572 | http_capture_bad_message(&s->be->invalid_rep, s, res, msg, old_state, s->fe); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5573 | goto return_bad_res; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5574 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5575 | return 1; |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 5576 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5577 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5578 | } |
| 5579 | } |
| 5580 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5581 | missing_data: |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5582 | /* stop waiting for data if the input is closed before the end */ |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 5583 | if (res->flags & BF_SHUTR) { |
| 5584 | if (!(s->flags & SN_ERR_MASK)) |
| 5585 | s->flags |= SN_ERR_SRVCL; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5586 | s->be->be_counters.srv_aborts++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5587 | if (target_srv(&s->target)) |
| 5588 | target_srv(&s->target)->counters.srv_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5589 | goto return_bad_res_stats_ok; |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 5590 | } |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5591 | |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5592 | if (res->flags & BF_SHUTW) |
| 5593 | goto aborted_xfer; |
| 5594 | |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 5595 | /* we need to obey the req analyser, so if it leaves, we must too */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5596 | if (!s->req->analysers) |
| 5597 | goto return_bad_res; |
| 5598 | |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5599 | /* forward any pending data */ |
| 5600 | bytes = msg->sov - msg->som; |
| 5601 | if (msg->chunk_len || bytes) { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5602 | msg->som = msg->sov; |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5603 | if (likely(bytes < 0)) /* sov may have wrapped at the end */ |
| 5604 | bytes += res->size; |
| 5605 | msg->chunk_len += (unsigned int)bytes; |
| 5606 | msg->chunk_len -= buffer_forward(res, msg->chunk_len); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5607 | } |
| 5608 | |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5609 | /* When TE: chunked is used, we need to get there again to parse remaining |
| 5610 | * chunks even if the server has closed, so we don't want to set BF_DONTCLOSE. |
| 5611 | * Similarly, with keep-alive on the client side, we don't want to forward a |
| 5612 | * close. |
| 5613 | */ |
| 5614 | if ((txn->flags & TX_RES_TE_CHNK) || |
| 5615 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 5616 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
| 5617 | buffer_dont_close(res); |
| 5618 | |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5619 | /* We know that more data are expected, but we couldn't send more that |
Willy Tarreau | 0729303 | 2011-05-30 18:29:28 +0200 | [diff] [blame] | 5620 | * what we did. So we always set the BF_EXPECT_MORE flag so that the |
| 5621 | * system knows it must not set a PUSH on this first part. Interactive |
| 5622 | * modes are already handled by the stream sock layer. |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5623 | */ |
Willy Tarreau | 0729303 | 2011-05-30 18:29:28 +0200 | [diff] [blame] | 5624 | res->flags |= BF_EXPECT_MORE; |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5625 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5626 | /* the session handler will take care of timeouts and errors */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5627 | http_silent_debug(__LINE__, s); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5628 | return 0; |
| 5629 | |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 5630 | return_bad_res: /* let's centralize all bad responses */ |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5631 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5632 | if (target_srv(&s->target)) |
| 5633 | target_srv(&s->target)->counters.failed_resp++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5634 | |
| 5635 | return_bad_res_stats_ok: |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5636 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 5637 | /* don't send any error message as we're in the body */ |
| 5638 | stream_int_retnclose(res->cons, NULL); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5639 | res->analysers = 0; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5640 | s->req->analysers = 0; /* we're in data phase, we want to abort both directions */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5641 | if (target_srv(&s->target)) |
| 5642 | health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5643 | |
| 5644 | if (!(s->flags & SN_ERR_MASK)) |
| 5645 | s->flags |= SN_ERR_PRXCOND; |
| 5646 | if (!(s->flags & SN_FINST_MASK)) |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 5647 | s->flags |= SN_FINST_D; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5648 | return 0; |
| 5649 | |
| 5650 | aborted_xfer: |
| 5651 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
| 5652 | /* don't send any error message as we're in the body */ |
| 5653 | stream_int_retnclose(res->cons, NULL); |
| 5654 | res->analysers = 0; |
| 5655 | s->req->analysers = 0; /* we're in data phase, we want to abort both directions */ |
| 5656 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5657 | s->fe->fe_counters.cli_aborts++; |
| 5658 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 5659 | if (target_srv(&s->target)) |
| 5660 | target_srv(&s->target)->counters.cli_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5661 | |
| 5662 | if (!(s->flags & SN_ERR_MASK)) |
| 5663 | s->flags |= SN_ERR_CLICL; |
| 5664 | if (!(s->flags & SN_FINST_MASK)) |
| 5665 | s->flags |= SN_FINST_D; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5666 | return 0; |
| 5667 | } |
| 5668 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5669 | /* Iterate the same filter through all request headers. |
| 5670 | * Returns 1 if this filter can be stopped upon return, otherwise 0. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5671 | * Since it can manage the switch to another backend, it updates the per-proxy |
| 5672 | * DENY stats. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5673 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5674 | int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5675 | { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5676 | char term; |
| 5677 | char *cur_ptr, *cur_end, *cur_next; |
| 5678 | int cur_idx, old_idx, last_hdr; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5679 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5680 | struct hdr_idx_elem *cur_hdr; |
| 5681 | int len, delta; |
Willy Tarreau | 0f7562b | 2007-01-07 15:46:13 +0100 | [diff] [blame] | 5682 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5683 | last_hdr = 0; |
| 5684 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 5685 | cur_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5686 | old_idx = 0; |
| 5687 | |
| 5688 | while (!last_hdr) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5689 | if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5690 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5691 | else if (unlikely(txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5692 | (exp->action == ACT_ALLOW || |
| 5693 | exp->action == ACT_DENY || |
| 5694 | exp->action == ACT_TARPIT)) |
| 5695 | return 0; |
| 5696 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5697 | cur_idx = txn->hdr_idx.v[old_idx].next; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5698 | if (!cur_idx) |
| 5699 | break; |
| 5700 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5701 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5702 | cur_ptr = cur_next; |
| 5703 | cur_end = cur_ptr + cur_hdr->len; |
| 5704 | cur_next = cur_end + cur_hdr->cr + 1; |
| 5705 | |
| 5706 | /* Now we have one header between cur_ptr and cur_end, |
| 5707 | * and the next header starts at cur_next. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5708 | */ |
| 5709 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5710 | /* The annoying part is that pattern matching needs |
| 5711 | * that we modify the contents to null-terminate all |
| 5712 | * strings before testing them. |
| 5713 | */ |
| 5714 | |
| 5715 | term = *cur_end; |
| 5716 | *cur_end = '\0'; |
| 5717 | |
| 5718 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 5719 | switch (exp->action) { |
| 5720 | case ACT_SETBE: |
| 5721 | /* It is not possible to jump a second time. |
| 5722 | * FIXME: should we return an HTTP/500 here so that |
| 5723 | * the admin knows there's a problem ? |
| 5724 | */ |
| 5725 | if (t->be != t->fe) |
| 5726 | break; |
| 5727 | |
| 5728 | /* Swithing Proxy */ |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 5729 | session_set_backend(t, (struct proxy *)exp->replace); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5730 | last_hdr = 1; |
| 5731 | break; |
| 5732 | |
| 5733 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5734 | txn->flags |= TX_CLALLOW; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5735 | last_hdr = 1; |
| 5736 | break; |
| 5737 | |
| 5738 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5739 | txn->flags |= TX_CLDENY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5740 | last_hdr = 1; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5741 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5742 | t->fe->fe_counters.denied_req++; |
| 5743 | if (t->fe != t->be) |
| 5744 | t->be->be_counters.denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5745 | if (t->listener->counters) |
Willy Tarreau | bb69539 | 2010-06-23 08:43:37 +0200 | [diff] [blame] | 5746 | t->listener->counters->denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5747 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5748 | break; |
| 5749 | |
| 5750 | case ACT_TARPIT: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5751 | txn->flags |= TX_CLTARPIT; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5752 | last_hdr = 1; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5753 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5754 | t->fe->fe_counters.denied_req++; |
| 5755 | if (t->fe != t->be) |
| 5756 | t->be->be_counters.denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5757 | if (t->listener->counters) |
Willy Tarreau | bb69539 | 2010-06-23 08:43:37 +0200 | [diff] [blame] | 5758 | t->listener->counters->denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5759 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5760 | break; |
| 5761 | |
| 5762 | case ACT_REPLACE: |
| 5763 | len = exp_replace(trash, cur_ptr, exp->replace, pmatch); |
| 5764 | delta = buffer_replace2(req, cur_ptr, cur_end, trash, len); |
| 5765 | /* FIXME: if the user adds a newline in the replacement, the |
| 5766 | * index will not be recalculated for now, and the new line |
| 5767 | * will not be counted as a new header. |
| 5768 | */ |
| 5769 | |
| 5770 | cur_end += delta; |
| 5771 | cur_next += delta; |
| 5772 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 5773 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5774 | break; |
| 5775 | |
| 5776 | case ACT_REMOVE: |
| 5777 | delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0); |
| 5778 | cur_next += delta; |
| 5779 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 5780 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5781 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 5782 | txn->hdr_idx.used--; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5783 | cur_hdr->len = 0; |
| 5784 | cur_end = NULL; /* null-term has been rewritten */ |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 5785 | cur_idx = old_idx; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5786 | break; |
| 5787 | |
| 5788 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5789 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5790 | if (cur_end) |
| 5791 | *cur_end = term; /* restore the string terminator */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5792 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5793 | /* keep the link from this header to next one in case of later |
| 5794 | * removal of next header. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5795 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5796 | old_idx = cur_idx; |
| 5797 | } |
| 5798 | return 0; |
| 5799 | } |
| 5800 | |
| 5801 | |
| 5802 | /* Apply the filter to the request line. |
| 5803 | * Returns 0 if nothing has been done, 1 if the filter has been applied, |
| 5804 | * or -1 if a replacement resulted in an invalid request line. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5805 | * Since it can manage the switch to another backend, it updates the per-proxy |
| 5806 | * DENY stats. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5807 | */ |
| 5808 | int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp) |
| 5809 | { |
| 5810 | char term; |
| 5811 | char *cur_ptr, *cur_end; |
| 5812 | int done; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5813 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5814 | int len, delta; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5815 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5816 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5817 | if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5818 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5819 | else if (unlikely(txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5820 | (exp->action == ACT_ALLOW || |
| 5821 | exp->action == ACT_DENY || |
| 5822 | exp->action == ACT_TARPIT)) |
| 5823 | return 0; |
| 5824 | else if (exp->action == ACT_REMOVE) |
| 5825 | return 0; |
| 5826 | |
| 5827 | done = 0; |
| 5828 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 5829 | cur_ptr = txn->req.sol; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5830 | cur_end = cur_ptr + txn->req.sl.rq.l; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5831 | |
| 5832 | /* Now we have the request line between cur_ptr and cur_end */ |
| 5833 | |
| 5834 | /* The annoying part is that pattern matching needs |
| 5835 | * that we modify the contents to null-terminate all |
| 5836 | * strings before testing them. |
| 5837 | */ |
| 5838 | |
| 5839 | term = *cur_end; |
| 5840 | *cur_end = '\0'; |
| 5841 | |
| 5842 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 5843 | switch (exp->action) { |
| 5844 | case ACT_SETBE: |
| 5845 | /* It is not possible to jump a second time. |
| 5846 | * FIXME: should we return an HTTP/500 here so that |
| 5847 | * the admin knows there's a problem ? |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5848 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5849 | if (t->be != t->fe) |
| 5850 | break; |
| 5851 | |
| 5852 | /* Swithing Proxy */ |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 5853 | session_set_backend(t, (struct proxy *)exp->replace); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5854 | done = 1; |
| 5855 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5856 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5857 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5858 | txn->flags |= TX_CLALLOW; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5859 | done = 1; |
| 5860 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 5861 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5862 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5863 | txn->flags |= TX_CLDENY; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5864 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5865 | t->fe->fe_counters.denied_req++; |
| 5866 | if (t->fe != t->be) |
| 5867 | t->be->be_counters.denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5868 | if (t->listener->counters) |
Willy Tarreau | bb69539 | 2010-06-23 08:43:37 +0200 | [diff] [blame] | 5869 | t->listener->counters->denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5870 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5871 | done = 1; |
| 5872 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 5873 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5874 | case ACT_TARPIT: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5875 | txn->flags |= TX_CLTARPIT; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5876 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5877 | t->fe->fe_counters.denied_req++; |
| 5878 | if (t->fe != t->be) |
| 5879 | t->be->be_counters.denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5880 | if (t->listener->counters) |
Willy Tarreau | bb69539 | 2010-06-23 08:43:37 +0200 | [diff] [blame] | 5881 | t->listener->counters->denied_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5882 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5883 | done = 1; |
| 5884 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 5885 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5886 | case ACT_REPLACE: |
| 5887 | *cur_end = term; /* restore the string terminator */ |
| 5888 | len = exp_replace(trash, cur_ptr, exp->replace, pmatch); |
| 5889 | delta = buffer_replace2(req, cur_ptr, cur_end, trash, len); |
| 5890 | /* FIXME: if the user adds a newline in the replacement, the |
| 5891 | * index will not be recalculated for now, and the new line |
| 5892 | * will not be counted as a new header. |
| 5893 | */ |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 5894 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 5895 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5896 | cur_end += delta; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5897 | cur_end = (char *)http_parse_reqline(&txn->req, req->data, |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5898 | HTTP_MSG_RQMETH, |
| 5899 | cur_ptr, cur_end + 1, |
| 5900 | NULL, NULL); |
| 5901 | if (unlikely(!cur_end)) |
| 5902 | return -1; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 5903 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5904 | /* we have a full request and we know that we have either a CR |
| 5905 | * or an LF at <ptr>. |
| 5906 | */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 5907 | txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l); |
| 5908 | hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r'); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5909 | /* there is no point trying this regex on headers */ |
| 5910 | return 1; |
| 5911 | } |
| 5912 | } |
| 5913 | *cur_end = term; /* restore the string terminator */ |
| 5914 | return done; |
| 5915 | } |
Willy Tarreau | 97de624 | 2006-12-27 17:18:38 +0100 | [diff] [blame] | 5916 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5917 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5918 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5919 | /* |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5920 | * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5921 | * Returns 0 if everything is alright, or -1 in case a replacement lead to an |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5922 | * unparsable request. Since it can manage the switch to another backend, it |
| 5923 | * updates the per-proxy DENY stats. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5924 | */ |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5925 | int apply_filters_to_request(struct session *s, struct buffer *req, struct proxy *px) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5926 | { |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5927 | struct http_txn *txn = &s->txn; |
| 5928 | struct hdr_exp *exp; |
| 5929 | |
| 5930 | for (exp = px->req_exp; exp; exp = exp->next) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5931 | int ret; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5932 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5933 | /* |
| 5934 | * The interleaving of transformations and verdicts |
| 5935 | * makes it difficult to decide to continue or stop |
| 5936 | * the evaluation. |
| 5937 | */ |
| 5938 | |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5939 | if (txn->flags & (TX_CLDENY|TX_CLTARPIT)) |
| 5940 | break; |
| 5941 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 5942 | if ((txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5943 | (exp->action == ACT_ALLOW || exp->action == ACT_DENY || |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5944 | exp->action == ACT_TARPIT || exp->action == ACT_PASS)) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5945 | continue; |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5946 | |
| 5947 | /* if this filter had a condition, evaluate it now and skip to |
| 5948 | * next filter if the condition does not match. |
| 5949 | */ |
| 5950 | if (exp->cond) { |
| 5951 | ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_REQ); |
| 5952 | ret = acl_pass(ret); |
| 5953 | if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS) |
| 5954 | ret = !ret; |
| 5955 | |
| 5956 | if (!ret) |
| 5957 | continue; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5958 | } |
| 5959 | |
| 5960 | /* Apply the filter to the request line. */ |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5961 | ret = apply_filter_to_req_line(s, req, exp); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5962 | if (unlikely(ret < 0)) |
| 5963 | return -1; |
| 5964 | |
| 5965 | if (likely(ret == 0)) { |
| 5966 | /* The filter did not match the request, it can be |
| 5967 | * iterated through all headers. |
| 5968 | */ |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 5969 | apply_filter_to_req_headers(s, req, exp); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5970 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5971 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 5972 | return 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5973 | } |
| 5974 | |
| 5975 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5976 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 5977 | /* |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 5978 | * Try to retrieve the server associated to the appsession. |
| 5979 | * If the server is found, it's assigned to the session. |
| 5980 | */ |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 5981 | void manage_client_side_appsession(struct session *t, const char *buf, int len) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 5982 | struct http_txn *txn = &t->txn; |
| 5983 | appsess *asession = NULL; |
| 5984 | char *sessid_temp = NULL; |
| 5985 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 5986 | if (len > t->be->appsession_len) { |
| 5987 | len = t->be->appsession_len; |
| 5988 | } |
| 5989 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 5990 | if (t->be->options2 & PR_O2_AS_REQL) { |
| 5991 | /* request-learn option is enabled : store the sessid in the session for future use */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 5992 | if (txn->sessid != NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 5993 | /* free previously allocated memory as we don't need the session id found in the URL anymore */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 5994 | pool_free2(apools.sessid, txn->sessid); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 5995 | } |
| 5996 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 5997 | if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 5998 | Alert("Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 5999 | send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6000 | return; |
| 6001 | } |
| 6002 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 6003 | memcpy(txn->sessid, buf, len); |
| 6004 | txn->sessid[len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6005 | } |
| 6006 | |
| 6007 | if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) { |
| 6008 | Alert("Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6009 | send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6010 | return; |
| 6011 | } |
| 6012 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 6013 | memcpy(sessid_temp, buf, len); |
| 6014 | sessid_temp[len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6015 | |
| 6016 | asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp); |
| 6017 | /* free previously allocated memory */ |
| 6018 | pool_free2(apools.sessid, sessid_temp); |
| 6019 | |
| 6020 | if (asession != NULL) { |
| 6021 | asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession); |
| 6022 | if (!(t->be->options2 & PR_O2_AS_REQL)) |
| 6023 | asession->request_count++; |
| 6024 | |
| 6025 | if (asession->serverid != NULL) { |
| 6026 | struct server *srv = t->be->srv; |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 6027 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6028 | while (srv) { |
| 6029 | if (strcmp(srv->id, asession->serverid) == 0) { |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 6030 | if ((srv->state & SRV_RUNNING) || |
| 6031 | (t->be->options & PR_O_PERSIST) || |
| 6032 | (t->flags & SN_FORCE_PRST)) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6033 | /* we found the server and it's usable */ |
| 6034 | txn->flags &= ~TX_CK_MASK; |
Willy Tarreau | 2a6d88d | 2010-01-24 13:10:43 +0100 | [diff] [blame] | 6035 | txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6036 | t->flags |= SN_DIRECT | SN_ASSIGNED; |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 6037 | set_target_server(&t->target, srv); |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 6038 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6039 | break; |
| 6040 | } else { |
| 6041 | txn->flags &= ~TX_CK_MASK; |
| 6042 | txn->flags |= TX_CK_DOWN; |
| 6043 | } |
| 6044 | } |
| 6045 | srv = srv->next; |
| 6046 | } |
| 6047 | } |
| 6048 | } |
| 6049 | } |
| 6050 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6051 | /* Find the end of a cookie value contained between <s> and <e>. It works the |
| 6052 | * same way as with headers above except that the semi-colon also ends a token. |
| 6053 | * See RFC2965 for more information. Note that it requires a valid header to |
| 6054 | * return a valid result. |
| 6055 | */ |
| 6056 | char *find_cookie_value_end(char *s, const char *e) |
| 6057 | { |
| 6058 | int quoted, qdpair; |
| 6059 | |
| 6060 | quoted = qdpair = 0; |
| 6061 | for (; s < e; s++) { |
| 6062 | if (qdpair) qdpair = 0; |
| 6063 | else if (quoted) { |
| 6064 | if (*s == '\\') qdpair = 1; |
| 6065 | else if (*s == '"') quoted = 0; |
| 6066 | } |
| 6067 | else if (*s == '"') quoted = 1; |
| 6068 | else if (*s == ',' || *s == ';') return s; |
| 6069 | } |
| 6070 | return s; |
| 6071 | } |
| 6072 | |
| 6073 | /* Delete a value in a header between delimiters <from> and <next> in buffer |
| 6074 | * <buf>. The number of characters displaced is returned, and the pointer to |
| 6075 | * the first delimiter is updated if required. The function tries as much as |
| 6076 | * possible to respect the following principles : |
| 6077 | * - replace <from> delimiter by the <next> one unless <from> points to a |
| 6078 | * colon, in which case <next> is simply removed |
| 6079 | * - set exactly one space character after the new first delimiter, unless |
| 6080 | * there are not enough characters in the block being moved to do so. |
| 6081 | * - remove unneeded spaces before the previous delimiter and after the new |
| 6082 | * one. |
| 6083 | * |
| 6084 | * It is the caller's responsibility to ensure that : |
| 6085 | * - <from> points to a valid delimiter or the colon ; |
| 6086 | * - <next> points to a valid delimiter or the final CR/LF ; |
| 6087 | * - there are non-space chars before <from> ; |
| 6088 | * - there is a CR/LF at or after <next>. |
| 6089 | */ |
| 6090 | int del_hdr_value(struct buffer *buf, char **from, char *next) |
| 6091 | { |
| 6092 | char *prev = *from; |
| 6093 | |
| 6094 | if (*prev == ':') { |
| 6095 | /* We're removing the first value, preserve the colon and add a |
| 6096 | * space if possible. |
| 6097 | */ |
| 6098 | if (!http_is_crlf[(unsigned char)*next]) |
| 6099 | next++; |
| 6100 | prev++; |
| 6101 | if (prev < next) |
| 6102 | *prev++ = ' '; |
| 6103 | |
| 6104 | while (http_is_spht[(unsigned char)*next]) |
| 6105 | next++; |
| 6106 | } else { |
| 6107 | /* Remove useless spaces before the old delimiter. */ |
| 6108 | while (http_is_spht[(unsigned char)*(prev-1)]) |
| 6109 | prev--; |
| 6110 | *from = prev; |
| 6111 | |
| 6112 | /* copy the delimiter and if possible a space if we're |
| 6113 | * not at the end of the line. |
| 6114 | */ |
| 6115 | if (!http_is_crlf[(unsigned char)*next]) { |
| 6116 | *prev++ = *next++; |
| 6117 | if (prev + 1 < next) |
| 6118 | *prev++ = ' '; |
| 6119 | while (http_is_spht[(unsigned char)*next]) |
| 6120 | next++; |
| 6121 | } |
| 6122 | } |
| 6123 | return buffer_replace2(buf, prev, next, NULL, 0); |
| 6124 | } |
| 6125 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6126 | /* |
Willy Tarreau | 396d2c6 | 2007-11-04 19:30:00 +0100 | [diff] [blame] | 6127 | * Manage client-side cookie. It can impact performance by about 2% so it is |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6128 | * desirable to call it only when needed. This code is quite complex because |
| 6129 | * of the multiple very crappy and ambiguous syntaxes we have to support. it |
| 6130 | * highly recommended not to touch this part without a good reason ! |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6131 | */ |
| 6132 | void manage_client_side_cookies(struct session *t, struct buffer *req) |
| 6133 | { |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6134 | struct http_txn *txn = &t->txn; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6135 | int preserve_hdr; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6136 | int cur_idx, old_idx; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6137 | char *hdr_beg, *hdr_end, *hdr_next, *del_from; |
| 6138 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6139 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6140 | /* Iterate through the headers, we start with the start line. */ |
Willy Tarreau | 83969f4 | 2007-01-22 08:55:47 +0100 | [diff] [blame] | 6141 | old_idx = 0; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6142 | hdr_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6143 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6144 | while ((cur_idx = txn->hdr_idx.v[old_idx].next)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6145 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 6146 | int val; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6147 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6148 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6149 | hdr_beg = hdr_next; |
| 6150 | hdr_end = hdr_beg + cur_hdr->len; |
| 6151 | hdr_next = hdr_end + cur_hdr->cr + 1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6152 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6153 | /* We have one full header between hdr_beg and hdr_end, and the |
| 6154 | * next header starts at hdr_next. We're only interested in |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6155 | * "Cookie:" headers. |
| 6156 | */ |
| 6157 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6158 | val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6); |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 6159 | if (!val) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6160 | old_idx = cur_idx; |
| 6161 | continue; |
| 6162 | } |
| 6163 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6164 | del_from = NULL; /* nothing to be deleted */ |
| 6165 | preserve_hdr = 0; /* assume we may kill the whole header */ |
| 6166 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6167 | /* Now look for cookies. Conforming to RFC2109, we have to support |
| 6168 | * attributes whose name begin with a '$', and associate them with |
| 6169 | * the right cookie, if we want to delete this cookie. |
| 6170 | * So there are 3 cases for each cookie read : |
| 6171 | * 1) it's a special attribute, beginning with a '$' : ignore it. |
| 6172 | * 2) it's a server id cookie that we *MAY* want to delete : save |
| 6173 | * some pointers on it (last semi-colon, beginning of cookie...) |
| 6174 | * 3) it's an application cookie : we *MAY* have to delete a previous |
| 6175 | * "special" cookie. |
| 6176 | * At the end of loop, if a "special" cookie remains, we may have to |
| 6177 | * remove it. If no application cookie persists in the header, we |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6178 | * *MUST* delete it. |
| 6179 | * |
| 6180 | * Note: RFC2965 is unclear about the processing of spaces around |
| 6181 | * the equal sign in the ATTR=VALUE form. A careful inspection of |
| 6182 | * the RFC explicitly allows spaces before it, and not within the |
| 6183 | * tokens (attrs or values). An inspection of RFC2109 allows that |
| 6184 | * too but section 10.1.3 lets one think that spaces may be allowed |
| 6185 | * after the equal sign too, resulting in some (rare) buggy |
| 6186 | * implementations trying to do that. So let's do what servers do. |
| 6187 | * Latest ietf draft forbids spaces all around. Also, earlier RFCs |
| 6188 | * allowed quoted strings in values, with any possible character |
| 6189 | * after a backslash, including control chars and delimitors, which |
| 6190 | * causes parsing to become ambiguous. Browsers also allow spaces |
| 6191 | * within values even without quotes. |
| 6192 | * |
| 6193 | * We have to keep multiple pointers in order to support cookie |
| 6194 | * removal at the beginning, middle or end of header without |
| 6195 | * corrupting the header. All of these headers are valid : |
| 6196 | * |
| 6197 | * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n |
| 6198 | * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n |
| 6199 | * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n |
| 6200 | * | | | | | | | | | |
| 6201 | * | | | | | | | | hdr_end <--+ |
| 6202 | * | | | | | | | +--> next |
| 6203 | * | | | | | | +----> val_end |
| 6204 | * | | | | | +-----------> val_beg |
| 6205 | * | | | | +--------------> equal |
| 6206 | * | | | +----------------> att_end |
| 6207 | * | | +---------------------> att_beg |
| 6208 | * | +--------------------------> prev |
| 6209 | * +--------------------------------> hdr_beg |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6210 | */ |
| 6211 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6212 | for (prev = hdr_beg + 6; prev < hdr_end; prev = next) { |
| 6213 | /* Iterate through all cookies on this line */ |
| 6214 | |
| 6215 | /* find att_beg */ |
| 6216 | att_beg = prev + 1; |
| 6217 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 6218 | att_beg++; |
| 6219 | |
| 6220 | /* find att_end : this is the first character after the last non |
| 6221 | * space before the equal. It may be equal to hdr_end. |
| 6222 | */ |
| 6223 | equal = att_end = att_beg; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6224 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6225 | while (equal < hdr_end) { |
| 6226 | if (*equal == '=' || *equal == ',' || *equal == ';') |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6227 | break; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6228 | if (http_is_spht[(unsigned char)*equal++]) |
| 6229 | continue; |
| 6230 | att_end = equal; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6231 | } |
| 6232 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6233 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 6234 | * is between <att_beg> and <equal>, both may be identical. |
| 6235 | */ |
| 6236 | |
| 6237 | /* look for end of cookie if there is an equal sign */ |
| 6238 | if (equal < hdr_end && *equal == '=') { |
| 6239 | /* look for the beginning of the value */ |
| 6240 | val_beg = equal + 1; |
| 6241 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 6242 | val_beg++; |
| 6243 | |
| 6244 | /* find the end of the value, respecting quotes */ |
| 6245 | next = find_cookie_value_end(val_beg, hdr_end); |
| 6246 | |
| 6247 | /* make val_end point to the first white space or delimitor after the value */ |
| 6248 | val_end = next; |
| 6249 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 6250 | val_end--; |
| 6251 | } else { |
| 6252 | val_beg = val_end = next = equal; |
Willy Tarreau | 305ae85 | 2010-01-03 19:45:54 +0100 | [diff] [blame] | 6253 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6254 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6255 | /* We have nothing to do with attributes beginning with '$'. However, |
| 6256 | * they will automatically be removed if a header before them is removed, |
| 6257 | * since they're supposed to be linked together. |
| 6258 | */ |
| 6259 | if (*att_beg == '$') |
| 6260 | continue; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6261 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6262 | /* Ignore cookies with no equal sign */ |
| 6263 | if (equal == next) { |
| 6264 | /* This is not our cookie, so we must preserve it. But if we already |
| 6265 | * scheduled another cookie for removal, we cannot remove the |
| 6266 | * complete header, but we can remove the previous block itself. |
| 6267 | */ |
| 6268 | preserve_hdr = 1; |
| 6269 | if (del_from != NULL) { |
| 6270 | int delta = del_hdr_value(req, &del_from, prev); |
| 6271 | val_end += delta; |
| 6272 | next += delta; |
| 6273 | hdr_end += delta; |
| 6274 | hdr_next += delta; |
| 6275 | cur_hdr->len += delta; |
| 6276 | http_msg_move_end(&txn->req, delta); |
| 6277 | prev = del_from; |
| 6278 | del_from = NULL; |
| 6279 | } |
| 6280 | continue; |
Willy Tarreau | 305ae85 | 2010-01-03 19:45:54 +0100 | [diff] [blame] | 6281 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6282 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6283 | /* if there are spaces around the equal sign, we need to |
| 6284 | * strip them otherwise we'll get trouble for cookie captures, |
| 6285 | * or even for rewrites. Since this happens extremely rarely, |
| 6286 | * it does not hurt performance. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6287 | */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6288 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 6289 | int stripped_before = 0; |
| 6290 | int stripped_after = 0; |
| 6291 | |
| 6292 | if (att_end != equal) { |
| 6293 | stripped_before = buffer_replace2(req, att_end, equal, NULL, 0); |
| 6294 | equal += stripped_before; |
| 6295 | val_beg += stripped_before; |
| 6296 | } |
| 6297 | |
| 6298 | if (val_beg > equal + 1) { |
| 6299 | stripped_after = buffer_replace2(req, equal + 1, val_beg, NULL, 0); |
| 6300 | val_beg += stripped_after; |
| 6301 | stripped_before += stripped_after; |
| 6302 | } |
| 6303 | |
| 6304 | val_end += stripped_before; |
| 6305 | next += stripped_before; |
| 6306 | hdr_end += stripped_before; |
| 6307 | hdr_next += stripped_before; |
| 6308 | cur_hdr->len += stripped_before; |
| 6309 | http_msg_move_end(&txn->req, stripped_before); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6310 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6311 | /* now everything is as on the diagram above */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6312 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6313 | /* First, let's see if we want to capture this cookie. We check |
| 6314 | * that we don't already have a client side cookie, because we |
| 6315 | * can only capture one. Also as an optimisation, we ignore |
| 6316 | * cookies shorter than the declared name. |
| 6317 | */ |
| 6318 | if (t->fe->capture_name != NULL && txn->cli_cookie == NULL && |
| 6319 | (val_end - att_beg >= t->fe->capture_namelen) && |
| 6320 | memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) { |
| 6321 | int log_len = val_end - att_beg; |
| 6322 | |
| 6323 | if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) { |
| 6324 | Alert("HTTP logging : out of memory.\n"); |
| 6325 | } else { |
| 6326 | if (log_len > t->fe->capture_len) |
| 6327 | log_len = t->fe->capture_len; |
| 6328 | memcpy(txn->cli_cookie, att_beg, log_len); |
| 6329 | txn->cli_cookie[log_len] = 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6330 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6331 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6332 | |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6333 | /* Persistence cookies in passive, rewrite or insert mode have the |
| 6334 | * following form : |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6335 | * |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6336 | * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]] |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6337 | * |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6338 | * For cookies in prefix mode, the form is : |
| 6339 | * |
| 6340 | * Cookie: NAME=SRV~VALUE |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6341 | */ |
| 6342 | if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) && |
| 6343 | (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) { |
| 6344 | struct server *srv = t->be->srv; |
| 6345 | char *delim; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6346 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6347 | /* if we're in cookie prefix mode, we'll search the delimitor so that we |
| 6348 | * have the server ID between val_beg and delim, and the original cookie between |
| 6349 | * delim+1 and val_end. Otherwise, delim==val_end : |
| 6350 | * |
| 6351 | * Cookie: NAME=SRV; # in all but prefix modes |
| 6352 | * Cookie: NAME=SRV~OPAQUE ; # in prefix mode |
| 6353 | * | || || | |+-> next |
| 6354 | * | || || | +--> val_end |
| 6355 | * | || || +---------> delim |
| 6356 | * | || |+------------> val_beg |
| 6357 | * | || +-------------> att_end = equal |
| 6358 | * | |+-----------------> att_beg |
| 6359 | * | +------------------> prev |
| 6360 | * +-------------------------> hdr_beg |
| 6361 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6362 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6363 | if (t->be->options & PR_O_COOK_PFX) { |
| 6364 | for (delim = val_beg; delim < val_end; delim++) |
| 6365 | if (*delim == COOKIE_DELIM) |
| 6366 | break; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6367 | } else { |
| 6368 | char *vbar1; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6369 | delim = val_end; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6370 | /* Now check if the cookie contains a date field, which would |
| 6371 | * appear after a vertical bar ('|') just after the server name |
| 6372 | * and before the delimiter. |
| 6373 | */ |
| 6374 | vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg); |
| 6375 | if (vbar1) { |
| 6376 | /* OK, so left of the bar is the server's cookie and |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6377 | * right is the last seen date. It is a base64 encoded |
| 6378 | * 30-bit value representing the UNIX date since the |
| 6379 | * epoch in 4-second quantities. |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6380 | */ |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6381 | int val; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6382 | delim = vbar1++; |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6383 | if (val_end - vbar1 >= 5) { |
| 6384 | val = b64tos30(vbar1); |
| 6385 | if (val > 0) |
| 6386 | txn->cookie_last_date = val << 2; |
| 6387 | } |
| 6388 | /* look for a second vertical bar */ |
| 6389 | vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1); |
| 6390 | if (vbar1 && (val_end - vbar1 > 5)) { |
| 6391 | val = b64tos30(vbar1 + 1); |
| 6392 | if (val > 0) |
| 6393 | txn->cookie_first_date = val << 2; |
| 6394 | } |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 6395 | } |
| 6396 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6397 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6398 | /* if the cookie has an expiration date and the proxy wants to check |
| 6399 | * it, then we do that now. We first check if the cookie is too old, |
| 6400 | * then only if it has expired. We detect strict overflow because the |
| 6401 | * time resolution here is not great (4 seconds). Cookies with dates |
| 6402 | * in the future are ignored if their offset is beyond one day. This |
| 6403 | * allows an admin to fix timezone issues without expiring everyone |
| 6404 | * and at the same time avoids keeping unwanted side effects for too |
| 6405 | * long. |
| 6406 | */ |
| 6407 | if (txn->cookie_first_date && t->be->cookie_maxlife && |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6408 | (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) || |
| 6409 | ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) { |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6410 | txn->flags &= ~TX_CK_MASK; |
| 6411 | txn->flags |= TX_CK_OLD; |
| 6412 | delim = val_beg; // let's pretend we have not found the cookie |
| 6413 | txn->cookie_first_date = 0; |
| 6414 | txn->cookie_last_date = 0; |
| 6415 | } |
| 6416 | else if (txn->cookie_last_date && t->be->cookie_maxidle && |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6417 | (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) || |
| 6418 | ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) { |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6419 | txn->flags &= ~TX_CK_MASK; |
| 6420 | txn->flags |= TX_CK_EXPIRED; |
| 6421 | delim = val_beg; // let's pretend we have not found the cookie |
| 6422 | txn->cookie_first_date = 0; |
| 6423 | txn->cookie_last_date = 0; |
| 6424 | } |
| 6425 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6426 | /* Here, we'll look for the first running server which supports the cookie. |
| 6427 | * This allows to share a same cookie between several servers, for example |
| 6428 | * to dedicate backup servers to specific servers only. |
| 6429 | * However, to prevent clients from sticking to cookie-less backup server |
| 6430 | * when they have incidentely learned an empty cookie, we simply ignore |
| 6431 | * empty cookies and mark them as invalid. |
| 6432 | * The same behaviour is applied when persistence must be ignored. |
| 6433 | */ |
| 6434 | if ((delim == val_beg) || (t->flags & SN_IGNORE_PRST)) |
| 6435 | srv = NULL; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6436 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6437 | while (srv) { |
| 6438 | if (srv->cookie && (srv->cklen == delim - val_beg) && |
| 6439 | !memcmp(val_beg, srv->cookie, delim - val_beg)) { |
| 6440 | if ((srv->state & SRV_RUNNING) || |
| 6441 | (t->be->options & PR_O_PERSIST) || |
| 6442 | (t->flags & SN_FORCE_PRST)) { |
| 6443 | /* we found the server and we can use it */ |
| 6444 | txn->flags &= ~TX_CK_MASK; |
| 6445 | txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN; |
| 6446 | t->flags |= SN_DIRECT | SN_ASSIGNED; |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 6447 | set_target_server(&t->target, srv); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6448 | break; |
| 6449 | } else { |
| 6450 | /* we found a server, but it's down, |
| 6451 | * mark it as such and go on in case |
| 6452 | * another one is available. |
| 6453 | */ |
| 6454 | txn->flags &= ~TX_CK_MASK; |
| 6455 | txn->flags |= TX_CK_DOWN; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6456 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6457 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6458 | srv = srv->next; |
| 6459 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6460 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 6461 | if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6462 | /* no server matched this cookie */ |
| 6463 | txn->flags &= ~TX_CK_MASK; |
| 6464 | txn->flags |= TX_CK_INVALID; |
| 6465 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6466 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6467 | /* depending on the cookie mode, we may have to either : |
| 6468 | * - delete the complete cookie if we're in insert+indirect mode, so that |
| 6469 | * the server never sees it ; |
| 6470 | * - remove the server id from the cookie value, and tag the cookie as an |
| 6471 | * application cookie so that it does not get accidentely removed later, |
| 6472 | * if we're in cookie prefix mode |
| 6473 | */ |
| 6474 | if ((t->be->options & PR_O_COOK_PFX) && (delim != val_end)) { |
| 6475 | int delta; /* negative */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6476 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6477 | delta = buffer_replace2(req, val_beg, delim + 1, NULL, 0); |
| 6478 | val_end += delta; |
| 6479 | next += delta; |
| 6480 | hdr_end += delta; |
| 6481 | hdr_next += delta; |
| 6482 | cur_hdr->len += delta; |
| 6483 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6484 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6485 | del_from = NULL; |
| 6486 | preserve_hdr = 1; /* we want to keep this cookie */ |
| 6487 | } |
| 6488 | else if (del_from == NULL && |
| 6489 | (t->be->options & (PR_O_COOK_INS | PR_O_COOK_IND)) == (PR_O_COOK_INS | PR_O_COOK_IND)) { |
| 6490 | del_from = prev; |
| 6491 | } |
| 6492 | } else { |
| 6493 | /* This is not our cookie, so we must preserve it. But if we already |
| 6494 | * scheduled another cookie for removal, we cannot remove the |
| 6495 | * complete header, but we can remove the previous block itself. |
| 6496 | */ |
| 6497 | preserve_hdr = 1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6498 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6499 | if (del_from != NULL) { |
| 6500 | int delta = del_hdr_value(req, &del_from, prev); |
Willy Tarreau | b810554 | 2010-11-24 18:31:28 +0100 | [diff] [blame] | 6501 | if (att_beg >= del_from) |
| 6502 | att_beg += delta; |
| 6503 | if (att_end >= del_from) |
| 6504 | att_end += delta; |
| 6505 | val_beg += delta; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6506 | val_end += delta; |
| 6507 | next += delta; |
| 6508 | hdr_end += delta; |
| 6509 | hdr_next += delta; |
| 6510 | cur_hdr->len += delta; |
| 6511 | http_msg_move_end(&txn->req, delta); |
| 6512 | prev = del_from; |
| 6513 | del_from = NULL; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6514 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6515 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6516 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6517 | /* Look for the appsession cookie unless persistence must be ignored */ |
| 6518 | if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) { |
| 6519 | int cmp_len, value_len; |
| 6520 | char *value_begin; |
Aleksandar Lazic | 697bbb0 | 2008-08-13 19:57:02 +0200 | [diff] [blame] | 6521 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6522 | if (t->be->options2 & PR_O2_AS_PFX) { |
| 6523 | cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len); |
| 6524 | value_begin = att_beg + t->be->appsession_name_len; |
| 6525 | value_len = val_end - att_beg - t->be->appsession_name_len; |
| 6526 | } else { |
| 6527 | cmp_len = att_end - att_beg; |
| 6528 | value_begin = val_beg; |
| 6529 | value_len = val_end - val_beg; |
| 6530 | } |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 6531 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6532 | /* let's see if the cookie is our appcookie */ |
| 6533 | if (cmp_len == t->be->appsession_name_len && |
| 6534 | memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) { |
| 6535 | manage_client_side_appsession(t, value_begin, value_len); |
| 6536 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6537 | } |
| 6538 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6539 | /* continue with next cookie on this header line */ |
| 6540 | att_beg = next; |
| 6541 | } /* for each cookie */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6542 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6543 | /* There are no more cookies on this line. |
| 6544 | * We may still have one (or several) marked for deletion at the |
| 6545 | * end of the line. We must do this now in two ways : |
| 6546 | * - if some cookies must be preserved, we only delete from the |
| 6547 | * mark to the end of line ; |
| 6548 | * - if nothing needs to be preserved, simply delete the whole header |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6549 | */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6550 | if (del_from) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6551 | int delta; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6552 | if (preserve_hdr) { |
| 6553 | delta = del_hdr_value(req, &del_from, hdr_end); |
| 6554 | hdr_end = del_from; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6555 | cur_hdr->len += delta; |
| 6556 | } else { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6557 | delta = buffer_replace2(req, hdr_beg, hdr_next, NULL, 0); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6558 | |
| 6559 | /* FIXME: this should be a separate function */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6560 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 6561 | txn->hdr_idx.used--; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6562 | cur_hdr->len = 0; |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 6563 | cur_idx = old_idx; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6564 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6565 | hdr_next += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6566 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6567 | } |
| 6568 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6569 | /* check next header */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6570 | old_idx = cur_idx; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6571 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6572 | } |
| 6573 | |
| 6574 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6575 | /* Iterate the same filter through all response headers contained in <rtr>. |
| 6576 | * Returns 1 if this filter can be stopped upon return, otherwise 0. |
| 6577 | */ |
| 6578 | int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp) |
| 6579 | { |
| 6580 | char term; |
| 6581 | char *cur_ptr, *cur_end, *cur_next; |
| 6582 | int cur_idx, old_idx, last_hdr; |
| 6583 | struct http_txn *txn = &t->txn; |
| 6584 | struct hdr_idx_elem *cur_hdr; |
| 6585 | int len, delta; |
| 6586 | |
| 6587 | last_hdr = 0; |
| 6588 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 6589 | cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6590 | old_idx = 0; |
| 6591 | |
| 6592 | while (!last_hdr) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6593 | if (unlikely(txn->flags & TX_SVDENY)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6594 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6595 | else if (unlikely(txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6596 | (exp->action == ACT_ALLOW || |
| 6597 | exp->action == ACT_DENY)) |
| 6598 | return 0; |
| 6599 | |
| 6600 | cur_idx = txn->hdr_idx.v[old_idx].next; |
| 6601 | if (!cur_idx) |
| 6602 | break; |
| 6603 | |
| 6604 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
| 6605 | cur_ptr = cur_next; |
| 6606 | cur_end = cur_ptr + cur_hdr->len; |
| 6607 | cur_next = cur_end + cur_hdr->cr + 1; |
| 6608 | |
| 6609 | /* Now we have one header between cur_ptr and cur_end, |
| 6610 | * and the next header starts at cur_next. |
| 6611 | */ |
| 6612 | |
| 6613 | /* The annoying part is that pattern matching needs |
| 6614 | * that we modify the contents to null-terminate all |
| 6615 | * strings before testing them. |
| 6616 | */ |
| 6617 | |
| 6618 | term = *cur_end; |
| 6619 | *cur_end = '\0'; |
| 6620 | |
| 6621 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 6622 | switch (exp->action) { |
| 6623 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6624 | txn->flags |= TX_SVALLOW; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6625 | last_hdr = 1; |
| 6626 | break; |
| 6627 | |
| 6628 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6629 | txn->flags |= TX_SVDENY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6630 | last_hdr = 1; |
| 6631 | break; |
| 6632 | |
| 6633 | case ACT_REPLACE: |
| 6634 | len = exp_replace(trash, cur_ptr, exp->replace, pmatch); |
| 6635 | delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len); |
| 6636 | /* FIXME: if the user adds a newline in the replacement, the |
| 6637 | * index will not be recalculated for now, and the new line |
| 6638 | * will not be counted as a new header. |
| 6639 | */ |
| 6640 | |
| 6641 | cur_end += delta; |
| 6642 | cur_next += delta; |
| 6643 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6644 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6645 | break; |
| 6646 | |
| 6647 | case ACT_REMOVE: |
| 6648 | delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0); |
| 6649 | cur_next += delta; |
| 6650 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6651 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6652 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 6653 | txn->hdr_idx.used--; |
| 6654 | cur_hdr->len = 0; |
| 6655 | cur_end = NULL; /* null-term has been rewritten */ |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 6656 | cur_idx = old_idx; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6657 | break; |
| 6658 | |
| 6659 | } |
| 6660 | } |
| 6661 | if (cur_end) |
| 6662 | *cur_end = term; /* restore the string terminator */ |
| 6663 | |
| 6664 | /* keep the link from this header to next one in case of later |
| 6665 | * removal of next header. |
| 6666 | */ |
| 6667 | old_idx = cur_idx; |
| 6668 | } |
| 6669 | return 0; |
| 6670 | } |
| 6671 | |
| 6672 | |
| 6673 | /* Apply the filter to the status line in the response buffer <rtr>. |
| 6674 | * Returns 0 if nothing has been done, 1 if the filter has been applied, |
| 6675 | * or -1 if a replacement resulted in an invalid status line. |
| 6676 | */ |
| 6677 | int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp) |
| 6678 | { |
| 6679 | char term; |
| 6680 | char *cur_ptr, *cur_end; |
| 6681 | int done; |
| 6682 | struct http_txn *txn = &t->txn; |
| 6683 | int len, delta; |
| 6684 | |
| 6685 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6686 | if (unlikely(txn->flags & TX_SVDENY)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6687 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6688 | else if (unlikely(txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6689 | (exp->action == ACT_ALLOW || |
| 6690 | exp->action == ACT_DENY)) |
| 6691 | return 0; |
| 6692 | else if (exp->action == ACT_REMOVE) |
| 6693 | return 0; |
| 6694 | |
| 6695 | done = 0; |
| 6696 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 6697 | cur_ptr = txn->rsp.sol; |
Willy Tarreau | 1ba0e5f | 2010-06-07 13:57:32 +0200 | [diff] [blame] | 6698 | cur_end = cur_ptr + txn->rsp.sl.st.l; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6699 | |
| 6700 | /* Now we have the status line between cur_ptr and cur_end */ |
| 6701 | |
| 6702 | /* The annoying part is that pattern matching needs |
| 6703 | * that we modify the contents to null-terminate all |
| 6704 | * strings before testing them. |
| 6705 | */ |
| 6706 | |
| 6707 | term = *cur_end; |
| 6708 | *cur_end = '\0'; |
| 6709 | |
| 6710 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 6711 | switch (exp->action) { |
| 6712 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6713 | txn->flags |= TX_SVALLOW; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6714 | done = 1; |
| 6715 | break; |
| 6716 | |
| 6717 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6718 | txn->flags |= TX_SVDENY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6719 | done = 1; |
| 6720 | break; |
| 6721 | |
| 6722 | case ACT_REPLACE: |
| 6723 | *cur_end = term; /* restore the string terminator */ |
| 6724 | len = exp_replace(trash, cur_ptr, exp->replace, pmatch); |
| 6725 | delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len); |
| 6726 | /* FIXME: if the user adds a newline in the replacement, the |
| 6727 | * index will not be recalculated for now, and the new line |
| 6728 | * will not be counted as a new header. |
| 6729 | */ |
| 6730 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6731 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6732 | cur_end += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6733 | cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data, |
Willy Tarreau | 0278576 | 2007-04-03 14:45:44 +0200 | [diff] [blame] | 6734 | HTTP_MSG_RPVER, |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6735 | cur_ptr, cur_end + 1, |
| 6736 | NULL, NULL); |
| 6737 | if (unlikely(!cur_end)) |
| 6738 | return -1; |
| 6739 | |
| 6740 | /* we have a full respnse and we know that we have either a CR |
| 6741 | * or an LF at <ptr>. |
| 6742 | */ |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 6743 | txn->status = strl2ui(txn->rsp.sol + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l); |
Willy Tarreau | 1ba0e5f | 2010-06-07 13:57:32 +0200 | [diff] [blame] | 6744 | hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r'); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6745 | /* there is no point trying this regex on headers */ |
| 6746 | return 1; |
| 6747 | } |
| 6748 | } |
| 6749 | *cur_end = term; /* restore the string terminator */ |
| 6750 | return done; |
| 6751 | } |
| 6752 | |
| 6753 | |
| 6754 | |
| 6755 | /* |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6756 | * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6757 | * Returns 0 if everything is alright, or -1 in case a replacement lead to an |
| 6758 | * unparsable response. |
| 6759 | */ |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6760 | int apply_filters_to_response(struct session *s, struct buffer *rtr, struct proxy *px) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6761 | { |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6762 | struct http_txn *txn = &s->txn; |
| 6763 | struct hdr_exp *exp; |
| 6764 | |
| 6765 | for (exp = px->rsp_exp; exp; exp = exp->next) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6766 | int ret; |
| 6767 | |
| 6768 | /* |
| 6769 | * The interleaving of transformations and verdicts |
| 6770 | * makes it difficult to decide to continue or stop |
| 6771 | * the evaluation. |
| 6772 | */ |
| 6773 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6774 | if (txn->flags & TX_SVDENY) |
| 6775 | break; |
| 6776 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6777 | if ((txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6778 | (exp->action == ACT_ALLOW || exp->action == ACT_DENY || |
| 6779 | exp->action == ACT_PASS)) { |
| 6780 | exp = exp->next; |
| 6781 | continue; |
| 6782 | } |
| 6783 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6784 | /* if this filter had a condition, evaluate it now and skip to |
| 6785 | * next filter if the condition does not match. |
| 6786 | */ |
| 6787 | if (exp->cond) { |
| 6788 | ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_RTR); |
| 6789 | ret = acl_pass(ret); |
| 6790 | if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS) |
| 6791 | ret = !ret; |
| 6792 | if (!ret) |
| 6793 | continue; |
| 6794 | } |
| 6795 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6796 | /* Apply the filter to the status line. */ |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6797 | ret = apply_filter_to_sts_line(s, rtr, exp); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6798 | if (unlikely(ret < 0)) |
| 6799 | return -1; |
| 6800 | |
| 6801 | if (likely(ret == 0)) { |
| 6802 | /* The filter did not match the response, it can be |
| 6803 | * iterated through all headers. |
| 6804 | */ |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6805 | apply_filter_to_resp_headers(s, rtr, exp); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6806 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6807 | } |
| 6808 | return 0; |
| 6809 | } |
| 6810 | |
| 6811 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6812 | /* |
Willy Tarreau | 396d2c6 | 2007-11-04 19:30:00 +0100 | [diff] [blame] | 6813 | * Manage server-side cookies. It can impact performance by about 2% so it is |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6814 | * desirable to call it only when needed. This function is also used when we |
| 6815 | * just need to know if there is a cookie (eg: for check-cache). |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6816 | */ |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6817 | void manage_server_side_cookies(struct session *t, struct buffer *res) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6818 | { |
| 6819 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 6820 | struct server *srv; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6821 | int is_cookie2; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6822 | int cur_idx, old_idx, delta; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6823 | char *hdr_beg, *hdr_end, *hdr_next; |
| 6824 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6825 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6826 | /* Iterate through the headers. |
| 6827 | * we start with the start line. |
| 6828 | */ |
| 6829 | old_idx = 0; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6830 | hdr_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6831 | |
| 6832 | while ((cur_idx = txn->hdr_idx.v[old_idx].next)) { |
| 6833 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 6834 | int val; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6835 | |
| 6836 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6837 | hdr_beg = hdr_next; |
| 6838 | hdr_end = hdr_beg + cur_hdr->len; |
| 6839 | hdr_next = hdr_end + cur_hdr->cr + 1; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6840 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6841 | /* We have one full header between hdr_beg and hdr_end, and the |
| 6842 | * next header starts at hdr_next. We're only interested in |
| 6843 | * "Set-Cookie" and "Set-Cookie2" headers. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6844 | */ |
| 6845 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6846 | is_cookie2 = 0; |
| 6847 | prev = hdr_beg + 10; |
| 6848 | val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10); |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 6849 | if (!val) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6850 | val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11); |
| 6851 | if (!val) { |
| 6852 | old_idx = cur_idx; |
| 6853 | continue; |
| 6854 | } |
| 6855 | is_cookie2 = 1; |
| 6856 | prev = hdr_beg + 11; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6857 | } |
| 6858 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6859 | /* OK, right now we know we have a Set-Cookie* at hdr_beg, and |
| 6860 | * <prev> points to the colon. |
| 6861 | */ |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 6862 | txn->flags |= TX_SCK_PRESENT; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6863 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6864 | /* Maybe we only wanted to see if there was a Set-Cookie (eg: |
| 6865 | * check-cache is enabled) and we are not interested in checking |
| 6866 | * them. Warning, the cookie capture is declared in the frontend. |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 6867 | */ |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 6868 | if (t->be->cookie_name == NULL && |
| 6869 | t->be->appsession_name == NULL && |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 6870 | t->fe->capture_name == NULL) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6871 | return; |
| 6872 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6873 | /* OK so now we know we have to process this response cookie. |
| 6874 | * The format of the Set-Cookie header is slightly different |
| 6875 | * from the format of the Cookie header in that it does not |
| 6876 | * support the comma as a cookie delimiter (thus the header |
| 6877 | * cannot be folded) because the Expires attribute described in |
| 6878 | * the original Netscape's spec may contain an unquoted date |
| 6879 | * with a comma inside. We have to live with this because |
| 6880 | * many browsers don't support Max-Age and some browsers don't |
| 6881 | * support quoted strings. However the Set-Cookie2 header is |
| 6882 | * clean. |
| 6883 | * |
| 6884 | * We have to keep multiple pointers in order to support cookie |
| 6885 | * removal at the beginning, middle or end of header without |
| 6886 | * corrupting the header (in case of set-cookie2). A special |
| 6887 | * pointer, <scav> points to the beginning of the set-cookie-av |
| 6888 | * fields after the first semi-colon. The <next> pointer points |
| 6889 | * either to the end of line (set-cookie) or next unquoted comma |
| 6890 | * (set-cookie2). All of these headers are valid : |
| 6891 | * |
| 6892 | * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n |
| 6893 | * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n |
| 6894 | * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n |
| 6895 | * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n |
| 6896 | * | | | | | | | | | | |
| 6897 | * | | | | | | | | +-> next hdr_end <--+ |
| 6898 | * | | | | | | | +------------> scav |
| 6899 | * | | | | | | +--------------> val_end |
| 6900 | * | | | | | +--------------------> val_beg |
| 6901 | * | | | | +----------------------> equal |
| 6902 | * | | | +------------------------> att_end |
| 6903 | * | | +----------------------------> att_beg |
| 6904 | * | +------------------------------> prev |
| 6905 | * +-----------------------------------------> hdr_beg |
| 6906 | */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6907 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6908 | for (; prev < hdr_end; prev = next) { |
| 6909 | /* Iterate through all cookies on this line */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6910 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6911 | /* find att_beg */ |
| 6912 | att_beg = prev + 1; |
| 6913 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 6914 | att_beg++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6915 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6916 | /* find att_end : this is the first character after the last non |
| 6917 | * space before the equal. It may be equal to hdr_end. |
| 6918 | */ |
| 6919 | equal = att_end = att_beg; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6920 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6921 | while (equal < hdr_end) { |
| 6922 | if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ',')) |
| 6923 | break; |
| 6924 | if (http_is_spht[(unsigned char)*equal++]) |
| 6925 | continue; |
| 6926 | att_end = equal; |
| 6927 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6928 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6929 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 6930 | * is between <att_beg> and <equal>, both may be identical. |
| 6931 | */ |
| 6932 | |
| 6933 | /* look for end of cookie if there is an equal sign */ |
| 6934 | if (equal < hdr_end && *equal == '=') { |
| 6935 | /* look for the beginning of the value */ |
| 6936 | val_beg = equal + 1; |
| 6937 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 6938 | val_beg++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6939 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6940 | /* find the end of the value, respecting quotes */ |
| 6941 | next = find_cookie_value_end(val_beg, hdr_end); |
| 6942 | |
| 6943 | /* make val_end point to the first white space or delimitor after the value */ |
| 6944 | val_end = next; |
| 6945 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 6946 | val_end--; |
| 6947 | } else { |
| 6948 | /* <equal> points to next comma, semi-colon or EOL */ |
| 6949 | val_beg = val_end = next = equal; |
| 6950 | } |
| 6951 | |
| 6952 | if (next < hdr_end) { |
| 6953 | /* Set-Cookie2 supports multiple cookies, and <next> points to |
| 6954 | * a colon or semi-colon before the end. So skip all attr-value |
| 6955 | * pairs and look for the next comma. For Set-Cookie, since |
| 6956 | * commas are permitted in values, skip to the end. |
| 6957 | */ |
| 6958 | if (is_cookie2) |
| 6959 | next = find_hdr_value_end(next, hdr_end); |
| 6960 | else |
| 6961 | next = hdr_end; |
| 6962 | } |
| 6963 | |
| 6964 | /* Now everything is as on the diagram above */ |
| 6965 | |
| 6966 | /* Ignore cookies with no equal sign */ |
| 6967 | if (equal == val_end) |
| 6968 | continue; |
| 6969 | |
| 6970 | /* If there are spaces around the equal sign, we need to |
| 6971 | * strip them otherwise we'll get trouble for cookie captures, |
| 6972 | * or even for rewrites. Since this happens extremely rarely, |
| 6973 | * it does not hurt performance. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6974 | */ |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6975 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 6976 | int stripped_before = 0; |
| 6977 | int stripped_after = 0; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6978 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6979 | if (att_end != equal) { |
| 6980 | stripped_before = buffer_replace2(res, att_end, equal, NULL, 0); |
| 6981 | equal += stripped_before; |
| 6982 | val_beg += stripped_before; |
| 6983 | } |
| 6984 | |
| 6985 | if (val_beg > equal + 1) { |
| 6986 | stripped_after = buffer_replace2(res, equal + 1, val_beg, NULL, 0); |
| 6987 | val_beg += stripped_after; |
| 6988 | stripped_before += stripped_after; |
| 6989 | } |
| 6990 | |
| 6991 | val_end += stripped_before; |
| 6992 | next += stripped_before; |
| 6993 | hdr_end += stripped_before; |
| 6994 | hdr_next += stripped_before; |
| 6995 | cur_hdr->len += stripped_before; |
Willy Tarreau | 1fc1f45 | 2011-04-07 22:35:37 +0200 | [diff] [blame] | 6996 | http_msg_move_end(&txn->rsp, stripped_before); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 6997 | } |
| 6998 | |
| 6999 | /* First, let's see if we want to capture this cookie. We check |
| 7000 | * that we don't already have a server side cookie, because we |
| 7001 | * can only capture one. Also as an optimisation, we ignore |
| 7002 | * cookies shorter than the declared name. |
| 7003 | */ |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 7004 | if (t->fe->capture_name != NULL && |
Willy Tarreau | 3bac9ff | 2007-03-18 17:31:28 +0100 | [diff] [blame] | 7005 | txn->srv_cookie == NULL && |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7006 | (val_end - att_beg >= t->fe->capture_namelen) && |
| 7007 | memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) { |
| 7008 | int log_len = val_end - att_beg; |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 7009 | if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7010 | Alert("HTTP logging : out of memory.\n"); |
| 7011 | } |
Willy Tarreau | f70fc75 | 2010-11-19 11:27:18 +0100 | [diff] [blame] | 7012 | else { |
| 7013 | if (log_len > t->fe->capture_len) |
| 7014 | log_len = t->fe->capture_len; |
| 7015 | memcpy(txn->srv_cookie, att_beg, log_len); |
| 7016 | txn->srv_cookie[log_len] = 0; |
| 7017 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7018 | } |
| 7019 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7020 | srv = target_srv(&t->target); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7021 | /* now check if we need to process it for persistence */ |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7022 | if (!(t->flags & SN_IGNORE_PRST) && |
| 7023 | (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) && |
| 7024 | (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) { |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7025 | /* assume passive cookie by default */ |
| 7026 | txn->flags &= ~TX_SCK_MASK; |
| 7027 | txn->flags |= TX_SCK_FOUND; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7028 | |
| 7029 | /* If the cookie is in insert mode on a known server, we'll delete |
| 7030 | * this occurrence because we'll insert another one later. |
| 7031 | * We'll delete it too if the "indirect" option is set and we're in |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7032 | * a direct access. |
| 7033 | */ |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 7034 | if (t->be->options2 & PR_O2_COOK_PSV) { |
| 7035 | /* The "preserve" flag was set, we don't want to touch the |
| 7036 | * server's cookie. |
| 7037 | */ |
| 7038 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7039 | else if ((srv && (t->be->options & PR_O_COOK_INS)) || |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 7040 | ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7041 | /* this cookie must be deleted */ |
| 7042 | if (*prev == ':' && next == hdr_end) { |
| 7043 | /* whole header */ |
| 7044 | delta = buffer_replace2(res, hdr_beg, hdr_next, NULL, 0); |
| 7045 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 7046 | txn->hdr_idx.used--; |
| 7047 | cur_hdr->len = 0; |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 7048 | cur_idx = old_idx; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7049 | hdr_next += delta; |
| 7050 | http_msg_move_end(&txn->rsp, delta); |
| 7051 | /* note: while both invalid now, <next> and <hdr_end> |
| 7052 | * are still equal, so the for() will stop as expected. |
| 7053 | */ |
| 7054 | } else { |
| 7055 | /* just remove the value */ |
| 7056 | int delta = del_hdr_value(res, &prev, next); |
| 7057 | next = prev; |
| 7058 | hdr_end += delta; |
| 7059 | hdr_next += delta; |
| 7060 | cur_hdr->len += delta; |
| 7061 | http_msg_move_end(&txn->rsp, delta); |
| 7062 | } |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7063 | txn->flags &= ~TX_SCK_MASK; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7064 | txn->flags |= TX_SCK_DELETED; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7065 | /* and go on with next cookie */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7066 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7067 | else if (srv && srv->cookie && (t->be->options & PR_O_COOK_RW)) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7068 | /* replace bytes val_beg->val_end with the cookie name associated |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7069 | * with this server since we know it. |
| 7070 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7071 | delta = buffer_replace2(res, val_beg, val_end, srv->cookie, srv->cklen); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7072 | next += delta; |
| 7073 | hdr_end += delta; |
| 7074 | hdr_next += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7075 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7076 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7077 | |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7078 | txn->flags &= ~TX_SCK_MASK; |
| 7079 | txn->flags |= TX_SCK_REPLACED; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7080 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7081 | else if (srv && srv && (t->be->options & PR_O_COOK_PFX)) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7082 | /* insert the cookie name associated with this server |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7083 | * before existing cookie, and insert a delimiter between them.. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7084 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7085 | delta = buffer_replace2(res, val_beg, val_beg, srv->cookie, srv->cklen + 1); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7086 | next += delta; |
| 7087 | hdr_end += delta; |
| 7088 | hdr_next += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7089 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7090 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7091 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7092 | val_beg[srv->cklen] = COOKIE_DELIM; |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7093 | txn->flags &= ~TX_SCK_MASK; |
| 7094 | txn->flags |= TX_SCK_REPLACED; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7095 | } |
| 7096 | } |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 7097 | /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */ |
| 7098 | else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7099 | int cmp_len, value_len; |
| 7100 | char *value_begin; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7101 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7102 | if (t->be->options2 & PR_O2_AS_PFX) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7103 | cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len); |
| 7104 | value_begin = att_beg + t->be->appsession_name_len; |
| 7105 | value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7106 | } else { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7107 | cmp_len = att_end - att_beg; |
| 7108 | value_begin = val_beg; |
| 7109 | value_len = MIN(t->be->appsession_len, val_end - val_beg); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7110 | } |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7111 | |
Cyril Bonté | 17530c3 | 2010-04-06 21:11:10 +0200 | [diff] [blame] | 7112 | if ((cmp_len == t->be->appsession_name_len) && |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7113 | (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) { |
| 7114 | /* free a possibly previously allocated memory */ |
| 7115 | pool_free2(apools.sessid, txn->sessid); |
| 7116 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7117 | /* Store the sessid in the session for future use */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7118 | if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7119 | Alert("Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 7120 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 7121 | return; |
| 7122 | } |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7123 | memcpy(txn->sessid, value_begin, value_len); |
| 7124 | txn->sessid[value_len] = 0; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7125 | } |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7126 | } |
| 7127 | /* that's done for this cookie, check the next one on the same |
| 7128 | * line when next != hdr_end (only if is_cookie2). |
| 7129 | */ |
| 7130 | } |
| 7131 | /* check next header */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7132 | old_idx = cur_idx; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7133 | } |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7134 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7135 | if (txn->sessid != NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7136 | appsess *asession = NULL; |
| 7137 | /* only do insert, if lookup fails */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7138 | asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7139 | if (asession == NULL) { |
Willy Tarreau | 1fac753 | 2010-01-09 19:23:06 +0100 | [diff] [blame] | 7140 | size_t server_id_len; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7141 | if ((asession = pool_alloc2(pool2_appsess)) == NULL) { |
| 7142 | Alert("Not enough Memory process_srv():asession:calloc().\n"); |
| 7143 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n"); |
| 7144 | return; |
| 7145 | } |
Willy Tarreau | 77eb9b8 | 2010-11-19 11:29:06 +0100 | [diff] [blame] | 7146 | asession->serverid = NULL; /* to avoid a double free in case of allocation error */ |
| 7147 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7148 | if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) { |
| 7149 | Alert("Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 7150 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Cyril Bonté | 41689c2 | 2010-01-10 00:30:14 +0100 | [diff] [blame] | 7151 | t->be->htbl_proxy.destroy(asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7152 | return; |
| 7153 | } |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7154 | memcpy(asession->sessid, txn->sessid, t->be->appsession_len); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7155 | asession->sessid[t->be->appsession_len] = 0; |
| 7156 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7157 | server_id_len = strlen(target_srv(&t->target)->id) + 1; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7158 | if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) { |
Willy Tarreau | 77eb9b8 | 2010-11-19 11:29:06 +0100 | [diff] [blame] | 7159 | Alert("Not enough Memory process_srv():asession->serverid:malloc().\n"); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7160 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Cyril Bonté | 41689c2 | 2010-01-10 00:30:14 +0100 | [diff] [blame] | 7161 | t->be->htbl_proxy.destroy(asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7162 | return; |
| 7163 | } |
| 7164 | asession->serverid[0] = '\0'; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7165 | memcpy(asession->serverid, target_srv(&t->target)->id, server_id_len); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7166 | |
| 7167 | asession->request_count = 0; |
| 7168 | appsession_hash_insert(&(t->be->htbl_proxy), asession); |
| 7169 | } |
| 7170 | |
| 7171 | asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession); |
| 7172 | asession->request_count++; |
| 7173 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7174 | } |
| 7175 | |
| 7176 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7177 | /* |
| 7178 | * Check if response is cacheable or not. Updates t->flags. |
| 7179 | */ |
| 7180 | void check_response_for_cacheability(struct session *t, struct buffer *rtr) |
| 7181 | { |
| 7182 | struct http_txn *txn = &t->txn; |
| 7183 | char *p1, *p2; |
| 7184 | |
| 7185 | char *cur_ptr, *cur_end, *cur_next; |
| 7186 | int cur_idx; |
| 7187 | |
Willy Tarreau | 5df5187 | 2007-11-25 16:20:08 +0100 | [diff] [blame] | 7188 | if (!(txn->flags & TX_CACHEABLE)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7189 | return; |
| 7190 | |
| 7191 | /* Iterate through the headers. |
| 7192 | * we start with the start line. |
| 7193 | */ |
| 7194 | cur_idx = 0; |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7195 | cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7196 | |
| 7197 | while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) { |
| 7198 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7199 | int val; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7200 | |
| 7201 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
| 7202 | cur_ptr = cur_next; |
| 7203 | cur_end = cur_ptr + cur_hdr->len; |
| 7204 | cur_next = cur_end + cur_hdr->cr + 1; |
| 7205 | |
| 7206 | /* We have one full header between cur_ptr and cur_end, and the |
| 7207 | * next header starts at cur_next. We're only interested in |
| 7208 | * "Cookie:" headers. |
| 7209 | */ |
| 7210 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7211 | val = http_header_match2(cur_ptr, cur_end, "Pragma", 6); |
| 7212 | if (val) { |
| 7213 | if ((cur_end - (cur_ptr + val) >= 8) && |
| 7214 | strncasecmp(cur_ptr + val, "no-cache", 8) == 0) { |
| 7215 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 7216 | return; |
| 7217 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7218 | } |
| 7219 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7220 | val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13); |
| 7221 | if (!val) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7222 | continue; |
| 7223 | |
| 7224 | /* OK, right now we know we have a cache-control header at cur_ptr */ |
| 7225 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7226 | p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7227 | |
| 7228 | if (p1 >= cur_end) /* no more info */ |
| 7229 | continue; |
| 7230 | |
| 7231 | /* p1 is at the beginning of the value */ |
| 7232 | p2 = p1; |
| 7233 | |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 7234 | while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7235 | p2++; |
| 7236 | |
| 7237 | /* we have a complete value between p1 and p2 */ |
| 7238 | if (p2 < cur_end && *p2 == '=') { |
| 7239 | /* we have something of the form no-cache="set-cookie" */ |
| 7240 | if ((cur_end - p1 >= 21) && |
| 7241 | strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0 |
| 7242 | && (p1[20] == '"' || p1[20] == ',')) |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7243 | txn->flags &= ~TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7244 | continue; |
| 7245 | } |
| 7246 | |
| 7247 | /* OK, so we know that either p2 points to the end of string or to a comma */ |
| 7248 | if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) || |
| 7249 | ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) || |
| 7250 | ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) || |
| 7251 | ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7252 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7253 | return; |
| 7254 | } |
| 7255 | |
| 7256 | if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7257 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7258 | continue; |
| 7259 | } |
| 7260 | } |
| 7261 | } |
| 7262 | |
| 7263 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7264 | /* |
| 7265 | * Try to retrieve a known appsession in the URI, then the associated server. |
| 7266 | * If the server is found, it's assigned to the session. |
| 7267 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7268 | void get_srv_from_appsession(struct session *t, const char *begin, int len) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7269 | { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7270 | char *end_params, *first_param, *cur_param, *next_param; |
| 7271 | char separator; |
| 7272 | int value_len; |
| 7273 | |
| 7274 | int mode = t->be->options2 & PR_O2_AS_M_ANY; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7275 | |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 7276 | if (t->be->appsession_name == NULL || |
Cyril Bonté | 17530c3 | 2010-04-06 21:11:10 +0200 | [diff] [blame] | 7277 | (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST && t->txn.meth != HTTP_METH_HEAD)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7278 | return; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7279 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7280 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7281 | first_param = NULL; |
| 7282 | switch (mode) { |
| 7283 | case PR_O2_AS_M_PP: |
| 7284 | first_param = memchr(begin, ';', len); |
| 7285 | break; |
| 7286 | case PR_O2_AS_M_QS: |
| 7287 | first_param = memchr(begin, '?', len); |
| 7288 | break; |
| 7289 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7290 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7291 | if (first_param == NULL) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7292 | return; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7293 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7294 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7295 | switch (mode) { |
| 7296 | case PR_O2_AS_M_PP: |
| 7297 | if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) { |
| 7298 | end_params = (char *) begin + len; |
| 7299 | } |
| 7300 | separator = ';'; |
| 7301 | break; |
| 7302 | case PR_O2_AS_M_QS: |
| 7303 | end_params = (char *) begin + len; |
| 7304 | separator = '&'; |
| 7305 | break; |
| 7306 | default: |
| 7307 | /* unknown mode, shouldn't happen */ |
| 7308 | return; |
| 7309 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7310 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7311 | cur_param = next_param = end_params; |
| 7312 | while (cur_param > first_param) { |
| 7313 | cur_param--; |
| 7314 | if ((cur_param[0] == separator) || (cur_param == first_param)) { |
| 7315 | /* let's see if this is the appsession parameter */ |
| 7316 | if ((cur_param + t->be->appsession_name_len + 1 < next_param) && |
| 7317 | ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') && |
| 7318 | (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) { |
| 7319 | /* Cool... it's the right one */ |
| 7320 | cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2); |
| 7321 | value_len = MIN(t->be->appsession_len, next_param - cur_param); |
| 7322 | if (value_len > 0) { |
| 7323 | manage_client_side_appsession(t, cur_param, value_len); |
| 7324 | } |
| 7325 | break; |
| 7326 | } |
| 7327 | next_param = cur_param; |
| 7328 | } |
| 7329 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7330 | #if defined(DEBUG_HASH) |
Aleksandar Lazic | 697bbb0 | 2008-08-13 19:57:02 +0200 | [diff] [blame] | 7331 | Alert("get_srv_from_appsession\n"); |
Willy Tarreau | 51041c7 | 2007-09-09 21:56:53 +0200 | [diff] [blame] | 7332 | appsession_hash_dump(&(t->be->htbl_proxy)); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7333 | #endif |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7334 | } |
| 7335 | |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7336 | /* |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7337 | * In a GET, HEAD or POST request, check if the requested URI matches the stats uri |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7338 | * for the current backend. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7339 | * |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7340 | * It is assumed that the request is either a HEAD, GET, or POST and that the |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7341 | * uri_auth field is valid. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7342 | * |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7343 | * Returns 1 if stats should be provided, otherwise 0. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7344 | */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7345 | int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7346 | { |
| 7347 | struct uri_auth *uri_auth = backend->uri_auth; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7348 | char *h; |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7349 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7350 | if (!uri_auth) |
| 7351 | return 0; |
| 7352 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7353 | if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST) |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7354 | return 0; |
| 7355 | |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7356 | memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats)); |
Willy Tarreau | 39f7e6d | 2008-03-17 21:38:24 +0100 | [diff] [blame] | 7357 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7358 | /* check URI size */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7359 | if (uri_auth->uri_len > txn->req.sl.rq.u_l) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7360 | return 0; |
| 7361 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7362 | h = txn->req.sol + txn->req.sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7363 | |
Willy Tarreau | 0214c3a | 2007-01-07 13:47:30 +0100 | [diff] [blame] | 7364 | /* the URI is in h */ |
| 7365 | if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7366 | return 0; |
| 7367 | |
Willy Tarreau | e7150cd | 2007-07-25 14:43:32 +0200 | [diff] [blame] | 7368 | h += uri_auth->uri_len; |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7369 | while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) { |
Willy Tarreau | e7150cd | 2007-07-25 14:43:32 +0200 | [diff] [blame] | 7370 | if (memcmp(h, ";up", 3) == 0) { |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7371 | si->applet.ctx.stats.flags |= STAT_HIDE_DOWN; |
Willy Tarreau | e7150cd | 2007-07-25 14:43:32 +0200 | [diff] [blame] | 7372 | break; |
| 7373 | } |
| 7374 | h++; |
| 7375 | } |
| 7376 | |
| 7377 | if (uri_auth->refresh) { |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7378 | h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len; |
| 7379 | while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) { |
Willy Tarreau | e7150cd | 2007-07-25 14:43:32 +0200 | [diff] [blame] | 7380 | if (memcmp(h, ";norefresh", 10) == 0) { |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7381 | si->applet.ctx.stats.flags |= STAT_NO_REFRESH; |
Willy Tarreau | e7150cd | 2007-07-25 14:43:32 +0200 | [diff] [blame] | 7382 | break; |
| 7383 | } |
| 7384 | h++; |
| 7385 | } |
| 7386 | } |
| 7387 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7388 | h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len; |
| 7389 | while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) { |
Willy Tarreau | 55bb845 | 2007-10-17 18:44:57 +0200 | [diff] [blame] | 7390 | if (memcmp(h, ";csv", 4) == 0) { |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7391 | si->applet.ctx.stats.flags |= STAT_FMT_CSV; |
Willy Tarreau | 55bb845 | 2007-10-17 18:44:57 +0200 | [diff] [blame] | 7392 | break; |
| 7393 | } |
| 7394 | h++; |
| 7395 | } |
| 7396 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7397 | h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len; |
| 7398 | while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 8) { |
| 7399 | if (memcmp(h, ";st=", 4) == 0) { |
| 7400 | h += 4; |
| 7401 | |
| 7402 | if (memcmp(h, STAT_STATUS_DONE, 4) == 0) |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7403 | si->applet.ctx.stats.st_code = STAT_STATUS_DONE; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7404 | else if (memcmp(h, STAT_STATUS_NONE, 4) == 0) |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7405 | si->applet.ctx.stats.st_code = STAT_STATUS_NONE; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7406 | else if (memcmp(h, STAT_STATUS_EXCD, 4) == 0) |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7407 | si->applet.ctx.stats.st_code = STAT_STATUS_EXCD; |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 7408 | else if (memcmp(h, STAT_STATUS_DENY, 4) == 0) |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7409 | si->applet.ctx.stats.st_code = STAT_STATUS_DENY; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7410 | else |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7411 | si->applet.ctx.stats.st_code = STAT_STATUS_UNKN; |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 7412 | break; |
| 7413 | } |
| 7414 | h++; |
| 7415 | } |
| 7416 | |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 7417 | si->applet.ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO; |
Willy Tarreau | 39f7e6d | 2008-03-17 21:38:24 +0100 | [diff] [blame] | 7418 | |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7419 | return 1; |
| 7420 | } |
| 7421 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7422 | /* |
| 7423 | * Capture a bad request or response and archive it in the proxy's structure. |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7424 | * WARNING: it's unlikely that we've reached HTTP_MSG_BODY here so we must not |
| 7425 | * assume that msg->sol = buf->data + msg->som. |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7426 | */ |
| 7427 | void http_capture_bad_message(struct error_snapshot *es, struct session *s, |
| 7428 | struct buffer *buf, struct http_msg *msg, |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 7429 | int state, struct proxy *other_end) |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7430 | { |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 7431 | if (buf->r <= (buf->data + msg->som)) { /* message wraps */ |
| 7432 | int len1 = buf->size - msg->som; |
| 7433 | es->len = buf->r - (buf->data + msg->som) + buf->size; |
| 7434 | memcpy(es->buf, buf->data + msg->som, MIN(len1, sizeof(es->buf))); |
| 7435 | if (es->len > len1 && len1 < sizeof(es->buf)) |
| 7436 | memcpy(es->buf, buf->data, MIN(es->len, sizeof(es->buf)) - len1); |
| 7437 | } |
| 7438 | else { |
| 7439 | es->len = buf->r - (buf->data + msg->som); |
| 7440 | memcpy(es->buf, buf->data + msg->som, MIN(es->len, sizeof(es->buf))); |
| 7441 | } |
| 7442 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7443 | if (msg->err_pos >= 0) |
Willy Tarreau | 2df8d71 | 2009-05-01 11:33:17 +0200 | [diff] [blame] | 7444 | es->pos = msg->err_pos - msg->som; |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 7445 | else if (buf->lr >= (buf->data + msg->som)) |
Willy Tarreau | 2df8d71 | 2009-05-01 11:33:17 +0200 | [diff] [blame] | 7446 | es->pos = buf->lr - (buf->data + msg->som); |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 7447 | else |
| 7448 | es->pos = buf->lr - (buf->data + msg->som) + buf->size; |
| 7449 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7450 | es->when = date; // user-visible date |
| 7451 | es->sid = s->uniq_id; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7452 | es->srv = target_srv(&s->target); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7453 | es->oe = other_end; |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 7454 | es->src = s->req->prod->addr.c.from; |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 7455 | es->state = state; |
| 7456 | es->flags = buf->flags; |
Willy Tarreau | 10479e4 | 2010-12-12 14:00:34 +0100 | [diff] [blame] | 7457 | es->ev_id = error_snapshot_id++; |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 7458 | } |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 7459 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 7460 | /* return the IP address pointed to by occurrence <occ> of header <hname> in |
| 7461 | * HTTP message <msg> indexed in <idx>. If <occ> is strictly positive, the |
| 7462 | * occurrence number corresponding to this value is returned. If <occ> is |
| 7463 | * strictly negative, the occurrence number before the end corresponding to |
| 7464 | * this value is returned. If <occ> is null, any value is returned, so it is |
| 7465 | * not recommended to use it that way. Negative occurrences are limited to |
| 7466 | * a small value because it is required to keep them in memory while scanning. |
| 7467 | * IP address 0.0.0.0 is returned if no match is found. |
| 7468 | */ |
| 7469 | unsigned int get_ip_from_hdr2(struct http_msg *msg, const char *hname, int hlen, struct hdr_idx *idx, int occ) |
| 7470 | { |
| 7471 | struct hdr_ctx ctx; |
| 7472 | unsigned int hdr_hist[MAX_HDR_HISTORY]; |
| 7473 | unsigned int hist_ptr; |
| 7474 | int found = 0; |
| 7475 | |
| 7476 | ctx.idx = 0; |
| 7477 | if (occ >= 0) { |
| 7478 | while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) { |
| 7479 | occ--; |
| 7480 | if (occ <= 0) { |
| 7481 | found = 1; |
| 7482 | break; |
| 7483 | } |
| 7484 | } |
| 7485 | if (!found) |
| 7486 | return 0; |
| 7487 | return inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen); |
| 7488 | } |
| 7489 | |
| 7490 | /* negative occurrence, we scan all the list then walk back */ |
| 7491 | if (-occ > MAX_HDR_HISTORY) |
| 7492 | return 0; |
| 7493 | |
| 7494 | hist_ptr = 0; |
| 7495 | hdr_hist[hist_ptr] = 0; |
| 7496 | while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) { |
| 7497 | hdr_hist[hist_ptr++] = inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen); |
| 7498 | if (hist_ptr >= MAX_HDR_HISTORY) |
| 7499 | hist_ptr = 0; |
| 7500 | found++; |
| 7501 | } |
| 7502 | if (-occ > found) |
| 7503 | return 0; |
| 7504 | /* OK now we have the last occurrence in [hist_ptr-1], and we need to |
| 7505 | * find occurrence -occ, so we have to check [hist_ptr+occ]. |
| 7506 | */ |
| 7507 | hist_ptr += occ; |
| 7508 | if (hist_ptr >= MAX_HDR_HISTORY) |
| 7509 | hist_ptr -= MAX_HDR_HISTORY; |
| 7510 | return hdr_hist[hist_ptr]; |
| 7511 | } |
| 7512 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7513 | /* |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7514 | * Print a debug line with a header |
| 7515 | */ |
| 7516 | void debug_hdr(const char *dir, struct session *t, const char *start, const char *end) |
| 7517 | { |
| 7518 | int len, max; |
| 7519 | len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id, |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 7520 | dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7521 | max = end - start; |
| 7522 | UBOUND(max, sizeof(trash) - len - 1); |
| 7523 | len += strlcpy2(trash + len, start, max + 1); |
| 7524 | trash[len++] = '\n'; |
| 7525 | write(1, trash, len); |
| 7526 | } |
| 7527 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7528 | /* |
| 7529 | * Initialize a new HTTP transaction for session <s>. It is assumed that all |
| 7530 | * the required fields are properly allocated and that we only need to (re)init |
| 7531 | * them. This should be used before processing any new request. |
| 7532 | */ |
| 7533 | void http_init_txn(struct session *s) |
| 7534 | { |
| 7535 | struct http_txn *txn = &s->txn; |
| 7536 | struct proxy *fe = s->fe; |
| 7537 | |
| 7538 | txn->flags = 0; |
| 7539 | txn->status = -1; |
| 7540 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7541 | txn->cookie_first_date = 0; |
| 7542 | txn->cookie_last_date = 0; |
| 7543 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7544 | txn->req.sol = txn->req.eol = NULL; |
| 7545 | txn->req.som = txn->req.eoh = 0; /* relative to the buffer */ |
| 7546 | txn->rsp.sol = txn->rsp.eol = NULL; |
| 7547 | txn->rsp.som = txn->rsp.eoh = 0; /* relative to the buffer */ |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 7548 | txn->req.chunk_len = 0LL; |
| 7549 | txn->req.body_len = 0LL; |
| 7550 | txn->rsp.chunk_len = 0LL; |
| 7551 | txn->rsp.body_len = 0LL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7552 | txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */ |
| 7553 | txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */ |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 7554 | |
| 7555 | txn->auth.method = HTTP_AUTH_UNKNOWN; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7556 | |
| 7557 | txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */ |
| 7558 | if (fe->options2 & PR_O2_REQBUG_OK) |
| 7559 | txn->req.err_pos = -1; /* let buggy requests pass */ |
| 7560 | |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 7561 | if (txn->req.cap) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7562 | memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *)); |
| 7563 | |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 7564 | if (txn->rsp.cap) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7565 | memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *)); |
| 7566 | |
| 7567 | if (txn->hdr_idx.v) |
| 7568 | hdr_idx_init(&txn->hdr_idx); |
| 7569 | } |
| 7570 | |
| 7571 | /* to be used at the end of a transaction */ |
| 7572 | void http_end_txn(struct session *s) |
| 7573 | { |
| 7574 | struct http_txn *txn = &s->txn; |
| 7575 | |
| 7576 | /* these ones will have been dynamically allocated */ |
| 7577 | pool_free2(pool2_requri, txn->uri); |
| 7578 | pool_free2(pool2_capture, txn->cli_cookie); |
| 7579 | pool_free2(pool2_capture, txn->srv_cookie); |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7580 | pool_free2(apools.sessid, txn->sessid); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 7581 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7582 | txn->sessid = NULL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7583 | txn->uri = NULL; |
| 7584 | txn->srv_cookie = NULL; |
| 7585 | txn->cli_cookie = NULL; |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 7586 | |
| 7587 | if (txn->req.cap) { |
| 7588 | struct cap_hdr *h; |
| 7589 | for (h = s->fe->req_cap; h; h = h->next) |
| 7590 | pool_free2(h->pool, txn->req.cap[h->index]); |
| 7591 | memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *)); |
| 7592 | } |
| 7593 | |
| 7594 | if (txn->rsp.cap) { |
| 7595 | struct cap_hdr *h; |
| 7596 | for (h = s->fe->rsp_cap; h; h = h->next) |
| 7597 | pool_free2(h->pool, txn->rsp.cap[h->index]); |
| 7598 | memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *)); |
| 7599 | } |
| 7600 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7601 | } |
| 7602 | |
| 7603 | /* to be used at the end of a transaction to prepare a new one */ |
| 7604 | void http_reset_txn(struct session *s) |
| 7605 | { |
| 7606 | http_end_txn(s); |
| 7607 | http_init_txn(s); |
| 7608 | |
| 7609 | s->be = s->fe; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7610 | s->logs.logwait = s->fe->to_log; |
Simon Horman | af51495 | 2011-06-21 14:34:57 +0900 | [diff] [blame] | 7611 | session_del_srv_conn(s); |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 7612 | clear_target(&s->target); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7613 | /* re-init store persistence */ |
| 7614 | s->store_count = 0; |
| 7615 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7616 | s->pend_pos = NULL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7617 | |
| 7618 | s->req->flags |= BF_READ_DONTWAIT; /* one read is usually enough */ |
| 7619 | |
Willy Tarreau | 739cfba | 2010-01-25 23:11:14 +0100 | [diff] [blame] | 7620 | /* We must trim any excess data from the response buffer, because we |
| 7621 | * may have blocked an invalid response from a server that we don't |
| 7622 | * want to accidentely forward once we disable the analysers, nor do |
| 7623 | * we want those data to come along with next response. A typical |
| 7624 | * example of such data would be from a buggy server responding to |
| 7625 | * a HEAD with some data, or sending more than the advertised |
| 7626 | * content-length. |
| 7627 | */ |
| 7628 | if (unlikely(s->rep->l > s->rep->send_max)) { |
| 7629 | s->rep->l = s->rep->send_max; |
| 7630 | s->rep->r = s->rep->w + s->rep->l; |
| 7631 | if (s->rep->r >= s->rep->data + s->rep->size) |
| 7632 | s->rep->r -= s->rep->size; |
| 7633 | } |
| 7634 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7635 | s->req->rto = s->fe->timeout.client; |
Willy Tarreau | d04e858 | 2010-05-31 12:31:35 +0200 | [diff] [blame] | 7636 | s->req->wto = TICK_ETERNITY; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7637 | |
Willy Tarreau | d04e858 | 2010-05-31 12:31:35 +0200 | [diff] [blame] | 7638 | s->rep->rto = TICK_ETERNITY; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7639 | s->rep->wto = s->fe->timeout.client; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 7640 | |
| 7641 | s->req->rex = TICK_ETERNITY; |
| 7642 | s->req->wex = TICK_ETERNITY; |
| 7643 | s->req->analyse_exp = TICK_ETERNITY; |
| 7644 | s->rep->rex = TICK_ETERNITY; |
| 7645 | s->rep->wex = TICK_ETERNITY; |
| 7646 | s->rep->analyse_exp = TICK_ETERNITY; |
| 7647 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7648 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 7649 | void free_http_req_rules(struct list *r) { |
| 7650 | struct http_req_rule *tr, *pr; |
| 7651 | |
| 7652 | list_for_each_entry_safe(pr, tr, r, list) { |
| 7653 | LIST_DEL(&pr->list); |
| 7654 | if (pr->action == HTTP_REQ_ACT_HTTP_AUTH) |
| 7655 | free(pr->http_auth.realm); |
| 7656 | |
| 7657 | free(pr); |
| 7658 | } |
| 7659 | } |
| 7660 | |
| 7661 | struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy) |
| 7662 | { |
| 7663 | struct http_req_rule *rule; |
| 7664 | int cur_arg; |
| 7665 | |
| 7666 | rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule)); |
| 7667 | if (!rule) { |
| 7668 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 7669 | return NULL; |
| 7670 | } |
| 7671 | |
| 7672 | if (!*args[0]) { |
| 7673 | goto req_error_parsing; |
| 7674 | } else if (!strcmp(args[0], "allow")) { |
| 7675 | rule->action = HTTP_REQ_ACT_ALLOW; |
| 7676 | cur_arg = 1; |
| 7677 | } else if (!strcmp(args[0], "deny")) { |
| 7678 | rule->action = HTTP_REQ_ACT_DENY; |
| 7679 | cur_arg = 1; |
| 7680 | } else if (!strcmp(args[0], "auth")) { |
| 7681 | rule->action = HTTP_REQ_ACT_HTTP_AUTH; |
| 7682 | cur_arg = 1; |
| 7683 | |
| 7684 | while(*args[cur_arg]) { |
| 7685 | if (!strcmp(args[cur_arg], "realm")) { |
| 7686 | rule->http_auth.realm = strdup(args[cur_arg + 1]); |
| 7687 | cur_arg+=2; |
| 7688 | continue; |
| 7689 | } else |
| 7690 | break; |
| 7691 | } |
| 7692 | } else { |
| 7693 | req_error_parsing: |
| 7694 | Alert("parsing [%s:%d]: %s '%s', expects 'allow', 'deny', 'auth'.\n", |
| 7695 | file, linenum, *args[1]?"unknown parameter":"missing keyword in", args[*args[1]?1:0]); |
| 7696 | return NULL; |
| 7697 | } |
| 7698 | |
| 7699 | if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) { |
| 7700 | struct acl_cond *cond; |
| 7701 | |
| 7702 | if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg)) == NULL) { |
| 7703 | Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition.\n", |
| 7704 | file, linenum, args[0]); |
| 7705 | return NULL; |
| 7706 | } |
| 7707 | rule->cond = cond; |
| 7708 | } |
| 7709 | else if (*args[cur_arg]) { |
| 7710 | Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or" |
| 7711 | " either 'if' or 'unless' followed by a condition but found '%s'.\n", |
| 7712 | file, linenum, args[0], args[cur_arg]); |
| 7713 | return NULL; |
| 7714 | } |
| 7715 | |
| 7716 | return rule; |
| 7717 | } |
| 7718 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7719 | /************************************************************************/ |
| 7720 | /* The code below is dedicated to ACL parsing and matching */ |
| 7721 | /************************************************************************/ |
| 7722 | |
| 7723 | |
| 7724 | |
| 7725 | |
| 7726 | /* 1. Check on METHOD |
| 7727 | * We use the pre-parsed method if it is known, and store its number as an |
| 7728 | * integer. If it is unknown, we use the pointer and the length. |
| 7729 | */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 7730 | static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7731 | { |
| 7732 | int len, meth; |
| 7733 | |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 7734 | len = strlen(*text); |
| 7735 | meth = find_http_meth(*text, len); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7736 | |
| 7737 | pattern->val.i = meth; |
| 7738 | if (meth == HTTP_METH_OTHER) { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 7739 | pattern->ptr.str = strdup(*text); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7740 | if (!pattern->ptr.str) |
| 7741 | return 0; |
| 7742 | pattern->len = len; |
| 7743 | } |
| 7744 | return 1; |
| 7745 | } |
| 7746 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 7747 | static int |
Willy Tarreau | 97be145 | 2007-06-10 11:47:14 +0200 | [diff] [blame] | 7748 | acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7749 | struct acl_expr *expr, struct acl_test *test) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7750 | { |
| 7751 | int meth; |
| 7752 | struct http_txn *txn = l7; |
| 7753 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7754 | if (!txn) |
| 7755 | return 0; |
| 7756 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7757 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7758 | return 0; |
| 7759 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7760 | meth = txn->meth; |
| 7761 | test->i = meth; |
| 7762 | if (meth == HTTP_METH_OTHER) { |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7763 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 7764 | /* ensure the indexes are not affected */ |
| 7765 | return 0; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7766 | test->len = txn->req.sl.rq.m_l; |
| 7767 | test->ptr = txn->req.sol; |
| 7768 | } |
| 7769 | test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST; |
| 7770 | return 1; |
| 7771 | } |
| 7772 | |
| 7773 | static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern) |
| 7774 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 7775 | int icase; |
| 7776 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7777 | if (test->i != pattern->val.i) |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 7778 | return ACL_PAT_FAIL; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7779 | |
| 7780 | if (test->i != HTTP_METH_OTHER) |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 7781 | return ACL_PAT_PASS; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7782 | |
| 7783 | /* Other method, we must compare the strings */ |
| 7784 | if (pattern->len != test->len) |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 7785 | return ACL_PAT_FAIL; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 7786 | |
| 7787 | icase = pattern->flags & ACL_PAT_F_IGNORE_CASE; |
| 7788 | if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) || |
| 7789 | (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0)) |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 7790 | return ACL_PAT_FAIL; |
| 7791 | return ACL_PAT_PASS; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7792 | } |
| 7793 | |
| 7794 | /* 2. Check on Request/Status Version |
| 7795 | * We simply compare strings here. |
| 7796 | */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 7797 | static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7798 | { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 7799 | pattern->ptr.str = strdup(*text); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7800 | if (!pattern->ptr.str) |
| 7801 | return 0; |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 7802 | pattern->len = strlen(*text); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7803 | return 1; |
| 7804 | } |
| 7805 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 7806 | static int |
Willy Tarreau | 97be145 | 2007-06-10 11:47:14 +0200 | [diff] [blame] | 7807 | acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7808 | struct acl_expr *expr, struct acl_test *test) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7809 | { |
| 7810 | struct http_txn *txn = l7; |
| 7811 | char *ptr; |
| 7812 | int len; |
| 7813 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7814 | if (!txn) |
| 7815 | return 0; |
| 7816 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7817 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7818 | return 0; |
| 7819 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7820 | len = txn->req.sl.rq.v_l; |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7821 | ptr = txn->req.sol + txn->req.sl.rq.v; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7822 | |
| 7823 | while ((len-- > 0) && (*ptr++ != '/')); |
| 7824 | if (len <= 0) |
| 7825 | return 0; |
| 7826 | |
| 7827 | test->ptr = ptr; |
| 7828 | test->len = len; |
| 7829 | |
| 7830 | test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST; |
| 7831 | return 1; |
| 7832 | } |
| 7833 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 7834 | static int |
Willy Tarreau | 97be145 | 2007-06-10 11:47:14 +0200 | [diff] [blame] | 7835 | acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7836 | struct acl_expr *expr, struct acl_test *test) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7837 | { |
| 7838 | struct http_txn *txn = l7; |
| 7839 | char *ptr; |
| 7840 | int len; |
| 7841 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7842 | if (!txn) |
| 7843 | return 0; |
| 7844 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7845 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7846 | return 0; |
| 7847 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7848 | len = txn->rsp.sl.st.v_l; |
| 7849 | ptr = txn->rsp.sol; |
| 7850 | |
| 7851 | while ((len-- > 0) && (*ptr++ != '/')); |
| 7852 | if (len <= 0) |
| 7853 | return 0; |
| 7854 | |
| 7855 | test->ptr = ptr; |
| 7856 | test->len = len; |
| 7857 | |
| 7858 | test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST; |
| 7859 | return 1; |
| 7860 | } |
| 7861 | |
| 7862 | /* 3. Check on Status Code. We manipulate integers here. */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 7863 | static int |
Willy Tarreau | 97be145 | 2007-06-10 11:47:14 +0200 | [diff] [blame] | 7864 | acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7865 | struct acl_expr *expr, struct acl_test *test) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7866 | { |
| 7867 | struct http_txn *txn = l7; |
| 7868 | char *ptr; |
| 7869 | int len; |
| 7870 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7871 | if (!txn) |
| 7872 | return 0; |
| 7873 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7874 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7875 | return 0; |
| 7876 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7877 | len = txn->rsp.sl.st.c_l; |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7878 | ptr = txn->rsp.sol + txn->rsp.sl.st.c; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7879 | |
| 7880 | test->i = __strl2ui(ptr, len); |
| 7881 | test->flags = ACL_TEST_F_VOL_1ST; |
| 7882 | return 1; |
| 7883 | } |
| 7884 | |
| 7885 | /* 4. Check on URL/URI. A pointer to the URI is stored. */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 7886 | static int |
Willy Tarreau | 97be145 | 2007-06-10 11:47:14 +0200 | [diff] [blame] | 7887 | acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7888 | struct acl_expr *expr, struct acl_test *test) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7889 | { |
| 7890 | struct http_txn *txn = l7; |
| 7891 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7892 | if (!txn) |
| 7893 | return 0; |
| 7894 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7895 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7896 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7897 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7898 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 7899 | /* ensure the indexes are not affected */ |
| 7900 | return 0; |
| 7901 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7902 | test->len = txn->req.sl.rq.u_l; |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 7903 | test->ptr = txn->req.sol + txn->req.sl.rq.u; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7904 | |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 7905 | /* we do not need to set READ_ONLY because the data is in a buffer */ |
| 7906 | test->flags = ACL_TEST_F_VOL_1ST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 7907 | return 1; |
| 7908 | } |
| 7909 | |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7910 | static int |
| 7911 | acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7912 | struct acl_expr *expr, struct acl_test *test) |
| 7913 | { |
| 7914 | struct http_txn *txn = l7; |
| 7915 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7916 | if (!txn) |
| 7917 | return 0; |
| 7918 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7919 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7920 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7921 | |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7922 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 7923 | /* ensure the indexes are not affected */ |
| 7924 | return 0; |
| 7925 | |
| 7926 | /* Parse HTTP request */ |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 7927 | url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to); |
| 7928 | test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7929 | test->i = AF_INET; |
| 7930 | |
| 7931 | /* |
| 7932 | * If we are parsing url in frontend space, we prepare backend stage |
| 7933 | * to not parse again the same url ! optimization lazyness... |
| 7934 | */ |
| 7935 | if (px->options & PR_O_HTTP_PROXY) |
| 7936 | l4->flags |= SN_ADDR_SET; |
| 7937 | |
| 7938 | test->flags = ACL_TEST_F_READ_ONLY; |
| 7939 | return 1; |
| 7940 | } |
| 7941 | |
| 7942 | static int |
| 7943 | acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir, |
| 7944 | struct acl_expr *expr, struct acl_test *test) |
| 7945 | { |
| 7946 | struct http_txn *txn = l7; |
| 7947 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7948 | if (!txn) |
| 7949 | return 0; |
| 7950 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 7951 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7952 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7953 | |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7954 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 7955 | /* ensure the indexes are not affected */ |
| 7956 | return 0; |
| 7957 | |
| 7958 | /* Same optimization as url_ip */ |
Willy Tarreau | 957c0a5 | 2011-03-03 17:42:23 +0100 | [diff] [blame] | 7959 | url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to); |
| 7960 | test->i = ntohs(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_port); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 7961 | |
| 7962 | if (px->options & PR_O_HTTP_PROXY) |
| 7963 | l4->flags |= SN_ADDR_SET; |
| 7964 | |
| 7965 | test->flags = ACL_TEST_F_READ_ONLY; |
| 7966 | return 1; |
| 7967 | } |
| 7968 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7969 | /* 5. Check on HTTP header. A pointer to the beginning of the value is returned. |
| 7970 | * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr(). |
| 7971 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 7972 | static int |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 7973 | acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 7974 | struct acl_expr *expr, struct acl_test *test) |
| 7975 | { |
| 7976 | struct http_txn *txn = l7; |
| 7977 | struct hdr_idx *idx = &txn->hdr_idx; |
| 7978 | struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 7979 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 7980 | if (!txn) |
| 7981 | return 0; |
| 7982 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 7983 | if (!(test->flags & ACL_TEST_F_FETCH_MORE)) |
| 7984 | /* search for header from the beginning */ |
| 7985 | ctx->idx = 0; |
| 7986 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 7987 | if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) { |
| 7988 | test->flags |= ACL_TEST_F_FETCH_MORE; |
| 7989 | test->flags |= ACL_TEST_F_VOL_HDR; |
| 7990 | test->len = ctx->vlen; |
| 7991 | test->ptr = (char *)ctx->line + ctx->val; |
| 7992 | return 1; |
| 7993 | } |
| 7994 | |
| 7995 | test->flags &= ~ACL_TEST_F_FETCH_MORE; |
| 7996 | test->flags |= ACL_TEST_F_VOL_HDR; |
| 7997 | return 0; |
| 7998 | } |
| 7999 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8000 | static int |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8001 | acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8002 | struct acl_expr *expr, struct acl_test *test) |
| 8003 | { |
| 8004 | struct http_txn *txn = l7; |
| 8005 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8006 | if (!txn) |
| 8007 | return 0; |
| 8008 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8009 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8010 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8011 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8012 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 8013 | /* ensure the indexes are not affected */ |
| 8014 | return 0; |
| 8015 | |
| 8016 | return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test); |
| 8017 | } |
| 8018 | |
| 8019 | static int |
| 8020 | acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8021 | struct acl_expr *expr, struct acl_test *test) |
| 8022 | { |
| 8023 | struct http_txn *txn = l7; |
| 8024 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8025 | if (!txn) |
| 8026 | return 0; |
| 8027 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8028 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8029 | return 0; |
| 8030 | |
| 8031 | return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test); |
| 8032 | } |
| 8033 | |
| 8034 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
| 8035 | * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*. |
| 8036 | */ |
| 8037 | static int |
| 8038 | acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8039 | struct acl_expr *expr, struct acl_test *test) |
| 8040 | { |
| 8041 | struct http_txn *txn = l7; |
| 8042 | struct hdr_idx *idx = &txn->hdr_idx; |
| 8043 | struct hdr_ctx ctx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8044 | int cnt; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8045 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8046 | if (!txn) |
| 8047 | return 0; |
| 8048 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8049 | ctx.idx = 0; |
| 8050 | cnt = 0; |
| 8051 | while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx)) |
| 8052 | cnt++; |
| 8053 | |
| 8054 | test->i = cnt; |
| 8055 | test->flags = ACL_TEST_F_VOL_HDR; |
| 8056 | return 1; |
| 8057 | } |
| 8058 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8059 | static int |
| 8060 | acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8061 | struct acl_expr *expr, struct acl_test *test) |
| 8062 | { |
| 8063 | struct http_txn *txn = l7; |
| 8064 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8065 | if (!txn) |
| 8066 | return 0; |
| 8067 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8068 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8069 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8070 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8071 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 8072 | /* ensure the indexes are not affected */ |
| 8073 | return 0; |
| 8074 | |
| 8075 | return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test); |
| 8076 | } |
| 8077 | |
| 8078 | static int |
| 8079 | acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8080 | struct acl_expr *expr, struct acl_test *test) |
| 8081 | { |
| 8082 | struct http_txn *txn = l7; |
| 8083 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8084 | if (!txn) |
| 8085 | return 0; |
| 8086 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8087 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8088 | return 0; |
| 8089 | |
| 8090 | return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test); |
| 8091 | } |
| 8092 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8093 | /* 7. Check on HTTP header's integer value. The integer value is returned. |
| 8094 | * FIXME: the type is 'int', it may not be appropriate for everything. |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8095 | * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8096 | */ |
| 8097 | static int |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8098 | acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8099 | struct acl_expr *expr, struct acl_test *test) |
| 8100 | { |
| 8101 | struct http_txn *txn = l7; |
| 8102 | struct hdr_idx *idx = &txn->hdr_idx; |
| 8103 | struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8104 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8105 | if (!txn) |
| 8106 | return 0; |
| 8107 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8108 | if (!(test->flags & ACL_TEST_F_FETCH_MORE)) |
| 8109 | /* search for header from the beginning */ |
| 8110 | ctx->idx = 0; |
| 8111 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8112 | if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) { |
| 8113 | test->flags |= ACL_TEST_F_FETCH_MORE; |
| 8114 | test->flags |= ACL_TEST_F_VOL_HDR; |
| 8115 | test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen); |
| 8116 | return 1; |
| 8117 | } |
| 8118 | |
| 8119 | test->flags &= ~ACL_TEST_F_FETCH_MORE; |
| 8120 | test->flags |= ACL_TEST_F_VOL_HDR; |
| 8121 | return 0; |
| 8122 | } |
| 8123 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8124 | static int |
| 8125 | acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8126 | struct acl_expr *expr, struct acl_test *test) |
| 8127 | { |
| 8128 | struct http_txn *txn = l7; |
| 8129 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8130 | if (!txn) |
| 8131 | return 0; |
| 8132 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8133 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8134 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8135 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8136 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 8137 | /* ensure the indexes are not affected */ |
| 8138 | return 0; |
| 8139 | |
| 8140 | return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test); |
| 8141 | } |
| 8142 | |
| 8143 | static int |
| 8144 | acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8145 | struct acl_expr *expr, struct acl_test *test) |
| 8146 | { |
| 8147 | struct http_txn *txn = l7; |
| 8148 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8149 | if (!txn) |
| 8150 | return 0; |
| 8151 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8152 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8153 | return 0; |
| 8154 | |
| 8155 | return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test); |
| 8156 | } |
| 8157 | |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 8158 | /* 7. Check on HTTP header's IPv4 address value. The IPv4 address is returned. |
| 8159 | * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*. |
| 8160 | */ |
| 8161 | static int |
| 8162 | acl_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, char *sol, |
| 8163 | struct acl_expr *expr, struct acl_test *test) |
| 8164 | { |
| 8165 | struct http_txn *txn = l7; |
| 8166 | struct hdr_idx *idx = &txn->hdr_idx; |
| 8167 | struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a; |
| 8168 | |
| 8169 | if (!txn) |
| 8170 | return 0; |
| 8171 | |
| 8172 | if (!(test->flags & ACL_TEST_F_FETCH_MORE)) |
| 8173 | /* search for header from the beginning */ |
| 8174 | ctx->idx = 0; |
| 8175 | |
| 8176 | if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) { |
| 8177 | test->flags |= ACL_TEST_F_FETCH_MORE; |
| 8178 | test->flags |= ACL_TEST_F_VOL_HDR; |
| 8179 | /* Same optimization as url_ip */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 8180 | memset(&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr, 0, sizeof(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr)); |
| 8181 | url2ipv4((char *)ctx->line + ctx->val, &((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr); |
| 8182 | test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr; |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 8183 | test->i = AF_INET; |
| 8184 | return 1; |
| 8185 | } |
| 8186 | |
| 8187 | test->flags &= ~ACL_TEST_F_FETCH_MORE; |
| 8188 | test->flags |= ACL_TEST_F_VOL_HDR; |
| 8189 | return 0; |
| 8190 | } |
| 8191 | |
| 8192 | static int |
| 8193 | acl_fetch_chdr_ip(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8194 | struct acl_expr *expr, struct acl_test *test) |
| 8195 | { |
| 8196 | struct http_txn *txn = l7; |
| 8197 | |
| 8198 | if (!txn) |
| 8199 | return 0; |
| 8200 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8201 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 8202 | return 0; |
| 8203 | |
| 8204 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 8205 | /* ensure the indexes are not affected */ |
| 8206 | return 0; |
| 8207 | |
| 8208 | return acl_fetch_hdr_ip(px, l4, txn, txn->req.sol, expr, test); |
| 8209 | } |
| 8210 | |
| 8211 | static int |
| 8212 | acl_fetch_shdr_ip(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8213 | struct acl_expr *expr, struct acl_test *test) |
| 8214 | { |
| 8215 | struct http_txn *txn = l7; |
| 8216 | |
| 8217 | if (!txn) |
| 8218 | return 0; |
| 8219 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8220 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 8221 | return 0; |
| 8222 | |
| 8223 | return acl_fetch_hdr_ip(px, l4, txn, txn->rsp.sol, expr, test); |
| 8224 | } |
| 8225 | |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 8226 | /* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at |
| 8227 | * the first '/' after the possible hostname, and ends before the possible '?'. |
| 8228 | */ |
| 8229 | static int |
| 8230 | acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8231 | struct acl_expr *expr, struct acl_test *test) |
| 8232 | { |
| 8233 | struct http_txn *txn = l7; |
| 8234 | char *ptr, *end; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 8235 | |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8236 | if (!txn) |
| 8237 | return 0; |
| 8238 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8239 | if (txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8240 | return 0; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 8241 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8242 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 8243 | /* ensure the indexes are not affected */ |
| 8244 | return 0; |
| 8245 | |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 8246 | end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8247 | ptr = http_get_path(txn); |
| 8248 | if (!ptr) |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 8249 | return 0; |
| 8250 | |
| 8251 | /* OK, we got the '/' ! */ |
| 8252 | test->ptr = ptr; |
| 8253 | |
| 8254 | while (ptr < end && *ptr != '?') |
| 8255 | ptr++; |
| 8256 | |
| 8257 | test->len = ptr - test->ptr; |
| 8258 | |
| 8259 | /* we do not need to set READ_ONLY because the data is in a buffer */ |
| 8260 | test->flags = ACL_TEST_F_VOL_1ST; |
| 8261 | return 1; |
| 8262 | } |
| 8263 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 8264 | static int |
| 8265 | acl_fetch_proto_http(struct proxy *px, struct session *s, void *l7, int dir, |
| 8266 | struct acl_expr *expr, struct acl_test *test) |
| 8267 | { |
| 8268 | struct buffer *req = s->req; |
| 8269 | struct http_txn *txn = &s->txn; |
| 8270 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 8271 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 8272 | /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged |
| 8273 | * as a layer7 ACL, which involves automatic allocation of hdr_idx. |
| 8274 | */ |
| 8275 | |
| 8276 | if (!s || !req) |
| 8277 | return 0; |
| 8278 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8279 | if (unlikely(msg->msg_state >= HTTP_MSG_BODY)) { |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 8280 | /* Already decoded as OK */ |
| 8281 | test->flags |= ACL_TEST_F_SET_RES_PASS; |
| 8282 | return 1; |
| 8283 | } |
| 8284 | |
| 8285 | /* Try to decode HTTP request */ |
| 8286 | if (likely(req->lr < req->r)) |
| 8287 | http_msg_analyzer(req, msg, &txn->hdr_idx); |
| 8288 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 8289 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 8290 | if ((msg->msg_state == HTTP_MSG_ERROR) || (req->flags & BF_FULL)) { |
| 8291 | test->flags |= ACL_TEST_F_SET_RES_FAIL; |
| 8292 | return 1; |
| 8293 | } |
| 8294 | /* wait for final state */ |
| 8295 | test->flags |= ACL_TEST_F_MAY_CHANGE; |
| 8296 | return 0; |
| 8297 | } |
| 8298 | |
| 8299 | /* OK we got a valid HTTP request. We have some minor preparation to |
| 8300 | * perform so that further checks can rely on HTTP tests. |
| 8301 | */ |
Willy Tarreau | 962c3f4 | 2010-01-10 00:15:35 +0100 | [diff] [blame] | 8302 | txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 8303 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 8304 | s->flags |= SN_REDIRECTABLE; |
| 8305 | |
| 8306 | if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn)) { |
| 8307 | test->flags |= ACL_TEST_F_SET_RES_FAIL; |
| 8308 | return 1; |
| 8309 | } |
| 8310 | |
| 8311 | test->flags |= ACL_TEST_F_SET_RES_PASS; |
| 8312 | return 1; |
| 8313 | } |
| 8314 | |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 8315 | /* return a valid test if the current request is the first one on the connection */ |
| 8316 | static int |
| 8317 | acl_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, int dir, |
| 8318 | struct acl_expr *expr, struct acl_test *test) |
| 8319 | { |
| 8320 | if (!s) |
| 8321 | return 0; |
| 8322 | |
| 8323 | if (s->txn.flags & TX_NOT_FIRST) |
| 8324 | test->flags |= ACL_TEST_F_SET_RES_FAIL; |
| 8325 | else |
| 8326 | test->flags |= ACL_TEST_F_SET_RES_PASS; |
| 8327 | |
| 8328 | return 1; |
| 8329 | } |
| 8330 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8331 | static int |
| 8332 | acl_fetch_http_auth(struct proxy *px, struct session *s, void *l7, int dir, |
| 8333 | struct acl_expr *expr, struct acl_test *test) |
| 8334 | { |
| 8335 | |
| 8336 | if (!s) |
| 8337 | return 0; |
| 8338 | |
| 8339 | if (!get_http_auth(s)) |
| 8340 | return 0; |
| 8341 | |
| 8342 | test->ctx.a[0] = expr->arg.ul; |
| 8343 | test->ctx.a[1] = s->txn.auth.user; |
| 8344 | test->ctx.a[2] = s->txn.auth.pass; |
| 8345 | |
| 8346 | test->flags |= ACL_TEST_F_READ_ONLY | ACL_TEST_F_NULL_MATCH; |
| 8347 | |
| 8348 | return 1; |
| 8349 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8350 | |
| 8351 | /************************************************************************/ |
| 8352 | /* All supported keywords must be declared here. */ |
| 8353 | /************************************************************************/ |
| 8354 | |
| 8355 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 8356 | static struct acl_kw_list acl_kws = {{ },{ |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 8357 | { "req_proto_http", acl_parse_nothing, acl_fetch_proto_http, acl_match_nothing, ACL_USE_L7REQ_PERMANENT }, |
| 8358 | |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8359 | { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT }, |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 8360 | { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP }, |
| 8361 | { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8362 | { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT }, |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8363 | |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 8364 | { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8365 | { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE }, |
| 8366 | { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE }, |
| 8367 | { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE }, |
| 8368 | { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE }, |
| 8369 | { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE }, |
| 8370 | { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE }, |
Willy Tarreau | b337b53 | 2010-05-13 20:03:41 +0200 | [diff] [blame] | 8371 | { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8372 | { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE }, |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8373 | |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8374 | /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */ |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 8375 | { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8376 | { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE }, |
| 8377 | { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE }, |
| 8378 | { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE }, |
| 8379 | { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE }, |
| 8380 | { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE }, |
| 8381 | { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE }, |
| 8382 | { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE }, |
| 8383 | { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE }, |
Willy Tarreau | b337b53 | 2010-05-13 20:03:41 +0200 | [diff] [blame] | 8384 | { "hdr_ip", acl_parse_ip, acl_fetch_chdr_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 8385 | |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 8386 | { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8387 | { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE }, |
| 8388 | { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE }, |
| 8389 | { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE }, |
| 8390 | { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE }, |
| 8391 | { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE }, |
| 8392 | { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE }, |
| 8393 | { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE }, |
| 8394 | { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE }, |
Willy Tarreau | b337b53 | 2010-05-13 20:03:41 +0200 | [diff] [blame] | 8395 | { "shdr_ip", acl_parse_ip, acl_fetch_shdr_ip, acl_match_ip, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 8396 | |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 8397 | { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP }, |
Willy Tarreau | 0ceba5a | 2008-07-25 19:31:03 +0200 | [diff] [blame] | 8398 | { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE }, |
| 8399 | { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE }, |
| 8400 | { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE }, |
| 8401 | { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE }, |
| 8402 | { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE }, |
| 8403 | { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE }, |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 8404 | |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 8405 | #if 0 |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8406 | { "line", acl_parse_str, acl_fetch_line, acl_match_str }, |
| 8407 | { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg }, |
| 8408 | { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg }, |
| 8409 | { "line_end", acl_parse_str, acl_fetch_line, acl_match_end }, |
| 8410 | { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub }, |
| 8411 | { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir }, |
| 8412 | { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom }, |
| 8413 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8414 | { "cook", acl_parse_str, acl_fetch_cook, acl_match_str }, |
| 8415 | { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg }, |
| 8416 | { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg }, |
| 8417 | { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end }, |
| 8418 | { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub }, |
| 8419 | { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir }, |
| 8420 | { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom }, |
| 8421 | { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst }, |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8422 | #endif |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8423 | |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 8424 | { "http_auth", acl_parse_nothing, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT }, |
| 8425 | { "http_auth_group", acl_parse_strcat, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT }, |
| 8426 | { "http_first_req", acl_parse_nothing, acl_fetch_http_first_req, acl_match_nothing, ACL_USE_L7REQ_PERMANENT }, |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8427 | { NULL, NULL, NULL, NULL }, |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8428 | }}; |
| 8429 | |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 8430 | /************************************************************************/ |
| 8431 | /* The code below is dedicated to pattern fetching and matching */ |
| 8432 | /************************************************************************/ |
| 8433 | |
| 8434 | /* extract the IP address from the last occurrence of specified header. Note |
| 8435 | * that we should normally first extract the string then convert it to IP, |
| 8436 | * but right now we have all the functions to do this seemlessly, and we will |
| 8437 | * be able to change that later without touching the configuration. |
| 8438 | */ |
| 8439 | static int |
| 8440 | pattern_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, int dir, |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 8441 | const struct pattern_arg *arg_p, int arg_i, union pattern_data *data) |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 8442 | { |
| 8443 | struct http_txn *txn = l7; |
| 8444 | |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 8445 | data->ip.s_addr = htonl(get_ip_from_hdr2(&txn->req, arg_p->data.str.str, arg_p->data.str.len, &txn->hdr_idx, -1)); |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 8446 | return data->ip.s_addr != 0; |
| 8447 | } |
| 8448 | |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 8449 | /* |
| 8450 | * Given a path string and its length, find the position of beginning of the |
| 8451 | * query string. Returns NULL if no query string is found in the path. |
| 8452 | * |
| 8453 | * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22: |
| 8454 | * |
| 8455 | * find_query_string(path, n) points to "yo=mama;ye=daddy" string. |
| 8456 | */ |
| 8457 | static inline char *find_query_string(char *path, size_t path_l) |
| 8458 | { |
| 8459 | char *p; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 8460 | |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 8461 | p = memchr(path, '?', path_l); |
| 8462 | return p ? p + 1 : NULL; |
| 8463 | } |
| 8464 | |
| 8465 | static inline int is_param_delimiter(char c) |
| 8466 | { |
| 8467 | return c == '&' || c == ';'; |
| 8468 | } |
| 8469 | |
| 8470 | /* |
| 8471 | * Given a url parameter, find the starting position of the first occurence, |
| 8472 | * or NULL if the parameter is not found. |
| 8473 | * |
| 8474 | * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye", |
| 8475 | * the function will return query_string+8. |
| 8476 | */ |
| 8477 | static char* |
| 8478 | find_url_param_pos(char* query_string, size_t query_string_l, |
| 8479 | char* url_param_name, size_t url_param_name_l) |
| 8480 | { |
| 8481 | char *pos, *last; |
| 8482 | |
| 8483 | pos = query_string; |
| 8484 | last = query_string + query_string_l - url_param_name_l - 1; |
| 8485 | |
| 8486 | while (pos <= last) { |
| 8487 | if (pos[url_param_name_l] == '=') { |
| 8488 | if (memcmp(pos, url_param_name, url_param_name_l) == 0) |
| 8489 | return pos; |
| 8490 | pos += url_param_name_l + 1; |
| 8491 | } |
| 8492 | while (pos <= last && !is_param_delimiter(*pos)) |
| 8493 | pos++; |
| 8494 | pos++; |
| 8495 | } |
| 8496 | return NULL; |
| 8497 | } |
| 8498 | |
| 8499 | /* |
| 8500 | * Given a url parameter name, returns its value and size into *value and |
| 8501 | * *value_l respectively, and returns non-zero. If the parameter is not found, |
| 8502 | * zero is returned and value/value_l are not touched. |
| 8503 | */ |
| 8504 | static int |
| 8505 | find_url_param_value(char* path, size_t path_l, |
| 8506 | char* url_param_name, size_t url_param_name_l, |
| 8507 | char** value, size_t* value_l) |
| 8508 | { |
| 8509 | char *query_string, *qs_end; |
| 8510 | char *arg_start; |
| 8511 | char *value_start, *value_end; |
| 8512 | |
| 8513 | query_string = find_query_string(path, path_l); |
| 8514 | if (!query_string) |
| 8515 | return 0; |
| 8516 | |
| 8517 | qs_end = path + path_l; |
| 8518 | arg_start = find_url_param_pos(query_string, qs_end - query_string, |
| 8519 | url_param_name, url_param_name_l); |
| 8520 | if (!arg_start) |
| 8521 | return 0; |
| 8522 | |
| 8523 | value_start = arg_start + url_param_name_l + 1; |
| 8524 | value_end = value_start; |
| 8525 | |
| 8526 | while ((value_end < qs_end) && !is_param_delimiter(*value_end)) |
| 8527 | value_end++; |
| 8528 | |
| 8529 | *value = value_start; |
| 8530 | *value_l = value_end - value_start; |
Willy Tarreau | 0013433 | 2011-01-04 14:57:34 +0100 | [diff] [blame] | 8531 | return value_end != value_start; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 8532 | } |
| 8533 | |
| 8534 | static int |
| 8535 | pattern_fetch_url_param(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8536 | const struct pattern_arg *arg_p, int arg_i, union pattern_data *data) |
| 8537 | { |
| 8538 | struct http_txn *txn = l7; |
| 8539 | struct http_msg *msg = &txn->req; |
| 8540 | char *url_param_value; |
| 8541 | size_t url_param_value_l; |
| 8542 | |
| 8543 | if (!find_url_param_value(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l, |
| 8544 | arg_p->data.str.str, arg_p->data.str.len, |
| 8545 | &url_param_value, &url_param_value_l)) |
| 8546 | return 0; |
| 8547 | |
| 8548 | data->str.str = url_param_value; |
| 8549 | data->str.len = url_param_value_l; |
| 8550 | return 1; |
| 8551 | } |
| 8552 | |
Willy Tarreau | b3eb221 | 2011-07-01 16:16:17 +0200 | [diff] [blame] | 8553 | /* Try to find the last occurrence of a cookie name in a cookie header value. |
| 8554 | * The pointer and size of the last occurrence of the cookie value is returned |
| 8555 | * into *value and *value_l, and the function returns non-zero if the value was |
| 8556 | * found. Otherwise if the cookie was not found, zero is returned and neither |
| 8557 | * value nor value_l are touched. The input hdr string should begin at the |
| 8558 | * header's value, and its size should be in hdr_l. <list> must be non-zero if |
| 8559 | * value may represent a list of values (cookie headers). |
| 8560 | */ |
| 8561 | static int |
| 8562 | extract_cookie_value(char *hdr, size_t hdr_l, |
| 8563 | char *cookie_name, size_t cookie_name_l, int list, |
| 8564 | char **value, size_t *value_l) |
| 8565 | { |
| 8566 | int found = 0; |
| 8567 | char *equal, *att_end, *att_beg, *hdr_end, *val_beg, *val_end; |
| 8568 | char *next; |
| 8569 | |
| 8570 | /* Note that multiple cookies may be delimited with semi-colons, so we |
| 8571 | * also have to loop on this. |
| 8572 | */ |
| 8573 | |
| 8574 | /* we search at least a cookie name followed by an equal, and more |
| 8575 | * generally something like this : |
| 8576 | * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n |
| 8577 | */ |
| 8578 | if (hdr_l < cookie_name_l + 1) |
| 8579 | return 0; |
| 8580 | |
| 8581 | hdr_end = hdr + hdr_l; |
| 8582 | |
| 8583 | for (att_beg = hdr; att_beg < hdr_end; att_beg = next + 1) { |
| 8584 | /* Iterate through all cookies on this line */ |
| 8585 | |
| 8586 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 8587 | att_beg++; |
| 8588 | |
| 8589 | /* find att_end : this is the first character after the last non |
| 8590 | * space before the equal. It may be equal to hdr_end. |
| 8591 | */ |
| 8592 | equal = att_end = att_beg; |
| 8593 | |
| 8594 | while (equal < hdr_end) { |
| 8595 | if (*equal == '=' || *equal == ';' || (list && *equal == ',')) |
| 8596 | break; |
| 8597 | if (http_is_spht[(unsigned char)*equal++]) |
| 8598 | continue; |
| 8599 | att_end = equal; |
| 8600 | } |
| 8601 | |
| 8602 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 8603 | * is between <att_beg> and <equal>, both may be identical. |
| 8604 | */ |
| 8605 | |
| 8606 | /* look for end of cookie if there is an equal sign */ |
| 8607 | if (equal < hdr_end && *equal == '=') { |
| 8608 | /* look for the beginning of the value */ |
| 8609 | val_beg = equal + 1; |
| 8610 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 8611 | val_beg++; |
| 8612 | |
| 8613 | /* find the end of the value, respecting quotes */ |
| 8614 | next = find_cookie_value_end(val_beg, hdr_end); |
| 8615 | |
| 8616 | /* make val_end point to the first white space or delimitor after the value */ |
| 8617 | val_end = next; |
| 8618 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 8619 | val_end--; |
| 8620 | } else { |
| 8621 | val_beg = val_end = next = equal; |
| 8622 | } |
| 8623 | |
| 8624 | /* We have nothing to do with attributes beginning with '$'. However, |
| 8625 | * they will automatically be removed if a header before them is removed, |
| 8626 | * since they're supposed to be linked together. |
| 8627 | */ |
| 8628 | if (*att_beg == '$') |
| 8629 | continue; |
| 8630 | |
| 8631 | /* Ignore cookies with no equal sign */ |
| 8632 | if (equal == next) |
| 8633 | continue; |
| 8634 | |
| 8635 | /* Now we have the cookie name between att_beg and att_end, and |
| 8636 | * its value between val_beg and val_end. |
| 8637 | */ |
| 8638 | |
| 8639 | if (att_end - att_beg == cookie_name_l && |
| 8640 | memcmp(att_beg, cookie_name, cookie_name_l) == 0) { |
| 8641 | found = 1; |
| 8642 | *value = val_beg; |
| 8643 | *value_l = val_end - val_beg; |
| 8644 | /* right now we want to catch the last occurrence |
| 8645 | * of the cookie, so let's go on searching. |
| 8646 | */ |
| 8647 | } |
| 8648 | |
| 8649 | /* Set-Cookie headers only have the name in the first attr=value part */ |
| 8650 | if (!list) |
| 8651 | break; |
| 8652 | } |
| 8653 | |
| 8654 | return found; |
| 8655 | } |
| 8656 | |
| 8657 | /* Try to find in request or response message is in <msg> and whose transaction |
| 8658 | * is in <txn> the last occurrence of a cookie name in all cookie header values |
| 8659 | * whose header name is <hdr_name> with name of length <hdr_name_len>. The |
| 8660 | * pointer and size of the last occurrence of the cookie value is returned into |
| 8661 | * <value> and <value_l>, and the function returns non-zero if the value was |
| 8662 | * found. Otherwise if the cookie was not found, zero is returned and neither |
| 8663 | * value nor value_l are touched. The input hdr string should begin at the |
| 8664 | * header's value, and its size should be in hdr_l. <list> must be non-zero if |
| 8665 | * value may represent a list of values (cookie headers). |
| 8666 | */ |
| 8667 | |
| 8668 | static int |
| 8669 | find_cookie_value(struct http_msg *msg, struct http_txn *txn, |
| 8670 | const char *hdr_name, int hdr_name_len, |
| 8671 | char *cookie_name, size_t cookie_name_l, int list, |
| 8672 | char **value, size_t *value_l) |
| 8673 | { |
| 8674 | struct hdr_ctx ctx; |
| 8675 | int found = 0; |
| 8676 | |
| 8677 | ctx.idx = 0; |
| 8678 | while (http_find_header2(hdr_name, hdr_name_len, msg->sol, &txn->hdr_idx, &ctx)) { |
| 8679 | if (ctx.vlen < cookie_name_l + 1) |
| 8680 | continue; |
| 8681 | |
| 8682 | found |= extract_cookie_value(ctx.line + ctx.val, ctx.vlen, |
| 8683 | cookie_name, cookie_name_l, 1, |
| 8684 | value, value_l); |
| 8685 | } |
| 8686 | return found; |
| 8687 | } |
| 8688 | |
| 8689 | static int |
| 8690 | pattern_fetch_cookie(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8691 | const struct pattern_arg *arg_p, int arg_i, union pattern_data *data) |
| 8692 | { |
| 8693 | struct http_txn *txn = l7; |
| 8694 | struct http_msg *msg = &txn->req; |
| 8695 | char *cookie_value; |
| 8696 | size_t cookie_value_l; |
| 8697 | int found = 0; |
| 8698 | |
| 8699 | found = find_cookie_value(msg, txn, "Cookie", 6, |
| 8700 | arg_p->data.str.str, arg_p->data.str.len, 1, |
| 8701 | &cookie_value, &cookie_value_l); |
| 8702 | if (found) { |
| 8703 | data->str.str = cookie_value; |
| 8704 | data->str.len = cookie_value_l; |
| 8705 | } |
| 8706 | |
| 8707 | return found; |
| 8708 | } |
| 8709 | |
| 8710 | |
| 8711 | static int |
| 8712 | pattern_fetch_set_cookie(struct proxy *px, struct session *l4, void *l7, int dir, |
| 8713 | const struct pattern_arg *arg_p, int arg_i, union pattern_data *data) |
| 8714 | { |
| 8715 | struct http_txn *txn = l7; |
| 8716 | struct http_msg *msg = &txn->rsp; |
| 8717 | char *cookie_value; |
| 8718 | size_t cookie_value_l; |
| 8719 | int found = 0; |
| 8720 | |
| 8721 | found = find_cookie_value(msg, txn, "Set-Cookie", 10, |
| 8722 | arg_p->data.str.str, arg_p->data.str.len, 1, |
| 8723 | &cookie_value, &cookie_value_l); |
| 8724 | if (found) { |
| 8725 | data->str.str = cookie_value; |
| 8726 | data->str.len = cookie_value_l; |
| 8727 | } |
| 8728 | |
| 8729 | return found; |
| 8730 | } |
| 8731 | |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 8732 | |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 8733 | /************************************************************************/ |
| 8734 | /* All supported keywords must be declared here. */ |
| 8735 | /************************************************************************/ |
| 8736 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 8737 | static struct pattern_fetch_kw_list pattern_fetch_keywords = {{ },{ |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 8738 | { "hdr", pattern_fetch_hdr_ip, pattern_arg_str, PATTERN_TYPE_IP, PATTERN_FETCH_REQ }, |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 8739 | { "url_param", pattern_fetch_url_param, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ }, |
Willy Tarreau | b3eb221 | 2011-07-01 16:16:17 +0200 | [diff] [blame] | 8740 | { "cookie", pattern_fetch_cookie, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ }, |
| 8741 | { "set-cookie", pattern_fetch_set_cookie, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_RTR }, |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 8742 | { NULL, NULL, NULL, 0, 0 }, |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 8743 | }}; |
| 8744 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8745 | |
| 8746 | __attribute__((constructor)) |
| 8747 | static void __http_protocol_init(void) |
| 8748 | { |
| 8749 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 8750 | pattern_register_fetches(&pattern_fetch_keywords); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8751 | } |
| 8752 | |
| 8753 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8754 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8755 | * Local variables: |
| 8756 | * c-indent-level: 8 |
| 8757 | * c-basic-offset: 8 |
| 8758 | * End: |
| 8759 | */ |