-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.c
executable file
·989 lines (902 loc) · 26.7 KB
/
default.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
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
518
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
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
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
/*
* default.c -- Default URL handler. Includes support for ASP.
*
* Copyright (c) GoAhead Software Inc., 1995-2010. All Rights Reserved.
* Whitelist Copyright (c) PeerSec Networks Inc., 2009. All Rights Reserved.
*
* See the file "license.txt" for usage and redistribution license requirements
*
*/
/******************************** Description *********************************/
/*
* This module provides default URL handling and Active Server Page support.
*
* Validate the incoming URL request by both standard path rules, as well as
* a very tight whitelist that is automatically built based on the files under
* the websDefaultDir directory.
*
* In many cases we don't check the return code of calls to websWrite as
* it is easier, smaller and non-fatal to continue even when the requesting
* browser has gone away.
*/
/********************************* Includes ***********************************/
#include "wsIntrn.h"
/*********************************** Locals ***********************************/
static char_t *websDefaultPage; /* Default page name */
static char_t *websDefaultDir; /* Default Web page directory */
/**************************** Forward Declarations ****************************/
#define MAX_URL_DEPTH 8 /* Max directory depth of websDefaultDir */
#ifdef WEBS_WHITELIST_SUPPORT
#ifndef WIN
#include <dirent.h>
#endif
/* Whitelist flags (more flags in wsIntrn.h) */
#define WHITELIST_BLOCKED 0x100 /* File is in list, but inaccessible */
#define WHITELIST_DIR 0x200 /* Node is a Directory */
#ifdef WEBS_SSL_SUPPORT
typedef struct _sslList {
struct _sslList *next;
char *url;
} sslList_t;
static sslList_t *sslList;
#endif /* WEBS_SSL_SUPPORT */
typedef struct _fileNode {
struct _fileNode *next; /* Next file/dir on same level (NULL if last) */
struct _fileNode *child; /* Non-NULL if this is a directory with child */
char *name; /* path segment with trailing '/' or filename */
int flags; /* Flags pertaining to this list entry */
} fileNode_t;
static fileNode_t *whitelist = NULL; /* Global tree of files in list */
static int websBuildWhitelistRecursive(char *_path, fileNode_t *dir, int level);
static fileNode_t* websWhitelistCheckRecursive(fileNode_t *n, char *path);
static void websDeleteWhitelistRecursive(fileNode_t *dir);
static void websMakePath(char *d, char *src, char *subdir, int wildcard);
#else
#define websBuildWhitelist()
#endif /* WEBS_WHITELIST_SUPPORT */
static void websDefaultWriteEvent(webs_t wp);
/*********************************** Code *************************************/
/*
* Process a default URL request. This will validate the URL and handle "../"
* and will provide support for Active Server Pages. As the handler is the
* last handler to run, it always indicates that it has handled the URL
* by returning 1.
*/
int websDefaultHandler(webs_t wp, char_t *urlPrefix, char_t *webDir, int arg,
char_t *url, char_t *path, char_t *query)
{
websStatType sbuf;
char_t *lpath, *tmp, *date;
int bytes, flags, nchars, rc;
a_assert(websValid(wp));
a_assert(url && *url);
a_assert(path);
a_assert(query);
flags = websGetRequestFlags(wp);
printf("path: %s\n", path);
/*
* We do whitelist validation in addition to standard URL validation.
* The whitelist should really catch anything invalid first.
* If the whitelist check fails, rebuild the list and try again.
* Also validate if we are not on a secure connection, but the whitelist
* entry has the SSL flag set, do not serve the page.
*/
#ifdef LLM //WEBS_WHITELIST_SUPPORT
if ((rc = websWhitelistCheck(wp->url)) < 0) {
websBuildWhitelist();
if ((rc = websWhitelistCheck(wp->url)) < 0) {
printf("llm->%s(%d)\n", __FUNCTION__, __LINE__);
websError(wp, 404, T("Cannot open URL"));
return 1;
}
}
if (!(flags & WEBS_SECURE) && (rc & WHITELIST_SSL)) {
websError(wp, 500, T("HTTPS access required"));
return 1;
}
#endif /* WEBS_WHITELIST_SUPPORT */
/*
* Validate the URL and ensure that ".."s don't give access to unwanted files
*/
if (websValidateUrl(wp, path) < 0) {
/*
* preventing a cross-site scripting exploit -- you may restore the
* following line of code to revert to the original behavior...
websError(wp, 500, T("Invalid URL %s"), url);
*/
websError(wp, 500, T("Invalid URL"));
websBuildWhitelist();
return 1;
}
lpath = websGetRequestLpath(wp);
nchars = gstrlen(lpath) - 1;
if (lpath[nchars] == '/' || lpath[nchars] == '\\') {
lpath[nchars] = '\0';
}
/*
* If the file is a directory, redirect using the nominated default page
*/
if (websPageIsDirectory(lpath)) {
nchars = gstrlen(path);
if (path[nchars-1] == '/' || path[nchars-1] == '\\') {
path[--nchars] = '\0';
}
nchars += gstrlen(websDefaultPage) + 2;
fmtAlloc(&tmp, nchars, T("%s/%s"), path, websDefaultPage);
websRedirect(wp, tmp);
bfreeSafe(B_L, tmp);
return 1;
}
/*
* Open the document. Stat for later use.
*/
if (websPageOpen(wp, lpath, path, O_RDONLY | O_BINARY,
0666) < 0)
{
/* 10 Dec 02 BgP -- according to
* <http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html>,
* the proper code to return here is NOT 400 (old code), which is used
* to indicate a malformed request. Here, the request is good, but the
* error we need to tell the client about is 404 (Not Found).
*/
/*
* 17 Mar 03 BgP -- prevent a cross-site scripting exploit
websError(wp, 404, T("Cannot open URL %s"), url);
*/
// printf("llm->%s(%d)\n", __FUNCTION__, __LINE__);
websError(wp, 404, T("Cannot open URL"));
websBuildWhitelist();
return 1;
}
if (websPageStat(wp, lpath, path, &sbuf) < 0) {
/*
* 17 Mar 03 BgP
* prevent a cross-site scripting exploit
websError(wp, 400, T("Cannot stat page for URL %s"), url);
*/
websError(wp, 400, T("Cannot stat page for URL"));
websBuildWhitelist();
return 1;
}
/*
* If the page has not been modified since the user last received it and it
* is not dynamically generated each time (ASP), then optimize request by
* sending a 304 Use local copy response
*/
websStats.localHits++;
#ifdef WEBS_IF_MODIFIED_SUPPORT
if (flags & WEBS_IF_MODIFIED && !(flags & WEBS_ASP)) {
if (sbuf.mtime <= wp->since) {
websWrite(wp, T("HTTP/1.0 304 Use local copy\r\n"));
/*
* by license terms the following line of code must
* not be modified.
*/
websWrite(wp, T("Server: %s\r\n"), WEBS_NAME);
if (flags & WEBS_KEEP_ALIVE) {
websWrite(wp, T("Connection: keep-alive\r\n"));
}
websWrite(wp, T("\r\n"));
websSetRequestFlags(wp, flags |= WEBS_HEADER_DONE);
websDone(wp, 304);
return 1;
}
}
#endif
/*
* Output the normal HTTP response header
*/
if ((date = websGetDateString(NULL)) != NULL) {
websWrite(wp, T("HTTP/1.0 200 OK\r\nDate: %s\r\n"), date);
/*
* The Server HTTP header below must not be modified unless
* explicitly allowed by licensing terms.
*/
#ifdef WEBS_SSL_SUPPORT
websWrite(wp, T("Server: %s/%s %s/%s\r\n"),
WEBS_NAME, WEBS_VERSION, SSL_NAME, SSL_VERSION);
#else
websWrite(wp, T("Server: %s/%s\r\n"), WEBS_NAME, WEBS_VERSION);
#endif
bfree(B_L, date);
}
flags |= WEBS_HEADER_DONE;
/*
* If this is an ASP request, ensure the remote browser doesn't cache it.
* Send back both HTTP/1.0 and HTTP/1.1 cache control directives
*/
if (flags & WEBS_ASP) {
bytes = 0;
websWrite(wp, T("Pragma: no-cache\r\nCache-Control: no-cache\r\n"));
} else {
if ((date = websGetDateString(&sbuf)) != NULL) {
websWrite(wp, T("Last-modified: %s\r\n"), date);
bfree(B_L, date);
}
bytes = sbuf.size;
}
// websWrite(wp, T("Cache-Control: max-age=%d\r\n"), 5); // llm test add
if (bytes) {
websWrite(wp, T("Content-length: %d\r\n"), bytes);
websSetRequestBytes(wp, bytes);
}
websWrite(wp, T("Content-type: %s\r\n"), websGetRequestType(wp));
if ((flags & WEBS_KEEP_ALIVE) && !(flags & WEBS_ASP)) {
websWrite(wp, T("Connection: keep-alive\r\n"));
}
websWrite(wp, T("\r\n"));
/*
* All done if the browser did a HEAD request
*/
if (flags & WEBS_HEAD_REQUEST) {
websDone(wp, 200);
return 1;
}
/*
* Evaluate ASP requests
*/
if (flags & WEBS_ASP) {
if (websAspRequest(wp, lpath) < 0) {
return 1;
}
websDone(wp, 200);
return 1;
}
/*
* Return the data via background write
*/
websSetRequestSocketHandler(wp, SOCKET_WRITABLE, websDefaultWriteEvent);
return 1;
}
#ifdef WIN32
static int badPath(char_t* path, char_t* badPath, int badLen)
{
int retval = 0;
int len = gstrlen(path);
int i = 0;
if (len <= badLen +1)
{
for (i = 0; i < badLen; ++i)
{
if (badPath[i] != gtolower(path[i]))
{
return 0;
}
}
/* if we get here, the first 'badLen' characters match.
* If 'path' is 1 character larger than 'badPath' and that extra
* character is NOT a letter or a number, we have a bad path.
*/
retval = 1;
if (badLen + 1 == len)
{
/* e.g. path == "aux:" */
if (gisalnum(path[len-1]))
{
/* the last character is alphanumeric, so we let this path go
* through.
*/
retval = 0;
}
}
}
return retval;
}
static int isBadWindowsPath(char_t** parts, int partCount)
{
/*
* If we're running on Windows 95/98/ME, malicious users can crash the
* OS by requesting an URL with any of several reserved DOS device names
* in them (AUX, NUL, etc.).
* If we're running on any of those OS versions, we scan the URL
* for paths with any of these elements before
* trying to access them. If any of the subdirectory names match one
* of our prohibited links, we declare this to be a 'bad' path, and return
* 1 to indicate this. This may be a heavy-handed approach, but should
* prevent the DOS attack.
* NOTE that this function is only compiled in when we are running on Win32,
* and only has an effect when running on Win95/98, or ME. On all other
* versions of Windows, we check the version info, and return 0 immediately.
*
* According to http://packetstormsecurity.nl/0003-exploits/SCX-SA-01.txt:
* II. Problem Description
* When the Microsoft Windows operating system is parsing a path that
* is being crafted like "c:\[device]\[device]" it will halt, and crash
* the entire operating system.
* Four device drivers have been found to crash the system. The CON,
* NUL, AUX, CLOCK$ and CONFIG$ are the two device drivers which are
* known to crash. Other devices as LPT[x]:, COM[x]: and PRN have not
* been found to crash the system.
* Making combinations as CON\NUL, NUL\CON, AUX\NUL, ... seems to
* crash Ms Windows as well.
* Calling a path such as "C:\CON\[filename]" won't result in a crash
* but in an error-message. Creating the map "CON", "CLOCK$", "AUX"
* "NUL" or "CONFIG$" will also result in a simple error-message
* saying: ''creating that map isn't allowed''.
*
* returns 1 if it finds a bad path element.
*/
OSVERSIONINFO version;
int i;
version.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
if (GetVersionEx(&version))
{
if (VER_PLATFORM_WIN32_NT != version.dwPlatformId)
{
/*
* we are currently running on 95/98/ME.
*/
for (i = 0; i < partCount; ++i)
{
/*
* check against the prohibited names. If any of our requested
* subdirectories match any of these, return '1' immediately.
*/
if (
(badPath(parts[i], T("con"), 3)) ||
(badPath(parts[i], T("com"), 3)) ||
(badPath(parts[i], T("nul"), 3)) ||
(badPath(parts[i], T("aux"), 3)) ||
(badPath(parts[i], T("clock$"), 6)) ||
(badPath(parts[i], T("config$"), 7)) ) {
return 1;
}
}
}
}
/*
* either we're not on one of the bad OS versions, or the request has
* no problems.
*/
return 0;
}
#endif
/******************************************************************************/
/*
* Validate the URL path and process ".." path segments. Return -1 if the URL
* is bad.
*/
int websValidateUrl(webs_t wp, char_t *path)
{
/*
Thanks to Dhanwa T ([email protected]) for this fix -- previously,
if an URL was requested having more than (the hardcoded) 64 parts,
the webServer would experience a hard crash as it attempted to
write past the end of the array 'parts'.
Also fixes: http://www.securiteam.com/securitynews/5MP0C1580W.html
*/
char_t *parts[MAX_URL_DEPTH]; /* Array of ptr's to URL parts */
char_t *token, *dir, *lpath;
int i, len, npart;
a_assert(websValid(wp));
a_assert(path);
dir = websGetRequestDir(wp);
if (dir == NULL || *dir == '\0') {
return -1;
}
/*
* Copy the string so we don't destroy the original
*/
path = bstrdup(B_L, path);
websDecodeUrl(path, path, gstrlen(path));
len = npart = 0;
parts[0] = NULL;
/*
* Fixed by Matt Moore, 22 Jul 02
* http://www.securiteam.com/securitynews/5RP0I007PG.html
* http://www.securiteam.com/securitynews/5QP010U3FS.html
*
* There were reports that a directory traversal exploit was
* possible in the WebServer running under Windows if directory paths
* outside the server's specified root web were given by URL-encoding the
* backslash character, like:
*
* GoAhead is vulnerable to a directory traversal bug. A request such as
*
* GoAhead-server/../../../../../../../ results in an error message
* 'Cannot open URL'.
* However, by encoding the '/' character, it is possible to break out of
* the web root and read arbitrary files from the server.
* Hence a request like:
*
* GoAhead-server/..%5C..%5C..%5C..%5C..%5C..%5C/winnt/win.ini returns the
* contents of the win.ini file.
* (Note that the description uses forward slashes (0x2F), but the example
* uses backslashes (0x5C). In my tests, forward slashes are correctly
* trapped, but backslashes are not. The code below substitutes forward
* slashes for backslashes before attempting to validate that there are no
* unauthorized paths being accessed.
*/
token = gstrchr(path, '\\');
while (token != NULL) {
*token = '/';
token = gstrchr(token, '\\');
}
token = gstrtok(path, T("/"));
/*
* Look at each directory segment and process "." and ".." segments
* Don't allow the browser to pop outside the root web.
*/
while (token != NULL)
{
if (npart >= MAX_URL_DEPTH)
{
/*
* malformed URL -- too many parts for us to process.
*/
bfree(B_L, path);
return -1;
}
if (gstrcmp(token, T("..")) == 0)
{
if (npart > 0)
{
npart--;
}
} else if (gstrcmp(token, T(".")) != 0) {
parts[npart] = token;
len += gstrlen(token) + 1;
npart++;
}
token = gstrtok(NULL, T("/"));
}
#ifdef WIN32
if (isBadWindowsPath(parts, npart))
{
bfree(B_L, path);
return -1;
}
#endif
/*
* Create local path for document. Need extra space all "/" and null.
*/
if (npart || (gstrcmp(path, T("/")) == 0) || (path[0] == '\0')) {
lpath = balloc(B_L, (gstrlen(dir) + 1 + len + 1) * sizeof(char_t));
gstrcpy(lpath, dir);
for (i = 0; i < npart; i++) {
gstrcat(lpath, T("/"));
gstrcat(lpath, parts[i]);
}
websSetRequestLpath(wp, lpath);
bfree(B_L, path);
bfree(B_L, lpath);
} else {
bfree(B_L, path);
return -1;
}
return 0;
}
/******************************************************************************/
/*
* Do output back to the browser in the background. This is a socket
* write handler.
*/
static void websDefaultWriteEvent(webs_t wp)
{
int len, wrote, flags, bytes, written;
char *buf;
a_assert(websValid(wp));
flags = websGetRequestFlags(wp);
websSetTimeMark(wp);
wrote = bytes = 0;
written = websGetRequestWritten(wp);
/*
* We only do this for non-ASP documents
*/
if ( !(flags & WEBS_ASP)) {
bytes = websGetRequestBytes(wp);
/*
* Note: websWriteDataNonBlock may return less than we wanted. It will
* return -1 on a socket error
*/
if ((buf = balloc(B_L, PAGE_READ_BUFSIZE)) == NULL) {
websError(wp, 200, T("Can't get memory"));
} else {
while ((len = websPageReadData(wp, buf, PAGE_READ_BUFSIZE)) > 0) {
if ((wrote = websWriteDataNonBlock(wp, buf, len)) < 0) {
break;
}
written += wrote;
if (wrote != len) {
websPageSeek(wp, - (len - wrote));
break;
}
}
/*
* Safety. If we are at EOF, we must be done
*/
if (len == 0) {
a_assert(written >= bytes);
written = bytes;
}
bfree(B_L, buf);
}
}
/*
* We're done if an error, or all bytes output
*/
websSetRequestWritten(wp, written);
if (wrote < 0 || written >= bytes) {
websDone(wp, 200);
}
}
/******************************************************************************/
/*
* Initialize variables and data for the default URL handler module
*/
void websDefaultOpen()
{
#ifdef WEBS_WHITELIST_SUPPORT
#ifdef WEBS_SSL_SUPPORT
sslList = NULL;
#endif
whitelist = NULL;
websBuildWhitelist();
#endif /* WEBS_WHITELIST_SUPPORT */
}
/******************************************************************************/
/*
* Closing down. Free resources.
*/
void websDefaultClose()
{
#ifdef WEBS_WHITELIST_SUPPORT
#ifdef WEBS_SSL_SUPPORT
sslList_t *l;
while (sslList != NULL) {
l = sslList;
sslList = sslList->next;
bfreeSafe(B_L, l->url);
bfree(B_L, l);
}
#endif
websDeleteWhitelist();
#endif /* WEBS_WHITELIST_SUPPORT */
if (websDefaultPage) {
bfree(B_L, websDefaultPage);
websDefaultPage = NULL;
}
if (websDefaultDir) {
bfree(B_L, websDefaultDir);
websDefaultDir = NULL;
}
}
/******************************************************************************/
/*
* Get the default page for URL requests ending in "/"
*/
char_t *websGetDefaultPage()
{
return websDefaultPage;
}
/******************************************************************************/
/*
* Get the default web directory
*/
char_t *websGetDefaultDir()
{
return websDefaultDir;
}
/******************************************************************************/
/*
* Set the default page for URL requests ending in "/"
*/
void websSetDefaultPage(char_t *page)
{
a_assert(page && *page);
if (websDefaultPage) {
bfree(B_L, websDefaultPage);
}
websDefaultPage = bstrdup(B_L, page);
}
/******************************************************************************/
/*
* Set the default web directory
*/
void websSetDefaultDir(char_t *dir)
{
a_assert(dir && *dir);
if (websDefaultDir) {
bfree(B_L, websDefaultDir);
}
websDefaultDir = bstrdup(B_L, dir);
}
#ifdef WEBS_WHITELIST_SUPPORT
/******************************************************************************/
/*
* Build a whitelist by recursing the root www directory
* Matches are NOT case sensitive
* Returns < 0 if not found, else returns whitelist flags
*/
int websWhitelistCheck(char *url)
{
fileNode_t *n;
if ((n = websWhitelistCheckRecursive(whitelist, url)) == NULL) {
return -1;
}
return n->flags;
}
static fileNode_t* websWhitelistCheckRecursive(fileNode_t *n, char *path)
{
char *c, *p;
if (n == NULL) return NULL;
if ((n->flags & WHITELIST_BLOCKED) != 0) {
return websWhitelistCheckRecursive(n->next, path);
}
if (n->name) {
for (c = n->name, p = path; *c != '\0' && *p != '\0'; c++, p++) {
if (tolower(*c) != tolower(*p)) {
break; /* not a match */
}
}
}
if (*p == '\0' && (*c == '\0' || (*c == '/' && *(c+1) == '\0'))) {
return n; /* We've matched to the end of the path */
}
if (*c == '\0' && (n->flags & WHITELIST_DIR)) {
return websWhitelistCheckRecursive(n->child, p);
}
return websWhitelistCheckRecursive(n->next, path);
}
/*
* Add a DIRECTORY url to the ssl-only urls list, and rebuild the whitelist
* This API can be called multiple times, but should only be called
* AFTER websOpenServer()
* URL should contain trailing '/', eg. "/matrixssl/"
*/
#ifdef WEBS_SSL_SUPPORT
int websRequireSSL(char *url)
{
sslList_t *l;
int sz;
l = balloc(B_L, sizeof(sslList_t));
memset(l, 0x0, sizeof(sslList_t));
sz = strlen(url) + 1;
if (url[sz - 2] == '/') {
l->url = bstrdup(B_L, url);
} else {
sz++;
l->url = balloc(B_L, sz);
memcpy(l->url, url, sz - 1);
l->url[sz - 2] = '/';
l->url[sz - 1] = '\0';
}
l->next = sslList;
sslList = l;
websBuildWhitelist();
return 0;
}
#endif /* WEBS_SSL_SUPPORT */
/******************************************************************************/
/*
* Free all allocated memory in whitelist
*/
void websDeleteWhitelist(void)
{
websDeleteWhitelistRecursive(whitelist);
whitelist = NULL;
}
static void websDeleteWhitelistRecursive(fileNode_t *dir)
{
if (dir == NULL) return;
if (dir->child) { /* Depth first recursion to delete leaves */
websDeleteWhitelistRecursive(dir->child);
}
if (dir->next) {
websDeleteWhitelistRecursive(dir->next);
}
if (dir->name) {
bfree(B_L, dir->name);
}
memset(dir, 0x0, sizeof(fileNode_t));
bfree(B_L, dir);
}
/******************************************************************************/
/*
* Build or rebuild whitelist
*/
int websBuildWhitelist(void)
{
if (websDefaultDir == NULL || *websDefaultDir == '\0') {
return -1;
}
websDeleteWhitelistRecursive(whitelist);
whitelist = balloc(B_L, sizeof(fileNode_t));
memset(whitelist, 0x0, sizeof(fileNode_t));
whitelist->name = bstrdup(B_L, "/");
whitelist->flags |= WHITELIST_DIR;
return websBuildWhitelistRecursive(websDefaultDir, whitelist, 0);
}
/******************************************************************************/
/*
* WINDOWS: Build whitelist
*/
#ifdef WIN32
static int websBuildWhitelistRecursive(char *_path, fileNode_t *dir, int level)
{
WIN32_FIND_DATA findData;
HANDLE fh;
fileNode_t *cnode, *nnode; /* current node, next node */
#ifdef WEBS_SSL_SUPPORT
sslList_t *l;
#endif
int rc = 0;
int firstTime;
char path[MAX_PATH];
char tmppath[MAX_PATH];
firstTime = 1;
cnode = dir;
websMakePath(path, _path, NULL, 1);
fh = FindFirstFile((LPCSTR)path, &findData);
while (fh != INVALID_HANDLE_VALUE) {
if ((strcmp(findData.cFileName, ".") == 0) ||
(strcmp(findData.cFileName, "..") == 0) ||
(findData.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) ||
(findData.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM)) {
goto nextFile;
}
nnode = balloc(B_L, sizeof(fileNode_t));
memset(nnode, 0x0, sizeof(fileNode_t));
if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
fmtAlloc(&(nnode->name), MAX_PATH, "%s/", findData.cFileName);
nnode->flags |= WHITELIST_DIR;
} else {
nnode->name = bstrdup(B_L, findData.cFileName);
}
if (firstTime) {
cnode->child = nnode;
firstTime = 0;
} else {
cnode->next = nnode;
}
cnode = nnode;
if (strncmp(path + strlen(websDefaultDir), "/" CGI_BIN,
strlen(CGI_BIN) + 1) == 0) {
cnode->flags |= WHITELIST_CGI;
}
#ifdef WEBS_SSL_SUPPORT
for (l = sslList; l != NULL; l = l->next) {
if (strncmp(path + strlen(websDefaultDir), l->url,
strlen(l->url)) == 0) {
cnode->flags |= WHITELIST_SSL;
}
}
#endif /* WEBS_SSL_SUPPORT */
if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
websMakePath(tmppath, path, findData.cFileName, 1);
if (level < MAX_URL_DEPTH) {
if (websBuildWhitelistRecursive(tmppath, cnode, level + 1) < 0){
cnode->flags |= WHITELIST_BLOCKED;
}
}
}
nextFile:
if (FindNextFile(fh, &findData) == 0) {
if (GetLastError() != ERROR_NO_MORE_FILES) {
rc = -1;
}
break;
}
}
FindClose(fh);
return rc;
}
/******************************************************************************/
/*
* LINUX, MACOSX, ETC: Build whitelist
*/
#else /* !WIN */
static int websBuildWhitelistRecursive(char *_path, fileNode_t *dir, int level)
{
struct dirent *findData, *result;
DIR *fh;
fileNode_t *cnode, *nnode; /* current node, next node */
int firstTime;
char path[PATH_MAX];
char tmppath[PATH_MAX];
firstTime = 1;
cnode = dir;
/* On some platforms such as Solaris, struct dirent includes only one
* byte for d_name field, meaning we would overflow the field when
* readdir_r is called. So we check for this here.
* Another potential issue is if somehow a filesystem is mounted or linked
* in a subdirectory or file that has name longer than PATH_MAX. We
* ignore that possibility here, and leave it to the user to ensure that
* the wwwroot directory does not contain this configuration.
* http://womble.decadentplace.org.uk/readdir_r-advisory.html
*/
if (sizeof(struct dirent) > PATH_MAX) {
findData = balloc(B_L, sizeof(struct dirent));
} else {
findData = balloc(B_L, sizeof(struct dirent) + PATH_MAX);
}
websMakePath(path, _path, NULL, 0);
if ((fh = opendir(path)) == NULL) {
bfree(B_L, findData);
return -1; /* Likely no permission to access this directory */
}
while ((readdir_r(fh, findData, &result) == 0) && result) {
if ((strcmp(findData->d_name, ".") == 0) ||
(strcmp(findData->d_name, "..") == 0) ||
(findData->d_type != DT_REG && findData->d_type != DT_DIR)) {
continue;
}
nnode = balloc(B_L, sizeof(fileNode_t));
memset(nnode, 0x0, sizeof(fileNode_t));
if (findData->d_type == DT_DIR) {
fmtAlloc(&(nnode->name), PATH_MAX, "%s/", findData->d_name);
nnode->flags |= WHITELIST_DIR;
} else {
nnode->name = bstrdup(B_L, findData->d_name);
}
if (firstTime) {
cnode->child = nnode;
firstTime = 0;
} else {
cnode->next = nnode;
}
cnode = nnode;
if (strncmp(path + strlen(websDefaultDir), "/" CGI_BIN,
strlen(CGI_BIN) + 1) == 0) {
cnode->flags |= WHITELIST_CGI;
}
#ifdef WEBS_SSL_SUPPORT
sslList_t *l;
for (l = sslList; l != NULL; l = l->next) {
if (strncmp(path + strlen(websDefaultDir), l->url,
strlen(l->url)) == 0) {
cnode->flags |= WHITELIST_SSL;
break;
}
}
#endif /* WEBS_SSL_SUPPORT */
if (findData->d_type == DT_DIR) {
websMakePath(tmppath, path, findData->d_name, 0);
if (level < MAX_URL_DEPTH) {
if (websBuildWhitelistRecursive(tmppath, cnode, level + 1) < 0){
cnode->flags |= WHITELIST_BLOCKED;
}
}
}
}
bfree(B_L, findData);
closedir(fh);
return 0;
}
#endif /* WIN, LINUX, ETC */
/*
Copy src to d,
Append subdir, if subdir != NULL,
Append '/' and '*' if wildcard != 0
*/
static void websMakePath(char *d, char *src, char *subdir, int wildcard)
{
int max;
char *a;
#if WIN
max = MAX_PATH - 4 - (subdir ? strlen(subdir) : 0);
#else
max = PATH_MAX - 4 - (subdir ? strlen(subdir) : 0);
#endif
for (a = src; *a != '\0' && (int)(a - src) < max; a++, d++) {
*d = *a;
}
if (*(d - 1) == '*') d -= 1;
if (subdir) {
if (*(d - 1) != '/') {
*d = '/'; d++;
}
for (a = subdir; *a != '\0'; a++) {
*d = *a; d++;
}
}
if (*(d - 1) != '/') {
*d = '/'; d++;
}
if (wildcard) {
*d = '*'; d++;
}
*d = '\0';
}
#endif /* WEBS_WHITELIST_SUPPORT */
/******************************************************************************/