blob: 5b0914f0407467d81ff71e71f9fdd58bc9435698 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/types/proto_http.h
3 This file contains HTTP protocol definitions.
4
5 Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu
6
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*/
21
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 Tarreaubaaee002006-06-26 02:48:02 +020030/*
31 * FIXME: break this into HTTP state and TCP socket state.
Willy Tarreaubaaee002006-06-26 02:48:02 +020032 * See client.h for the other end.
33 */
34
35/* different possible states for the server side */
36#define SV_STIDLE 0
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020037#define SV_STANALYZE 1 /* this server state is set by the client to study the body for server assignment */
38#define SV_STCONN 2
39#define SV_STHEADERS 3
40#define SV_STDATA 4
41#define SV_STSHUTR 5
42#define SV_STSHUTW 6
43#define SV_STCLOSE 7
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreau3d300592007-03-18 18:34:41 +010045/*
46 * Transaction flags moved from session
47 */
48
49
50/* action flags */
51#define TX_CLDENY 0x00000001 /* a client header matches a deny regex */
52#define TX_CLALLOW 0x00000002 /* a client header matches an allow regex */
53#define TX_SVDENY 0x00000004 /* a server header matches a deny regex */
54#define TX_SVALLOW 0x00000008 /* a server header matches an allow regex */
55#define TX_CLTARPIT 0x00000010 /* the session is tarpitted (anti-dos) */
56/* unused: 0x00000020 */
57
58/* transaction flags dedicated to cookies : bits values 0x40, 0x80 (0-3 shift 6) */
59#define TX_CK_NONE 0x00000000 /* this session had no cookie */
60#define TX_CK_INVALID 0x00000040 /* this session had a cookie which matches no server */
61#define TX_CK_DOWN 0x00000080 /* this session had cookie matching a down server */
62#define TX_CK_VALID 0x000000C0 /* this session had cookie matching a valid server */
63#define TX_CK_MASK 0x000000C0 /* mask to get this session's cookie flags */
64#define TX_CK_SHIFT 6 /* bit shift */
65
66/* cookie information, bits values 0x100 to 0x800 (0-8 shift 8) */
67#define TX_SCK_NONE 0x00000000 /* no set-cookie seen for the server cookie */
68#define TX_SCK_DELETED 0x00000100 /* existing set-cookie deleted or changed */
69#define TX_SCK_INSERTED 0x00000200 /* new set-cookie inserted or changed existing one */
70#define TX_SCK_SEEN 0x00000400 /* set-cookie seen for the server cookie */
71#define TX_SCK_MASK 0x00000700 /* mask to get the set-cookie field */
72#define TX_SCK_ANY 0x00000800 /* at least one set-cookie seen (not to be counted) */
73#define TX_SCK_SHIFT 8 /* bit shift */
74
75/* cacheability management, bits values 0x1000 to 0x3000 (0-3 shift 12) */
76#define TX_CACHEABLE 0x00001000 /* at least part of the response is cacheable */
77#define TX_CACHE_COOK 0x00002000 /* a cookie in the response is cacheable */
78#define TX_CACHE_SHIFT 12 /* bit shift */
79
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010081/* The HTTP parser is more complex than it looks like, because we have to
82 * support multi-line headers and any number of spaces between the colon and
83 * the value.
84 *
85 * All those examples must work :
86
87 Hdr1:val1\r\n
88 Hdr1: val1\r\n
89 Hdr1:\t val1\r\n
90 Hdr1: \r\n
91 val1\r\n
92 Hdr1:\r\n
93 val1\n
94 \tval2\r\n
95 val3\n
96
97 *
98 */
99
Willy Tarreau58f10d72006-12-04 02:26:12 +0100100/* Possible states while parsing HTTP messages (request|response) */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100101#define HTTP_MSG_RQBEFORE 0 // request: leading LF, before start line
102#define HTTP_MSG_RQBEFORE_CR 1 // request: leading CRLF, before start line
103
104/* these ones define a request start line */
105#define HTTP_MSG_RQMETH 2 // parsing the Method
106#define HTTP_MSG_RQMETH_SP 3 // space(s) after the ethod
107#define HTTP_MSG_RQURI 4 // parsing the Request URI
108#define HTTP_MSG_RQURI_SP 5 // space(s) after the Request URI
109#define HTTP_MSG_RQVER 6 // parsing the Request Version
110#define HTTP_MSG_RQLINE_END 7 // end of request line (CR or LF)
111
112#define HTTP_MSG_RPBEFORE 8 // response: leading LF, before start line
113#define HTTP_MSG_RPBEFORE_CR 9 // response: leading CRLF, before start line
114
115/* these ones define a response start line */
116#define HTTP_MSG_RPVER 10 // parsing the Response Version
117#define HTTP_MSG_RPVER_SP 11 // space(s) after the Response Version
118#define HTTP_MSG_RPCODE 12 // response code
119#define HTTP_MSG_RPCODE_SP 13 // space(s) after the response code
120#define HTTP_MSG_RPREASON 14 // response reason
121#define HTTP_MSG_RPLINE_END 15 // end of response line (CR or LF)
122
123/* common header processing */
124
125#define HTTP_MSG_HDR_FIRST 16 // waiting for first header or last CRLF (no LWS possible)
126#define HTTP_MSG_HDR_NAME 17 // parsing header name
127#define HTTP_MSG_HDR_COL 18 // parsing header colon
128#define HTTP_MSG_HDR_L1_SP 19 // parsing header LWS (SP|HT) before value
129#define HTTP_MSG_HDR_L1_LF 20 // parsing header LWS (LF) before value
130#define HTTP_MSG_HDR_L1_LWS 21 // checking whether it's a new header or an LWS
131#define HTTP_MSG_HDR_VAL 22 // parsing header value
132#define HTTP_MSG_HDR_L2_LF 23 // parsing header LWS (LF) inside/after value
133#define HTTP_MSG_HDR_L2_LWS 24 // checking whether it's a new header or an LWS
134
135#define HTTP_MSG_LAST_LF 25 // parsing last LF
136#define HTTP_MSG_BODY 26 // parsing body at end of headers
137#define HTTP_MSG_ERROR 27 // an error occurred
138
Willy Tarreau58f10d72006-12-04 02:26:12 +0100139
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100140/* various data sources for the responses */
141#define DATA_SRC_NONE 0
142#define DATA_SRC_STATS 1
143
144/* data transmission states for the stats responses */
145enum {
146 DATA_ST_INIT = 0,
147 DATA_ST_HEAD,
148 DATA_ST_INFO,
149 DATA_ST_LIST,
150 DATA_ST_END,
151 DATA_ST_FIN,
152};
153
154/* data transmission states for the stats responses inside a proxy */
155enum {
156 DATA_ST_PX_INIT = 0,
157 DATA_ST_PX_TH,
158 DATA_ST_PX_FE,
159 DATA_ST_PX_SV,
160 DATA_ST_PX_BE,
161 DATA_ST_PX_END,
162 DATA_ST_PX_FIN,
163};
164
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200165
166
167/* Redirect types (location, prefix, extended ) */
168enum {
169 REDIRECT_TYPE_NONE = 0, /* no redirection */
170 REDIRECT_TYPE_LOCATION, /* location redirect */
171 REDIRECT_TYPE_PREFIX, /* prefix redirect */
172};
173
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100174/* Known HTTP methods */
175typedef enum {
176 HTTP_METH_NONE = 0,
177 HTTP_METH_OPTIONS,
178 HTTP_METH_GET,
179 HTTP_METH_HEAD,
180 HTTP_METH_POST,
181 HTTP_METH_PUT,
182 HTTP_METH_DELETE,
183 HTTP_METH_TRACE,
184 HTTP_METH_CONNECT,
185 HTTP_METH_OTHER,
186} http_meth_t;
187
188/* This is an HTTP message, as described in RFC2616. It can be either a request
189 * message or a response message.
190 *
191 * The values there are a little bit obscure, because their meaning can change
192 * during the parsing :
193 *
194 * - som (Start of Message) : relative offset in the buffer of first byte of
195 * the request being processed or parsed. Reset to
196 * zero during accept().
197 * - eoh (End of Headers) : relative offset in the buffer of first byte that
198 * is not part of a completely processed header.
199 * During parsing, it points to last header seen
200 * for states after START.
201 * - eol (End of Line) : relative offset in the buffer of the first byte
202 * which marks the end of the line (LF or CRLF).
203 */
204struct http_msg {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200205 unsigned int msg_state; /* where we are in the current message parsing */
206 char *sol; /* start of line, also start of message when fully parsed */
207 char *eol; /* end of line */
208 unsigned int som; /* Start Of Message, relative to buffer */
209 unsigned int col, sov; /* current header: colon, start of value */
210 unsigned int eoh; /* End Of Headers, relative to buffer */
211 char **cap; /* array of captured headers (may be NULL) */
212 union { /* useful start line pointers, relative to buffer */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100213 struct {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200214 int l; /* request line length (not including CR) */
215 int m_l; /* METHOD length (method starts at ->som) */
216 int u, u_l; /* URI, length */
217 int v, v_l; /* VERSION, length */
218 } rq; /* request line : field, length */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100219 struct {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200220 int l; /* status line length (not including CR) */
221 int v_l; /* VERSION length (version starts at ->som) */
222 int c, c_l; /* CODE, length */
223 int r, r_l; /* REASON, length */
224 } st; /* status line : field, length */
225 } sl; /* start line */
226 unsigned long long hdr_content_len; /* cache for parsed header value */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100227};
228
229/* This is an HTTP transaction. It contains both a request message and a
230 * response message (which can be empty).
231 */
232struct http_txn {
233 http_meth_t meth; /* HTTP method */
234 struct hdr_idx hdr_idx; /* array of header indexes (max: MAX_HTTP_HDR) */
235 struct chunk auth_hdr; /* points to 'Authorization:' header */
236 struct http_msg req, rsp; /* HTTP request and response messages */
237
238 char *uri; /* first line if log needed, NULL otherwise */
239 char *cli_cookie; /* cookie presented by the client, in capture mode */
240 char *srv_cookie; /* cookie presented by the server, in capture mode */
241 int status; /* HTTP status from the server, negative if from proxy */
Willy Tarreau3d300592007-03-18 18:34:41 +0100242 unsigned int flags; /* transaction flags */
Willy Tarreau036fae02008-01-06 13:24:40 +0100243 struct timeval exp; /* expiration date for the transaction (generally a request) */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100244};
245
Willy Tarreau33a7e692007-06-10 19:45:56 +0200246/* This structure is used by http_find_header() to return values of headers.
247 * The header starts at <line>, the value at <line>+<val> for <vlen> bytes.
248 */
249struct hdr_ctx {
250 const char *line;
251 int idx;
252 int val; /* relative to line */
253 int vlen; /* relative to line+val */
254};
Willy Tarreau58f10d72006-12-04 02:26:12 +0100255
Willy Tarreaubaaee002006-06-26 02:48:02 +0200256#endif /* _TYPES_PROTO_HTTP_H */
257
258/*
259 * Local variables:
260 * c-indent-level: 8
261 * c-basic-offset: 8
262 * End:
263 */