Subversion Repositories Tewi

Rev

Rev 219 | Rev 253 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 nishi 1
/* $Id: server.c 240 2024-10-03 05:54:55Z nishi $ */
2
 
16 nishi 3
#define SOURCE
4
 
43 nishi 5
#include "../config.h"
6
 
8 nishi 7
#include "tw_server.h"
8
 
43 nishi 9
#ifndef NO_SSL
12 nishi 10
#include "tw_ssl.h"
43 nishi 11
#endif
12
 
8 nishi 13
#include "tw_config.h"
16 nishi 14
#include "tw_http.h"
18 nishi 15
#include "tw_module.h"
16
#include "tw_version.h"
8 nishi 17
 
215 nishi 18
#if !defined(_MSC_VER) && !defined(__BORLANDC__)
8 nishi 19
#include <unistd.h>
212 nishi 20
#endif
8 nishi 21
#include <string.h>
11 nishi 22
#include <stdbool.h>
20 nishi 23
#include <stdarg.h>
43 nishi 24
#include <stdio.h>
25
#include <stdlib.h>
84 nishi 26
#include <errno.h>
212 nishi 27
#include <sys/types.h>
21 nishi 28
#include <sys/stat.h>
32 nishi 29
#include <time.h>
8 nishi 30
 
18 nishi 31
#include <cm_string.h>
8 nishi 32
#include <cm_log.h>
21 nishi 33
#include <cm_dir.h>
8 nishi 34
 
219 nishi 35
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
163 nishi 36
#ifndef NO_GETADDRINFO
116 nishi 37
#include <ws2tcpip.h>
38
#include <wspiapi.h>
163 nishi 39
#endif
240 nishi 40
#ifdef USE_WINSOCK1
41
#include <winsock.h>
42
#else
8 nishi 43
#include <winsock2.h>
240 nishi 44
#endif
11 nishi 45
#include <process.h>
62 nishi 46
#include <windows.h>
32 nishi 47
 
48
#include "strptime.h"
216 nishi 49
typedef int socklen_t;
8 nishi 50
#else
118 nishi 51
#ifdef USE_POLL
187 nishi 52
#ifdef __PPU__
53
#include <net/poll.h>
54
#else
118 nishi 55
#include <poll.h>
187 nishi 56
#endif
118 nishi 57
#else
8 nishi 58
#include <sys/select.h>
118 nishi 59
#endif
8 nishi 60
#include <sys/socket.h>
61
#include <arpa/inet.h>
62
#include <netinet/in.h>
187 nishi 63
#ifndef __PPU__
8 nishi 64
#include <netinet/tcp.h>
187 nishi 65
#endif
163 nishi 66
#ifndef NO_GETADDRINFO
116 nishi 67
#include <netdb.h>
8 nishi 68
#endif
163 nishi 69
#endif
8 nishi 70
 
189 nishi 71
#if defined(_PSP) || defined(__ps2sdk__)
182 nishi 72
#include "strptime.h"
73
#endif
74
 
97 nishi 75
#ifdef __HAIKU__
76
#include <OS.h>
77
#endif
78
 
212 nishi 79
#ifndef S_ISDIR
80
#define S_ISDIR(x) ((x) & _S_IFDIR)
81
#endif
82
 
8 nishi 83
extern struct tw_config config;
18 nishi 84
extern char tw_server[];
8 nishi 85
 
86
int sockcount = 0;
87
 
9 nishi 88
SOCKADDR addresses[MAX_PORTS];
89
int sockets[MAX_PORTS];
8 nishi 90
 
219 nishi 91
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
70 nishi 92
const char* reserved_names[] = {"CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9"};
93
#endif
94
 
23 nishi 95
/* https://qiita.com/gyu-don/items/5a640c6d2252a860c8cd */
96
int tw_wildcard_match(const char* wildcard, const char* target) {
97
	const char *pw = wildcard, *pt = target;
98
 
99
	while(1) {
100
		if(*pt == 0) {
101
			while(*pw == '*') pw++;
102
			return *pw == 0;
103
		} else if(*pw == 0) {
104
			return 0;
105
		} else if(*pw == '*') {
106
			return *(pw + 1) == 0 || tw_wildcard_match(pw, pt + 1) || tw_wildcard_match(pw + 1, pt);
107
		} else if(*pw == '?' || (*pw == *pt)) {
108
			pw++;
109
			pt++;
110
			continue;
111
		} else {
112
			return 0;
113
		}
114
	}
115
}
116
 
8 nishi 117
void close_socket(int sock) {
219 nishi 118
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
8 nishi 119
	closesocket(sock);
120
#else
121
	close(sock);
122
#endif
123
}
124
 
125
int tw_server_init(void) {
126
	int i;
219 nishi 127
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
8 nishi 128
	WSADATA wsa;
240 nishi 129
#ifdef USE_WINSOCK1
130
	WSAStartup(MAKEWORD(1, 1), &wsa);
131
#else
8 nishi 132
	WSAStartup(MAKEWORD(2, 0), &wsa);
133
#endif
240 nishi 134
#endif
8 nishi 135
	for(i = 0; config.ports[i] != -1; i++)
136
		;
137
	sockcount = i;
138
	for(i = 0; config.ports[i] != -1; i++) {
212 nishi 139
		int yes = 1;
140
		int no = 0;
8 nishi 141
#ifdef NO_IPV6
142
		int sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
143
#else
144
		int sock = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP);
145
#endif
215 nishi 146
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__)
8 nishi 147
		if(sock == INVALID_SOCKET)
148
#else
149
		if(sock < 0)
150
#endif
151
		{
152
			cm_log("Server", "Socket creation failure");
153
			return 1;
154
		}
155
		if(setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*)&yes, sizeof(yes)) < 0) {
156
			close_socket(sock);
157
			cm_log("Server", "setsockopt failure (reuseaddr)");
158
			return 1;
159
		}
