-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwaferapi.c
340 lines (300 loc) · 10.2 KB
/
waferapi.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
#include "wafer.h"
#include "waferapi.h"
/* Ver 0.0.5 Functions
* Parameters: request, format, (optional) variadargs
* Returns: the number of characters printed
*/
/*Internal functions don't use */
ssize_t writeLongString(int client, const char *longString, size_t len);
static void sendFileWithSelect(int client, int read_fd, struct stat stat_buf);
#ifndef __linux__
sendfile_wafer (int write_fd, int read_fd, off_t *offset,int remain);
#endif
char * getBufferSpace ();
/*End internal functions */
long resPrintf(Response * response, const char *format, ...)
{
dbgprintf("Flags %d API Flags% d response.status %d\n",response->flags,response->apiFlags,response->status);
if (!(response->apiFlags&API_FLAGS_HEADER_SENT)) {
if (!(response->apiFlags&API_FLAGS_DONT_SET_HEADER_BEFORE_SENDING)) {
response->apiFlags|=API_FLAGS_HEADER_SENT;
sendStatusOKHeadersTypeEncoding(response,"text/html",NULL);
} else {
/*sendHeadersResponse*/
}
}
/* initial buffer large enough for most cases, will resize if required */
char *buf = getBufferSpace();
int len;
va_list arg;
long done;
va_start(arg, format);
len = vsnprintf(buf, MAX_BUFFER_SIZE, format, arg);
va_end(arg);
if (len > MAX_BUFFER_SIZE) {
/* buffer size was not enough */
free(buf);
buf = malloc(len + 1);
if (buf == NULL) {
printf("Could not allocate memory.");
exit(EXIT_FAILURE);
}
va_start(arg, format);
vsnprintf(buf, len + 1, format, arg);
va_end(arg);
}
if (len < MAX_BUFFER_SIZE) {
done = (int)send(response->fd, buf, len, 0);
} else {
done = writeLongString(response->fd, buf, len);
}
free(buf);
return done;
}
/*Writes the given null-terminated string to the compressed file, excluding the terminating null character.
Returns the number of characters written, or -1 in case of error */
long resPuts(Response * response, const char *buffer)
{
if (!(response->apiFlags&API_FLAGS_HEADER_SENT)) {
if (!(response->apiFlags&API_FLAGS_DONT_SET_HEADER_BEFORE_SENDING)) {
response->apiFlags|=API_FLAGS_HEADER_SENT;
sendStatusOKHeadersTypeEncoding(response,"text/html",NULL);
} else {
/*sendHeadersResponse*/
}
}
return send(response->fd, buffer, strlen(buffer), 0);
}
/* Serve file. */
/* If displayFilename is not null, the file will be downloadable */
void serveFile(Response * response, const char *filename, const char *displayFilename,
const char *type)
{
FILE *pFile = NULL;
response->apiFlags |= API_FLAGS_DONT_SET_HEADER_BEFORE_SENDING;
pFile = fopen(filename, "r");
if (pFile == NULL) {
sendResourceNotFound(response);
} else {
int read_fd = fileno(pFile);
struct stat stat_buf;
fstat (read_fd, &stat_buf);
STATIC_SEND(response->fd, "HTTP/1.0 200 OK\r\n");
STATIC_SEND(response->fd, SERVER_STRING);
resPrintf(response, "Content-Type: %s\r\n", type);
resPrintf(response, "Content-Length: %d\r\n", stat_buf.st_size);
if (displayFilename!=NULL) {
resPrintf(response, "Content-Disposition: attachment; filename=\"%s\"\r\n",
displayFilename);
}
STATIC_SEND(response->fd, "\r\n");
sendFileWithSelect(response->fd, read_fd, stat_buf);
}
fclose(pFile);
}
void sendStatusOKHeadersTypeEncoding(Response * response, const char *type, const char *encoding)
{
STATIC_SEND(response->fd, "HTTP/1.0 200 OK\r\n");
STATIC_SEND(response->fd, SERVER_STRING);
resPrintf(response, "Content-Type: %s\r\n", type);
if (encoding != NULL) {
resPrintf(response, "Content-Encoding: %s\r\n", encoding);
}
STATIC_SEND(response->fd, "Vary: Accept-Encoding\r\n");
STATIC_SEND(response->fd, "\r\n");
response->status=STATUS_HTTP_OK;
}
void sendResourceNotFound(Response * response)
{
STATIC_SEND(response->fd, "HTTP/1.0 404 NOT FOUND\r\n");
STATIC_SEND(response->fd, "Content-Type: text/html\r\n");
STATIC_SEND(response->fd, "\r\n");
STATIC_SEND(response->fd, "<HTML><TITLE>Not Found</TITLE>\r\n");
STATIC_SEND(response->fd, "<BODY><P>The server could not fulfill\r\n");
STATIC_SEND(response->fd, "your request because the resource specified\r\n");
STATIC_SEND(response->fd, "is unavailable or nonexistent.\r\n");
STATIC_SEND(response->fd, "</P></BODY></HTML>\r\n");
response->status=STATUS_HTTP_NOT_FOUND;
}
/*Input Functions */
char *resQuickForm(Request *request, Response *response, const char *msg, const char *inputstr)
{
char *qpath = getQueryPath(request);
char *qparam = getQueryParam(request,"q");
if (!((API_FLAGS_FORM_ONLY_ON_NULL&response->apiFlags)&&qparam != NULL)) {
resPrintf(response, OTAGA(form, action = "%s")
"%s%s" STAG(input, type = "submit") CTAG(form), qpath, msg, inputstr);
}
free(qpath);
return qparam;
}
/* Utility Functions */
char *getHeader(char **headers, char *header)
{
char *current_header, *matching_header, *value;
// Not sure if MAX_BUFFER_SIZE is right.
char *retval = getBufferSpace();
int i;
for (i = 0; headers[i] != NULL; i++) {
current_header = headers[i];
if ((matching_header = strstr(current_header, header))) {
value = matching_header + strlen(header);
if (*value == ':') {
while (*value == ' ' || *value == ':') {
value++;
}
strncpy(retval, value, MAX_BUFFER_SIZE);
return retval;
}
}
}
memcpy(retval, UNDEFINED, sizeof(UNDEFINED));
return retval;
}
/**********************************************************************/
/* Return the value of a query parameter.
* Parameters: the query string
* the name of the parameter
* Returns: the value of the query parameter */
/**********************************************************************/
char *getQueryParam(Request *request, const char *name)
{
char * bufferAmpersand = getBufferSpace();;
char * bufferQuestion = getBufferSpace();;
snprintf(bufferQuestion, MAX_BUFFER_SIZE - 1, "?%s=", name);
snprintf(bufferAmpersand, MAX_BUFFER_SIZE - 1, "&%s=", name);
char *buffer;
char *pos1;
char *value = getBufferSpace();;
int i;
buffer = bufferQuestion;
pos1 = strstr(request->reqStr, bufferQuestion);
dbgprintf("Buffer %s Pos %s\n", buffer, pos1);
if (!pos1) {
buffer = bufferAmpersand;
pos1 = strstr(request->reqStr, bufferAmpersand);
}
if (pos1) {
pos1 += strlen(buffer);
i = 0;
while (*pos1 && *pos1 != '&' && i < MAX_BUFFER_SIZE-1) {
if (*pos1 == '%') {
value[i] = (char)ToHex(pos1[1]) * 16 + ToHex(pos1[2]);
pos1 += 3;
} else if (*pos1 == '+') {
value[i] = ' ';
pos1++;
} else {
value[i] = *pos1++;
}
i++;
}
value[i] = '\0';
return value;
}
free(bufferAmpersand);
free(bufferQuestion);
free(value);
value=NULL;
return value;
}
/**********************************************************************/
/* Return the query path. For example the query path for
* http://waferdotc.com/faq is /faq
* Note the / at the beginning
* Parameters: the request
* Returns: the query path */
/**********************************************************************/
char *getQueryPath(Request *request)
{
char *queryPath;
queryPath = strdup(request->reqStr);
u_int i;
for (i = 0; i < strlen(request->reqStr) && (queryPath[i] != '?') && (queryPath[i] != '\0');
i++) {
}
queryPath[i] = '\0';
return queryPath;
}
bool routeRequest(Request *request, Response * response, const char *path, void (*function) (Request *, Response *))
{
char *queryPath = getQueryPath(request);
if (strcmp(queryPath, path) == 0) {
free(queryPath);
if (function != NULL)
function(request, response);
return true;
} else {
free(queryPath);
return false;
}
}
/*Internal stuff follows. Could change in future. Do not use */
char * getBufferSpace () {
char *bufferSpace = malloc(MAX_BUFFER_SIZE * sizeof(char));
if (bufferSpace == NULL) {
fprintf(stderr, "Could not allocate memory.");
exit(EXIT_FAILURE);
}
return bufferSpace;
}
#ifndef __linux__
ssize_t sendfile_wafer (int write_fd, int read_fd, off_t *offset,int remain)
{
char * buf = getBufferSpace();
lseek(read_fd, *offset, SEEK_SET);
ssize_t bytes_read = read(read_fd, buf, MAX_BUFFER_SIZE);
ssize_t bytes_written = write(write_fd, buf, bytes_read);
free(buf);
return bytes_written;
}
#endif // __linux__
static void sendFileWithSelect(int write_fd, int read_fd, struct stat stat_buf)
{
off_t offset = 0;
size_t remain = stat_buf.st_size;
size_t sent = 0;
fd_set write_fds;
FD_ZERO(&write_fds);
FD_SET(write_fd,&write_fds);
struct timeval timeout;
timeout.tv_sec = 5;
timeout.tv_usec = 0;
while (remain) {
dbgprintf("Remain %d out of %d \n",remain,stat_buf.st_size);
int selected = select (write_fd + 1, NULL, &write_fds, NULL, &timeout);
if (selected < 0) {
return; //TODO-Error Logging
} else if (selected == 0) {
dbgprintf("Timed out. Going back in \n");
continue; //Timed out. Loop again.
}
#ifdef __linux__
ssize_t sent_once = sendfile (write_fd, read_fd, &offset, remain);
#else
ssize_t sent_once = sendfile_wafer (write_fd, read_fd, &offset, remain);
#endif // __linux__
if (sent_once <= 0)
return;
sent += sent_once;
offset = sent;
remain -= sent_once;
}
/* Close up. */
close (read_fd);
}
ssize_t writeLongString(int client, const char *longString, size_t len)
{
size_t remain = len;
size_t sent = 0;
while (remain) {
size_t toCpy = remain > MAX_BUFFER_SIZE ? MAX_BUFFER_SIZE : remain;
ssize_t sent_once = send(client, longString, toCpy, 0);
if (sent_once <= 0)
return -1;
sent += sent_once;
longString += sent_once;
remain -= sent_once;
}
return sent;
}