Subversion Repositories Tewi

Rev

Rev 296 | Rev 303 | 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 302 2024-10-10 02:07:38Z 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__)
255 nishi 36
#ifndef NO_GETNAMEINFO
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
255 nishi 66
#ifndef NO_GETNAMEINFO
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
272 nishi 80
#define S_ISDIR(x) ((x) & _S_IFDIR)
212 nishi 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
		}
275 nishi 160
#if !defined(__PPU__) && !defined(__minix)
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;
255 nishi 496
	char* addrstr;
497
#ifndef NO_GETNAMEINFO
116 nishi 498
	struct sockaddr* sa = (struct sockaddr*)&addr;
499
	getnameinfo(sa, sizeof(addr), address, 512, NULL, 0, NI_NUMERICHOST);
257 nishi 500
#else
501
		addrstr = inet_ntoa(addr.sin_addr);
502
		strcpy(address, addrstr);
503
		address[strlen(addrstr)] = 0;
163 nishi 504
#endif
212 nishi 505
#ifdef FREE_PTR
506
	free(ptr);
507
#endif
116 nishi 508
 
20 nishi 509
	res._processed = false;
510
	tw_init_tools(&tools);
212 nishi 511
	ret = tw_http_parse(s, sock, &req);
17 nishi 512
	if(ret == 0) {
116 nishi 513
		char date[513];
514
		time_t t = time(NULL);
515
		struct tm* tm = localtime(&t);
212 nishi 516
		char* useragent = cm_strdup("");
517
		int i;
518
		char* tmp;
519
		char* tmp2;
520
		char* tmp3;
521
		char* tmp4;
522
		char* tmp5;
523
		char* log;
524
		char* vhost;
525
		time_t cmtime;
526
		bool rej;
527
		char* host;
528
		int port;
293 nishi 529
		char* chrootpath;
212 nishi 530
		struct tw_config_entry* vhost_entry;
116 nishi 531
		strftime(date, 512, "%a, %d %b %Y %H:%M:%S %Z", tm);
532
 
117 nishi 533
		for(i = 0; req.headers[i] != NULL; i += 2) {
534
			if(cm_strcaseequ(req.headers[i], "User-Agent")) {
116 nishi 535
				free(useragent);
536
				useragent = cm_strdup(req.headers[i + 1]);
537
			}
538
		}
539
 
212 nishi 540
		tmp = cm_strcat3(address, " - [", date);
541
		tmp2 = cm_strcat3(tmp, "] \"", req.method);
542
		tmp3 = cm_strcat3(tmp2, " ", req.path);
543
		tmp4 = cm_strcat3(tmp3, " ", req.version);
544
		tmp5 = cm_strcat3(tmp4, "\" \"", useragent);
545
		log = cm_strcat(tmp5, "\"");
116 nishi 546
		free(tmp);
547
		free(tmp2);
548
		free(tmp3);
549
		free(tmp4);
550
		free(tmp5);
551
		free(useragent);
552
		cm_force_log(log);
553
		free(log);
554
 
212 nishi 555
		vhost = cm_strdup(config.hostname);
556
		cmtime = 0;
70 nishi 557
		if(req.headers != NULL) {
64 nishi 558
			for(i = 0; req.headers[i] != NULL; i += 2) {
559
				if(cm_strcaseequ(req.headers[i], "Host")) {
560
					free(vhost);
561
					vhost = cm_strdup(req.headers[i + 1]);
562
				} else if(cm_strcaseequ(req.headers[i], "If-Modified-Since")) {
563
					struct tm tm;
212 nishi 564
					time_t t;
565
					struct tm* btm;
64 nishi 566
					strptime(req.headers[i + 1], "%a, %d %b %Y %H:%M:%S GMT", &tm);
219 nishi 567
#if defined(__MINGW32__) || defined(_PSP) || defined(__PPU__) || defined(__ps2sdk__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 568
					t = 0;
569
					btm = localtime(&t);
64 nishi 570
					cmtime = mktime(&tm);
571
					cmtime -= (btm->tm_hour * 60 + btm->tm_min) * 60;
32 nishi 572
#else
140 nishi 573
						cmtime = timegm(&tm);
32 nishi 574
#endif
64 nishi 575
				}
21 nishi 576
			}
577
		}
212 nishi 578
		rej = false;
21 nishi 579
		cm_log("Server", "Host is %s", vhost);
212 nishi 580
		port = s == NULL ? 80 : 443;
581
		host = cm_strdup(vhost);
22 nishi 582
		for(i = 0; vhost[i] != 0; i++) {
583
			if(vhost[i] == ':') {
21 nishi 584
				host[i] = 0;
585
				port = atoi(host + i + 1);
586
				break;
587
			}
588
		}
136 nishi 589
		name = host;
21 nishi 590
		cm_log("Server", "Hostname is `%s', port is `%d'", host, port);
212 nishi 591
		vhost_entry = tw_vhost_match(host, port);
161 nishi 592
#ifdef HAS_CHROOT
293 nishi 593
		chrootpath = vhost_entry->chroot_path != NULL ? vhost_entry->chroot_path : config.root.chroot_path;
161 nishi 594
		if(chrootpath != NULL) {
595
			if(chdir(chrootpath) == 0) {
596
				if(chroot(".") == 0) {
597
					cm_log("Server", "Chroot successful");
598
				}
599
			} else {
600
				cm_log("Server", "chdir() failed, cannot chroot");
601
				tw_http_error(s, sock, 500, name, port, vhost_entry);
602
				rej = true;
603
			}
604
		}
605
#endif
20 nishi 606
		for(i = 0; i < config.module_count; i++) {
607
			tw_mod_request_t mod_req = (tw_mod_request_t)tw_module_symbol(config.modules[i], "mod_request");
608
			if(mod_req != NULL) {
609
				int ret = mod_req(&tools, &req, &res);
610
				int co = ret & 0xff;
141 nishi 611
				if(co == _TW_MODULE_PASS) {
612
					continue;
613
				} else if(co == _TW_MODULE_STOP) {
614
					/* Handle response here ... */
20 nishi 615
					res._processed = true;
616
					break;
141 nishi 617
				} else if(co == _TW_MODULE_STOP2) {
618
					res._processed = true;
619
					break;
620
				} else if(co == _TW_MODULE_ERROR) {
123 nishi 621
					tw_http_error(s, sock, (ret & 0xffff00) >> 8, name, port, vhost_entry);
20 nishi 622
					break;
623
				}
624
			}
625
		}
626
		if(!res._processed) {
212 nishi 627
			char* path;
628
			char* rpath;
629
			struct stat st;
215 nishi 630
			char* slash;
21 nishi 631
			cm_log("Server", "Document root is %s", vhost_entry->root == NULL ? "not set" : vhost_entry->root);
212 nishi 632
			path = cm_strcat(vhost_entry->root == NULL ? "" : vhost_entry->root, req.path);
21 nishi 633
			cm_log("Server", "Filesystem path is %s", path);
219 nishi 634
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
216 nishi 635
			for(i = strlen(path) - 1; i >= 0; i--) {
636
				if(path[i] == '/') {
215 nishi 637
					path[i] = 0;
216 nishi 638
				} else {
215 nishi 639
					break;
640
				}
641
			}
642
#endif
219 nishi 643
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 644
			rpath = cm_strdup(path);
72 nishi 645
			for(i = strlen(rpath) - 1; i >= 0; i--) {
73 nishi 646
				if(rpath[i] == '/') {
647
					int j;
648
					for(j = i + 1; rpath[j] != 0; j++) {
649
						if(rpath[j] == ':' || rpath[j] == '.') {
650
							rpath[j] = 0;
651
							break;
652
						}
653
					}
71 nishi 654
					break;
655
				}
656
			}
70 nishi 657
			for(i = 0; i < sizeof(reserved_names) / sizeof(reserved_names[0]); i++) {
658
				char* n = cm_strcat("/", reserved_names[i]);
71 nishi 659
				if(cm_nocase_endswith(rpath, n)) {
124 nishi 660
					tw_http_error(s, sock, 403, name, port, vhost_entry);
70 nishi 661
					free(n);
662
					rej = true;
663
					cm_log("Server", "XP Patch ; rejecting access to device");
664
					break;
665
				}
666
				free(n);
667
			}
71 nishi 668
			free(rpath);
70 nishi 669
#endif
670
			if(!rej && stat(path, &st) == 0) {
22 nishi 671
				if(!tw_permission_allowed(path, addr, req, vhost_entry)) {
123 nishi 672
					tw_http_error(s, sock, 403, name, port, vhost_entry);
22 nishi 673
				} else if(S_ISDIR(st.st_mode)) {
24 nishi 674
					if(req.path[strlen(req.path) - 1] != '/') {
215 nishi 675
						char* headers[3] = {"Location", NULL, NULL};
676
						headers[1] = cm_strcat(req.path, "/");
61 nishi 677
						cm_log("Server", "Accessing directory without the slash at the end");
166 nishi 678
						_tw_process_page(s, sock, tw_http_status(301), NULL, NULL, NULL, 0, headers, 0, 0);
24 nishi 679
						free(headers[1]);
680
					} else {
681
						char** indexes = vhost_entry->index_count == 0 ? config.root.indexes : vhost_entry->indexes;
682
						int index_count = vhost_entry->index_count == 0 ? config.root.index_count : vhost_entry->index_count;
683
						bool found = false;
684
						for(i = 0; i < index_count; i++) {
685
							char* p = cm_strcat3(path, "/", indexes[i]);
686
							FILE* f = fopen(p, "rb");
687
							if(f != NULL) {
688
								char* ext = NULL;
689
								int j;
212 nishi 690
								struct stat st;
691
								char* mime;
24 nishi 692
								for(j = strlen(p) - 1; j >= 0; j--) {
693
									if(p[j] == '.') {
694
										ext = cm_strdup(p + j);
695
										break;
696
									} else if(p[j] == '/') {
697
										break;
698
									}
22 nishi 699
								}
24 nishi 700
								stat(p, &st);
212 nishi 701
								mime = tw_get_mime(ext, vhost_entry);
32 nishi 702
								tw_process_page(s, sock, tw_http_status(200), mime, f, NULL, st.st_size, 0, 0);
24 nishi 703
								fclose(f);
74 nishi 704
								if(ext != NULL) free(ext);
24 nishi 705
								free(p);
706
								found = true;
707
								break;
22 nishi 708
							}
24 nishi 709
							free(p);
710
						}
711
						if(!found) {
712
							char* str = malloc(1);
212 nishi 713
							char** items;
714
							int readme;
715
							char** readmes;
716
							int readme_count;
717
							int hp;
24 nishi 718
							str[0] = 0;
212 nishi 719
							items = cm_scandir(path);
122 nishi 720
							addstring(&str, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\n");
24 nishi 721
							addstring(&str, "<html>\n");
722
							addstring(&str, "	<head>\n");
723
							addstring(&str, "		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n");
122 nishi 724
							addstring(&str, "		<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n");
24 nishi 725
							addstring(&str, "		<title>Index of %h</title>\n", req.path);
726
							addstring(&str, "	</head>\n");
727
							addstring(&str, "	<body>\n");
728
							addstring(&str, "		<h1>Index of %h</h1>\n", req.path);
729
							addstring(&str, "		<hr>\n");
730
							addstring(&str, "		<table border=\"0\">\n");
731
							addstring(&str, "			<tr>\n");
732
							addstring(&str, "				<th></th>\n");
733
							addstring(&str, "				<th>Filename</th>\n");
28 nishi 734
							addstring(&str, "				<th>MIME</th>\n");
735
							addstring(&str, "				<th>Size</th>\n");
24 nishi 736
							addstring(&str, "			</tr>\n");
212 nishi 737
							readme = -1;
738
							readmes = vhost_entry->readme_count == 0 ? config.root.readmes : vhost_entry->readmes;
739
							readme_count = vhost_entry->readme_count == 0 ? config.root.readme_count : vhost_entry->readme_count;
24 nishi 740
							if(items != NULL) {
29 nishi 741
								int phase = 0;
742
							doit:
24 nishi 743
								for(i = 0; items[i] != NULL; i++) {
33 nishi 744
									int j;
212 nishi 745
									char* ext;
746
									char* itm;
747
									char* icon;
28 nishi 748
									char* fpth = cm_strcat3(path, "/", items[i]);
749
									struct stat s;
750
									char size[512];
212 nishi 751
									char* showmime;
752
									char* mime;
28 nishi 753
									size[0] = 0;
754
									stat(fpth, &s);
29 nishi 755
									if(phase == 0 && !S_ISDIR(s.st_mode)) {
756
										free(fpth);
757
										continue;
758
									} else if(phase == 1 && S_ISDIR(s.st_mode)) {
759
										free(fpth);
760
										continue;
761
									}
33 nishi 762
									if(readme == -1) {
763
										for(j = 0; j < readme_count; j++) {
764
											if(strcmp(items[i], readmes[j]) == 0) {
765
												readme = j;
766
												break;
767
											}
768
										}
769
										if(readme != -1) {
770
											free(fpth);
771
											continue;
772
										}
773
									}
212 nishi 774
									if(s.st_size < NUM1024) {
31 nishi 775
										sprintf(size, "%d", (int)s.st_size);
212 nishi 776
									} else if(s.st_size < NUM1024 * 1024) {
29 nishi 777
										sprintf(size, "%.1fK", (double)s.st_size / 1024);
212 nishi 778
									} else if(s.st_size < NUM1024 * 1024 * 1024) {
29 nishi 779
										sprintf(size, "%.1fM", (double)s.st_size / 1024 / 1024);
212 nishi 780
									} else if(s.st_size < NUM1024 * 1024 * 1024 * 1024) {
29 nishi 781
										sprintf(size, "%.1fG", (double)s.st_size / 1024 / 1024 / 1024);
212 nishi 782
									} else if(s.st_size < NUM1024 * 1024 * 1024 * 1024 * 1024) {
29 nishi 783
										sprintf(size, "%.1fT", (double)s.st_size / 1024 / 1024 / 1024 / 1024);
28 nishi 784
									}
785
 
786
									free(fpth);
787
 
212 nishi 788
									ext = NULL;
24 nishi 789
									for(j = strlen(items[i]) - 1; j >= 0; j--) {
790
										if(items[i][j] == '.') {
791
											ext = cm_strdup(items[i] + j);
792
											break;
793
										} else if(items[i][j] == '/') {
794
											break;
795
										}
796
									}
212 nishi 797
									showmime = "";
798
									mime = tw_get_mime(ext, vhost_entry);
24 nishi 799
									if(strcmp(items[i], "../") == 0) {
800
										mime = "misc/parent";
29 nishi 801
										size[0] = 0;
24 nishi 802
									} else if(items[i][strlen(items[i]) - 1] == '/') {
803
										mime = "misc/dir";
29 nishi 804
										size[0] = 0;
805
									} else {
28 nishi 806
										showmime = mime;
24 nishi 807
									}
212 nishi 808
									icon = tw_get_icon(mime, vhost_entry);
24 nishi 809
									if(ext != NULL) free(ext);
212 nishi 810
									itm = cm_strdup(items[i]);
24 nishi 811
									if(strlen(itm) >= 32) {
812
										if(itm[strlen(itm) - 1] == '/') {
813
											itm[31] = 0;
814
											itm[30] = '/';
815
											itm[29] = '.';
816
											itm[28] = '.';
817
											itm[27] = '.';
818
										} else {
819
											itm[31] = 0;
820
											itm[30] = '.';
821
											itm[29] = '.';
822
											itm[28] = '.';
823
										}
824
									}
825
									addstring(&str, "<tr>\n");
826
									addstring(&str, "	<td><img src=\"%s\" alt=\"icon\"></td>\n", icon);
827
									addstring(&str, "	<td><a href=\"%l\"><code>%h</code></a></td>\n", items[i], itm);
60 nishi 828
									addstring(&str, "	<td><code>  %h  </code></td>\n", showmime);
829
									addstring(&str, "	<td><code>  %s  </code></td>\n", size);
24 nishi 830
									addstring(&str, "</tr>\n");
831
									free(itm);
22 nishi 832
								}
29 nishi 833
								phase++;
834
								if(phase != 2) goto doit;
835
								for(i = 0; items[i] != NULL; i++) free(items[i]);
836
								free(items);
22 nishi 837
							}
24 nishi 838
							addstring(&str, "		</table>\n");
33 nishi 839
							if(readme != -1) {
212 nishi 840
								struct stat s;
841
								FILE* fr;
842
								char* fpth;
33 nishi 843
								addstring(&str, "<hr>\n");
212 nishi 844
								fpth = cm_strcat3(path, "/", readmes[readme]);
33 nishi 845
								stat(fpth, &s);
212 nishi 846
								fr = fopen(fpth, "r");
33 nishi 847
								if(fr != NULL) {
848
									char* rmbuf = malloc(s.st_size + 1);
849
									rmbuf[s.st_size] = 0;
850
									fread(rmbuf, s.st_size, 1, fr);
851
									addstring(&str, "<pre><code>%h</code></pre>\n", rmbuf);
852
									fclose(fr);
70 nishi 853
									free(rmbuf);
33 nishi 854
								}
66 nishi 855
								free(fpth);
33 nishi 856
							}
24 nishi 857
							addstring(&str, "		<hr>\n");
212 nishi 858
							hp = vhost_entry->hideport == -1 ? config.root.hideport : vhost_entry->hideport;
123 nishi 859
							if(hp == 0) {
860
								addstring(&str, "		<address>%s Server at %s Port %d</address>\n", tw_server, name, port);
861
							} else {
862
								addstring(&str, "		<address>%s Server at %s</address>\n", tw_server, name, port);
863
							}
24 nishi 864
							addstring(&str, "	</body>\n");
865
							addstring(&str, "</html>\n");
32 nishi 866
							tw_process_page(s, sock, tw_http_status(200), "text/html", NULL, str, strlen(str), 0, 0);
24 nishi 867
							free(str);
21 nishi 868
						}
869
					}
22 nishi 870
				} else {
21 nishi 871
					char* ext = NULL;
212 nishi 872
					char* mime;
873
					FILE* f;
22 nishi 874
					for(i = strlen(req.path) - 1; i >= 0; i--) {
875
						if(req.path[i] == '.') {
21 nishi 876
							ext = cm_strdup(req.path + i);
877
							break;
24 nishi 878
						} else if(req.path[i] == '/') {
879
							break;
21 nishi 880
						}
881
					}
212 nishi 882
					mime = tw_get_mime(ext, vhost_entry);
21 nishi 883
					if(ext != NULL) free(ext);
212 nishi 884
					f = fopen(path, "rb");
173 nishi 885
					if(f == NULL) {
886
						tw_http_error(s, sock, 403, name, port, vhost_entry);
887
					} else {
888
						tw_process_page(s, sock, tw_http_status(200), mime, f, NULL, st.st_size, st.st_mtime, cmtime);
889
						fclose(f);
890
					}
21 nishi 891
				}
22 nishi 892
			} else {
161 nishi 893
				if(!rej) {
894
					tw_http_error(s, sock, 404, name, port, vhost_entry);
895
				}
21 nishi 896
			}
897
			free(path);
20 nishi 898
		}
21 nishi 899
		free(vhost);
900
		free(host);
22 nishi 901
	} else if(ret == -1) {
18 nishi 902
	} else {
123 nishi 903
		tw_http_error(s, sock, 400, name, port, &config.root);
17 nishi 904
	}
70 nishi 905
	tw_free_request(&req);
12 nishi 906
cleanup:
43 nishi 907
#ifndef NO_SSL
16 nishi 908
	if(sslworks) {
15 nishi 909
		SSL_shutdown(s);
910
	}
911
	SSL_free(s);
46 nishi 912
#endif
11 nishi 913
	close_socket(sock);
219 nishi 914
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
216 nishi 915
	_endthread();
100 nishi 916
#elif defined(__HAIKU__)
105 nishi 917
		exit_thread(0);
11 nishi 918
#endif
216 nishi 919
#ifndef NO_RETURN_THREAD
214 nishi 920
	return 0;
215 nishi 921
#endif
11 nishi 922
}
923
 
