http11: remove unused variables/elements
[unicorn.git] / ext / unicorn / http11 / http11.c
blob42dcf99977ef0e95c90cfc56a85aabfcdf642fd7
1 /**
2 * Copyright (c) 2009 Eric Wong (all bugs are Eric's fault)
3 * Copyright (c) 2005 Zed A. Shaw
4 * You can redistribute it and/or modify it under the same terms as Ruby.
5 */
6 #include "ruby.h"
7 #include "ext_help.h"
8 #include <assert.h>
9 #include <string.h>
10 #include "http11_parser.h"
12 #ifndef RSTRING_PTR
13 #define RSTRING_PTR(s) (RSTRING(s)->ptr)
14 #endif
15 #ifndef RSTRING_LEN
16 #define RSTRING_LEN(s) (RSTRING(s)->len)
17 #endif
19 static VALUE mUnicorn;
20 static VALUE cHttpParser;
21 static VALUE eHttpParserError;
22 static VALUE sym_http_body;
24 #define HTTP_PREFIX "HTTP_"
25 #define HTTP_PREFIX_LEN (sizeof(HTTP_PREFIX) - 1)
27 static VALUE global_rack_url_scheme;
28 static VALUE global_request_method;
29 static VALUE global_request_uri;
30 static VALUE global_fragment;
31 static VALUE global_query_string;
32 static VALUE global_http_version;
33 static VALUE global_request_path;
34 static VALUE global_path_info;
35 static VALUE global_server_name;
36 static VALUE global_server_port;
37 static VALUE global_server_protocol;
38 static VALUE global_server_protocol_value;
39 static VALUE global_http_host;
40 static VALUE global_http_x_forwarded_proto;
41 static VALUE global_port_80;
42 static VALUE global_port_443;
43 static VALUE global_localhost;
44 static VALUE global_http;
46 /** Defines common length and error messages for input length validation. */
47 #define DEF_MAX_LENGTH(N,length) const size_t MAX_##N##_LENGTH = length; const char *MAX_##N##_LENGTH_ERR = "HTTP element " # N " is longer than the " # length " allowed length."
49 /** Validates the max length of given input and throws an HttpParserError exception if over. */
50 #define VALIDATE_MAX_LENGTH(len, N) if(len > MAX_##N##_LENGTH) { rb_raise(eHttpParserError, MAX_##N##_LENGTH_ERR); }
52 /** Defines global strings in the init method. */
53 #define DEF_GLOBAL(N, val) global_##N = rb_obj_freeze(rb_str_new2(val)); rb_global_variable(&global_##N)
56 /* Defines the maximum allowed lengths for various input elements.*/
57 DEF_MAX_LENGTH(FIELD_NAME, 256);
58 DEF_MAX_LENGTH(FIELD_VALUE, 80 * 1024);
59 DEF_MAX_LENGTH(REQUEST_URI, 1024 * 12);
60 DEF_MAX_LENGTH(FRAGMENT, 1024); /* Don't know if this length is specified somewhere or not */
61 DEF_MAX_LENGTH(REQUEST_PATH, 1024);
62 DEF_MAX_LENGTH(QUERY_STRING, (1024 * 10));
63 DEF_MAX_LENGTH(HEADER, (1024 * (80 + 32)));
65 struct common_field {
66 const signed long len;
67 const char *name;
68 VALUE value;
72 * A list of common HTTP headers we expect to receive.
73 * This allows us to avoid repeatedly creating identical string
74 * objects to be used with rb_hash_aset().
76 static struct common_field common_http_fields[] = {
77 # define f(N) { (sizeof(N) - 1), N, Qnil }
78 f("ACCEPT"),
79 f("ACCEPT_CHARSET"),
80 f("ACCEPT_ENCODING"),
81 f("ACCEPT_LANGUAGE"),
82 f("ALLOW"),
83 f("AUTHORIZATION"),
84 f("CACHE_CONTROL"),
85 f("CONNECTION"),
86 f("CONTENT_ENCODING"),
87 f("CONTENT_LENGTH"),
88 f("CONTENT_TYPE"),
89 f("COOKIE"),
90 f("DATE"),
91 f("EXPECT"),
92 f("FROM"),
93 f("HOST"),
94 f("IF_MATCH"),
95 f("IF_MODIFIED_SINCE"),
96 f("IF_NONE_MATCH"),
97 f("IF_RANGE"),
98 f("IF_UNMODIFIED_SINCE"),
99 f("KEEP_ALIVE"), /* Firefox sends this */
100 f("MAX_FORWARDS"),
101 f("PRAGMA"),
102 f("PROXY_AUTHORIZATION"),
103 f("RANGE"),
104 f("REFERER"),
105 f("TE"),
106 f("TRAILER"),
107 f("TRANSFER_ENCODING"),
108 f("UPGRADE"),
109 f("USER_AGENT"),
110 f("VIA"),
111 f("X_FORWARDED_FOR"), /* common for proxies */
112 f("X_FORWARDED_PROTO"), /* common for proxies */
113 f("X_REAL_IP"), /* common for proxies */
114 f("WARNING")
115 # undef f
118 /* this function is not performance-critical */
119 static void init_common_fields(void)
121 int i;
122 struct common_field *cf = common_http_fields;
123 char tmp[256]; /* MAX_FIELD_NAME_LENGTH */
124 memcpy(tmp, HTTP_PREFIX, HTTP_PREFIX_LEN);
126 for(i = 0; i < ARRAY_SIZE(common_http_fields); cf++, i++) {
127 /* Rack doesn't like certain headers prefixed with "HTTP_" */
128 if (!strcmp("CONTENT_LENGTH", cf->name) ||
129 !strcmp("CONTENT_TYPE", cf->name)) {
130 cf->value = rb_str_new(cf->name, cf->len);
131 } else {
132 memcpy(tmp + HTTP_PREFIX_LEN, cf->name, cf->len + 1);
133 cf->value = rb_str_new(tmp, HTTP_PREFIX_LEN + cf->len);
135 cf->value = rb_obj_freeze(cf->value);
136 rb_global_variable(&cf->value);
140 static VALUE find_common_field_value(const char *field, size_t flen)
142 int i;
143 struct common_field *cf = common_http_fields;
144 for(i = 0; i < ARRAY_SIZE(common_http_fields); i++, cf++) {
145 if (cf->len == flen && !memcmp(cf->name, field, flen))
146 return cf->value;
148 return Qnil;
151 static void http_field(void *data, const char *field,
152 size_t flen, const char *value, size_t vlen)
154 VALUE req = (VALUE)data;
155 VALUE v = Qnil;
156 VALUE f = Qnil;
158 VALIDATE_MAX_LENGTH(flen, FIELD_NAME);
159 VALIDATE_MAX_LENGTH(vlen, FIELD_VALUE);
161 v = rb_str_new(value, vlen);
163 f = find_common_field_value(field, flen);
165 if (f == Qnil) {
167 * We got a strange header that we don't have a memoized value for.
168 * Fallback to creating a new string to use as a hash key.
170 * using rb_str_new(NULL, len) here is faster than rb_str_buf_new(len)
171 * in my testing, because: there's no minimum allocation length (and
172 * no check for it, either), RSTRING_LEN(f) does not need to be
173 * written twice, and and RSTRING_PTR(f) will already be
174 * null-terminated for us.
176 f = rb_str_new(NULL, HTTP_PREFIX_LEN + flen);
177 memcpy(RSTRING_PTR(f), HTTP_PREFIX, HTTP_PREFIX_LEN);
178 memcpy(RSTRING_PTR(f) + HTTP_PREFIX_LEN, field, flen);
179 assert(*(RSTRING_PTR(f) + RSTRING_LEN(f)) == '\0'); /* paranoia */
180 /* fprintf(stderr, "UNKNOWN HEADER <%s>\n", RSTRING_PTR(f)); */
183 rb_hash_aset(req, f, v);
186 static void request_method(void *data, const char *at, size_t length)
188 VALUE req = (VALUE)data;
189 VALUE val = Qnil;
191 val = rb_str_new(at, length);
192 rb_hash_aset(req, global_request_method, val);
195 static void request_uri(void *data, const char *at, size_t length)
197 VALUE req = (VALUE)data;
198 VALUE val = Qnil;
200 VALIDATE_MAX_LENGTH(length, REQUEST_URI);
202 val = rb_str_new(at, length);
203 rb_hash_aset(req, global_request_uri, val);
205 /* "OPTIONS * HTTP/1.1\r\n" is a valid request */
206 if (length == 1 && *at == '*') {
207 val = rb_str_new(NULL, 0);
208 rb_hash_aset(req, global_request_path, val);
209 rb_hash_aset(req, global_path_info, val);
213 static void fragment(void *data, const char *at, size_t length)
215 VALUE req = (VALUE)data;
216 VALUE val = Qnil;
218 VALIDATE_MAX_LENGTH(length, FRAGMENT);
220 val = rb_str_new(at, length);
221 rb_hash_aset(req, global_fragment, val);
224 static void request_path(void *data, const char *at, size_t length)
226 VALUE req = (VALUE)data;
227 VALUE val = Qnil;
229 VALIDATE_MAX_LENGTH(length, REQUEST_PATH);
231 val = rb_str_new(at, length);
232 rb_hash_aset(req, global_request_path, val);
234 /* rack says PATH_INFO must start with "/" or be empty */
235 if (!(length == 1 && *at == '*'))
236 rb_hash_aset(req, global_path_info, val);
239 static void query_string(void *data, const char *at, size_t length)
241 VALUE req = (VALUE)data;
242 VALUE val = Qnil;
244 VALIDATE_MAX_LENGTH(length, QUERY_STRING);
246 val = rb_str_new(at, length);
247 rb_hash_aset(req, global_query_string, val);
250 static void http_version(void *data, const char *at, size_t length)
252 VALUE req = (VALUE)data;
253 VALUE val = rb_str_new(at, length);
254 rb_hash_aset(req, global_http_version, val);
257 /** Finalizes the request header to have a bunch of stuff that's needed. */
258 static void header_done(void *data, const char *at, size_t length)
260 VALUE req = (VALUE)data;
261 VALUE server_name = global_localhost;
262 VALUE server_port = global_port_80;
263 VALUE temp;
265 /* set rack.url_scheme to "https" or "http", no others are allowed by Rack */
266 if ((temp = rb_hash_aref(req, global_http_x_forwarded_proto)) != Qnil &&
267 RSTRING_LEN(temp) == 5 &&
268 !memcmp("https", RSTRING_PTR(temp), 5))
269 server_port = global_port_443;
270 else
271 temp = global_http;
272 rb_hash_aset(req, global_rack_url_scheme, temp);
274 /* parse and set the SERVER_NAME and SERVER_PORT variables */
275 if ((temp = rb_hash_aref(req, global_http_host)) != Qnil) {
276 char *colon = memchr(RSTRING_PTR(temp), ':', RSTRING_LEN(temp));
277 if (colon) {
278 server_name = rb_str_substr(temp, 0, colon - RSTRING_PTR(temp));
279 server_port = rb_str_substr(temp, colon - RSTRING_PTR(temp)+1,
280 RSTRING_LEN(temp));
281 } else {
282 server_name = temp;
285 rb_hash_aset(req, global_server_name, server_name);
286 rb_hash_aset(req, global_server_port, server_port);
288 /* grab the initial body and stuff it into the hash */
289 rb_hash_aset(req, sym_http_body, rb_str_new(at, length));
290 rb_hash_aset(req, global_server_protocol, global_server_protocol_value);
293 static void HttpParser_free(void *data) {
294 TRACE();
296 if(data) {
297 free(data);
302 static VALUE HttpParser_alloc(VALUE klass)
304 VALUE obj;
305 http_parser *hp = ALLOC_N(http_parser, 1);
306 TRACE();
307 hp->http_field = http_field;
308 hp->request_method = request_method;
309 hp->request_uri = request_uri;
310 hp->fragment = fragment;
311 hp->request_path = request_path;
312 hp->query_string = query_string;
313 hp->http_version = http_version;
314 hp->header_done = header_done;
315 http_parser_init(hp);
317 obj = Data_Wrap_Struct(klass, NULL, HttpParser_free, hp);
319 return obj;
324 * call-seq:
325 * parser.new -> parser
327 * Creates a new parser.
329 static VALUE HttpParser_init(VALUE self)
331 http_parser *http = NULL;
332 DATA_GET(self, http_parser, http);
333 http_parser_init(http);
335 return self;
340 * call-seq:
341 * parser.reset -> nil
343 * Resets the parser to it's initial state so that you can reuse it
344 * rather than making new ones.
346 static VALUE HttpParser_reset(VALUE self)
348 http_parser *http = NULL;
349 DATA_GET(self, http_parser, http);
350 http_parser_init(http);
352 return Qnil;
357 * call-seq:
358 * parser.execute(req_hash, data) -> true/false
360 * Takes a Hash and a String of data, parses the String of data filling
361 * in the Hash returning a boolean to indicate whether or not parsing
362 * is finished.
364 * This function now throws an exception when there is a parsing error.
365 * This makes the logic for working with the parser much easier. You
366 * will need to wrap the parser with an exception handling block.
369 static VALUE HttpParser_execute(VALUE self, VALUE req_hash, VALUE data)
371 http_parser *http;
372 char *dptr = RSTRING_PTR(data);
373 long dlen = RSTRING_LEN(data);
375 DATA_GET(self, http_parser, http);
377 if (http->nread < dlen) {
378 http->data = (void *)req_hash;
379 http_parser_execute(http, dptr, dlen);
381 VALIDATE_MAX_LENGTH(http->nread, HEADER);
383 if (!http_parser_has_error(http))
384 return http_parser_is_finished(http) ? Qtrue : Qfalse;
386 rb_raise(eHttpParserError, "Invalid HTTP format, parsing fails.");
388 rb_raise(eHttpParserError, "Requested start is after data buffer end.");
391 void Init_http11()
394 mUnicorn = rb_define_module("Unicorn");
396 DEF_GLOBAL(rack_url_scheme, "rack.url_scheme");
397 DEF_GLOBAL(request_method, "REQUEST_METHOD");
398 DEF_GLOBAL(request_uri, "REQUEST_URI");
399 DEF_GLOBAL(fragment, "FRAGMENT");
400 DEF_GLOBAL(query_string, "QUERY_STRING");
401 DEF_GLOBAL(http_version, "HTTP_VERSION");
402 DEF_GLOBAL(request_path, "REQUEST_PATH");
403 DEF_GLOBAL(path_info, "PATH_INFO");
404 DEF_GLOBAL(server_name, "SERVER_NAME");
405 DEF_GLOBAL(server_port, "SERVER_PORT");
406 DEF_GLOBAL(server_protocol, "SERVER_PROTOCOL");
407 DEF_GLOBAL(server_protocol_value, "HTTP/1.1");
408 DEF_GLOBAL(http_host, "HTTP_HOST");
409 DEF_GLOBAL(http_x_forwarded_proto, "HTTP_X_FORWARDED_PROTO");
410 DEF_GLOBAL(port_80, "80");
411 DEF_GLOBAL(port_443, "443");
412 DEF_GLOBAL(localhost, "localhost");
413 DEF_GLOBAL(http, "http");
415 eHttpParserError = rb_define_class_under(mUnicorn, "HttpParserError", rb_eIOError);
417 cHttpParser = rb_define_class_under(mUnicorn, "HttpParser", rb_cObject);
418 rb_define_alloc_func(cHttpParser, HttpParser_alloc);
419 rb_define_method(cHttpParser, "initialize", HttpParser_init,0);
420 rb_define_method(cHttpParser, "reset", HttpParser_reset,0);
421 rb_define_method(cHttpParser, "execute", HttpParser_execute,2);
422 sym_http_body = ID2SYM(rb_intern("http_body"));
423 init_common_fields();