-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp_parse.cpp
446 lines (375 loc) · 11.1 KB
/
http_parse.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
#include "http_request.h"
#include "http_parse.h"
#include "hz_error.h"
#include <errno.h>
#include <fstream>
#include "memory_pool.h"
extern allocator hz_alloc;
extern std::fstream log_file;
int http_parse_request_line(http_request *r) {
u_char ch, *p, *m;
size_t pi;
enum http_state{
sw_start = 0,
sw_method,
sw_spaces_before_uri,
sw_after_slash_in_uri,
sw_http,
sw_http_H,
sw_http_HT,
sw_http_HTT,
sw_http_HTTP,
sw_first_major_digit,
sw_major_digit,
sw_first_minor_digit,
sw_minor_digit,
sw_spaces_after_digit,
sw_almost_done
} state;
state = (http_state)r->state;
for (pi = r->pos; pi < r->last; pi++)
{
p = (u_char *)&r->buf[pi % MAX_BUF];
ch = *p;
switch (state)
{
/* HTTP methods: GET, HEAD, POST */
case sw_start:
r->request_start = p;
if (ch == CR || ch == LF)
{
break;
}
if ((ch < 'A' || ch > 'Z') && ch != '_')
{
return HTTP_PARSE_INVALID_METHOD;
}
state = sw_method;
break;
case sw_method:
if (ch == ' ')
{
r->method_end = p;
m = (u_char*)(r->request_start);
switch (p - m)
{
case 3:
if (str3_cmp(m, 'G', 'E', 'T', ' '))
{
r->method = HTTP_GET;
break;
}
break;
case 4:
if (str3_cmp(m, 'P', 'O', 'S', 'T'))
{
r->method = HTTP_POST;
break;
}
if (str3_cmp(m, 'H', 'E', 'A', 'D'))
{
r->method = HTTP_HEAD;
break;
}
break;
default:
r->method = HTTP_UNKNOWN;
break;
}
state = sw_spaces_before_uri;
break;
}
if ((ch < 'A' || ch > 'Z') && ch != '_')
{
return HTTP_PARSE_INVALID_METHOD;
}
break;
/* space* before URI */
case sw_spaces_before_uri:
if (ch == '/')
{
r->uri_start = p;
state = sw_after_slash_in_uri;
break;
}
switch (ch)
{
case ' ':
break;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
case sw_after_slash_in_uri:
switch (ch)
{
case ' ':
r->uri_end = p;
state = sw_http;
break;
default:
break;
}
break;
/* space+ after URI */
case sw_http:
switch (ch)
{
case ' ':
break;
case 'H':
state = sw_http_H;
break;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
case sw_http_H:
switch (ch)
{
case 'T':
state = sw_http_HT;
break;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
case sw_http_HT:
switch (ch)
{
case 'T':
state = sw_http_HTT;
break;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
case sw_http_HTT:
switch (ch)
{
case 'P':
state = sw_http_HTTP;
break;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
case sw_http_HTTP:
switch (ch)
{
case '/':
state = sw_first_major_digit;
break;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
/* first digit of major HTTP version */
case sw_first_major_digit:
if (ch < '1' || ch > '9')
{
return HTTP_PARSE_INVALID_REQUEST;
}
r->http_major = ch - '0';
state = sw_major_digit;
break;
/* major HTTP version or dot */
case sw_major_digit:
if (ch == '.')
{
state = sw_first_minor_digit;
break;
}
if (ch < '0' || ch > '9')
{
return HTTP_PARSE_INVALID_REQUEST;
}
r->http_major = r->http_major * 10 + ch - '0';
break;
/* first digit of minor HTTP version */
case sw_first_minor_digit:
if (ch < '0' || ch > '9')
{
return HTTP_PARSE_INVALID_REQUEST;
}
r->http_minor = ch - '0';
state = sw_minor_digit;
break;
/* minor HTTP version or end of request line */
case sw_minor_digit:
if (ch == CR)
{
state = sw_almost_done;
break;
}
if (ch == LF)
{
goto done;
}
if (ch == ' ')
{
state = sw_spaces_after_digit;
break;
}
if (ch < '0' || ch > '9')
{
return HTTP_PARSE_INVALID_REQUEST;
}
r->http_minor = r->http_minor * 10 + ch - '0';
break;
case sw_spaces_after_digit:
switch (ch)
{
case ' ':
break;
case CR:
state = sw_almost_done;
break;
case LF:
goto done;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
break;
/* end of request line */
case sw_almost_done:
r->request_end = p - 1;
switch (ch) {
case LF:
goto done;
default:
return HTTP_PARSE_INVALID_REQUEST;
}
}
}
r->pos = pi;
r->state = (int)state;
return EAGAIN;
done:
r->pos = pi + 1;
if (r->request_end == NULL)
{
r->request_end = p;
}
r->state = sw_start;
return SUCCESS;
}
int http_parse_request_body(http_request *r)
{
u_char ch, *p;
size_t pi;
enum parse_state{
sw_start = 0,
sw_key,
sw_spaces_before_colon,
sw_spaces_after_colon,
sw_value,
sw_cr,
sw_crlf,
sw_crlfcr
} state;
state = (parse_state)r->state;
http_heads *hd;
for (pi = r->pos; pi < r->last; pi++)
{
p = (u_char *)&r->buf[pi % MAX_BUF];
ch = *p;
switch (state)
{
case sw_start:
if (ch == CR || ch == LF)
{
break;
}
r->head_key_start = p;
state = sw_key;
break;
case sw_key:
if (ch == ' ')
{
r->head_key_end = p;
state = sw_spaces_before_colon;
break;
}
if (ch == ':') {
r->head_key_end = p;
state = sw_spaces_after_colon;
break;
}
break;
case sw_spaces_before_colon:
if (ch == ' ')
{
break;
} else if (ch == ':')
{
state = sw_spaces_after_colon;
break;
} else
{
return HTTP_PARSE_INVALID_HEADER;
}
case sw_spaces_after_colon:
if (ch == ' ')
{
break;
}
state = sw_value;
r->head_value_start = p;
break;
case sw_value:
if (ch == CR)
{
r->head_value_end = p;
state = sw_cr;
}
if (ch == LF)
{
r->head_value_end = p;
state = sw_crlf;
}
break;
case sw_cr:
if (ch == LF)
{
state = sw_crlf;
hd = (http_heads *)hz_alloc.mem_palloc(sizeof(http_heads));
hd->key_start = r->head_key_start;
hd->key_end = r->head_key_end;
hd->value_start = r->head_value_start;
hd->value_end = r->head_value_end;
list_add(&(hd->list), &(r->list));
break;
} else
{
return HTTP_PARSE_INVALID_HEADER;
}
case sw_crlf:
if (ch == CR)
{
state = sw_crlfcr;
} else
{
r->head_key_start = p;
state = sw_key;
}
break;
case sw_crlfcr:
switch (ch)
{
case LF:
goto done;
default:
return HTTP_PARSE_INVALID_HEADER;
}
break;
}
}
r->pos = pi;
r->state = (int)state;
return EAGAIN;
done:
r->pos = pi + 1;
r->state = sw_start;
return SUCCESS;
}