187 nishi 160
#ifndef __PPU__
8 nishi 161
		if(setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (void*)&yes, sizeof(yes)) < 0) {
162
			close_socket(sock);
163
			cm_log("Server", "setsockopt failure (nodelay)");
164
			return 1;
165
		}
187 nishi 166
#endif
8 nishi 167
#ifndef NO_IPV6
168
		if(setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void*)&no, sizeof(no)) < 0) {
169
			close_socket(sock);
170
			cm_log("Server", "setsockopt failure (IPv6)");
171
			return 1;
172
		}
173
#endif
174
		memset(&addresses[i], 0, sizeof(addresses[i]));
175
#ifdef NO_IPV6
176
		addresses[i].sin_family = AF_INET;
177
		addresses[i].sin_addr.s_addr = INADDR_ANY;
214 nishi 178
		addresses[i].sin_port = htons(config.ports[i] & 0xffff);
8 nishi 179
#else
180
		addresses[i].sin6_family = AF_INET6;
181
		addresses[i].sin6_addr = in6addr_any;
214 nishi 182
		addresses[i].sin6_port = htons(config.ports[i] & 0xffff);
8 nishi 183
#endif
184
		if(bind(sock, (struct sockaddr*)&addresses[i], sizeof(addresses[i])) < 0) {
185
			close_socket(sock);
186
			cm_log("Server", "Bind failure");
187
			return 1;
188
		}
189
		if(listen(sock, 128) < 0) {
190
			close_socket(sock);
191
			cm_log("Server", "Listen failure");
192
			return 1;
193
		}
194
		sockets[i] = sock;
195
	}
196
	return 0;
197
}
9 nishi 198
 
16 nishi 199
size_t tw_read(SSL* ssl, int s, void* data, size_t len) {
43 nishi 200
#ifndef NO_SSL
16 nishi 201
	if(ssl == NULL) {
202
		return recv(s, data, len, 0);
203
	} else {
204
		return SSL_read(ssl, data, len);
205
	}
43 nishi 206
#else
207
	return recv(s, data, len, 0);
208
#endif
16 nishi 209
}
210
 
211
size_t tw_write(SSL* ssl, int s, void* data, size_t len) {
43 nishi 212
#ifndef NO_SSL
16 nishi 213
	if(ssl == NULL) {
214
		return send(s, data, len, 0);
215
	} else {
216
		return SSL_write(ssl, data, len);
217
	}
43 nishi 218
#else
219
	return send(s, data, len, 0);
220
#endif
16 nishi 221
}
222
 
20 nishi 223
#define ERROR_HTML \
18 nishi 224
	"<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n" \
225
	"<html>\n" \
226
	"	<head>\n" \
20 nishi 227
	"		<title>%s</title>\n" \
18 nishi 228
	"	</head>\n" \
229
	"	<body>\n" \
20 nishi 230
	"		<h1>%s</h1>\n" \
18 nishi 231
	"		<hr>\n" \
232
	"		", \
233
	    address, \
234
	    "\n" \
235
	    "	</body>\n" \
236
	    "</html>\n"
237
 
32 nishi 238
void _tw_process_page(SSL* ssl, int sock, const char* status, const char* type, FILE* f, const unsigned char* doc, size_t size, char** headers, time_t mtime, time_t cmtime) {
18 nishi 239
	char construct[512];
212 nishi 240
	size_t incr;
32 nishi 241
	if(mtime != 0 && cmtime != 0 && mtime <= cmtime) {
242
		status = "304 Not Modified";
243
		type = NULL;
244
		size = 0;
245
		headers = NULL;
246
		f = NULL;
247
		doc = NULL;
248
	}
215 nishi 249
#if defined(_MSC_VER) || defined(__BORLANDC__)
212 nishi 250
	sprintf(construct, "%lu", (unsigned long)size);
251
#else
18 nishi 252
	sprintf(construct, "%llu", (unsigned long long)size);
212 nishi 253
#endif
18 nishi 254
	tw_write(ssl, sock, "HTTP/1.1 ", 9);
255
	tw_write(ssl, sock, (char*)status, strlen(status));
256
	tw_write(ssl, sock, "\r\n", 2);
24 nishi 257
	if(type != NULL) {
258
		tw_write(ssl, sock, "Content-Type: ", 7 + 5 + 2);
259
		tw_write(ssl, sock, (char*)type, strlen(type));
260
		tw_write(ssl, sock, "\r\n", 2);
261
	}
18 nishi 262
	tw_write(ssl, sock, "Server: ", 6 + 2);
263
	tw_write(ssl, sock, tw_server, strlen(tw_server));
264
	tw_write(ssl, sock, "\r\n", 2);
24 nishi 265
	if(size != 0) {
266
		tw_write(ssl, sock, "Content-Length: ", 7 + 7 + 2);
267
		tw_write(ssl, sock, construct, strlen(construct));
268
		tw_write(ssl, sock, "\r\n", 2);
32 nishi 269
		if(mtime != 0) {
270
			struct tm* tm = gmtime(&mtime);
271
			char date[513];
272
			strftime(date, 512, "%a, %d %b %Y %H:%M:%S GMT", tm);
273
			tw_write(ssl, sock, "Last-Modified: ", 5 + 8 + 2);
274
			tw_write(ssl, sock, date, strlen(date));
275
			tw_write(ssl, sock, "\r\n", 2);
276
		}
24 nishi 277
	}
278
	if(headers != NULL) {
212 nishi 279
		int i;
24 nishi 280
		for(i = 0; headers[i] != NULL; i += 2) {
281
			tw_write(ssl, sock, headers[i], strlen(headers[i]));
282
			tw_write(ssl, sock, ": ", 2);
283
			tw_write(ssl, sock, headers[i + 1], strlen(headers[i + 1]));
284
			tw_write(ssl, sock, "\r\n", 2);
285
		}
286
	}
18 nishi 287
	tw_write(ssl, sock, "\r\n", 2);
24 nishi 288
	if(doc == NULL && f == NULL) return;
212 nishi 289
	incr = 0;
18 nishi 290
	while(1) {
22 nishi 291
		if(f != NULL) {
21 nishi 292
			char buffer[128];
293
			fread(buffer, size < 128 ? size : 128, 1, f);
294
			tw_write(ssl, sock, buffer, size < 128 ? size : 128);
22 nishi 295
		} else {
21 nishi 296
			tw_write(ssl, sock, (unsigned char*)doc + incr, size < 128 ? size : 128);
297
		}
18 nishi 298
		incr += 128;
19 nishi 299
		if(size <= 128) break;
18 nishi 300
		size -= 128;
301
	}
302
}
303
 