62 nishi 924
#ifdef SERVICE
925
extern SERVICE_STATUS status;
926
extern SERVICE_STATUS_HANDLE status_handle;
927
#endif
928
 
219 nishi 929
#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
65 nishi 930
struct thread_entry {
101 nishi 931
#ifdef __HAIKU__
932
	thread_id thread;
933
#else
65 nishi 934
	HANDLE handle;
101 nishi 935
#endif
65 nishi 936
	bool used;
937
};
938
#endif
939
 
183 nishi 940
extern int running;
941
 
11 nishi 942
void tw_server_loop(void) {
68 nishi 943
	int i;
212 nishi 944
#ifndef USE_POLL
213 nishi 945
	fd_set fdset;
946
	struct timeval tv;
212 nishi 947
#endif
219 nishi 948
#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
65 nishi 949
	struct thread_entry threads[2048];
70 nishi 950
	for(i = 0; i < sizeof(threads) / sizeof(threads[0]); i++) {
65 nishi 951
		threads[i].used = false;
952
	}
953
#endif
118 nishi 954
#ifdef USE_POLL
302 nishi 955
	struct pollfd* pollfds = malloc(sizeof(*pollfds) * sockcount);
118 nishi 956
	for(i = 0; i < sockcount; i++) {
957
		pollfds[i].fd = sockets[i];
958
		pollfds[i].events = POLLIN | POLLPRI;
959
	}
960
#endif
183 nishi 961
	while(running) {
212 nishi 962
		int ret;
118 nishi 963
#ifdef USE_POLL
212 nishi 964
		ret = poll(pollfds, sockcount, 1000);
118 nishi 965
#else
966
			FD_ZERO(&fdset);
967
			for(i = 0; i < sockcount; i++) {
968
				FD_SET(sockets[i], &fdset);
969
			}
970
			tv.tv_sec = 1;
971
			tv.tv_usec = 0;
86 nishi 972
#ifdef __HAIKU__
212 nishi 973
			ret = select(32, &fdset, NULL, NULL, &tv);
86 nishi 974
#else
212 nishi 975
			ret = select(FD_SETSIZE, &fdset, NULL, NULL, &tv);
86 nishi 976
#endif
118 nishi 977
#endif
11 nishi 978
		if(ret == -1) {
219 nishi 979
#if !defined(__MINGW32__) && !defined(_MSC_VER) && !defined(__BORLANDC__) && !defined(__WATCOMC__)
296 nishi 980
			if(errno == EINTR) continue;
84 nishi 981
			cm_log("Server", "Select failure: %s", strerror(errno));
982
#endif
9 nishi 983
			break;
70 nishi 984
		} else if(ret == 0) {
62 nishi 985
#ifdef SERVICE
70 nishi 986
			if(status.dwCurrentState == SERVICE_STOP_PENDING) {
62 nishi 987
				break;
988
			}
989
#endif
11 nishi 990
		} else if(ret > 0) {
9 nishi 991
			/* connection */
992
			int i;
11 nishi 993
			for(i = 0; i < sockcount; i++) {
118 nishi 994
				bool cond;
995
#ifdef USE_POLL
996
				cond = pollfds[i].revents & POLLIN;
997
#else
998
					cond = FD_ISSET(sockets[i], &fdset);
999
#endif
1000
				if(cond) {
9 nishi 1001
					SOCKADDR claddr;
182 nishi 1002
					socklen_t clen = sizeof(claddr);
9 nishi 1003
					int sock = accept(sockets[i], (struct sockaddr*)&claddr, &clen);
219 nishi 1004
#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_PSP) || defined(__PPU__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 1005
					int j;
1006
					struct pass_entry* e = malloc(sizeof(*e));
12 nishi 1007
					cm_log("Server", "New connection accepted");
11 nishi 1008
					e->sock = sock;
215 nishi 1009
#if defined(_MSC_VER) || defined(__BORLANDC__)
212 nishi 1010
					e->ssl = config.ports[i] & (1UL << 31);
1011
#else
1012
					e->ssl = config.ports[i] & (1ULL << 31);
1013
#endif
12 nishi 1014
					e->port = config.ports[i];
21 nishi 1015
					e->addr = claddr;
97 nishi 1016
#endif
219 nishi 1017
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
212 nishi 1018
					_beginthread(tw_server_pass, 0, e);
187 nishi 1019
#elif defined(_PSP) || defined(__PPU__)
183 nishi 1020
						tw_server_pass(e);
97 nishi 1021
#elif defined(__HAIKU__)
183 nishi 1022
					for(j = 0; j < sizeof(threads) / sizeof(threads[0]); j++) {
1023
						if(threads[j].used) {
1024
							thread_info info;
1025
							bool kill = false;
1026
							if(get_thread_info(threads[j].thread, &info) == B_OK) {
1027
							} else {
1028
								kill = true;
101 nishi 1029
							}
183 nishi 1030
							if(kill) {
1031
								threads[j].used = false;
101 nishi 1032
							}
1033
						}
183 nishi 1034
					}
1035
					for(j = 0; j < sizeof(threads) / sizeof(threads[0]); j++) {
1036
						if(!threads[j].used) {
1037
							threads[j].thread = spawn_thread(tw_server_pass, "Tewi HTTPd", 60, e);
1038
							threads[j].used = true;
1039
							resume_thread(threads[j].thread);
1040
							break;
1041
						}
1042
					}
11 nishi 1043
#else
1044
					pid_t pid = fork();
1045
					if(pid == 0) {
89 nishi 1046
						int j;
1047
						for(j = 0; j < sockcount; j++) close_socket(sockets[j]);
212 nishi 1048
						tw_server_pass(sock, config.ports[i] & (1ULL << 31), config.ports[i], claddr);
11 nishi 1049
						_exit(0);
1050
					} else {
1051
						close_socket(sock);
1052
					}
1053
#endif
9 nishi 1054
				}
1055
			}
1056
		}
1057
	}
255 nishi 1058
	for(i = 0; i < sockcount; i++) {
253 nishi 1059
		close_socket(sockets[i]);
1060
	}
1061
	cm_force_log("Server is down");
9 nishi 1062
}