Newer
Older
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
/* websrvr.c */
/* Synchronet Web Server */
/* $Id$ */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 2000 Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* Anonymous FTP access to the most recent released source is available at *
* ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
* *
* Anonymous CVS access to the development source and modification history *
* is available at cvs.synchro.net:/cvsroot/sbbs, example: *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs login *
* (just hit return, no password is necessary) *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs checkout src *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* You are encouraged to submit any modifications (preferably in Unix diff *
* format) via e-mail to mods@synchro.net *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
#include "sbbs.h"
#include "sockwrap.h" /* sendfilesocket() */
#include "threadwrap.h" /* _beginthread() */
#include "websrvr.h"
static const char* server_name="Synchronet Web Server";
static const char* newline="\r\n";
extern const uchar* nular;
#define MAX_MIME_TYPES 128
#define MAX_REQUEST_LINE 1024
static scfg_t scfg;
static BOOL scfg_reloaded=TRUE;
static uint http_threads_running=0;
static ulong active_clients=0;
static ulong sockets=0;
static BOOL recycle_server=FALSE;
static uint thread_count=0;
static SOCKET server_socket=INVALID_SOCKET;
static ulong mime_count=0;
static char revision[16];
static web_startup_t* startup=NULL;
typedef struct {
BOOL method;
char request[MAX_PATH+1];
BOOL parsed_headers;
BOOL expect_go_ahead;
time_t if_modified_since;
BOOL keep_alive;
char auth[128]; /* UserID:Password */
BOOL send_location;
} http_request_t;
typedef struct {
SOCKET socket;
SOCKADDR_IN addr;
http_request_t req;
char host[128]; /* What's this for? */
int http_ver; /* HTTP version. 0 = HTTP/0.9, 1=HTTP/1.0, 2=HTTP/1.1 */
BOOL finished; /* Do not accept any more imput from client */
} http_session_t;
typedef struct {
char ext[16];
char type[128];
} mime_types_t;
static mime_types_t mime_types[MAX_MIME_TYPES];
enum {
HTTP_0_9
,HTTP_1_0
};
static char* http_vers[] = {
""
,"HTTP/1.0"
};
enum {
HTTP_HEAD
,HTTP_GET
};
static char* methods[] = {
"HEAD"
,"GET"
,NULL /* terminator */
};
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
enum {
HEAD_ALLOW
,HEAD_AUTH
,HEAD_ENCODE
,HEAD_LENGTH
,HEAD_TYPE
,HEAD_DATE
,HEAD_EXPIRES
,HEAD_FROM
,HEAD_IFMODIFIED
,HEAD_LASTMODIFIED
,HEAD_LOCATION
,HEAD_PRAGMA
,HEAD_REFERER
,HEAD_SERVER
,HEAD_USERAGENT
,HEAD_WWWAUTH
,HEAD_CONNECTION
,HEAD_HOST
};
static struct {
int id;
char* text;
} headers[] = {
{ HEAD_ALLOW, "Allow" },
{ HEAD_AUTH, "Authorization" },
{ HEAD_ENCODE, "Content-Encoding" },
{ HEAD_LENGTH, "Content-Length" },
{ HEAD_TYPE, "Content-Type" },
{ HEAD_DATE, "Date" },
{ HEAD_EXPIRES, "Expires" },
{ HEAD_FROM, "From" },
{ HEAD_IFMODIFIED, "If-Modified-Since" },
{ HEAD_LASTMODIFIED,"Last-Modified" },
{ HEAD_LOCATION, "Location" },
{ HEAD_PRAGMA, "Pragma" },
{ HEAD_REFERER, "Referer" },
{ HEAD_SERVER, "Server" },
{ HEAD_USERAGENT, "User-Agent" },
{ HEAD_WWWAUTH, "WWW-Authenticate" },
{ HEAD_CONNECTION, "Connection" },
{ HEAD_HOST, "Host" },
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
};
static char *days[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
static char *months[]={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
static const char * base64alphabet =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
static int lprintf(char *fmt, ...)
{
va_list argptr;
char sbuf[1024];
if(startup==NULL || startup->lputs==NULL)
return(0);
va_start(argptr,fmt);
vsnprintf(sbuf,sizeof(sbuf),fmt,argptr);
sbuf[sizeof(sbuf)-1]=0;
va_end(argptr);
return(startup->lputs(sbuf));
}
#ifdef _WINSOCKAPI_
static WSADATA WSAData;
static BOOL WSAInitialized=FALSE;
static BOOL winsock_startup(void)
{
int status; /* Status Code */
if((status = WSAStartup(MAKEWORD(1,1), &WSAData))==0) {
lprintf("%s %s",WSAData.szDescription, WSAData.szSystemStatus);
WSAInitialized=TRUE;
return (TRUE);
}
lprintf("!WinSock startup ERROR %d", status);
return (FALSE);
}
#else /* No WINSOCK */
#define winsock_startup() (TRUE)
#endif
static void status(char* str)
{
if(startup!=NULL && startup->status!=NULL)
startup->status(str);
}
static void update_clients(void)
{
if(startup!=NULL && startup->clients!=NULL)
startup->clients(active_clients);
}
static void client_on(SOCKET sock, client_t* client, BOOL update)
{
if(startup!=NULL && startup->client_on!=NULL)
startup->client_on(TRUE,sock,client,update);
}
static void client_off(SOCKET sock)
{
if(startup!=NULL && startup->client_on!=NULL)
startup->client_on(FALSE,sock,NULL,FALSE);
}
static void thread_up(BOOL setuid)
{
thread_count++;
if(startup!=NULL && startup->thread_up!=NULL)
startup->thread_up(TRUE, setuid);
}
static void thread_down(void)
{
if(thread_count>0)
thread_count--;
if(startup!=NULL && startup->thread_up!=NULL)
startup->thread_up(FALSE, FALSE);
}
static int sockprintf(SOCKET sock, char *fmt, ...)
{
int len;
int result;
va_list argptr;
char sbuf[1024];
fd_set socket_set;
struct timeval tv;
va_start(argptr,fmt);
len=vsnprintf(sbuf,sizeof(sbuf),fmt,argptr);
sbuf[sizeof(sbuf)-1]=0;
if(startup->options&WEB_OPT_DEBUG_TX)
lprintf("%04d TX: %s", sock, sbuf);
strcat(sbuf,newline);
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
len+=2;
va_end(argptr);
if(sock==INVALID_SOCKET) {
lprintf("!INVALID SOCKET in call to sockprintf");
return(0);
}
/* Check socket for writability (using select) */
tv.tv_sec=60;
tv.tv_usec=0;
FD_ZERO(&socket_set);
FD_SET(sock,&socket_set);
if((result=select(sock+1,NULL,&socket_set,NULL,&tv))<1) {
lprintf("%04d !ERROR %d (%d) selecting socket for send"
,sock, result, ERROR_VALUE, sock);
return(0);
}
while((result=sendsocket(sock,sbuf,len))!=len) {
if(result==SOCKET_ERROR) {
if(ERROR_VALUE==EWOULDBLOCK) {
mswait(1);
continue;
}
if(ERROR_VALUE==ECONNRESET)
lprintf("%04d Connection reset by peer on send",sock);
else if(ERROR_VALUE==ECONNABORTED)
lprintf("%04d Connection aborted by peer on send",sock);
else
lprintf("%04d !ERROR %d sending on socket",sock,ERROR_VALUE);
return(0);
}
lprintf("%04d !ERROR: short send on socket: %d instead of %d",sock,result,len);
}
return(len);
}
static int getmonth(char *mon)
{
int i;
for(i=0;i<12;i++)
if(!stricmp(mon,months[i]))
return(i);
return 0;
}
static time_t decode_date(char *date)
{
struct tm ti;
char str[64];
ti.tm_sec=0; /* seconds (0 - 60) */
ti.tm_min=0; /* minutes (0 - 59) */
ti.tm_hour=0; /* hours (0 - 23) */
ti.tm_mday=1; /* day of month (1 - 31) */
ti.tm_mon=0; /* month of year (0 - 11) */
ti.tm_year=0; /* year - 1900 */
ti.tm_isdst=0; /* is summer time in effect? */
#if 0 /* non-standard */
ti.tm_zone="UTC"; /* abbreviation of timezone name */
ti.tm_gmtoff=0; /* offset from UTC in seconds */
#endif
if(strtok(date,",")==NULL) {
/* asctime() */
date=strtok(date," ");
SAFECOPY(str,date);
date=strtok(str," ");
ti.tm_mon=getmonth(str);
while(*date && *date<=' ') date++;
SAFECOPY(str,date);
date=strtok(str," ");
ti.tm_mday=atoi(str);
while(*date && *date<=' ') date++;
SAFECOPY(str,date);
date=strtok(str,":");
ti.tm_hour=atoi(str);
while(*date && *date<=' ') date++;
SAFECOPY(str,date);
date=strtok(str,":");
ti.tm_min=atoi(str);
while(*date && *date<=' ') date++;
SAFECOPY(str,date);
date=strtok(str," ");
ti.tm_sec=atoi(str);
while(*date && *date<=' ') date++;
SAFECOPY(str,date);
ti.tm_year=atoi(str)-1900;
}
else {
/* RFC 1123 or RFC 850 */
while(*date && *date<=' ') date++;
SAFECOPY(str,date);
date=strtok(str," -");
ti.tm_mday=atoi(str);
while(*date && *date<='0') date++;
SAFECOPY(str,date);
date=strtok(str," -");
ti.tm_mday=atoi(str);
while(*date && *date<='A') date++;
SAFECOPY(str,date);
date=strtok(str," -");
ti.tm_mon=getmonth(str);
while(*date && *date<='0') date++;
SAFECOPY(str,date);
date=strtok(str," ");
ti.tm_year=atoi(str);
while(*date && *date<='0') date++;
SAFECOPY(str,date);
date=strtok(str,":");
ti.tm_hour=atoi(str);
while(*date && *date<='0') date++;
SAFECOPY(str,date);
date=strtok(str,":");
ti.tm_min=atoi(str);
while(*date && *date<='0') date++;
SAFECOPY(str,date);
ti.tm_sec=atoi(str);
if(ti.tm_year>1900)
ti.tm_year -= 1900;
}
return(mktime(&ti));
}
static SOCKET open_socket(int type)
{
char error[256];
SOCKET sock;
sock=socket(AF_INET, type, IPPROTO_IP);
if(sock!=INVALID_SOCKET && startup!=NULL && startup->socket_open!=NULL)
startup->socket_open(TRUE);
if(sock!=INVALID_SOCKET) {
if(set_socket_options(&scfg, sock,error))
lprintf("%04d !ERROR %s",sock,error);
sockets++;
}
return(sock);
}
static int close_socket(SOCKET sock)
{
int result;
if(sock==INVALID_SOCKET)
return(-1);
shutdown(sock,SHUT_RDWR); /* required on Unix */
result=closesocket(sock);
if(startup!=NULL && startup->socket_open!=NULL) {
startup->socket_open(FALSE);
}
sockets--;
if(result!=0) {
if(ERROR_VALUE!=ENOTSOCK)
lprintf("%04d !ERROR %d closing socket",sock, ERROR_VALUE);
}
return(result);
}
static void close_request(http_session_t * session)
{
if(!session->req.keep_alive) {
close_socket(session->socket);
session->finished=TRUE;
}
}
static int get_header_type(char *header)
{
int i;
for(i=0; headers[i].text!=NULL; i++) {
if(!stricmp(header,headers[i].text)) {
return(headers[i].id);
}
}
return(-1);
}
static char *get_header(int id)
{
int i;
for(i=0;headers[i].text!=NULL;i++) {
if(headers[i].id==id) {
return(headers[i].text);
}
}
return(NULL);
}
static int get_mime_type(char *ext)
{
uint i;
if(ext==NULL)
return(mime_count-1);
for(i=0;i<mime_count;i++) {
if(!stricmp(ext+1,mime_types[i].ext))
return i;
}
return(i);
}
void send_headers(http_session_t *session, const char *status)
{
int ret;
size_t location_offset;
time_t ti;
char status_line[MAX_REQUEST_LINE];
struct stat stats;
struct tm *t;
SAFECOPY(status_line,status);
ret=stat(session->req.request,&stats);
if(!ret && (stats.st_mtime < session->req.if_modified_since)) {
SAFECOPY(status_line,"304 Not Modified");
ret=-1;
}
if(session->req.send_location)
SAFECOPY(status_line,"301 Moved Permanently");
/* Status-Line */
sockprintf(session->socket,"%s %s",http_vers[session->http_ver],status);
/* General Headers */
ti=time(NULL);
t=gmtime(&ti);
sockprintf(session->socket,"%s: %s, %02d %s %04d %02d:%02d:%02d GMT",get_header(HEAD_DATE),days[t->tm_wday],t->tm_mday,months[t->tm_mon],t->tm_year+1900,t->tm_hour,t->tm_min,t->tm_sec);
if(session->req.keep_alive)
sockprintf(session->socket,"%s: %s",get_header(HEAD_CONNECTION),"Keep-Alive");
/* Response Headers */
sockprintf(session->socket,"%s: %s",get_header(HEAD_SERVER),VERSION_NOTICE);
/* Entity Headers */
/* Should be dynamic to allow POST for CGIs */
sockprintf(session->socket,"%s: %s",get_header(HEAD_ALLOW),"GET, HEAD");
if(session->req.send_location) {
location_offset=strlen(startup->root_dir);
if(session->host[0])
location_offset+=strlen(session->host)+1;
sockprintf(session->socket,"%s: %s",get_header(HEAD_LOCATION),session->req.request+location_offset);
}
if(!ret) {
sockprintf(session->socket,"%s: %d",get_header(HEAD_LENGTH),stats.st_size);
sockprintf(session->socket,"%s: %s",get_header(HEAD_TYPE),mime_types[get_mime_type(strrchr(session->req.request,'.'))].type);
t=gmtime(&stats.st_mtime);
sockprintf(session->socket,"%s: %s, %02d %s %04d %02d:%02d:%02d GMT",get_header(HEAD_LASTMODIFIED),days[t->tm_wday],t->tm_mday,months[t->tm_mon],t->tm_year+1900,t->tm_hour,t->tm_min,t->tm_sec);
}
sendsocket(session->socket,newline,2);
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
}
static void sock_sendfile(SOCKET socket,char *path)
{
int file;
lprintf("Sending %s",path);
file=open(path,O_RDONLY);
if(file>=0) {
sendfilesocket(socket, file, 0, 0);
close(file);
}
}
static void send_error(char *message, http_session_t * session)
{
char error_path[MAX_PATH+1];
char error_code[4];
session->req.send_location=FALSE;
if(session->http_ver > HTTP_0_9)
send_headers(session,message);
SAFECOPY(error_code,message);
sprintf(error_path,"%s/%s.html",startup->error_dir,error_code);
sock_sendfile(session->socket,error_path);
close_request(session);
}
static BOOL check_ars(char *ars,http_session_t * session)
{
char *username;
char *password;
uchar *ar;
user_t user;
BOOL authorized;
if(session->req.auth[0]==0)
return(FALSE);
username=strtok(session->req.auth,":");
password=strtok(NULL,":");
/* Require a password */
if(password==NULL)
return(FALSE);
user.number=matchuser(&scfg, username, FALSE);
lprintf("User number: %d",user.number);
getuserdat(&scfg, &user);
if(strnicmp(user.pass,password,LEN_PASS)) {
/* Should go to the hack log? */
lprintf("Incorrect password for: %s Password: %s Should be: ",username,password,user.pass);
return(FALSE);
ar = arstr(NULL,session->req.ars,&scfg);
authorized=chk_ar(&scfg,ar,&user);
if(ar!=NULL && ar!=nular)
free(ar);
if(authorized)
return(TRUE);
/* Should go to the hack log? */
lprintf("Failed ARS Auth: %s Password: %s ARS: %s",username,password,ars);
return(FALSE);
}
static void b64_decode (uchar *p)
{
uchar *read;
uchar *write;
int bits=0;
int working=0;
char * i;
write=p;
read=write;
lprintf("B64 Decoding: %s",p);
for(;*read;read++) {
working<<=6;
i=strchr(base64alphabet,(char)*read);
if(i==NULL) {
break;
}
if(*i=='=') i=(char*)base64alphabet; /* pad char */
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
working |= (i-base64alphabet);
bits+=6;
if(bits>8) {
*(write++)=(uchar)((working&(0xFF<<(bits-8)))>>(bits-8));
bits-=8;
}
}
*write=0;
lprintf("B64 Decoded: %s",p);
return;
}
static BOOL read_mime_types(void)
{
char str[1024];
char * ext;
char * type;
FILE* mime_config;
sprintf(str,"%s/mime_types.cfg",startup->ctrl_dir);
mime_config=fopen(str,"r");
if(mime_config==NULL) {
return(FALSE);
}
while (!feof(mime_config)&&mime_count<MAX_MIME_TYPES) {
if(fgets(str,sizeof(str),mime_config)!=NULL) {
truncsp(str);
ext=strtok(str," \t");
if(ext!=NULL) {
while(*ext && *ext<=' ') ext++;
if(*ext!=';') {
type=strtok(NULL," \t");
if(type!=NULL) {
while(*type && *type<=' ') type++;
if(strlen(ext)>0 && strlen(type)>0) {
SAFECOPY((mime_types[mime_count]).ext,ext);
SAFECOPY((mime_types[mime_count++]).type,type);
}
}
}
}
}
}
fclose(mime_config);
lprintf("Loaded %d mime types",mime_count+1);
strcpy(mime_types[mime_count].ext,"unknown");
strcpy(mime_types[mime_count].type,"application/octet-stream");
return(mime_count>0);
}
static int sockreadline(SOCKET socket, time_t timeout, char *buf, size_t length)
{
char ch;
DWORD i;
BOOL rd;
time_t start;
start=time(NULL);
for(i=0;TRUE;) {
if(!socket_check(socket,&rd)) {
close_socket(socket);
return(-1);
}
if(!rd) {
if(time(NULL)-start>timeout) {
close_socket(socket);
return(-1); /* time-out */
}
mswait(1);
continue; /* no data */
}
if(recv(socket, &ch, 1, 0)!=1)
break;
if(ch=='\n')
break;
if(i<length)
buf[i++]=ch;
}
/* Terminate at length if longer */
if(i>length)
i=length;
if(i>0 && buf[i-1]=='\r')
buf[i-1]=0;
else
buf[i]=0;
lprintf("Recieved: %s",buf);
return(0);
}
static BOOL parse_headers(http_session_t * session)
{
char req_line[MAX_REQUEST_LINE];
char next_char[2];
char *value;
char *p;
int i;
lprintf("Parsing headers");
while(!sockreadline(session->socket,TIMEOUT_THREAD_WAIT,req_line,sizeof(req_line))&&strlen(req_line)) {
/* Check this... SHOULD append lines starting with spaces or horizontal tabs. */
while((recvfrom(session->socket,next_char,1,MSG_PEEK,NULL,0)>0) && (next_char[0]=='\t' || next_char[0]==' ')) {
i=strlen(req_line);
sockreadline(session->socket,TIMEOUT_THREAD_WAIT,req_line+i,sizeof(req_line)-i);
}
strtok(req_line,":");
if((value=strtok(NULL,":"))!=NULL) {
i=get_header_type(req_line);
while(*value && *value<=' ') value++;
switch(i) {
case HEAD_AUTH:
strtok(value," ");
p=strtok(NULL," ");
if(p==NULL)
break;
while(*p && *p<' ') p++;
b64_decode(p);
SAFECOPY(session->req.auth,p);
break;
case HEAD_ENCODE:
/* Not implemented - POST */
break;
case HEAD_LENGTH:
/* Not implemented - POST */
break;
case HEAD_TYPE:
/* Not implemented - POST */
break;
case HEAD_DATE:
/* Not implemented - Who really cares what time the client thinks it is? */
break;
case HEAD_FROM:
/* Not implemented - usefull for logging? Does ANYONE send this? */
break;
case HEAD_IFMODIFIED:
session->req.if_modified_since=decode_date(value);
break;
case HEAD_REFERER:
/* Not implemented - usefull for logging/CGI */
break;
case HEAD_USERAGENT:
/* Not implemented - usefull for logging/CGI */
break;
case HEAD_CONNECTION:
if(!stricmp(value,"Keep-Alive")) {
session->req.keep_alive=TRUE;
}
break;
case HEAD_HOST:
if(session->host[0]==0) {
SAFECOPY(session->host,value);
lprintf("Grabbing from virtual host: %s",value);
}
default:
/* Should store for HTTP_* env variables in CGI */
break;
}
}
}
lprintf("Done parsing headers");
return TRUE;
}
static void unescape(char *p)
{
char * dst;
char code[3];
dst=p;
for(;*p;p++) {
if(*p=='%' && isxdigit(*p) && isxdigit(*p)) {
sprintf(code,"%.2s",p);
*(dst++)=(char)strtol(p+1,NULL,16);
p+=2;
}
else {
*(dst++)=*p;
}
}
*(dst)=0;
}
static int get_version(char *p)
{
int i;
if(p==NULL)
return(0);
while(*p && *p<' ') p++;
if(*p==0)
return(0);
for(i=1;http_vers[i]!=NULL;i++) {
if(!stricmp(p,http_vers[i])) {
lprintf("Got version: %s (%d)",http_vers[i],i);
return(i);
}
}
lprintf("Got version: %s (%d)",http_vers[i-1],i-1);
return(i-1);
}
static char *get_request(char *req_line, http_session_t * session)
{
char * p;
char * retval;
int offset;
while(*req_line && *req_line<' ') req_line++;
SAFECOPY(session->req.request,req_line);
strtok(session->req.request," \t");
retval=strtok(NULL," \t");
unescape(session->req.request);
if(!strnicmp(session->req.request,"http://",7)) {
/* Set HOST value... ignore HOST header */
SAFECOPY(session->host,session->req.request+7);
strtok(session->req.request,"/");
p=strtok(NULL,"/");
if(p==NULL) {
/* Do not allow host values larger than 128 bytes just to be anal */
session->host[0]=0;
p=session->req.request+7;
}
offset=p-session->req.request;
p=session->req.request;
do { *p=*((p++)+offset); } while(*p);
}
return(retval);
}
static char *get_method(char *req_line, http_session_t * session)
{
int i;
for(i=0;methods[i]!=NULL;i++) {
if(!strnicmp(req_line,methods[i],strlen(methods[i]))) {
session->req.method=i;
if(strlen(req_line)<strlen(methods[i])+2) {
send_error("400 Bad Request",session);
return(NULL);
}
return(req_line+strlen(methods[i])+1);
}
}
send_error("501 Not Implemented",session);
return(NULL);
}
static BOOL get_req(http_session_t * session)
{
char req_line[MAX_REQUEST_LINE];
char * p;
if(!sockreadline(session->socket,TIMEOUT_THREAD_WAIT,req_line,sizeof(req_line))) {
lprintf("Got request line: %s",req_line);
p=get_method(req_line,session);
if(p!=NULL) {
lprintf("Method: %s",methods[session->req.method]);
p=get_request(p,session);
lprintf("Request: %s",session->req.request);
session->http_ver=get_version(p);
lprintf("Version: %s",http_vers[session->http_ver]);
return(TRUE);
}
}
close_request(session);
return FALSE;
}
static BOOL check_request(http_session_t * session)
{
char path[MAX_PATH+1];
char str[MAX_PATH+1];
char *last_slash;
FILE* file;
lprintf("Validating request: %s",session->req.request);
if(session->host[0])
sprintf(path,"%s/%s%s",startup->root_dir,session->host,session->req.request);
else
sprintf(path,"%s%s",startup->root_dir,session->req.request);
if(FULLPATH(session->req.request,path,sizeof(session->req.request))==NULL) {
send_error("404 Not Found",session);
return(FALSE);
}
if(!strcmp(path,session->req.request))
session->req.send_location=TRUE;
if(strnicmp(session->req.request,startup->root_dir,strlen(startup->root_dir))) {
send_error("400 Bad Request",session);
session->req.keep_alive=FALSE;
return(FALSE);
}
if(!fexist(path)) {
if(path[strlen(path)-1]!='/')
strcat(path,"/");
strcat(path,startup->index_file_name);
session->req.send_location=TRUE;
}
if(!fexist(path)) {
send_error("404 Not Found",session);
return(FALSE);
}
SAFECOPY(session->req.request,path);
/* Set default ARS to a 0-length string */
session->req.ars[0]=0;
/* Walk up from root_dir checking for access.ars */
SAFECOPY(str,path);
last_slash=str+strlen(startup->root_dir)-1;
/* Loop while there's more /s in path*/
while((last_slash=strchr(last_slash+1,'/'))!=NULL) {
/* Terminate the path after the slash */
*(last_slash+1)=0;
strcat(str,"access.ars");
if(fexist(str)) {
if(!strcmp(path,str)) {
send_error("403 Forbidden",session);
return(FALSE);
}
/* Read access.ars file */
if((file=fopen(str,"r"))!=NULL) {
fgets(session->req.ars,sizeof(session->req.ars),file);
fclose(file);
}
else {
/* If cannot open access.ars, only allow sysop access */
SAFECOPY(session->req.ars,"LEVEL 90");
break;
}
/* Truncate at \r or \n - can use last_slash since I'm done with it.*/
truncsp(session->req.ars);
}
SAFECOPY(str,path);
}
if(session->req.ars[0] && !(check_ars(session->req.ars,session))) {
/* No authentication provided */
sprintf(str,"401 Unauthorized%s%s: Basic realm=\"%s\""
,newline,get_header(HEAD_WWWAUTH),scfg.sys_name);
send_error(str,session);
return(FALSE);
}
return(TRUE);
}
static void respond(http_session_t * session)
{
if(session->http_ver > HTTP_0_9)
send_headers(session,"200 OK");
sock_sendfile(session->socket,session->req.request);
close_request(session);
}
void http_session_thread(void* arg)
{
char host_ip[64];
char* host_name;
HOSTENT* host;
http_session_t session=*(http_session_t*)arg;
free(arg); /* now we don't need to worry about freeing the session */
thread_up(FALSE /* setuid */);
session.finished=FALSE;
if(startup->options&BBS_OPT_NO_HOST_LOOKUP)
host=NULL;
else
host=gethostbyaddr ((char *)&session.addr.sin_addr
,sizeof(session.addr.sin_addr),AF_INET);
if(host!=NULL && host->h_name!=NULL)
host_name=host->h_name;
else
host_name="<no name>";
if(!(startup->options&BBS_OPT_NO_HOST_LOOKUP))
lprintf("%04d Hostname: %s", session.socket, host_name);
if(trashcan(&scfg,host_ip,"ip")) {
close_socket(session.socket);
lprintf("%04d !CLIENT BLOCKED in ip.can: %s", session.socket, host_ip);
thread_down();
return;
}
if(trashcan(&scfg,host_name,"host")) {
close_socket(session.socket);
lprintf("%04d !CLIENT BLOCKED in host.can: %s", session.socket, host_name);
thread_down();
return;