32 nishi 304
void tw_process_page(SSL* ssl, int sock, const char* status, const char* type, FILE* f, const unsigned char* doc, size_t size, time_t mtime, time_t cmtime) { _tw_process_page(ssl, sock, status, type, f, doc, size, NULL, mtime, cmtime); }
24 nishi 305
 
18 nishi 306
const char* tw_http_status(int code) {
20 nishi 307
	if(code == 200) {
308
		return "200 OK";
166 nishi 309
	} else if(code == 301) {
167 nishi 310
		return "301 Moved Permanently";
24 nishi 311
	} else if(code == 308) {
312
		return "308 Permanent Redirect";
20 nishi 313
	} else if(code == 400) {
18 nishi 314
		return "400 Bad Request";
20 nishi 315
	} else if(code == 401) {
316
		return "401 Unauthorized";
317
	} else if(code == 403) {
318
		return "403 Forbidden";
319
	} else if(code == 404) {
320
		return "404 Not Found";
161 nishi 321
	} else if(code == 500) {
322
		return "500 Internal Server Error";
18 nishi 323
	} else {
324
		return "400 Bad Request";
325
	}
326
}
327
 
123 nishi 328
char* tw_http_default_error(int code, char* name, int port, struct tw_config_entry* vhost) {
18 nishi 329
	char address[1024];
212 nishi 330
	char* st;
331
	char* st2;
332
	char* buffer;
333
	char* str;
334
	int i;
20 nishi 335
 
123 nishi 336
	if((vhost->hideport == -1 ? config.root.hideport : vhost->hideport) == 1) {
337
		sprintf(address, "<address>%s Server at %s</address>", tw_server, name, port);
338
	} else {
339
		sprintf(address, "<address>%s Server at %s Port %d</address>", tw_server, name, port);
340
	}
341
 
212 nishi 342
	st = cm_strdup(tw_http_status(code));
20 nishi 343
	for(i = 0; st[i] != 0; i++) {
344
		if(st[i] == ' ') {
345
			st2 = cm_strdup(st + i + 1);
346
			break;
347
		}
18 nishi 348
	}
212 nishi 349
	buffer = malloc(4096);
350
	str = cm_strcat3(ERROR_HTML);
20 nishi 351
	sprintf(buffer, str, st, st2);
352
	free(str);
353
	free(st);
354
	return buffer;
18 nishi 355
}
356
 
123 nishi 357
void tw_http_error(SSL* ssl, int sock, int error, char* name, int port, struct tw_config_entry* vhost) {
358
	char* str = tw_http_default_error(error, name, port, vhost);
32 nishi 359
	tw_process_page(ssl, sock, tw_http_status(error), "text/html", NULL, str, strlen(str), 0, 0);
18 nishi 360
	free(str);
361
}
362
 
20 nishi 363
void addstring(char** str, const char* add, ...) {
364
	int i;
365
	char cbuf[2];
212 nishi 366
	va_list va;
20 nishi 367
	cbuf[1] = 0;
368
	va_start(va, add);
369
	for(i = 0; add[i] != 0; i++) {
370
		cbuf[0] = add[i];
371
		if(add[i] == '%') {
372
			i++;
373
			if(add[i] == 's') {
374
				char* tmp = *str;
375
				*str = cm_strcat(tmp, va_arg(va, const char*));
376
				free(tmp);
377
			} else if(add[i] == 'h') {
378
				char* h = cm_html_escape(va_arg(va, const char*));
379
				char* tmp = *str;
380
				*str = cm_strcat(tmp, h);
381
				free(tmp);
382
				free(h);
21 nishi 383
			} else if(add[i] == 'l') {
384
				char* h = cm_url_escape(va_arg(va, const char*));
385
				char* tmp = *str;
386
				*str = cm_strcat(tmp, h);
387
				free(tmp);
388
				free(h);
20 nishi 389
			} else if(add[i] == 'd') {
390
				int n = va_arg(va, int);
391
				char* h = malloc(512);
212 nishi 392
				char* tmp = *str;
20 nishi 393
				sprintf(h, "%d", n);
394
				*str = cm_strcat(tmp, h);
395
				free(tmp);
396
				free(h);
397
			} else if(add[i] == '%') {
398
				char* tmp = *str;
399
				*str = cm_strcat(tmp, "%");
400
				free(tmp);
401
			}
402
		} else {
403
			char* tmp = *str;
404
			*str = cm_strcat(tmp, cbuf);
405
			free(tmp);
406
		}
407
	}
74 nishi 408
	va_end(va);
20 nishi 409
}
410
 
