-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.c
More file actions
240 lines (212 loc) · 6.47 KB
/
request.c
File metadata and controls
240 lines (212 loc) · 6.47 KB
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
/*
* This file is part of gem.
*
* Copyright (C) 2025 William Clark
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "request.h"
#include "url.h"
extern struct gem_config cfg;
#define STATE_SCHEME 0
#define STATE_DOMAIN 1
#define STATE_PORT 2
#define STATE_PATH 3
/* start by checking that the request string ends with \r\n
if it does, reduce its length
decompose a URI into its (relevant) constituent parts
scheme://authority/path
authority is domain followed by an optional port
ie http://example.com
http://example.com:1337
http://example.com:1337/cool/picture.png
->
--> scheme: http
--> domain: example.com
--> port: 1337 ("" if unspecified)
--> path: /cool/picture.png
throw away request if error != 0
*/
void request_parse(const char *uri, struct gem_uri *u) {
char request[1024 + 1] = {0};
char buffer[DECODER_BUFSIZ] = {0};
int bufidx = 0;
int state = STATE_SCHEME;
int i = 0;
char *p;
if (!uri || !u) {
return;
}
if ((!url_decode(uri, request, 1024)) != 0) {
u->error |= REQUEST_ERR_TERM;
printf("error decoding url: %s\n", uri);
return;
}
/* request does not end with \r\n, abort .. */
if (strcmp("\r\n", &request[strlen(request) - 2])) {
u->error |= REQUEST_ERR_TERM;
return;
}
p = request;
while (*p++) {
if (*p == '\r' || *p == '\n') {
*p = '\0';
break;
}
}
while (request[i]) {
START:
switch (state) {
case STATE_SCHEME:
if (bufidx >= REQUEST_MAX_SCHEME) {
u->error |= REQUEST_ERR_SCHEME;
return;
}
if (request[i] == ':') {
state = STATE_DOMAIN;
/* I have a feeling this could crash */
if (!(request[i + 1] == request[i + 2] && request[i + 2] == '/')) {
u->error |= REQUEST_ERR_SCHEME;
return;
}
i += 3;
strcpy(u->scheme, buffer);
memset(buffer, 0, DECODER_BUFSIZ);
bufidx = 0;
goto START;
}
break;
case STATE_DOMAIN:
if (bufidx >= REQUEST_MAX_DOMAIN) {
u->error |= REQUEST_ERR_DOMAIN;
return;
}
if (request[i] == ':') {
state = STATE_PORT;
i += 1;
strcpy(u->domain, buffer);
memset(buffer, 0, DECODER_BUFSIZ);
bufidx = 0;
goto START;
}
if (request[i] == '/') {
state = STATE_PATH;
strcpy(u->domain, buffer);
memset(buffer, 0, DECODER_BUFSIZ);
bufidx = 0;
goto START;
}
break;
case STATE_PORT:
if (bufidx >= REQUEST_MAX_PORT) {
u->error |= REQUEST_ERR_PORT;
return;
}
if (request[i] == '/') {
state = STATE_PATH;
strcpy(u->port, buffer);
memset(buffer, 0, DECODER_BUFSIZ);
bufidx = 0;
goto START;
}
break;
case STATE_PATH:
if (bufidx >= REQUEST_MAX_PATH) {
u->error |= REQUEST_ERR_PATH;
return;
}
if (request[i] == '?') {
strcpy(u->path, buffer);
memset(buffer, 0, DECODER_BUFSIZ);
bufidx = 0;
return;
}
break;
}
buffer[bufidx++] = request[i];
i++;
}
/* reading the URI can terminate in the states domain, port or path
this does not change the state previously set */
switch (state) {
case STATE_DOMAIN:
if (bufidx >= REQUEST_MAX_DOMAIN) {
u->error |= REQUEST_ERR_DOMAIN;
return;
}
strcpy(u->domain, buffer);
break;
case STATE_PORT:
if (bufidx >= REQUEST_MAX_PORT) {
u->error |= REQUEST_ERR_PORT;
return;
}
strcpy(u->port, buffer);
break;
case STATE_PATH:
if (bufidx >= REQUEST_MAX_PATH) {
u->error |= REQUEST_ERR_PATH;
return;
}
strcpy(u->path, buffer);
break;
}
/* scheme should never be empty */
if (!strlen(u->scheme)) u->error |= REQUEST_ERR_SCHEME;
/* domain should never be empty */
if (!strlen(u->domain)) u->error |= REQUEST_ERR_DOMAIN;
}
/* check path for "./" and "../" and normalize empty paths to "/" */
/* set the error field accordingly */
void request_validate_uri(struct gem_uri *u) {
if (!u) {
return;
}
if (strstr(u->path, "../") || strstr(u->path, "./")) {
u->error |= REQUEST_ERR_PATH;
return;
}
if (!strlen(u->path)) {
strncpy(u->path, "/", REQUEST_MAX_PATH - 1);
u->path[REQUEST_MAX_PATH - 1] = '\0';
}
/* Only allow the scheme to be "gemini" */
if (memcmp("gemini", u->scheme, sizeof("gemini") - 1) || u->scheme[sizeof("gemini") - 1] != '\0') {
u->error |= REQUEST_ERR_WRONG_SCHEME;
return;
}
/* only allow the hostname if diffhost is not enabled */
if (!cfg.diffhost) {
if (strncmp(cfg.hostname, u->domain, REQUEST_MAX_DOMAIN)) {
u->error |= REQUEST_ERR_WRONG_DOMAIN;
return;
}
}
if (strlen(u->port) > 0 && atoi(u->port) != cfg.port) {
u->error |= REQUEST_ERR_PORT;
return;
}
}
void request_print_uri(struct gem_uri *u) {
printf("scheme: %s\n"
"domain: %s\n"
"port: %s\n"
"path: %s\n"
"error: %d\n\n",
u->scheme, u->domain, u->port, u->path, u->error);
}