blob: 89c8f88de3ab0e7f3ada695ca872990e8ddf9307 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau3667d5d2009-10-18 19:50:43 +02002 * include/types/proto_http.h
3 * This file contains HTTP protocol definitions.
4 *
Willy Tarreaufcffa692010-01-10 14:21:19 +01005 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
Willy Tarreau3667d5d2009-10-18 19:50:43 +02006 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _TYPES_PROTO_HTTP_H
23#define _TYPES_PROTO_HTTP_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010027#include <types/buffers.h>
28#include <types/hdr_idx.h>
29
Willy Tarreaufcffa692010-01-10 14:21:19 +010030/* These are the flags that are found in txn->flags */
Willy Tarreau3d300592007-03-18 18:34:41 +010031
32/* action flags */
33#define TX_CLDENY 0x00000001 /* a client header matches a deny regex */
34#define TX_CLALLOW 0x00000002 /* a client header matches an allow regex */
35#define TX_SVDENY 0x00000004 /* a server header matches a deny regex */
36#define TX_SVALLOW 0x00000008 /* a server header matches an allow regex */
37#define TX_CLTARPIT 0x00000010 /* the session is tarpitted (anti-dos) */
Willy Tarreaub608feb2010-01-02 22:47:18 +010038
39/* used only for keep-alive purposes, to indicate we're on a second transaction */
40#define TX_NOT_FIRST 0x00000020 /* the transaction is not the first one */
Willy Tarreau3d300592007-03-18 18:34:41 +010041
42/* transaction flags dedicated to cookies : bits values 0x40, 0x80 (0-3 shift 6) */
43#define TX_CK_NONE 0x00000000 /* this session had no cookie */
44#define TX_CK_INVALID 0x00000040 /* this session had a cookie which matches no server */
45#define TX_CK_DOWN 0x00000080 /* this session had cookie matching a down server */
46#define TX_CK_VALID 0x000000C0 /* this session had cookie matching a valid server */
47#define TX_CK_MASK 0x000000C0 /* mask to get this session's cookie flags */
48#define TX_CK_SHIFT 6 /* bit shift */
49
50/* cookie information, bits values 0x100 to 0x800 (0-8 shift 8) */
51#define TX_SCK_NONE 0x00000000 /* no set-cookie seen for the server cookie */
52#define TX_SCK_DELETED 0x00000100 /* existing set-cookie deleted or changed */
53#define TX_SCK_INSERTED 0x00000200 /* new set-cookie inserted or changed existing one */
54#define TX_SCK_SEEN 0x00000400 /* set-cookie seen for the server cookie */
55#define TX_SCK_MASK 0x00000700 /* mask to get the set-cookie field */
56#define TX_SCK_ANY 0x00000800 /* at least one set-cookie seen (not to be counted) */
57#define TX_SCK_SHIFT 8 /* bit shift */
58
59/* cacheability management, bits values 0x1000 to 0x3000 (0-3 shift 12) */
60#define TX_CACHEABLE 0x00001000 /* at least part of the response is cacheable */
61#define TX_CACHE_COOK 0x00002000 /* a cookie in the response is cacheable */
62#define TX_CACHE_SHIFT 12 /* bit shift */
63
Willy Tarreau5b154472009-12-21 20:11:07 +010064/* request and response HTTP version */
65#define TX_REQ_VER_11 0x00004000 /* the request is HTTP/1.1 or above */
66#define TX_RES_VER_11 0x00008000 /* the response is HTTP/1.1 or above */
Willy Tarreau3667d5d2009-10-18 19:50:43 +020067
68/* report presence of transfer-encoding:chunked and content-length headers */
69#define TX_REQ_CNT_LEN 0x00010000 /* content-length present in the request */
70#define TX_REQ_TE_CHNK 0x00020000 /* transfer-encoding: chunked present in the request */
71#define TX_RES_CNT_LEN 0x00040000 /* content-length present in the response */
72#define TX_RES_TE_CHNK 0x00080000 /* transfer-encoding: chunked present in the response */
Willy Tarreaubaaee002006-06-26 02:48:02 +020073
Willy Tarreau5b154472009-12-21 20:11:07 +010074/* indicate how we *want* the connection to behave, regardless of what is in
75 * the headers. We have 4 possible values right now :
76 * - WANT_TUN : will be a tunnel (default when nothing configured or with CONNECT).
77 * - WANT_KAL : try to maintain keep-alive
78 * - WANT_SCL : enforce close on the server side
79 * - WANT_CLO : enforce close on both sides
80 */
81#define TX_CON_WANT_TUN 0x00000000 /* note: it's important that it is 0 (init) */
82#define TX_CON_WANT_KAL 0x00100000
83#define TX_CON_WANT_SCL 0x00200000
84#define TX_CON_WANT_CLO 0x00300000
85#define TX_CON_WANT_MSK 0x00300000 /* this is the mask to get the bits */
86
87#define TX_CON_HDR_PARS 0x00400000 /* "connection" header already parsed (req or res) */
88#define TX_REQ_CONN_CLO 0x00800000 /* request asks for "Connection: close" mode */
89
Willy Tarreaue8e785b2009-12-26 15:34:26 +010090/* if either of these flags is not set, we may be forced to complete an
91 * connection as a half-way tunnel. For instance, if no content-length
92 * appears in a 1.1 response, but the request is correctly sized.
93 */
94#define TX_REQ_XFER_LEN 0x01000000 /* request xfer size can be determined */
95#define TX_RES_XFER_LEN 0x02000000 /* response xfer size can be determined */
Willy Tarreaufcffa692010-01-10 14:21:19 +010096#define TX_WAIT_NEXT_RQ 0x04000000 /* waiting for the second request to start, use keep-alive timeout */
Willy Tarreau5b154472009-12-21 20:11:07 +010097
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010098/* The HTTP parser is more complex than it looks like, because we have to
99 * support multi-line headers and any number of spaces between the colon and
100 * the value.
101 *
102 * All those examples must work :
103
104 Hdr1:val1\r\n
105 Hdr1: val1\r\n
106 Hdr1:\t val1\r\n
107 Hdr1: \r\n
108 val1\r\n
109 Hdr1:\r\n
110 val1\n
111 \tval2\r\n
112 val3\n
113
114 *
115 */
116
Willy Tarreau58f10d72006-12-04 02:26:12 +0100117/* Possible states while parsing HTTP messages (request|response) */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100118#define HTTP_MSG_RQBEFORE 0 // request: leading LF, before start line
119#define HTTP_MSG_RQBEFORE_CR 1 // request: leading CRLF, before start line
120
121/* these ones define a request start line */
122#define HTTP_MSG_RQMETH 2 // parsing the Method
123#define HTTP_MSG_RQMETH_SP 3 // space(s) after the ethod
124#define HTTP_MSG_RQURI 4 // parsing the Request URI
125#define HTTP_MSG_RQURI_SP 5 // space(s) after the Request URI
126#define HTTP_MSG_RQVER 6 // parsing the Request Version
127#define HTTP_MSG_RQLINE_END 7 // end of request line (CR or LF)
128
129#define HTTP_MSG_RPBEFORE 8 // response: leading LF, before start line
130#define HTTP_MSG_RPBEFORE_CR 9 // response: leading CRLF, before start line
131
132/* these ones define a response start line */
133#define HTTP_MSG_RPVER 10 // parsing the Response Version
134#define HTTP_MSG_RPVER_SP 11 // space(s) after the Response Version
135#define HTTP_MSG_RPCODE 12 // response code
136#define HTTP_MSG_RPCODE_SP 13 // space(s) after the response code
137#define HTTP_MSG_RPREASON 14 // response reason
138#define HTTP_MSG_RPLINE_END 15 // end of response line (CR or LF)
139
140/* common header processing */
141
142#define HTTP_MSG_HDR_FIRST 16 // waiting for first header or last CRLF (no LWS possible)
143#define HTTP_MSG_HDR_NAME 17 // parsing header name
144#define HTTP_MSG_HDR_COL 18 // parsing header colon
145#define HTTP_MSG_HDR_L1_SP 19 // parsing header LWS (SP|HT) before value
146#define HTTP_MSG_HDR_L1_LF 20 // parsing header LWS (LF) before value
147#define HTTP_MSG_HDR_L1_LWS 21 // checking whether it's a new header or an LWS
148#define HTTP_MSG_HDR_VAL 22 // parsing header value
149#define HTTP_MSG_HDR_L2_LF 23 // parsing header LWS (LF) inside/after value
150#define HTTP_MSG_HDR_L2_LWS 24 // checking whether it's a new header or an LWS
151
152#define HTTP_MSG_LAST_LF 25 // parsing last LF
Willy Tarreau655dce92009-11-08 13:10:58 +0100153
154/* error state : must be before HTTP_MSG_BODY so that (>=BODY) always indicates
155 * that data are being processed.
156 */
157
158#define HTTP_MSG_ERROR 26 // an error occurred
159
160/* Body processing.
161 * The state HTTP_MSG_BODY is a delimiter to know if we're waiting for headers
162 * or body. All the sub-states below also indicate we're processing the body,
163 * with some additional information.
164 */
165#define HTTP_MSG_BODY 27 // parsing body at end of headers
166#define HTTP_MSG_100_SENT 28 // parsing body after a 100-Continue was sent
167#define HTTP_MSG_CHUNK_SIZE 29 // parsing the chunk size (RFC2616 #3.6.1)
168#define HTTP_MSG_DATA 30 // skipping data chunk / content-length data
169#define HTTP_MSG_DATA_CRLF 31 // skipping CRLF after data chunk
170#define HTTP_MSG_TRAILERS 32 // trailers (post-data entity headers)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100171
Willy Tarreau5523b322009-12-29 12:05:52 +0100172/* we enter this state when we've received the end of the current message */
173#define HTTP_MSG_DONE 33 // message end received, waiting for resync or close
174#define HTTP_MSG_CLOSING 34 // shutdown_w done, not all bytes sent yet
175#define HTTP_MSG_CLOSED 35 // shutdown_w done, all bytes sent
Willy Tarreau610ecce2010-01-04 21:15:02 +0100176#define HTTP_MSG_TUNNEL 36 // tunneled data after DONE
Willy Tarreau58f10d72006-12-04 02:26:12 +0100177
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100178/* various data sources for the responses */
179#define DATA_SRC_NONE 0
180#define DATA_SRC_STATS 1
181
182/* data transmission states for the stats responses */
183enum {
184 DATA_ST_INIT = 0,
185 DATA_ST_HEAD,
186 DATA_ST_INFO,
187 DATA_ST_LIST,
188 DATA_ST_END,
189 DATA_ST_FIN,
190};
191
192/* data transmission states for the stats responses inside a proxy */
193enum {
194 DATA_ST_PX_INIT = 0,
195 DATA_ST_PX_TH,
196 DATA_ST_PX_FE,
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200197 DATA_ST_PX_LI,
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100198 DATA_ST_PX_SV,
199 DATA_ST_PX_BE,
200 DATA_ST_PX_END,
201 DATA_ST_PX_FIN,
202};
203
Willy Tarreau79da4692008-11-19 20:03:04 +0100204/* Redirect flags */
205enum {
206 REDIRECT_FLAG_NONE = 0,
207 REDIRECT_FLAG_DROP_QS = 1, /* drop query string */
Willy Tarreau81e3b4f2010-01-10 00:42:19 +0100208 REDIRECT_FLAG_APPEND_SLASH = 2, /* append a slash if missing at the end */
Willy Tarreau79da4692008-11-19 20:03:04 +0100209};
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200210
211/* Redirect types (location, prefix, extended ) */
212enum {
213 REDIRECT_TYPE_NONE = 0, /* no redirection */
214 REDIRECT_TYPE_LOCATION, /* location redirect */
215 REDIRECT_TYPE_PREFIX, /* prefix redirect */
216};
217
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100218/* Known HTTP methods */
219typedef enum {
220 HTTP_METH_NONE = 0,
221 HTTP_METH_OPTIONS,
222 HTTP_METH_GET,
223 HTTP_METH_HEAD,
224 HTTP_METH_POST,
225 HTTP_METH_PUT,
226 HTTP_METH_DELETE,
227 HTTP_METH_TRACE,
228 HTTP_METH_CONNECT,
229 HTTP_METH_OTHER,
230} http_meth_t;
231
232/* This is an HTTP message, as described in RFC2616. It can be either a request
233 * message or a response message.
234 *
235 * The values there are a little bit obscure, because their meaning can change
236 * during the parsing :
237 *
238 * - som (Start of Message) : relative offset in the buffer of first byte of
239 * the request being processed or parsed. Reset to
Willy Tarreau962c3f42010-01-10 00:15:35 +0100240 * zero during accept(), and changes while parsing
241 * chunks.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100242 * - eoh (End of Headers) : relative offset in the buffer of first byte that
243 * is not part of a completely processed header.
244 * During parsing, it points to last header seen
Willy Tarreaufa355d42009-11-29 18:12:29 +0100245 * for states after START. When in HTTP_MSG_BODY,
246 * eoh points to the first byte of the last CRLF
247 * preceeding data.
248 * - col and sov : When in HTTP_MSG_BODY, will point to the first
Willy Tarreau1d3bcce2009-12-27 15:50:06 +0100249 * byte of data (relative to buffer).
250 * - sol (start of line) : start of line, also start of message when fully parsed.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100251 * - eol (End of Line) : relative offset in the buffer of the first byte
252 * which marks the end of the line (LF or CRLF).
Willy Tarreau1d3bcce2009-12-27 15:50:06 +0100253 * Note that all offsets are relative to the beginning of the buffer. To get
Willy Tarreau962c3f42010-01-10 00:15:35 +0100254 * them relative to the current request, subtract ->som or ->sol.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100255 */
256struct http_msg {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200257 unsigned int msg_state; /* where we are in the current message parsing */
Willy Tarreaufa355d42009-11-29 18:12:29 +0100258 unsigned int col, sov; /* current header: colon, start of value */
259 unsigned int eoh; /* End Of Headers, relative to buffer */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200260 char *sol; /* start of line, also start of message when fully parsed */
261 char *eol; /* end of line */
262 unsigned int som; /* Start Of Message, relative to buffer */
Willy Tarreaufa355d42009-11-29 18:12:29 +0100263 int err_pos; /* err handling: -2=block, -1=pass, 0+=detected */
Willy Tarreau962c3f42010-01-10 00:15:35 +0100264 union { /* useful start line pointers, relative to ->sol */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100265 struct {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200266 int l; /* request line length (not including CR) */
267 int m_l; /* METHOD length (method starts at ->som) */
268 int u, u_l; /* URI, length */
269 int v, v_l; /* VERSION, length */
270 } rq; /* request line : field, length */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100271 struct {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200272 int l; /* status line length (not including CR) */
273 int v_l; /* VERSION length (version starts at ->som) */
274 int c, c_l; /* CODE, length */
275 int r, r_l; /* REASON, length */
276 } st; /* status line : field, length */
277 } sl; /* start line */
Willy Tarreau3667d5d2009-10-18 19:50:43 +0200278 unsigned long long hdr_content_len; /* cache for parsed header value or for chunk-size if present */
Willy Tarreaufa355d42009-11-29 18:12:29 +0100279 char **cap; /* array of captured headers (may be NULL) */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100280};
281
282/* This is an HTTP transaction. It contains both a request message and a
283 * response message (which can be empty).
284 */
285struct http_txn {
Willy Tarreau520bbb22010-01-10 11:31:22 +0100286 struct http_msg req; /* HTTP request message */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100287 struct hdr_idx hdr_idx; /* array of header indexes (max: MAX_HTTP_HDR) */
Willy Tarreau520bbb22010-01-10 11:31:22 +0100288 unsigned int flags; /* transaction flags */
289 http_meth_t meth; /* HTTP method */
290
291 int status; /* HTTP status from the server, negative if from proxy */
292 struct http_msg rsp; /* HTTP response message */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100293
Willy Tarreau520bbb22010-01-10 11:31:22 +0100294 char *uri; /* first line if log needed, NULL otherwise */
295 char *cli_cookie; /* cookie presented by the client, in capture mode */
296 char *srv_cookie; /* cookie presented by the server, in capture mode */
Willy Tarreaua3377ee2010-01-10 10:49:11 +0100297 char *sessid; /* the appsession id, if found in the request or in the response */
Willy Tarreau520bbb22010-01-10 11:31:22 +0100298
299 struct chunk auth_hdr; /* points to 'Authorization:' header */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100300};
301
Willy Tarreau33a7e692007-06-10 19:45:56 +0200302/* This structure is used by http_find_header() to return values of headers.
303 * The header starts at <line>, the value at <line>+<val> for <vlen> bytes.
304 */
305struct hdr_ctx {
306 const char *line;
307 int idx;
308 int val; /* relative to line */
309 int vlen; /* relative to line+val */
310};
Willy Tarreau58f10d72006-12-04 02:26:12 +0100311
Willy Tarreaubaaee002006-06-26 02:48:02 +0200312#endif /* _TYPES_PROTO_HTTP_H */
313
314/*
315 * Local variables:
316 * c-indent-level: 8
317 * c-basic-offset: 8
318 * End:
319 */