-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.c
452 lines (339 loc) · 8.86 KB
/
http.c
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
446
447
448
449
450
451
452
#include <stdio.h>
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <libgen.h>
#include "server.h"
#include "http.h"
#include "config.h"
#include "log.h"
#define MODULE_NAME "http"
enum resource_type_e
{
RESOURCE_TYPE_TEXT_HTTP,
RESOURCE_TYPE_TEXT_XML,
RESOURCE_TYPE_TEXT_JSON,
RESOURCE_TYPE_FILE,
RESOURCE_TYPE_INVALID = -1
};
struct http_req_s
{
char method[8];
char path[CONFIG_MAX_PATH_SIZE];
enum resource_type_e type;
int keepalive;
};
struct http_resp_s
{
char status[128];
char header[128];
FILE *file;
};
static int http_send_responce(void *connctx, struct http_resp_s *resp)
{
char buf[CONFIG_OUTPUT_BUFF_LEN] = {0};
int sendlen = 0;
int readlen = 0;
/* Check output arguments */
if(resp == NULL)
{
LOGERR("Invalid argument");
return -EINVAL;
}
/* Copy status to output buffer */
strcpy(buf, resp->status);
sendlen += strlen(resp->status);
/* Copy headers to output bufer */
strcpy(buf + sendlen, resp->header);
sendlen += strlen(resp->header);
/* Send status and header */
sendlen = server_send(connctx, buf, sendlen);
if(sendlen < 0)
{
LOGERR("Fail to send status and header Result %d", sendlen);
return sendlen;
}
/* Send file if necessary */
if(resp->file != NULL)
{
while((readlen = fread(buf, sizeof(char), CONFIG_OUTPUT_BUFF_LEN, resp->file)) != 0)
{
sendlen = server_send(connctx, buf, readlen);
if(sendlen < 0)
{
LOGERR("Fail to send file. Result %d", sendlen);
return sendlen;
}
}
}
return 0;
}
static int http_send_not_found(void *connctx)
{
int result = 0;
struct http_resp_s resp =
{
.status = "HTTP/1.1 404 Not Found\n\n",
.header = "Not Found\n\n",
.file = NULL
};
LOGINF("404: page not found");
/* Send responce header */
result = http_send_responce(connctx, &resp);
if(result < 0)
{
LOGERR("Fail to send responce. Result: %d", result);
return result;
}
return 0;
}
static int http_send_not_implemented(void *connctx)
{
int result = 0;
struct http_resp_s resp =
{
.status = "HTTP/1.1 501 Not Implemented\n\n",
.header = "Not Implemented\n\n",
.file = NULL
};
LOGINF("501: not implemented");
/* Send responce header */
result = http_send_responce(connctx, &resp);
if(result < 0)
{
LOGERR("Fail to send responce. Result: %d", result);
return result;
}
return 0;
}
static int http_send_bad_request(void *connctx)
{
int result = 0;
struct http_resp_s resp =
{
.status = "HTTP/1.1 400 Bad Request\n\n",
.header = "Bad Request\n\n",
.file = NULL
};
LOGINF("400: bad request");
/* Send responce header */
result = http_send_responce(connctx, &resp);
if(result < 0)
{
LOGERR("Fail to send responce. Result: %d", result);
return result;
}
return 0;
}
static enum resource_type_e http_resource_type_get(char *filepath)
{
char *filebase = NULL;
char *extension = NULL;
enum resource_type_e type = RESOURCE_TYPE_INVALID;
char *dupfilepath = strdup(filepath);
filebase = strtok(dupfilepath, ".");
if(filebase == NULL)
{
LOGERR("Fail to parse filebase");
goto exit;
}
extension = strtok(NULL, ".");
if(extension == NULL)
{
LOGERR("Fail to parse extension");
goto exit;
}
if(strcmp(extension, "html") == 0)
{
type = RESOURCE_TYPE_TEXT_HTTP;
goto exit;
}
if(strcmp(extension, "xml") == 0)
{
type = RESOURCE_TYPE_TEXT_XML;
goto exit;
}
if(strcmp(extension, "json") == 0)
{
type = RESOURCE_TYPE_TEXT_JSON;
goto exit;
}
/* By default type is file */
type = RESOURCE_TYPE_FILE;
exit:
free(dupfilepath);
return type;
}
static int http_header_generate(struct http_req_s *req, struct http_resp_s *resp)
{
size_t offset = 0;
static const char text_html[] = "text/html";
static const char text_xml[] = "text/xml";
static const char text_json[] = "text/json";
static const char text_header_format[] = "Content-type: %s\n";
static const char file_header_format[] = "Content-Disposition: attachment; filename=%s\n";
static const char keepalive[] = "Connection: keep-alive\n";
if(req == NULL)
{
LOGERR("Invalid parametr");
return -EINVAL;
}
switch(req->type)
{
case RESOURCE_TYPE_TEXT_HTTP:
offset = sprintf(resp->header, text_header_format, text_html);
break;
case RESOURCE_TYPE_TEXT_XML:
offset = sprintf(resp->header, text_header_format, text_xml);
break;
case RESOURCE_TYPE_TEXT_JSON:
offset = sprintf(resp->header, text_header_format, text_json);
break;
default:
offset = sprintf(resp->header, file_header_format, req->path);
}
/// @todo: check for buffer overflow
/* Append keepalive */
if(req->keepalive > 0)
{
strcpy(resp->header + offset, keepalive);
offset += strlen(keepalive);
}
/* Append final /n */
strcpy(resp->header + offset, "\n");
return 0;
}
#if CONFIG_KEEPALIVE_ENABLE
static int http_keepalive_parse(char *buf, size_t len, struct http_req_s *req)
{
if(buf == NULL || req == NULL)
{
return -EINVAL;
}
req->keepalive = 0;
if(strstr(buf, "Connection: keep-alive") != NULL)
{
req->keepalive = 1;
}
return 0;
}
#endif
int http_request_parse(char *buf, size_t len, struct http_req_s *req)
{
int result = 0;
char *dupbuf = strdup(buf);
char *token = NULL;
if(dupbuf == NULL)
{
LOGERR("Fail to duplicate incoming buffer");
return -ENOMEM;
}
/* Get method */
token = strtok(dupbuf, " ");
if(token == NULL)
{
LOGERR("Fail to parse method");
result = -ENOMSG;
goto exit;
}
strcpy(req->method, token);
/* Get path */
token = strtok(NULL, " ");
if(token == NULL)
{
LOGERR("Fail to parse path");
result = -ENOMSG;
goto exit;
}
if(strlen(token) > CONFIG_MAX_PATH_SIZE)
{
LOGERR("Path is to big (%lu bytes)", strlen(token));
result = -ENOMEM;
goto exit;
}
strcpy(&req->path[1], token);
/* Add . at the begining of path to make it relative */
req->path[0] = '.';
/* Replase / with index.html */
if(strcmp(req->path, "./") == 0)
{
strcpy(req->path, "./index.html");
}
/* Check for ../ and ~/ sumbols in path */
if(strstr(req->path, "../") != NULL || strstr(req->path, "~/") != NULL)
{
LOGERR("Path conatins ../ or ~/");
result = -EINVAL;
goto exit;
}
/* Get resource type */
req->type = http_resource_type_get(basename(req->path));
if(RESOURCE_TYPE_INVALID == req->type)
{
LOGERR("Invalid resource type");
result = -EINVAL;
goto exit;
}
#if CONFIG_KEEPALIVE_ENABLE
result = http_keepalive_parse(buf, len, req);
#endif
exit:
free(dupbuf);
return result;
}
int http_handler(void *connctx, char *buf, size_t len)
{
int result = 0;
struct http_req_s req = {0};
struct http_resp_s resp = { .status = "HTTP/1.1 200 OK\n" };
result = http_request_parse(buf, len, &req);
if(result < 0)
{
LOGERR("Fail to parse request. Result: %d", result);
http_send_bad_request(connctx);
return result;
}
LOGINF("METHOD: %s", req.method);
LOGINF("PATH: %s", req.path);
LOGINF("KEEPALIFE: %d", req.keepalive);
/* Our server supports only GET method, so if not,
retuen 501 error then */
if(strcmp(req.method, "GET") != 0)
{
LOGERR("%s not implemented\r\n", req.method);
http_send_not_implemented(connctx);
return -ENOMSG;
}
/* Open the resource file */
resp.file = fopen(req.path, "r");
if(resp.file == NULL)
{
LOGERR("Fail to open %s", req.path);
/* send 404 */
http_send_not_found(connctx);
return -ENOENT;
}
/* Generate header */
result = http_header_generate(&req, &resp);
if(result < 0)
{
LOGERR("Fail to generate header. Result %d", result);
fclose(resp.file);
return -ENOMEM;
}
/* Send requested file */
result = http_send_responce(connctx, &resp);
if(result < 0)
{
LOGERR("Fail to send responce. Result %d", result);
fclose(resp.file);
return 0;
}
LOGINF("Request handled successfully");
#if CONFIG_KEEPALIVE_ENABLE
return req.keepalive;
#else
return 0;
#endif
}