2
0
Fork 0
lighttpd2/src/main/http_request_parser.rl

182 lines
6.0 KiB
Plaintext
Raw Normal View History

2008-06-30 14:24:29 +00:00
#include <lighttpd/base.h>
#include <lighttpd/http_request_parser.h>
2008-06-30 14:24:29 +00:00
/** Machine **/
2009-07-09 20:17:24 +00:00
#define _getString(M, FPC) (li_chunk_extract(vr, ctx->M, GETMARK(FPC)))
#define getString(FPC) _getString(mark, FPC)
2009-07-09 20:17:24 +00:00
#define _getStringTo(M, FPC, s) (li_chunk_extract_to(vr, ctx->M, GETMARK(FPC), s))
2008-08-04 22:25:42 +00:00
#define getStringTo(FPC, s) _getStringTo(mark, FPC, s)
2008-06-30 14:24:29 +00:00
%%{
2009-07-09 20:17:24 +00:00
machine li_http_request_parser;
variable cs ctx->chunk_ctx.cs;
action mark { ctx->mark = GETMARK(fpc); }
action done { fbreak; }
2008-08-04 22:25:42 +00:00
action method { getStringTo(fpc, ctx->request->http_method_str); }
action uri { getStringTo(fpc, ctx->request->uri.raw); }
2008-08-04 22:25:42 +00:00
action header_key {
getStringTo(fpc, ctx->h_key);
g_string_truncate(ctx->h_value, 0);
}
action header_value {
getStringTo(fpc, ctx->h_value);
/* Remove CRLF */
if (ctx->h_value->len > 2) {
g_string_truncate(ctx->h_value, ctx->h_value->len - 2);
} else {
g_string_truncate(ctx->h_value, 0);
}
2008-08-04 22:25:42 +00:00
}
action header {
2009-07-09 20:17:24 +00:00
li_http_header_insert(ctx->request->headers, GSTR_LEN(ctx->h_key), GSTR_LEN(ctx->h_value));
2008-08-04 22:25:42 +00:00
}
# RFC 2616
OCTET = any;
CHAR = ascii;
UPALPHA = upper;
LOALPHA = lower;
ALPHA = alpha;
DIGIT = digit;
CTL = ( 0 .. 31 | 127 );
CR = '\r';
LF = '\n';
SP = ' ';
HT = '\t';
DQUOTE = '"';
CRLF = CR LF;
LWS = CRLF? (SP | HT)+; # linear white space
TEXT = (OCTET - CTL) | LWS;
HEX = [a-fA-F0-9];
Separators = [()<>@,;:\\\"/\[\]?={}] | SP | HT;
Token = (OCTET - Separators - CTL)+;
# original definition
# Comment = "(" ( CText | Quoted_Pair | Comment )* ")";
# CText = TEXT - [()];
Quoted_Pair = "\\" CHAR;
Comment = ( TEXT | Quoted_Pair )*;
QDText = TEXT - DQUOTE;
Quoted_String = DQUOTE ( QDText | Quoted_Pair )* DQUOTE;
2008-08-04 22:25:42 +00:00
HTTP_Version = (
"HTTP/1.0" %{ ctx->request->http_version = LI_HTTP_VERSION_1_0; }
| "HTTP/1.1" %{ ctx->request->http_version = LI_HTTP_VERSION_1_1; }
| "HTTP" "/" DIGIT+ "." DIGIT+ ) >{ ctx->request->http_version = LI_HTTP_VERSION_UNSET; };
#HTTP_URL = "http:" "//" Host ( ":" Port )? ( abs_path ( "?" query )? )?;
# RFC 2396
2008-06-30 14:24:29 +00:00
Mark = [\-_!~*\'()];
Unreserved = alnum | Mark;
Escaped = "%" HEX HEX;
2008-06-30 14:24:29 +00:00
PChar = Unreserved | Escaped | [:@&=+$,];
Segment = PChar* ( ";" PChar* )*;
Path_Segments = Segment ("/" Segment)*;
Abs_Path = "/" Path_Segments;
2008-06-30 14:24:29 +00:00
2008-08-04 22:25:42 +00:00
Method = (
"GET" %{ ctx->request->http_method = LI_HTTP_METHOD_GET; }
| "POST" %{ ctx->request->http_method = LI_HTTP_METHOD_POST; }
| "HEAD" %{ ctx->request->http_method = LI_HTTP_METHOD_HEAD; }
| "OPTIONS" %{ ctx->request->http_method = LI_HTTP_METHOD_OPTIONS; }
| "PROPFIND" %{ ctx->request->http_method = LI_HTTP_METHOD_PROPFIND; }
| "MKCOL" %{ ctx->request->http_method = LI_HTTP_METHOD_MKCOL; }
| "PUT" %{ ctx->request->http_method = LI_HTTP_METHOD_PUT; }
| "DELETE" %{ ctx->request->http_method = LI_HTTP_METHOD_DELETE; }
| "COPY" %{ ctx->request->http_method = LI_HTTP_METHOD_COPY; }
| "MOVE" %{ ctx->request->http_method = LI_HTTP_METHOD_MOVE; }
| "PROPPATCH" %{ ctx->request->http_method = LI_HTTP_METHOD_PROPPATCH; }
| "REPORT" %{ ctx->request->http_method = LI_HTTP_METHOD_REPORT; }
| "CHKECOUT" %{ ctx->request->http_method = LI_HTTP_METHOD_CHECKOUT; }
| "CHECKIN" %{ ctx->request->http_method = LI_HTTP_METHOD_CHECKIN; }
| "VERSION-CONTROL" %{ ctx->request->http_method = LI_HTTP_METHOD_VERSION_CONTROL; }
| "UNCHECKOUT" %{ ctx->request->http_method = LI_HTTP_METHOD_UNCHECKOUT; }
| "MKACTIVITY" %{ ctx->request->http_method = LI_HTTP_METHOD_MKACTIVITY; }
| "MERGE" %{ ctx->request->http_method = LI_HTTP_METHOD_MERGE; }
| "LOCK" %{ ctx->request->http_method = LI_HTTP_METHOD_LOCK; }
| "UNLOCK" %{ ctx->request->http_method = LI_HTTP_METHOD_UNLOCK; }
| "LABEL" %{ ctx->request->http_method = LI_HTTP_METHOD_LABEL; }
| "CONNECT" %{ ctx->request->http_method = LI_HTTP_METHOD_CONNECT; }
| Token ) >mark >{ ctx->request->http_method = LI_HTTP_METHOD_UNSET; } %method;
2008-08-04 22:25:42 +00:00
Request_URI = ("*" | ( any - CTL - SP )+) >mark %uri;
Request_Line = Method " " Request_URI " " HTTP_Version CRLF;
2009-07-17 10:18:52 +00:00
# Field_Content = ( TEXT+ | ( Token | Separators | Quoted_String )+ );
Field_Content = ( (OCTET - CTL - DQUOTE) | SP | HT | Quoted_String )+;
Field_Value = (SP | HT)* <: ( ( Field_Content | LWS )* CRLF ) >mark %header_value;
Message_Header = Token >mark %header_key ":" Field_Value % header;
2009-07-17 10:18:52 +00:00
main := (CRLF)* Request_Line (Message_Header)* CRLF @ done;
2008-06-30 14:24:29 +00:00
}%%
%% write data;
2009-07-09 20:17:24 +00:00
static int li_http_request_parser_has_error(liHttpRequestCtx *ctx) {
return ctx->chunk_ctx.cs == li_http_request_parser_error;
}
2008-06-30 14:24:29 +00:00
2009-07-09 20:17:24 +00:00
static int li_http_request_parser_is_finished(liHttpRequestCtx *ctx) {
return ctx->chunk_ctx.cs >= li_http_request_parser_first_final;
}
2008-06-30 14:24:29 +00:00
2009-07-09 20:17:24 +00:00
void li_http_request_parser_init(liHttpRequestCtx* ctx, liRequest *req, liChunkQueue *cq) {
li_chunk_parser_init(&ctx->chunk_ctx, cq);
ctx->request = req;
2008-08-04 22:25:42 +00:00
ctx->h_key = g_string_sized_new(0);
ctx->h_value = g_string_sized_new(0);
2008-08-05 15:08:32 +00:00
%% write init;
2008-08-04 22:25:42 +00:00
}
2009-07-09 20:17:24 +00:00
void li_http_request_parser_reset(liHttpRequestCtx* ctx) {
li_chunk_parser_reset(&ctx->chunk_ctx);
2008-08-05 15:08:32 +00:00
g_string_truncate(ctx->h_key, 0);
g_string_truncate(ctx->h_value, 0);
2008-08-04 22:25:42 +00:00
2008-08-05 15:08:32 +00:00
%% write init;
}
2009-07-09 20:17:24 +00:00
void li_http_request_parser_clear(liHttpRequestCtx *ctx) {
2008-08-04 22:25:42 +00:00
g_string_free(ctx->h_key, TRUE);
g_string_free(ctx->h_value, TRUE);
}
2008-06-30 14:24:29 +00:00
2009-07-09 20:17:24 +00:00
liHandlerResult li_http_request_parse(liVRequest *vr, liHttpRequestCtx *ctx) {
liHandlerResult res;
2009-07-09 20:17:24 +00:00
if (li_http_request_parser_is_finished(ctx)) return LI_HANDLER_GO_ON;
2008-08-04 22:25:42 +00:00
2009-07-09 20:17:24 +00:00
if (LI_HANDLER_GO_ON != (res = li_chunk_parser_prepare(&ctx->chunk_ctx))) return res;
2009-07-09 20:17:24 +00:00
while (!li_http_request_parser_has_error(ctx) && !li_http_request_parser_is_finished(ctx)) {
char *p, *pe;
2009-07-09 20:17:24 +00:00
if (LI_HANDLER_GO_ON != (res = li_chunk_parser_next(vr, &ctx->chunk_ctx, &p, &pe))) return res;
2008-06-30 14:24:29 +00:00
%% write exec;
2009-07-09 20:17:24 +00:00
li_chunk_parser_done(&ctx->chunk_ctx, p - ctx->chunk_ctx.buf);
2008-06-30 14:24:29 +00:00
}
2009-07-09 20:17:24 +00:00
if (li_http_request_parser_has_error(ctx)) return LI_HANDLER_ERROR;
if (li_http_request_parser_is_finished(ctx)) {
li_chunkqueue_skip(ctx->chunk_ctx.cq, ctx->chunk_ctx.bytes_in);
return LI_HANDLER_GO_ON;
2008-08-04 22:25:42 +00:00
}
return LI_HANDLER_ERROR;
2008-06-30 14:24:29 +00:00
}