-
Notifications
You must be signed in to change notification settings - Fork 0
/
shttpd.c
1844 lines (1566 loc) · 51.1 KB
/
shttpd.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
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com>
* All rights reserved
*
* "THE BEER-WARE LICENSE" (Revision 42):
* Sergey Lyubka wrote this file. As long as you retain this notice you
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return.
*/
/*
* Small and portable HTTP server, http://shttpd.sourceforge.net
* $Id: shttpd.c,v 1.57 2008/08/23 21:00:38 drozd Exp $
*/
#define MY_DEBUGGING 1
#include "defs.h"
time_t _shttpd_current_time; /* Current UTC time */
int _shttpd_tz_offset; /* Time zone offset from UTC */
// int _shttpd_exit_flag; /* Program exit flag */
const struct vec _shttpd_known_http_methods[] = {
{"GET", 3},
{"POST", 4},
{"PUT", 3},
{"DELETE", 6},
{"HEAD", 4},
{NULL, 0}
};
/*
* This structure tells how HTTP headers must be parsed.
* Used by parse_headers() function.
*/
#define OFFSET(x) offsetof(struct headers, x)
static const struct http_header http_headers[] = {
{16, HDR_INT, OFFSET(cl), "Content-Length: " },
{14, HDR_STRING, OFFSET(ct), "Content-Type: " },
{12, HDR_STRING, OFFSET(useragent), "User-Agent: " },
{19, HDR_DATE, OFFSET(ims), "If-Modified-Since: " },
{15, HDR_STRING, OFFSET(auth), "Authorization: " },
{9, HDR_STRING, OFFSET(referer), "Referer: " },
{8, HDR_STRING, OFFSET(cookie), "Cookie: " },
{10, HDR_STRING, OFFSET(location), "Location: " },
{8, HDR_INT, OFFSET(status), "Status: " },
{7, HDR_STRING, OFFSET(range), "Range: " },
{12, HDR_STRING, OFFSET(connection), "Connection: " },
{19, HDR_STRING, OFFSET(transenc), "Transfer-Encoding: " },
{0, HDR_INT, 0, NULL }
};
struct shttpd_ctx *init_ctx(const char *config_file, int argc, char *argv[]);
static void process_connection(struct conn *, int, int);
int _shttpd_is_true(const char *str)
{
static const char *trues[] = {"1", "yes", "true", "jawohl", NULL};
const char **p;
for (p = trues; *p != NULL; p++)
if (str && !strcmp(str, *p))
return (TRUE);
return (FALSE);
}
static void free_list(struct llhead *head, void (*dtor)(struct llhead *))
{
struct llhead *lp, *tmp;
LL_FOREACH_SAFE(head, lp, tmp) {
LL_DEL(lp);
dtor(lp);
}
}
static void listener_destructor(struct llhead *lp)
{
struct listener *listener = LL_ENTRY(lp, struct listener, link);
(void) closesocket(listener->sock);
free(listener);
}
static void registered_uri_destructor(struct llhead *lp)
{
struct registered_uri *ruri = LL_ENTRY(lp, struct registered_uri, link);
free((void *) ruri->uri);
free(ruri);
}
static void acl_destructor(struct llhead *lp)
{
struct acl *acl = LL_ENTRY(lp, struct acl, link);
free(acl);
}
int _shttpd_url_decode(const char *src, int src_len, char *dst, int dst_len)
{
int i, j, a, b;
#define HEXTOI(x) (isdigit(x) ? x - '0' : x - 'W')
for (i = j = 0; i < src_len && j < dst_len - 1; i++, j++)
switch (src[i]) {
case '%':
if (isxdigit(((unsigned char *) src)[i + 1]) &&
isxdigit(((unsigned char *) src)[i + 2])) {
a = tolower(((unsigned char *)src)[i + 1]);
b = tolower(((unsigned char *)src)[i + 2]);
dst[j] = (HEXTOI(a) << 4) | HEXTOI(b);
i += 2;
} else {
dst[j] = '%';
}
break;
default:
dst[j] = src[i];
break;
}
dst[j] = '\0'; /* Null-terminate the destination */
return (j);
}
static const char * is_alias(struct shttpd_ctx *ctx, const char *uri,
struct vec *a_uri, struct vec *a_path)
{
const char *p, *s = ctx->options[OPT_ALIASES];
size_t len;
// MY_DEBUG("is_alias: aliases [%s]\n", s == NULL ? "" : s);
FOR_EACH_WORD_IN_LIST(s, len) {
if ((p = memchr(s, '=', len)) == NULL || p >= s + len || p == s)
continue;
if (memcmp(uri, s, p - s) == 0) {
a_uri->ptr = s;
a_uri->len = p - s;
a_path->ptr = ++p;
a_path->len = (s + len) - p;
return (s);
}
}
return (NULL);
}
void _shttpd_stop_stream(struct stream *stream)
{
#if 1 /* wkliang:20100710 - BUGGY, let connection_dtor do closing */
if (stream->io_class != NULL && stream->io_class->close != NULL) {
MY_DEBUG("%s(%d, %s)\n", __func__, stream->conn->rem.chan.sock,
stream->io_class ? stream->io_class->name : "nil");
stream->io_class->close(stream);
stream->io_class= NULL;
}
#endif
stream->flags |= FLAG_CLOSED;
stream->flags &= ~(FLAG_R | FLAG_W | FLAG_ALWAYS_READY);
}
/*
* Setup listening socket on given port, return socket
*/
static int shttpd_open_listening_port(int port)
{
int sock, on = 1;
struct usa sa;
#ifdef _WIN32
{WSADATA data; WSAStartup(MAKEWORD(2,2), &data);}
#endif /* _WIN32 */
sa.len = sizeof(sa.u.sin);
sa.u.sin.sin_family = AF_INET;
sa.u.sin.sin_port = htons((uint16_t) port);
sa.u.sin.sin_addr.s_addr = htonl(INADDR_ANY);
if ((sock = socket(PF_INET, SOCK_STREAM, 6)) == -1)
goto fail;
if (_shttpd_set_non_blocking_mode(sock) != 0)
goto fail;
if (setsockopt(sock, SOL_SOCKET,
SO_REUSEADDR,(char *) &on, sizeof(on)) != 0)
goto fail;
if (bind(sock, &sa.u.sa, sa.len) < 0)
goto fail;
if (listen(sock, 128) != 0)
goto fail;
#ifndef _WIN32
(void) fcntl(sock, F_SETFD, FD_CLOEXEC);
#endif /* !_WIN32 */
return (sock);
fail:
if (sock != -1)
(void) closesocket(sock);
MY_ERROR("open_listening_port(%d): %s\n", port, strerror(errno));
return (-1);
}
/*
* Check whether full request is buffered Return headers length, or 0
*/
int _shttpd_get_headers_len(const char *buf, size_t buflen)
{
const char *s, *e;
int len = 0;
for (s = buf, e = s + buflen - 1; len == 0 && s < e; s++)
/* Control characters are not allowed but >=128 is. */
if (!isprint(* (unsigned char *) s) && *s != '\r' &&
*s != '\n' && * (unsigned char *) s < 128)
len = -1;
else if (s[0] == '\n' && s[1] == '\n')
len = s - buf + 2;
else if (s[0] == '\n' && &s[1] < e &&
s[1] == '\r' && s[2] == '\n')
len = s - buf + 3;
return (len);
}
/*
* Send error message back to a client.
*/
void _shttpd_send_server_error(struct conn *c, int status, const char *reason)
{
struct llhead *lp;
struct error_handler *e;
LL_FOREACH(&c->ctx->error_handlers, lp) {
e = LL_ENTRY(lp, struct error_handler, link);
if (e->code == status) {
if (c->loc.io_class != NULL &&
c->loc.io_class->close != NULL)
c->loc.io_class->close(&c->loc);
io_clear(&c->loc.io);
_shttpd_setup_embedded_stream(c,
e->callback, e->callback_data);
return;
}
}
io_clear(&c->loc.io);
c->loc.io.head = _shttpd_snprintf(c->loc.io.buf, c->loc.io.size,
"HTTP/1.1 %d %s\r\n"
"Content-Type: text/plain\r\n"
"Content-Length: 12\r\n"
"\r\n"
"Error: %03d\r\n",
status, reason, status);
c->loc.content_len = 10;
c->status = status;
_shttpd_stop_stream(&c->loc);
}
/*
* Convert month to the month number. Return -1 on error, or month number
*/
static int montoi(const char *s)
{
static const char *ar[] = {
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
size_t i;
for (i = 0; i < sizeof(ar) / sizeof(ar[0]); i++)
if (!strcmp(s, ar[i]))
return (i);
return (-1);
}
/*
* Parse date-time string, and return the corresponding time_t value
*/
static time_t date_to_epoch(const char *s)
{
struct tm tm, *tmp;
char mon[32];
int sec, min, hour, mday, month, year;
(void) memset(&tm, 0, sizeof(tm));
sec = min = hour = mday = month = year = 0;
if (((sscanf(s, "%d/%3s/%d %d:%d:%d",
&mday, mon, &year, &hour, &min, &sec) == 6) ||
(sscanf(s, "%d %3s %d %d:%d:%d",
&mday, mon, &year, &hour, &min, &sec) == 6) ||
(sscanf(s, "%*3s, %d %3s %d %d:%d:%d",
&mday, mon, &year, &hour, &min, &sec) == 6) ||
(sscanf(s, "%d-%3s-%d %d:%d:%d",
&mday, mon, &year, &hour, &min, &sec) == 6)) &&
(month = montoi(mon)) != -1) {
tm.tm_mday = mday;
tm.tm_mon = month;
tm.tm_year = year;
tm.tm_hour = hour;
tm.tm_min = min;
tm.tm_sec = sec;
}
if (tm.tm_year > 1900)
tm.tm_year -= 1900;
else if (tm.tm_year < 70)
tm.tm_year += 100;
/* Set Daylight Saving Time field */
tmp = localtime(&_shttpd_current_time);
tm.tm_isdst = tmp->tm_isdst;
return (mktime(&tm));
}
static void remove_double_dots(char *s)
{
char *p = s;
while (*s != '\0') {
*p++ = *s++;
if (s[-1] == '/' || s[-1] == '\\')
while (*s == '.' || *s == '/' || *s == '\\')
s++;
}
*p = '\0';
}
void _shttpd_parse_headers(const char *s, int len, struct headers *parsed)
{
const struct http_header *h;
union variant *v;
const char *p, *e = s + len;
/* Loop through all headers in the request */
while (s < e) {
/* Find where this header ends */
for (p = s; p < e && *p != '\n'; ) p++;
/* Is this header known to us ? */
for (h = http_headers; h->len != 0; h++)
if (e - s > h->len &&
!_shttpd_strncasecmp(s, h->name, h->len))
break;
/* If the header is known to us, store its value */
if (h->len != 0) {
/* Shift to where value starts */
s += h->len;
/* Find place to store the value */
v = (union variant *) ((char *) parsed + h->offset);
/* Fetch header value into the connection structure */
if (h->type == HDR_STRING) {
v->v_vec.ptr = s;
v->v_vec.len = p - s;
if (p[-1] == '\r' && v->v_vec.len > 0)
v->v_vec.len--;
} else if (h->type == HDR_INT) {
v->v_big_int = strtoul(s, NULL, 10);
} else if (h->type == HDR_DATE) {
v->v_time = date_to_epoch(s);
}
}
s = p + 1; /* Shift to the next header */
}
}
static const struct {
const char *extension;
int ext_len;
const char *mime_type;
} builtin_mime_types[] = {
{"html", 4, "text/html" },
{"htm", 3, "text/html" },
{"txt", 3, "text/plain" },
{"css", 3, "text/css" },
{"srt", 3, "text/x-srt" },
{"ico", 3, "image/x-icon" },
{"gif", 3, "image/gif" },
{"jpg", 3, "image/jpeg" },
{"jpeg", 4, "image/jpeg" },
{"png", 3, "image/png" },
{"svg", 3, "image/svg+xml" },
{"torrent", 7, "application/x-bittorrent" },
{"wav", 3, "audio/x-wav" },
{"mp3", 3, "audio/x-mp3" },
{"mid", 3, "audio/mid" },
{"m3u", 3, "audio/x-mpegurl" },
{"ram", 3, "audio/x-pn-realaudio" },
{"ra", 2, "audio/x-pn-realaudio" },
{"doc", 3, "application/msword", },
{"exe", 3, "application/octet-stream" },
{"zip", 3, "application/x-zip-compressed" },
{"xls", 3, "application/excel" },
{"tgz", 3, "application/x-tar-gz" },
{"tar.gz", 6, "application/x-tar-gz" },
{"tar", 3, "application/x-tar" },
{"gz", 2, "application/x-gunzip" },
{"arj", 3, "application/x-arj-compressed" },
{"ogg", 3, "application/ogg" },
{"rar", 3, "application/x-arj-compressed" },
{"rtf", 3, "application/rtf" },
{"pdf", 3, "application/pdf" },
{"swf", 3, "application/x-shockwave-flash" },
{"mpg", 3, "video/mpeg" },
{"mpeg", 4, "video/mpeg" },
{"ogv", 3, "video/ogg" },
{"webm", 4, "video/webm" },
{"asf", 3, "video/x-ms-asf" },
{"avi", 3, "video/x-msvideo" },
{"bmp", 3, "image/bmp" },
{NULL, 0, NULL }
};
void _shttpd_get_mime_type(struct shttpd_ctx *ctx,
const char *uri, int len, struct vec *vec)
{
const char *eq, *p = ctx->options[OPT_MIME_TYPES];
int i, n, ext_len;
/* Firt, loop through the custom mime types if any */
FOR_EACH_WORD_IN_LIST(p, n) {
if ((eq = memchr(p, '=', n)) == NULL || eq >= p + n || eq == p)
continue;
ext_len = eq - p;
if (len > ext_len && uri[len - ext_len - 1] == '.' &&
!_shttpd_strncasecmp(p, &uri[len - ext_len], ext_len)) {
vec->ptr = eq + 1;
vec->len = p + n - vec->ptr;
return;
}
}
/* If no luck, try built-in mime types */
for (i = 0; builtin_mime_types[i].extension != NULL; i++) {
ext_len = builtin_mime_types[i].ext_len;
if (len > ext_len && uri[len - ext_len - 1] == '.' &&
!_shttpd_strncasecmp(builtin_mime_types[i].extension,
&uri[len - ext_len], ext_len)) {
vec->ptr = builtin_mime_types[i].mime_type;
vec->len = strlen(vec->ptr);
return;
}
}
/* Oops. This extension is unknown to us. Fallback to text/plain */
vec->ptr = "text/plain";
vec->len = strlen(vec->ptr);
}
/*
* For given directory path, substitute it to valid index file.
* Return 0 if index file has been found, -1 if not found
*/
static int find_index_file(struct conn *c, char *path, size_t maxpath, struct stat *stp)
{
char buf[FILENAME_MAX];
const char *s = c->ctx->options[OPT_INDEX_FILES];
size_t len;
FOR_EACH_WORD_IN_LIST(s, len) {
/* path must end with '/' character */
_shttpd_snprintf(buf, sizeof(buf), "%s%.*s", path, len, s);
if (_shttpd_stat(buf, stp) == 0) {
_shttpd_strlcpy(path, buf, maxpath);
_shttpd_get_mime_type(c->ctx, s, len, &c->mime_type);
return (0);
}
}
return (-1);
}
/*
* Try to open requested file, return 0 if OK, -1 if error.
* If the file is given arguments using PATH_INFO mechanism,
* initialize pathinfo pointer.
*/
static int get_path_info(struct conn *c, char *path, struct stat *stp)
{
char *p, *e;
if (_shttpd_stat(path, stp) == 0)
return (0);
p = path + strlen(path);
e = path + strlen(c->ctx->options[OPT_ROOT]) + 2;
/* Strip directory parts of the path one by one */
for (; p > e; p--)
if (*p == '/') {
*p = '\0';
if (!_shttpd_stat(path, stp) && !S_ISDIR(stp->st_mode)) {
c->path_info = p + 1;
return (0);
} else {
*p = '/';
}
}
return (-1);
}
static void decide_what_to_do(struct conn *c)
{
char path[URI_MAX], buf[1024], *root;
struct vec alias_uri, alias_path;
struct stat st;
int rc;
struct registered_uri *ruri;
// MY_DEBUG("%s(%s)\n", __func__, c->uri);
if ((c->query = strchr(c->uri, '?')) != NULL)
*c->query++ = '\0';
_shttpd_url_decode(c->uri, strlen(c->uri), c->uri, strlen(c->uri) + 1);
remove_double_dots(c->uri);
root = c->ctx->options[OPT_ROOT];
if (strlen(c->uri) + strlen(root) >= sizeof(path)) {
_shttpd_send_server_error(c, 400, "URI is too long");
return;
}
(void) _shttpd_snprintf(path, sizeof(path), "%s%s", root, c->uri);
/* User may use the aliases - check URI for mount point */
if (is_alias(c->ctx, c->uri, &alias_uri, &alias_path) != NULL) {
(void) _shttpd_snprintf(path, sizeof(path), "%.*s%s",
alias_path.len, alias_path.ptr, c->uri + alias_uri.len);
MY_DEBUG("using alias %.*s -> %.*s\n", alias_uri.len, alias_uri.ptr,
alias_path.len, alias_path.ptr);
}
#if !defined(NO_AUTH)
if (_shttpd_check_authorization(c, path) != 1) {
_shttpd_send_authorization_request(c);
} else
#endif /* NO_AUTH */
if ((ruri = _shttpd_is_registered_uri(c->ctx, c->uri)) != NULL) {
MY_DEBUG("%s:%d:%s.\n", __FILE__, __LINE__, c->uri);
_shttpd_setup_embedded_stream(c,
ruri->callback, ruri->callback_data);
} else
if (strstr(path, HTPASSWD)) {
/* Do not allow to view passwords files */
_shttpd_send_server_error(c, 403, "Forbidden");
} else
#if !defined(NO_AUTH)
if ((c->method == METHOD_PUT || c->method == METHOD_DELETE) &&
(c->ctx->options[OPT_AUTH_PUT] == NULL ||
!_shttpd_is_authorized_for_put(c))) {
_shttpd_send_authorization_request(c);
} else
#endif /* NO_AUTH */
if (c->method == METHOD_PUT) {
c->status = _shttpd_stat(path, &st) == 0 ? 200 : 201;
if (c->ch.range.v_vec.len > 0) {
_shttpd_send_server_error(c, 501,
"PUT Range Not Implemented");
} else if ((rc = _shttpd_put_dir(path)) == 0) {
_shttpd_send_server_error(c, 200, "OK");
} else if (rc == -1) {
_shttpd_send_server_error(c, 500, "PUT Directory Error");
} else if (c->rem.content_len == 0) {
_shttpd_send_server_error(c, 411, "Length Required");
} else if ((c->loc.chan.fd = _shttpd_open(path, O_WRONLY | O_BINARY |
O_CREAT | O_NONBLOCK | O_TRUNC, 0644)) == -1) {
_shttpd_send_server_error(c, 500, "PUT Error");
} else {
MY_DEBUG("PUT file [%s]\n", c->uri);
c->loc.io_class = &_shttpd_io_file;
c->loc.flags |= FLAG_W | FLAG_ALWAYS_READY ;
}
} else if (c->method == METHOD_DELETE) {
MY_DEBUG("DELETE [%s]\n", c->uri);
if (_shttpd_remove(path) == 0)
_shttpd_send_server_error(c, 200, "OK");
else
_shttpd_send_server_error(c, 500, "DELETE Error");
} else if (get_path_info(c, path, &st) != 0) {
_shttpd_send_server_error(c, 404, "Not Found");
} else if (S_ISDIR(st.st_mode) && path[strlen(path) - 1] != '/') {
(void) _shttpd_snprintf(buf, sizeof(buf),
"Moved Permanently\r\nLocation: %s/", c->uri);
_shttpd_send_server_error(c, 301, buf);
} else if (S_ISDIR(st.st_mode) &&
find_index_file(c, path, sizeof(path) - 1, &st) == -1 &&
!IS_TRUE(c->ctx, OPT_DIR_LIST)) {
_shttpd_send_server_error(c, 403, "Directory Listing Denied");
} else if (S_ISDIR(st.st_mode) && IS_TRUE(c->ctx, OPT_DIR_LIST)) {
if ((c->loc.chan.dir.path = _shttpd_strdup(path)) != NULL)
_shttpd_get_dir(c);
else
_shttpd_send_server_error(c, 500, "GET Directory Error");
} else if (S_ISDIR(st.st_mode) && !IS_TRUE(c->ctx, OPT_DIR_LIST)) {
_shttpd_send_server_error(c, 403, "Directory listing denied");
#if !defined(NO_CGI)
} else if (_shttpd_match_extension(path, c->ctx->options[OPT_CGI_EXTENSIONS])) {
if (c->method != METHOD_POST && c->method != METHOD_GET) {
_shttpd_send_server_error(c, 501, "Bad method ");
} else if ((_shttpd_run_cgi(c, path)) == -1) {
_shttpd_send_server_error(c, 500, "Cannot exec CGI");
} else {
_shttpd_do_cgi(c);
}
#endif /* NO_CGI */
#if !defined(NO_SSI)
} else if (_shttpd_match_extension(path, c->ctx->options[OPT_SSI_EXTENSIONS])) {
if ((c->loc.chan.fd = _shttpd_open(path,
O_RDONLY | O_BINARY, 0644)) == -1) {
_shttpd_send_server_error(c, 500, "SSI open error");
} else {
_shttpd_do_ssi(c);
}
#endif /* NO_SSI */
} else if (c->ch.ims.v_time && st.st_mtime <= c->ch.ims.v_time) {
_shttpd_send_server_error(c, 304, "Not Modified");
} else if ((c->loc.chan.fd = _shttpd_open(path, O_RDONLY | O_BINARY, 0644)) != -1) {
_shttpd_get_file(c, &st);
} else {
_shttpd_send_server_error(c, 500, "Internal Error");
}
// MY_DEBUG("send %d: [%.*s]\n", c->loc.io.head, c->loc.io.head, c->loc.io.buf);
}
static int set_request_method(struct conn *c)
{
const struct vec *v;
/* Set the request method */
for (v = _shttpd_known_http_methods; v->ptr != NULL; v++)
if (!memcmp(c->rem.io.buf, v->ptr, v->len)) {
c->method = v - _shttpd_known_http_methods;
break;
}
return (v->ptr == NULL);
}
static void parse_http_request(struct conn *c)
{
char *s, *e, *p, *start;
int uri_len, req_len, n;
s = io_data(&c->rem.io);;
req_len = c->rem.headers_len =
_shttpd_get_headers_len(s, io_data_len(&c->rem.io));
if (req_len == 0 && io_space_len(&c->rem.io) == 0) {
io_clear(&c->rem.io);
_shttpd_send_server_error(c, 400, "Request is too big");
}
if (req_len == 0) {
return;
} else if (req_len < 16) { /* Minimal: "GET / HTTP/1.0\n\n" */
_shttpd_send_server_error(c, 400, "Bad request");
} else if (set_request_method(c)) {
_shttpd_send_server_error(c, 501, "Method Not Implemented");
} else if ((c->request = _shttpd_strndup(s, req_len)) == NULL) {
_shttpd_send_server_error(c, 500, "Cannot allocate request");
}
if (c->loc.flags & FLAG_CLOSED)
return;
io_inc_tail(&c->rem.io, req_len);
/*
MY_DEBUG("Conn %d, from %s:%hu, request: [\n%.*s]\n", c->rem.chan.sock,
inet_ntoa(*(struct in_addr *)&c->sa.u.sin.sin_addr.s_addr), ntohs(c->sa.u.sin.sin_port),
req_len, s);
*/
c->rem.flags |= FLAG_HEADERS_PARSED;
/* Set headers pointer. Headers follow the request line */
c->headers = memchr(c->request, '\n', req_len);
assert(c->headers != NULL);
assert(c->headers < c->request + req_len);
if (c->headers > c->request && c->headers[-1] == '\r')
c->headers[-1] = '\0';
*c->headers++ = '\0';
/*
* Now make a copy of the URI, because it will be URL-decoded,
* and we need a copy of unmodified URI for the access log.
* First, we skip the REQUEST_METHOD and shift to the URI.
*/
for (p = c->request, e = p + req_len; *p != ' ' && p < e; p++);
while (p < e && *p == ' ')
p++;
/* Now remember where URI starts, and shift to the end of URI */
for (start = p; p < e && !isspace((unsigned char)*p); ) p++;
uri_len = p - start;
/* Skip space following the URI */
while (p < e && *p == ' ')
p++;
/* Now comes the HTTP-Version in the form HTTP/<major>.<minor> */
if (sscanf(p, "HTTP/%lu.%lu%n",
&c->major_version, &c->minor_version, &n) != 2 || p[n] != '\0') {
_shttpd_send_server_error(c, 400, "Bad HTTP version");
} else if (c->major_version > 1 ||
(c->major_version == 1 && c->minor_version > 1)) {
_shttpd_send_server_error(c, 505, "HTTP version not supported");
} else if (uri_len <= 0) {
_shttpd_send_server_error(c, 400, "Bad URI");
} else if ((c->uri = malloc(uri_len + 1)) == NULL) {
_shttpd_send_server_error(c, 500, "Cannot allocate URI");
} else {
int headers_len = (c->request + req_len) - c->headers;
MY_DEBUG("[%.*s\n%.*s]\n", req_len, c->request, headers_len, c->headers);
_shttpd_strlcpy(c->uri, (char *) start, uri_len + 1);
_shttpd_parse_headers(c->headers, headers_len, &c->ch);
/* Remove the length of request from total, count only data */
assert(c->rem.io.total >= (big_int_t) req_len);
c->rem.io.total -= req_len;
c->rem.content_len = c->ch.cl.v_big_int;
decide_what_to_do(c);
// MY_DEBUG("[%.*s]\n", (int) io_data_len(&c->loc.io), io_data(&c->loc.io));
}
}
static void add_socket(struct worker *worker, int sock, int is_ssl)
{
struct shttpd_ctx *ctx = worker->ctx;
struct conn *c;
struct usa sa;
// int l = IS_TRUE(ctx, OPT_INETD) ? E_FATAL : E_LOG;
SSL *ssl = NULL;
sa.len = sizeof(sa.u.sin);
(void) _shttpd_set_non_blocking_mode(sock);
if (getpeername(sock, &sa.u.sa, &sa.len)) {
MY_ABORT("add_socket: %s\n", strerror(errno));
} else if (is_ssl && (ssl = SSL_new(ctx->ssl_ctx)) == NULL) {
MY_ABORT("add_socket: SSL_new: %s\n", strerror(ERRNO));
(void) closesocket(sock);
} else if (is_ssl && SSL_set_fd(ssl, sock) == 0) {
MY_ABORT("add_socket: SSL_set_fd: %s\n", strerror(ERRNO));
(void) closesocket(sock);
SSL_free(ssl);
} else if ((c = calloc(1, sizeof(*c) + 2 * URI_MAX)) == NULL) {
if (ssl)
SSL_free(ssl);
(void) closesocket(sock);
MY_ABORT("add_socket: calloc: %s\n", strerror(ERRNO));
} else {
c->rem.conn = c->loc.conn = c;
c->ctx = ctx;
c->worker = worker;
c->sa = sa;
c->birth_time = _shttpd_current_time;
c->expire_time = _shttpd_current_time + EXPIRE_TIME;
(void) getsockname(sock, &sa.u.sa, &sa.len);
c->loc_port = sa.u.sin.sin_port;
_shttpd_set_close_on_exec(sock);
c->loc.io_class = NULL;
c->rem.io_class = &_shttpd_io_socket;
c->rem.chan.sock = sock;
/* Set IO buffers */
c->loc.io.buf = (char *) (c + 1);
c->rem.io.buf = c->loc.io.buf + URI_MAX;
c->loc.io.size = c->rem.io.size = URI_MAX;
if (is_ssl) {
c->rem.io_class = &_shttpd_io_ssl;
c->rem.chan.ssl.sock = sock;
c->rem.chan.ssl.ssl = ssl;
_shttpd_ssl_handshake(&c->rem);
}
LL_TAIL(&worker->connections, &c->link);
worker->num_conns++;
/* MY_DEBUG("%s:%hu connected (socket %d)\n",
inet_ntoa(* (struct in_addr *) &sa.u.sin.sin_addr.s_addr),
ntohs(sa.u.sin.sin_port), sock);
*/
}
}
static struct worker * first_worker(struct shttpd_ctx *ctx)
{
return (LL_ENTRY(ctx->workers.next, struct worker, link));
}
static void pass_socket(struct shttpd_ctx *ctx, int sock, int is_ssl)
{
struct llhead *lp;
struct worker *worker, *lazy;
int buf[3];
lazy = first_worker(ctx);
/* Find least busy worker */
LL_FOREACH(&ctx->workers, lp) {
worker = LL_ENTRY(lp, struct worker, link);
if (worker->num_conns < lazy->num_conns)
lazy = worker;
}
buf[0] = CTL_PASS_SOCKET;
buf[1] = sock;
buf[2] = is_ssl;
(void) send(lazy->ctl[1], (void *) buf, sizeof(buf), 0);
}
static int set_ports(struct shttpd_ctx *ctx, const char *p)
{
int sock, len, is_ssl, port;
struct listener *l;
free_list(&ctx->listeners, &listener_destructor);
FOR_EACH_WORD_IN_LIST(p, len) {
is_ssl = p[len - 1] == 's' ? 1 : 0;
port = atoi(p);
if ((sock = shttpd_open_listening_port(port)) == -1) {
MY_ERROR("cannot open port %d\n", port);
goto fail;
} else if (is_ssl && ctx->ssl_ctx == NULL) {
(void) closesocket(sock);
MY_ERROR("cannot add SSL socket, please specify certificate file\n");
goto fail;
} else if ((l = calloc(1, sizeof(*l))) == NULL) {
(void) closesocket(sock);
MY_ERROR("cannot allocate listener\n");
goto fail;
} else {
l->is_ssl = is_ssl;
l->sock = sock;
l->ctx = ctx;
LL_TAIL(&ctx->listeners, &l->link);
MY_DEBUG("shttpd_listen: added socket %d\n", sock);
}
}
return (TRUE);
fail:
free_list(&ctx->listeners, &listener_destructor);
return (FALSE);
}
static void read_stream(struct stream *stream)
{
int len;
// MY_DEBUG("%s\n", __func__);
len = io_space_len(&stream->io);
assert(len > 0);
/* Do not read more that needed */
if (stream->content_len > 0 &&
stream->io.total + len > stream->content_len)
len = stream->content_len - stream->io.total;
/* Read from underlying channel */
if (!stream->io_class || !stream->io_class->read) {
// wkliang:20110614 assertion would fail
MY_DEBUG("%s(%d) io_class NULL\n", __func__, stream->conn->rem.chan.sock);
} else {
// MY_DEBUG("%s:io_class:%s\n", __func__, stream->io_class->name);
int n = stream->io_class->read(stream, io_space(&stream->io), len);
if (n > 0) {
io_inc_head(&stream->io, n);
stream->conn->expire_time = _shttpd_current_time + EXPIRE_TIME;
}
else if (n == -1 && (ERRNO == EINTR || ERRNO == EWOULDBLOCK))
n = n; /* Ignore EINTR and EAGAIN */
else if (!(stream->flags & FLAG_DONT_CLOSE)) {
_shttpd_stop_stream(stream);
#if 1
MY_DEBUG("read_stream (%d %s): read %d/%d/%lu bytes (errno %d)\n",
stream->conn->rem.chan.sock,
stream->io_class ? stream->io_class->name : "nil",
n, len, (unsigned long)stream->io.total, ERRNO);
#endif
}
}
/*
* Close the local stream if everything was read
* XXX We do not close the remote stream though! It may be
* a POST data completed transfer, we do not want the socket
* to be closed.
*/
if (stream->content_len > 0 && stream == &stream->conn->loc) {
assert(stream->io.total <= stream->content_len);
if (stream->io.total == stream->content_len) {
MY_DEBUG("%s: ERRNO=%d.\n", __func__, ERRNO);
_shttpd_stop_stream(stream);
}
}
}
static void write_stream(struct stream *from, struct stream *to)
{
int n, len;
len = io_data_len(&from->io);
assert(len > 0);
/* TODO: should be assert on CAN_WRITE flag */
n = to->io_class->write(to, io_data(&from->io), len);
#if 0 /* wkliang:20110612 - following debug message will cause segFault? */
MY_DEBUG("write_stream (%d %s): written %d/%d bytes (errno %d)\n",
to->conn->rem.chan.sock,
to->io_class && to->io_class->name ? to->io_class->name : "nil", n, len, ERRNO);
#endif
if (n > 0) {
io_inc_tail(&from->io, n);
to->conn->expire_time = _shttpd_current_time + EXPIRE_TIME;
}
else if (n == -1 && (ERRNO == EINTR || ERRNO == EWOULDBLOCK))
n = n; /* Ignore EINTR and EAGAIN */
else if (!(to->flags & FLAG_DONT_CLOSE)) {
// MY_DEBUG("%s()\n", __func__);
_shttpd_stop_stream(to);
// MY_DEBUG("%s()\n", __func__);
}
}
static void connection_destructor(struct llhead *lp)
{
struct conn *c = LL_ENTRY(lp, struct conn, link);
static const struct vec vec = {"close", 5};
int do_close;
/**/ MY_DEBUG("Disconnecting %d (%.*s)\n", c->rem.chan.sock,
c->ch.connection.v_vec.len, c->ch.connection.v_vec.ptr);
/**/
#if 1
if (c->request != NULL && c->ctx->access_log != NULL)
_shttpd_log_access(c->ctx->access_log, c);
#endif
/* In inetd mode, exit if request is finished. */
if (IS_TRUE(c->ctx, OPT_INETD))
exit(0);
if (c->loc.io_class != NULL && c->loc.io_class->close != NULL) {
MY_DEBUG("%s(%d, %s)\n", __func__, c->rem.chan.sock,
c->loc.io_class ? c->loc.io_class->name : "nil");
c->loc.io_class->close(&c->loc);
c->loc.io_class = NULL; // wkliang:20110613 flag it null as closed
}
/*
* Check the "Connection: " header before we free c->request
* If it its 'keep-alive', then do not close the connection
*/
do_close = (c->ch.connection.v_vec.len >= vec.len &&
!_shttpd_strncasecmp(vec.ptr,c->ch.connection.v_vec.ptr,vec.len)) ||
(c->major_version < 1 ||
(c->major_version >= 1 && c->minor_version < 1));
if (c->request)
free(c->request);
if (c->uri)
free(c->uri);
/* Keep the connection open only if we have Content-Length set */
if (!do_close && c->loc.content_len > 0) {
c->loc.io_class = NULL;
c->loc.flags = 0;
c->loc.content_len = 0;
c->rem.flags = FLAG_W | FLAG_R | FLAG_SSL_ACCEPTED;
c->query = c->request = c->uri = c->path_info = NULL;
c->mime_type.len = 0;
(void) memset(&c->ch, 0, sizeof(c->ch));
io_clear(&c->loc.io);