22 nishi 411
char* tw_get_mime(const char* ext, struct tw_config_entry* vhost_entry) {
412
	char* mime = "application/octet-stream";
413
	bool set = false;
414
	int i;
212 nishi 415
	if(ext == NULL) return mime;
22 nishi 416
	for(i = 0; i < vhost_entry->mime_count; i++) {
23 nishi 417
		if(strcmp(vhost_entry->mimes[i].ext, "all") == 0 || (ext != NULL && tw_wildcard_match(vhost_entry->mimes[i].ext, ext))) {
22 nishi 418
			mime = vhost_entry->mimes[i].mime;
419
			set = true;
420
		}
421
	}
422
	if(!set) {
423
		for(i = 0; i < config.root.mime_count; i++) {
23 nishi 424
			if(strcmp(config.root.mimes[i].ext, "all") == 0 || (ext != NULL && tw_wildcard_match(config.root.mimes[i].ext, ext))) {
22 nishi 425
				mime = config.root.mimes[i].mime;
426
			}
427
		}
428
	}
429
	return mime;
430
}
431
 
432
char* tw_get_icon(const char* mime, struct tw_config_entry* vhost_entry) {
433
	char* icon = "";
434
	bool set = false;
435
	int i;
212 nishi 436
	if(mime == NULL) return "";
22 nishi 437
	for(i = 0; i < vhost_entry->icon_count; i++) {
23 nishi 438
		if(strcmp(vhost_entry->icons[i].mime, "all") == 0 || (mime != NULL && tw_wildcard_match(vhost_entry->icons[i].mime, mime))) {
22 nishi 439
			icon = vhost_entry->icons[i].icon;
440
			set = true;
441
		}
442
	}
443
	if(!set) {
444
		for(i = 0; i < config.root.icon_count; i++) {
23 nishi 445
			if(strcmp(config.root.icons[i].mime, "all") == 0 || (mime != NULL && tw_wildcard_match(config.root.icons[i].mime, mime))) {
22 nishi 446
				icon = config.root.icons[i].icon;
447
			}
448
		}
449
	}
450
	return icon;
451
}
452
 
11 nishi 453
struct pass_entry {
454
	int sock;
12 nishi 455
	int port;
11 nishi 456
	bool ssl;
21 nishi 457
	SOCKADDR addr;
11 nishi 458
};
459
 
