2024-08-15 23:12:06 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2024-09-04 09:04:08 +00:00
|
|
|
#include "parslib.h"
|
2024-09-02 22:03:32 +00:00
|
|
|
#include "streecmp/streecmp.h"
|
|
|
|
|
2024-09-03 19:07:52 +00:00
|
|
|
extern char *methods;
|
2024-09-04 07:06:42 +00:00
|
|
|
extern char *headers;
|
|
|
|
|
|
|
|
static struct nod *method_tree = NULL;
|
|
|
|
static struct nod *header_tree = NULL;
|
|
|
|
|
2024-09-04 10:16:40 +00:00
|
|
|
static int stoin(char *str, int len, int *out) {
|
|
|
|
int ret = 0;
|
|
|
|
int place = 1;
|
|
|
|
for (char *chr = str+len; chr >= str; chr--) {
|
|
|
|
if (chr == str) {
|
|
|
|
if (*ch == '+') {
|
|
|
|
goto _proceed;
|
|
|
|
}
|
|
|
|
if (*ch == '-') {
|
|
|
|
goto _proceed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*chr >= '0' && *ch <= '9') {
|
|
|
|
goto _proceed;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
_proceed:
|
|
|
|
|
|
|
|
if (*chr == '-') {
|
|
|
|
ret = -ret;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (*chr == '+') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int number = *chr-'0';
|
|
|
|
ret += number * place;
|
|
|
|
place *= 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out = ret;
|
|
|
|
}
|
|
|
|
|
2024-09-04 09:04:08 +00:00
|
|
|
void printfpars(struct httpars *pars) {
|
2024-09-04 07:06:42 +00:00
|
|
|
fprintf(stderr, "\tstats:\n"
|
|
|
|
"\t\tmethod\t: %d\n"
|
|
|
|
"\t\turi\t: %.*s\n"
|
|
|
|
"\t\tver\t: %.*s\n",
|
|
|
|
pars->titl.method,
|
|
|
|
pars->titl.uri.len, pars->titl.uri.er,
|
|
|
|
pars->titl.ver.len, pars->titl.ver.er
|
|
|
|
);
|
|
|
|
|
|
|
|
fprintf(stdout, "\theaders:\n");
|
|
|
|
for (int i = 0; i < header_count; i++) {
|
|
|
|
struct point *pnt = &pars->hentries[i];
|
|
|
|
if (!pnt->er) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stdout, "\t\t%d\t: %.*s\n", i, pnt->len, pnt->er);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int initres(void) {
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
header_tree = allocnod();
|
|
|
|
if (!header_tree) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
method_tree = allocnod();
|
|
|
|
if (!method_tree) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
ret = gentree(header_tree, headers, NULL);
|
|
|
|
if (ret < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-09-02 22:03:32 +00:00
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
ret = gentree(method_tree, methods, NULL);
|
|
|
|
if (ret < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fretres(void) {
|
|
|
|
free(method_tree);
|
|
|
|
free(header_tree);
|
|
|
|
}
|
|
|
|
|
2024-09-04 07:16:55 +00:00
|
|
|
int readlin(char **buff, char **buff_lim) {
|
2024-08-15 23:12:06 +00:00
|
|
|
int diff = 0;
|
2024-09-04 07:06:42 +00:00
|
|
|
if ((*buff) >= (*buff_lim)) {
|
2024-09-02 22:03:32 +00:00
|
|
|
return diff;
|
|
|
|
}
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-02 22:03:32 +00:00
|
|
|
int ret = 0;
|
2024-09-04 07:06:42 +00:00
|
|
|
char *match = strstr(*buff, "\r\n");
|
2024-09-02 22:03:32 +00:00
|
|
|
if (match) {
|
2024-09-04 07:06:42 +00:00
|
|
|
ret = match-(*buff);
|
|
|
|
*buff += 2;
|
2024-09-02 22:03:32 +00:00
|
|
|
} else {
|
2024-09-04 07:06:42 +00:00
|
|
|
ret = (*buff_lim)-(*buff);
|
2024-09-02 22:03:32 +00:00
|
|
|
}
|
2024-09-04 07:06:42 +00:00
|
|
|
*buff += ret;
|
2024-09-02 22:03:32 +00:00
|
|
|
return ret;
|
2024-08-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
int parshfield(char *offset, int len, struct point *hentries) {
|
2024-09-03 19:51:27 +00:00
|
|
|
int key = 0;
|
2024-09-02 22:03:32 +00:00
|
|
|
int ret = 0;
|
2024-09-03 19:51:27 +00:00
|
|
|
int diff = 0;
|
|
|
|
|
|
|
|
char *cursor = offset;
|
|
|
|
char *cursor_lim = offset+len;
|
|
|
|
|
|
|
|
// header title
|
2024-09-03 20:09:09 +00:00
|
|
|
char *htitle_lim = strchr(cursor, ':');
|
2024-09-03 19:51:27 +00:00
|
|
|
if (!htitle_lim) {
|
2024-09-02 22:03:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2024-09-03 19:51:27 +00:00
|
|
|
if (htitle_lim > cursor_lim) {
|
2024-09-02 22:03:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2024-09-03 19:51:27 +00:00
|
|
|
diff = htitle_lim-cursor;
|
|
|
|
ret = streencmp(header_tree, cursor, diff);
|
|
|
|
if (!ret) {
|
2024-09-02 22:03:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2024-09-03 19:51:27 +00:00
|
|
|
key = ret;
|
|
|
|
cursor += diff;
|
|
|
|
|
|
|
|
// white space and seperators
|
2024-09-03 20:09:09 +00:00
|
|
|
_loop:
|
|
|
|
if (cursor > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (*cursor == ':') {
|
|
|
|
cursor++;
|
|
|
|
goto _loop;
|
|
|
|
}
|
|
|
|
if (*cursor == ' ') {
|
2024-09-03 19:51:27 +00:00
|
|
|
cursor++;
|
2024-09-03 20:09:09 +00:00
|
|
|
goto _loop;
|
2024-09-03 19:51:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// header value
|
|
|
|
diff = cursor_lim-cursor;
|
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
hentries[key].er = cursor;
|
|
|
|
hentries[key].len = diff;
|
2024-09-02 22:03:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-09-04 10:16:40 +00:00
|
|
|
int parestitl(char *offset, int len, struct httitleres *titl) {
|
|
|
|
int ret = 0;
|
|
|
|
int diff = 0;
|
|
|
|
char *cursor = offset;
|
|
|
|
char *cursor_lim = cursor+len;
|
|
|
|
|
|
|
|
// ver
|
|
|
|
char *ver_lim = strchr(cursor, ' ');
|
|
|
|
if (!ver_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (ver_lim > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff = ver_lim-cursor;
|
|
|
|
titl->ver.er = cursor;
|
|
|
|
titl->ver.len = diff;
|
|
|
|
|
|
|
|
cursor += diff;
|
|
|
|
|
|
|
|
// white space
|
|
|
|
_loop1:
|
|
|
|
if (cursor > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (*cursor == ' ') {
|
|
|
|
cursor++;
|
|
|
|
goto _loop1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// code
|
|
|
|
char *code_lim = strchr(cursor, ' ');
|
|
|
|
if (!code_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (code_lim > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff = code_lim-cursor;
|
|
|
|
int code;
|
|
|
|
ret = stoin(cursor, diff, &code);
|
|
|
|
if (ret < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
titl->code = code;
|
|
|
|
cursor += diff;
|
|
|
|
|
|
|
|
// white space
|
|
|
|
_loop2:
|
|
|
|
if (cursor > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (*cursor == ' ') {
|
|
|
|
cursor++;
|
|
|
|
goto _loop2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// status text
|
|
|
|
diff = cursor_lim-cursor;
|
|
|
|
titl->stxt.er = cursor;
|
|
|
|
titl->stxt.len = diff;
|
|
|
|
|
|
|
|
cursor += diff;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pareqtitl(char *offset, int len, struct httitlereq *titl) {
|
2024-09-03 19:07:52 +00:00
|
|
|
int ret = 0;
|
|
|
|
int diff = 0;
|
|
|
|
char *cursor = offset;
|
|
|
|
char *cursor_lim = cursor+len;
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-03 19:07:52 +00:00
|
|
|
// method
|
2024-09-04 10:16:40 +00:00
|
|
|
char *method_lim = strchr(cursor, ' ');
|
2024-09-03 19:07:52 +00:00
|
|
|
if (!method_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-09-03 20:09:09 +00:00
|
|
|
if (method_lim > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-03 19:07:52 +00:00
|
|
|
diff = method_lim-cursor;
|
|
|
|
ret = streencmp(method_tree, cursor, diff);
|
|
|
|
if (ret == 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
titl->method = ret;
|
2024-09-03 19:07:52 +00:00
|
|
|
cursor += diff;
|
|
|
|
|
|
|
|
// white space
|
2024-09-03 20:09:09 +00:00
|
|
|
_loop1:
|
|
|
|
if (cursor > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (*cursor == ' ') {
|
2024-09-03 19:07:52 +00:00
|
|
|
cursor++;
|
2024-09-03 20:09:09 +00:00
|
|
|
goto _loop1;
|
2024-09-03 19:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// uri
|
|
|
|
char *uri_lim = strchr(cursor, ' ');
|
|
|
|
if (!uri_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-09-03 20:09:09 +00:00
|
|
|
if (uri_lim > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
2024-09-03 19:07:52 +00:00
|
|
|
|
|
|
|
diff = uri_lim-cursor;
|
2024-09-04 07:06:42 +00:00
|
|
|
titl->uri.er = cursor;
|
|
|
|
titl->uri.len = diff;
|
2024-09-03 19:07:52 +00:00
|
|
|
|
|
|
|
cursor += diff;
|
|
|
|
|
|
|
|
// white space
|
2024-09-03 20:09:09 +00:00
|
|
|
_loop2:
|
|
|
|
if (cursor > cursor_lim) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (*cursor == ' ') {
|
2024-09-03 19:07:52 +00:00
|
|
|
cursor++;
|
2024-09-03 20:09:09 +00:00
|
|
|
goto _loop2;
|
2024-08-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2024-09-03 19:07:52 +00:00
|
|
|
// ver
|
|
|
|
diff = cursor_lim-cursor;
|
2024-09-04 07:06:42 +00:00
|
|
|
titl->ver.er = cursor;
|
|
|
|
titl->ver.len = diff;
|
2024-09-03 19:07:52 +00:00
|
|
|
|
|
|
|
cursor += diff;
|
|
|
|
|
2024-08-15 23:12:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
int parsme(char *buff, struct httpars *pars) {
|
2024-08-15 23:12:06 +00:00
|
|
|
int ret;
|
2024-09-04 07:06:42 +00:00
|
|
|
char *buff_lim = buff+strlen(buff);
|
2024-08-15 23:12:06 +00:00
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
char *title_offset = buff;
|
2024-09-04 07:16:55 +00:00
|
|
|
int title_len = readlin(&buff, &buff_lim);
|
2024-09-04 07:06:42 +00:00
|
|
|
if ((ret = parstitle(title_offset, title_len, &pars->titl)) < 0) {
|
2024-08-15 23:12:06 +00:00
|
|
|
fprintf(stderr, "Failed parsing title\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2024-09-02 22:03:32 +00:00
|
|
|
for (int bound = 0; bound < MAX_BOUND; bound++) {
|
2024-09-04 07:06:42 +00:00
|
|
|
char *header_offset = buff;
|
2024-09-04 07:16:55 +00:00
|
|
|
int header_len = readlin(&buff, &buff_lim);
|
2024-09-02 22:03:32 +00:00
|
|
|
char *header_limit = header_offset+header_len;
|
|
|
|
|
|
|
|
// IF END OF MESSAGE
|
|
|
|
if (!header_len) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-09-04 07:06:42 +00:00
|
|
|
if ((ret = parshfield(header_offset,
|
|
|
|
header_len,
|
|
|
|
pars->hentries)) < 0) {
|
2024-09-02 22:03:32 +00:00
|
|
|
fprintf(stderr, "Failed parsing header\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-15 23:12:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|