219 nishi 460
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
216 nishi 461
#define NO_RETURN_THREAD
215 nishi 462
void tw_server_pass(void* ptr) {
97 nishi 463
#elif defined(__HAIKU__)
464
int32_t tw_server_pass(void* ptr) {
187 nishi 465
#elif defined(_PSP) || defined(__PPU__)
183 nishi 466
int tw_server_pass(void* ptr) {
105 nishi 467
#endif
219 nishi 468
#if defined(__HAIKU__) || defined(__MINGW32__) || defined(_PSP) || defined(__PPU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 469
#define FREE_PTR
11 nishi 470
	int sock = ((struct pass_entry*)ptr)->sock;
471
	bool ssl = ((struct pass_entry*)ptr)->ssl;
14 nishi 472
	int port = ((struct pass_entry*)ptr)->port;
21 nishi 473
	SOCKADDR addr = ((struct pass_entry*)ptr)->addr;
11 nishi 474
#else
216 nishi 475
#define NO_RETURN_THREAD
105 nishi 476
	void tw_server_pass(int sock, bool ssl, int port, SOCKADDR addr) {
11 nishi 477
#endif
212 nishi 478
	SSL* s = NULL;
43 nishi 479
#ifndef NO_SSL
12 nishi 480
	SSL_CTX* ctx = NULL;
15 nishi 481
	bool sslworks = false;
12 nishi 482
	if(ssl) {
483
		ctx = tw_create_ssl_ctx(port);
484
		s = SSL_new(ctx);
485
		SSL_set_fd(s, sock);
486
		if(SSL_accept(s) <= 0) goto cleanup;
15 nishi 487
		sslworks = true;
12 nishi 488
	}
43 nishi 489
#endif
212 nishi 490
	char* name = config.hostname;
116 nishi 491
	char address[513];
212 nishi 492
	int ret;
493
	struct tw_http_request req;
494
	struct tw_http_response res;
495
	struct tw_tool tools;
163 nishi 496
#ifndef NO_GETADDRINFO
116 nishi 497
	struct sockaddr* sa = (struct sockaddr*)&addr;
498
	getnameinfo(sa, sizeof(addr), address, 512, NULL, 0, NI_NUMERICHOST);
163 nishi 499
#endif
212 nishi 500
	address[0] = 0;
501
#ifdef FREE_PTR
502
	free(ptr);
503
#endif
116 nishi 504
 
20 nishi 505
	res._processed = false;
506
	tw_init_tools(&tools);
212 nishi 507
	ret = tw_http_parse(s, sock, &req);
17 nishi 508
	if(ret == 0) {
116 nishi 509
		char date[513];
510
		time_t t = time(NULL);
511
		struct tm* tm = localtime(&t);
212 nishi 512
		char* useragent = cm_strdup("");
513
		int i;
514
		char* tmp;
515
		char* tmp2;
516
		char* tmp3;
517
		char* tmp4;
518
		char* tmp5;
519
		char* log;
520
		char* vhost;
521
		time_t cmtime;
522
		bool rej;
523
		char* host;
524
		int port;
525
		struct tw_config_entry* vhost_entry;
116 nishi 526
		strftime(date, 512, "%a, %d %b %Y %H:%M:%S %Z", tm);
527
 
117 nishi 528
		for(i = 0; req.headers[i] != NULL; i += 2) {
529
			if(cm_strcaseequ(req.headers[i], "User-Agent")) {
116 nishi 530
				free(useragent);
531
				useragent = cm_strdup(req.headers[i + 1]);
532
			}
533
		}
534
 
212 nishi 535
		tmp = cm_strcat3(address, " - [", date);
536
		tmp2 = cm_strcat3(tmp, "] \"", req.method);
537
		tmp3 = cm_strcat3(tmp2, " ", req.path);
538
		tmp4 = cm_strcat3(tmp3, " ", req.version);
539
		tmp5 = cm_strcat3(tmp4, "\" \"", useragent);
540
		log = cm_strcat(tmp5, "\"");
116 nishi 541
		free(tmp);
542
		free(tmp2);
543
		free(tmp3);
544
		free(tmp4);
545
		free(tmp5);
546
		free(useragent);
547
		cm_force_log(log);
548
		free(log);
549
 
212 nishi 550
		vhost = cm_strdup(config.hostname);
551
		cmtime = 0;
70 nishi 552
		if(req.headers != NULL) {
64 nishi 553
			for(i = 0; req.headers[i] != NULL; i += 2) {
554
				if(cm_strcaseequ(req.headers[i], "Host")) {
555
					free(vhost);
556
					vhost = cm_strdup(req.headers[i + 1]);
557
				} else if(cm_strcaseequ(req.headers[i], "If-Modified-Since")) {
558
					struct tm tm;
212 nishi 559
					time_t t;
560
					struct tm* btm;
64 nishi 561
					strptime(req.headers[i + 1], "%a, %d %b %Y %H:%M:%S GMT", &tm);
219 nishi 562
#if defined(__MINGW32__) || defined(_PSP) || defined(__PPU__) || defined(__ps2sdk__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 563
					t = 0;
564
					btm = localtime(&t);
64 nishi 565
					cmtime = mktime(&tm);
566
					cmtime -= (btm->tm_hour * 60 + btm->tm_min) * 60;
32 nishi 567
#else
140 nishi 568
						cmtime = timegm(&tm);
32 nishi 569
#endif
64 nishi 570
				}
21 nishi 571
			}
572
		}
212 nishi 573
		rej = false;
21 nishi 574
		cm_log("Server", "Host is %s", vhost);
212 nishi 575
		port = s == NULL ? 80 : 443;
576
		host = cm_strdup(vhost);
22 nishi 577
		for(i = 0; vhost[i] != 0; i++) {
578
			if(vhost[i] == ':') {
21 nishi 579
				host[i] = 0;
580
				port = atoi(host + i + 1);
581
				break;
582
			}
583
		}
136 nishi 584
		name = host;
21 nishi 585
		cm_log("Server", "Hostname is `%s', port is `%d'", host, port);
212 nishi 586
		vhost_entry = tw_vhost_match(host, port);
161 nishi 587
#ifdef HAS_CHROOT
588
		char* chrootpath = vhost_entry->chroot_path != NULL ? vhost_entry->chroot_path : config.root.chroot_path;
589
		if(chrootpath != NULL) {
590
			if(chdir(chrootpath) == 0) {
591
				if(chroot(".") == 0) {
592
					cm_log("Server", "Chroot successful");
593
				}
594
			} else {
595
				cm_log("Server", "chdir() failed, cannot chroot");
596
				tw_http_error(s, sock, 500, name, port, vhost_entry);
597
				rej = true;
598
			}
599
		}
600
#endif
20 nishi 601
		for(i = 0; i < config.module_count; i++) {
602
			tw_mod_request_t mod_req = (tw_mod_request_t)tw_module_symbol(config.modules[i], "mod_request");
603
			if(mod_req != NULL) {
604
				int ret = mod_req(&tools, &req, &res);
605
				int co = ret & 0xff;
141 nishi 606
				if(co == _TW_MODULE_PASS) {
607
					continue;
608
				} else if(co == _TW_MODULE_STOP) {
609
					/* Handle response here ... */
20 nishi 610
					res._processed = true;
611
					break;
141 nishi 612
				} else if(co == _TW_MODULE_STOP2) {
613
					res._processed = true;
614
					break;
615
				} else if(co == _TW_MODULE_ERROR) {
123 nishi 616
					tw_http_error(s, sock, (ret & 0xffff00) >> 8, name, port, vhost_entry);
20 nishi 617
					break;
618
				}
619
			}
620
		}
621
		if(!res._processed) {
212 nishi 622
			char* path;
623
			char* rpath;
624
			struct stat st;
215 nishi 625
			char* slash;
21 nishi 626
			cm_log("Server", "Document root is %s", vhost_entry->root == NULL ? "not set" : vhost_entry->root);
212 nishi 627
			path = cm_strcat(vhost_entry->root == NULL ? "" : vhost_entry->root, req.path);
21 nishi 628
			cm_log("Server", "Filesystem path is %s", path);
219 nishi 629
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
216 nishi 630
			for(i = strlen(path) - 1; i >= 0; i--) {
631
				if(path[i] == '/') {
215 nishi 632
					path[i] = 0;
216 nishi 633
				} else {
215 nishi 634
					break;
635
				}
636
			}
637
#endif
219 nishi 638
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 639
			rpath = cm_strdup(path);
72 nishi 640
			for(i = strlen(rpath) - 1; i >= 0; i--) {
73 nishi 641
				if(rpath[i] == '/') {
642
					int j;
643
					for(j = i + 1; rpath[j] != 0; j++) {
644
						if(rpath[j] == ':' || rpath[j] == '.') {
645
							rpath[j] = 0;
646
							break;
647
						}
648
					}
71 nishi 649
					break;
650
				}
651
			}
70 nishi 652
			for(i = 0; i < sizeof(reserved_names) / sizeof(reserved_names[0]); i++) {
653
				char* n = cm_strcat("/", reserved_names[i]);
71 nishi 654
				if(cm_nocase_endswith(rpath, n)) {
124 nishi 655
					tw_http_error(s, sock, 403, name, port, vhost_entry);
70 nishi 656
					free(n);
657
					rej = true;
658
					cm_log("Server", "XP Patch ; rejecting access to device");
659
					break;
660
				}
661
				free(n);
662
			}
71 nishi 663
			free(rpath);
70 nishi 664
#endif
665
			if(!rej && stat(path, &st) == 0) {
22 nishi 666
				if(!tw_permission_allowed(path, addr, req, vhost_entry)) {
123 nishi 667
					tw_http_error(s, sock, 403, name, port, vhost_entry);
22 nishi 668
				} else if(S_ISDIR(st.st_mode)) {
24 nishi 669
					if(req.path[strlen(req.path) - 1] != '/') {
215 nishi 670
						char* headers[3] = {"Location", NULL, NULL};
671
						headers[1] = cm_strcat(req.path, "/");
61 nishi 672
						cm_log("Server", "Accessing directory without the slash at the end");
166 nishi 673
						_tw_process_page(s, sock, tw_http_status(301), NULL, NULL, NULL, 0, headers, 0, 0);
24 nishi 674
						free(headers[1]);
675
					} else {
676
						char** indexes = vhost_entry->index_count == 0 ? config.root.indexes : vhost_entry->indexes;
677
						int index_count = vhost_entry->index_count == 0 ? config.root.index_count : vhost_entry->index_count;
678
						bool found = false;
679
						for(i = 0; i < index_count; i++) {
680
							char* p = cm_strcat3(path, "/", indexes[i]);
681
							FILE* f = fopen(p, "rb");
682
							if(f != NULL) {
683
								char* ext = NULL;
684
								int j;
212 nishi 685
								struct stat st;
686
								char* mime;
24 nishi 687
								for(j = strlen(p) - 1; j >= 0; j--) {
688
									if(p[j] == '.') {
689
										ext = cm_strdup(p + j);
690
										break;
691
									} else if(p[j] == '/') {
692
										break;
693
									}
22 nishi 694
								}
24 nishi 695
								stat(p, &st);
212 nishi 696
								mime = tw_get_mime(ext, vhost_entry);
32 nishi 697
								tw_process_page(s, sock, tw_http_status(200), mime, f, NULL, st.st_size, 0, 0);
24 nishi 698
								fclose(f);
74 nishi 699
								if(ext != NULL) free(ext);
24 nishi 700
								free(p);
701
								found = true;
702
								break;
22 nishi 703
							}
24 nishi 704
							free(p);
705
						}
706
						if(!found) {
707
							char* str = malloc(1);
212 nishi 708
							char** items;
709
							int readme;
710
							char** readmes;
711
							int readme_count;
712
							int hp;
24 nishi 713
							str[0] = 0;
212 nishi 714
							items = cm_scandir(path);
122 nishi 715
							addstring(&str, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\n");
24 nishi 716
							addstring(&str, "<html>\n");
717
							addstring(&str, "	<head>\n");
718
							addstring(&str, "		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n");
122 nishi 719
							addstring(&str, "		<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n");
24 nishi 720
							addstring(&str, "		<title>Index of %h</title>\n", req.path);
721
							addstring(&str, "	</head>\n");
722
							addstring(&str, "	<body>\n");
723
							addstring(&str, "		<h1>Index of %h</h1>\n", req.path);
724
							addstring(&str, "		<hr>\n");
725
							addstring(&str, "		<table border=\"0\">\n");
726
							addstring(&str, "			<tr>\n");
727
							addstring(&str, "				<th></th>\n");
728
							addstring(&str, "				<th>Filename</th>\n");
28 nishi 729
							addstring(&str, "				<th>MIME</th>\n");
730
							addstring(&str, "				<th>Size</th>\n");
24 nishi 731
							addstring(&str, "			</tr>\n");
212 nishi 732
							readme = -1;
733
							readmes = vhost_entry->readme_count == 0 ? config.root.readmes : vhost_entry->readmes;
734
							readme_count = vhost_entry->readme_count == 0 ? config.root.readme_count : vhost_entry->readme_count;
24 nishi 735
							if(items != NULL) {
29 nishi 736
								int phase = 0;
737
							doit:
24 nishi 738
								for(i = 0; items[i] != NULL; i++) {
33 nishi 739
									int j;
212 nishi 740
									char* ext;
741
									char* itm;
742
									char* icon;
28 nishi 743
									char* fpth = cm_strcat3(path, "/", items[i]);
744
									struct stat s;
745
									char size[512];
212 nishi 746
									char* showmime;
747
									char* mime;
28 nishi 748
									size[0] = 0;
749
									stat(fpth, &s);
29 nishi 750
									if(phase == 0 && !S_ISDIR(s.st_mode)) {
751
										free(fpth);
752
										continue;
753
									} else if(phase == 1 && S_ISDIR(s.st_mode)) {
754
										free(fpth);
755
										continue;
756
									}
33 nishi 757
									if(readme == -1) {
758
										for(j = 0; j < readme_count; j++) {
759
											if(strcmp(items[i], readmes[j]) == 0) {
760
												readme = j;
761
												break;
762
											}
763
										}
764
										if(readme != -1) {
765
											free(fpth);
766
											continue;
767
										}
768
									}
212 nishi 769
									if(s.st_size < NUM1024) {
31 nishi 770
										sprintf(size, "%d", (int)s.st_size);
212 nishi 771
									} else if(s.st_size < NUM1024 * 1024) {
29 nishi 772
										sprintf(size, "%.1fK", (double)s.st_size / 1024);
212 nishi 773
									} else if(s.st_size < NUM1024 * 1024 * 1024) {
29 nishi 774
										sprintf(size, "%.1fM", (double)s.st_size / 1024 / 1024);
212 nishi 775
									} else if(s.st_size < NUM1024 * 1024 * 1024 * 1024) {
29 nishi 776
										sprintf(size, "%.1fG", (double)s.st_size / 1024 / 1024 / 1024);
212 nishi 777
									} else if(s.st_size < NUM1024 * 1024 * 1024 * 1024 * 1024) {
29 nishi 778
										sprintf(size, "%.1fT", (double)s.st_size / 1024 / 1024 / 1024 / 1024);
28 nishi 779
									}
780
 
781
									free(fpth);
782
 
212 nishi 783
									ext = NULL;
24 nishi 784
									for(j = strlen(items[i]) - 1; j >= 0; j--) {
785
										if(items[i][j] == '.') {
786
											ext = cm_strdup(items[i] + j);
787
											break;
788
										} else if(items[i][j] == '/') {
789
											break;
790
										}
791
									}
212 nishi 792
									showmime = "";
793
									mime = tw_get_mime(ext, vhost_entry);
24 nishi 794
									if(strcmp(items[i], "../") == 0) {
795
										mime = "misc/parent";
29 nishi 796
										size[0] = 0;
24 nishi 797
									} else if(items[i][strlen(items[i]) - 1] == '/') {
798
										mime = "misc/dir";
29 nishi 799
										size[0] = 0;
800
									} else {
28 nishi 801
										showmime = mime;
24 nishi 802
									}
212 nishi 803
									icon = tw_get_icon(mime, vhost_entry);
24 nishi 804
									if(ext != NULL) free(ext);
212 nishi 805
									itm = cm_strdup(items[i]);
24 nishi 806
									if(strlen(itm) >= 32) {
807
										if(itm[strlen(itm) - 1] == '/') {
808
											itm[31] = 0;
809
											itm[30] = '/';
810
											itm[29] = '.';
811
											itm[28] = '.';
812
											itm[27] = '.';
813
										} else {
814
											itm[31] = 0;
815
											itm[30] = '.';
816
											itm[29] = '.';
817
											itm[28] = '.';
818
										}
819
									}
820
									addstring(&str, "<tr>\n");
821
									addstring(&str, "	<td><img src=\"%s\" alt=\"icon\"></td>\n", icon);
822
									addstring(&str, "	<td><a href=\"%l\"><code>%h</code></a></td>\n", items[i], itm);
60 nishi 823
									addstring(&str, "	<td><code>  %h  </code></td>\n", showmime);
824
									addstring(&str, "	<td><code>  %s  </code></td>\n", size);
24 nishi 825
									addstring(&str, "</tr>\n");
826
									free(itm);
22 nishi 827
								}
29 nishi 828
								phase++;
829
								if(phase != 2) goto doit;
830
								for(i = 0; items[i] != NULL; i++) free(items[i]);
831
								free(items);
22 nishi 832
							}
24 nishi 833
							addstring(&str, "		</table>\n");
33 nishi 834
							if(readme != -1) {
212 nishi 835
								struct stat s;
836
								FILE* fr;
837
								char* fpth;
33 nishi 838
								addstring(&str, "<hr>\n");
212 nishi 839
								fpth = cm_strcat3(path, "/", readmes[readme]);
33 nishi 840
								stat(fpth, &s);
212 nishi 841
								fr = fopen(fpth, "r");
33 nishi 842
								if(fr != NULL) {
843
									char* rmbuf = malloc(s.st_size + 1);
844
									rmbuf[s.st_size] = 0;
845
									fread(rmbuf, s.st_size, 1, fr);
846
									addstring(&str, "<pre><code>%h</code></pre>\n", rmbuf);
847
									fclose(fr);
70 nishi 848
									free(rmbuf);
33 nishi 849
								}
66 nishi 850
								free(fpth);
33 nishi 851
							}
24 nishi 852
							addstring(&str, "		<hr>\n");
212 nishi 853
							hp = vhost_entry->hideport == -1 ? config.root.hideport : vhost_entry->hideport;
123 nishi 854
							if(hp == 0) {
855
								addstring(&str, "		<address>%s Server at %s Port %d</address>\n", tw_server, name, port);
856
							} else {
857
								addstring(&str, "		<address>%s Server at %s</address>\n", tw_server, name, port);
858
							}
24 nishi 859
							addstring(&str, "	</body>\n");
860
							addstring(&str, "</html>\n");
32 nishi 861
							tw_process_page(s, sock, tw_http_status(200), "text/html", NULL, str, strlen(str), 0, 0);
24 nishi 862
							free(str);
21 nishi 863
						}
864
					}
22 nishi 865
				} else {
21 nishi 866
					char* ext = NULL;
212 nishi 867
					char* mime;
868
					FILE* f;
22 nishi 869
					for(i = strlen(req.path) - 1; i >= 0; i--) {
870
						if(req.path[i] == '.') {
21 nishi 871
							ext = cm_strdup(req.path + i);
872
							break;
24 nishi 873
						} else if(req.path[i] == '/') {
874
							break;
21 nishi 875
						}
876
					}
212 nishi 877
					mime = tw_get_mime(ext, vhost_entry);
21 nishi 878
					if(ext != NULL) free(ext);
212 nishi 879
					f = fopen(path, "rb");
173 nishi 880
					if(f == NULL) {
881
						tw_http_error(s, sock, 403, name, port, vhost_entry);
882
					} else {
883
						tw_process_page(s, sock, tw_http_status(200), mime, f, NULL, st.st_size, st.st_mtime, cmtime);
884
						fclose(f);
885
					}
21 nishi 886
				}
22 nishi 887
			} else {
161 nishi 888
				if(!rej) {
889
					tw_http_error(s, sock, 404, name, port, vhost_entry);
890
				}
21 nishi 891
			}
892
			free(path);
20 nishi 893
		}
21 nishi 894
		free(vhost);
895
		free(host);
22 nishi 896
	} else if(ret == -1) {
18 nishi 897
	} else {
123 nishi 898
		tw_http_error(s, sock, 400, name, port, &config.root);
17 nishi 899
	}
70 nishi 900
	tw_free_request(&req);
12 nishi 901
cleanup:
43 nishi 902
#ifndef NO_SSL
16 nishi 903
	if(sslworks) {
15 nishi 904
		SSL_shutdown(s);
905
	}
906
	SSL_free(s);
46 nishi 907
#endif
11 nishi 908
	close_socket(sock);
219 nishi 909
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
216 nishi 910
	_endthread();
100 nishi 911
#elif defined(__HAIKU__)
105 nishi 912
		exit_thread(0);
11 nishi 913
#endif
216 nishi 914
#ifndef NO_RETURN_THREAD
214 nishi 915
	return 0;
215 nishi 916
#endif
11 nishi 917
}
918
 
62 nishi 919
#ifdef SERVICE
920
extern SERVICE_STATUS status;
921
extern SERVICE_STATUS_HANDLE status_handle;
922
#endif
923
 
219 nishi 924
#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
65 nishi 925
struct thread_entry {
101 nishi 926
#ifdef __HAIKU__
927
	thread_id thread;
928
#else
65 nishi 929
	HANDLE handle;
101 nishi 930
#endif
65 nishi 931
	bool used;
932
};
933
#endif
934
 
183 nishi 935
extern int running;
936
 
11 nishi 937
void tw_server_loop(void) {
68 nishi 938
	int i;
212 nishi 939
#ifndef USE_POLL
213 nishi 940
	fd_set fdset;
941
	struct timeval tv;
212 nishi 942
#endif
219 nishi 943
#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
65 nishi 944
	struct thread_entry threads[2048];
70 nishi 945
	for(i = 0; i < sizeof(threads) / sizeof(threads[0]); i++) {
65 nishi 946
		threads[i].used = false;
947
	}
948
#endif
118 nishi 949
#ifdef USE_POLL
950
	struct pollfd pollfds[sockcount];
951
	for(i = 0; i < sockcount; i++) {
952
		pollfds[i].fd = sockets[i];
953
		pollfds[i].events = POLLIN | POLLPRI;
954
	}
955
#endif
183 nishi 956
	while(running) {
212 nishi 957
		int ret;
118 nishi 958
#ifdef USE_POLL
212 nishi 959
		ret = poll(pollfds, sockcount, 1000);
118 nishi 960
#else
961
			FD_ZERO(&fdset);
962
			for(i = 0; i < sockcount; i++) {
963
				FD_SET(sockets[i], &fdset);
964
			}
965
			tv.tv_sec = 1;
966
			tv.tv_usec = 0;
86 nishi 967
#ifdef __HAIKU__
212 nishi 968
			ret = select(32, &fdset, NULL, NULL, &tv);
86 nishi 969
#else
212 nishi 970
			ret = select(FD_SETSIZE, &fdset, NULL, NULL, &tv);
86 nishi 971
#endif
118 nishi 972
#endif
11 nishi 973
		if(ret == -1) {
219 nishi 974
#if !defined(__MINGW32__) && !defined(_MSC_VER) && !defined(__BORLANDC__) && !defined(__WATCOMC__)
84 nishi 975
			cm_log("Server", "Select failure: %s", strerror(errno));
976
#endif
9 nishi 977
			break;
70 nishi 978
		} else if(ret == 0) {
62 nishi 979
#ifdef SERVICE
70 nishi 980
			if(status.dwCurrentState == SERVICE_STOP_PENDING) {
62 nishi 981
				break;
982
			}
983
#endif
11 nishi 984
		} else if(ret > 0) {
9 nishi 985
			/* connection */
986
			int i;
11 nishi 987
			for(i = 0; i < sockcount; i++) {
118 nishi 988
				bool cond;
989
#ifdef USE_POLL
990
				cond = pollfds[i].revents & POLLIN;
991
#else
992
					cond = FD_ISSET(sockets[i], &fdset);
993
#endif
994
				if(cond) {
9 nishi 995
					SOCKADDR claddr;
182 nishi 996
					socklen_t clen = sizeof(claddr);
9 nishi 997
					int sock = accept(sockets[i], (struct sockaddr*)&claddr, &clen);
219 nishi 998
#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_PSP) || defined(__PPU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 999
					int j;
1000
					struct pass_entry* e = malloc(sizeof(*e));
12 nishi 1001
					cm_log("Server", "New connection accepted");
11 nishi 1002
					e->sock = sock;
215 nishi 1003
#if defined(_MSC_VER) || defined(__BORLANDC__)
212 nishi 1004
					e->ssl = config.ports[i] & (1UL << 31);
1005
#else
1006
					e->ssl = config.ports[i] & (1ULL << 31);
1007
#endif
12 nishi 1008
					e->port = config.ports[i];
21 nishi 1009
					e->addr = claddr;
97 nishi 1010
#endif
219 nishi 1011
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 1012
					_beginthread(tw_server_pass, 0, e);
187 nishi 1013
#elif defined(_PSP) || defined(__PPU__)
183 nishi 1014
						tw_server_pass(e);
97 nishi 1015
#elif defined(__HAIKU__)
183 nishi 1016
					for(j = 0; j < sizeof(threads) / sizeof(threads[0]); j++) {
1017
						if(threads[j].used) {
1018
							thread_info info;
1019
							bool kill = false;
1020
							if(get_thread_info(threads[j].thread, &info) == B_OK) {
1021
							} else {
1022
								kill = true;
101 nishi 1023
							}
183 nishi 1024
							if(kill) {
1025
								threads[j].used = false;
101 nishi 1026
							}
1027
						}
183 nishi 1028
					}
1029
					for(j = 0; j < sizeof(threads) / sizeof(threads[0]); j++) {
1030
						if(!threads[j].used) {
1031
							threads[j].thread = spawn_thread(tw_server_pass, "Tewi HTTPd", 60, e);
1032
							threads[j].used = true;
1033
							resume_thread(threads[j].thread);
1034
							break;
1035
						}
1036
					}
11 nishi 1037
#else
1038
					pid_t pid = fork();
1039
					if(pid == 0) {
89 nishi 1040
						int j;
1041
						for(j = 0; j < sockcount; j++) close_socket(sockets[j]);
212 nishi 1042
						tw_server_pass(sock, config.ports[i] & (1ULL << 31), config.ports[i], claddr);
11 nishi 1043
						_exit(0);
1044
					} else {
1045
						close_socket(sock);
1046
					}
1047
#endif
9 nishi 1048
				}
1049
			}
1050
		}
1051
	}
1052
}