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#include "libbb.h"
126#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
127# include <sys/sendfile.h>
128#endif
129
130#ifndef PIPE_BUF
131# define PIPE_BUF 4096
132#endif
133
134#define DEBUG 0
135
136#define IOBUF_SIZE 8192
137#if PIPE_BUF >= IOBUF_SIZE
138# error "PIPE_BUF >= IOBUF_SIZE"
139#endif
140
141#define HEADER_READ_TIMEOUT 60
142
143static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
144static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
145static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
146static const char index_html[] ALIGN1 = "index.html";
147
148typedef struct has_next_ptr {
149 struct has_next_ptr *next;
150} has_next_ptr;
151
152
153typedef struct Htaccess {
154 struct Htaccess *next;
155 char *after_colon;
156 char before_colon[1];
157} Htaccess;
158
159
160typedef struct Htaccess_IP {
161 struct Htaccess_IP *next;
162 unsigned ip;
163 unsigned mask;
164 int allow_deny;
165} Htaccess_IP;
166
167
168typedef struct Htaccess_Proxy {
169 struct Htaccess_Proxy *next;
170 char *url_from;
171 char *host_port;
172 char *url_to;
173} Htaccess_Proxy;
174
175enum {
176 HTTP_OK = 200,
177 HTTP_PARTIAL_CONTENT = 206,
178 HTTP_MOVED_TEMPORARILY = 302,
179 HTTP_BAD_REQUEST = 400,
180 HTTP_UNAUTHORIZED = 401,
181 HTTP_NOT_FOUND = 404,
182 HTTP_FORBIDDEN = 403,
183 HTTP_REQUEST_TIMEOUT = 408,
184 HTTP_NOT_IMPLEMENTED = 501,
185 HTTP_INTERNAL_SERVER_ERROR = 500,
186 HTTP_CONTINUE = 100,
187#if 0
188 HTTP_SWITCHING_PROTOCOLS = 101,
189 HTTP_CREATED = 201,
190 HTTP_ACCEPTED = 202,
191 HTTP_NON_AUTHORITATIVE_INFO = 203,
192 HTTP_NO_CONTENT = 204,
193 HTTP_MULTIPLE_CHOICES = 300,
194 HTTP_MOVED_PERMANENTLY = 301,
195 HTTP_NOT_MODIFIED = 304,
196 HTTP_PAYMENT_REQUIRED = 402,
197 HTTP_BAD_GATEWAY = 502,
198 HTTP_SERVICE_UNAVAILABLE = 503,
199#endif
200};
201
202static const uint16_t http_response_type[] ALIGN2 = {
203 HTTP_OK,
204#if ENABLE_FEATURE_HTTPD_RANGES
205 HTTP_PARTIAL_CONTENT,
206#endif
207 HTTP_MOVED_TEMPORARILY,
208 HTTP_REQUEST_TIMEOUT,
209 HTTP_NOT_IMPLEMENTED,
210#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
211 HTTP_UNAUTHORIZED,
212#endif
213 HTTP_NOT_FOUND,
214 HTTP_BAD_REQUEST,
215 HTTP_FORBIDDEN,
216 HTTP_INTERNAL_SERVER_ERROR,
217#if 0
218 HTTP_CREATED,
219 HTTP_ACCEPTED,
220 HTTP_NO_CONTENT,
221 HTTP_MULTIPLE_CHOICES,
222 HTTP_MOVED_PERMANENTLY,
223 HTTP_NOT_MODIFIED,
224 HTTP_BAD_GATEWAY,
225 HTTP_SERVICE_UNAVAILABLE,
226#endif
227};
228
229static const struct {
230 const char *name;
231 const char *info;
232} http_response[ARRAY_SIZE(http_response_type)] = {
233 { "OK", NULL },
234#if ENABLE_FEATURE_HTTPD_RANGES
235 { "Partial Content", NULL },
236#endif
237 { "Found", NULL },
238 { "Request Timeout", "No request appeared within 60 seconds" },
239 { "Not Implemented", "The requested method is not recognized" },
240#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
241 { "Unauthorized", "" },
242#endif
243 { "Not Found", "The requested URL was not found" },
244 { "Bad Request", "Unsupported method" },
245 { "Forbidden", "" },
246 { "Internal Server Error", "Internal Server Error" },
247#if 0
248 { "Created" },
249 { "Accepted" },
250 { "No Content" },
251 { "Multiple Choices" },
252 { "Moved Permanently" },
253 { "Not Modified" },
254 { "Bad Gateway", "" },
255 { "Service Unavailable", "" },
256#endif
257};
258
259struct globals {
260 int verbose;
261 smallint flg_deny_all;
262
263 unsigned rmt_ip;
264 time_t last_mod;
265 char *rmt_ip_str;
266 const char *bind_addr_or_port;
267
268 const char *g_query;
269 const char *opt_c_configFile;
270 const char *home_httpd;
271 const char *index_page;
272
273 const char *found_mime_type;
274 const char *found_moved_temporarily;
275 Htaccess_IP *ip_a_d;
276
277 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
278 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
279 IF_FEATURE_HTTPD_CGI(char *referer;)
280 IF_FEATURE_HTTPD_CGI(char *user_agent;)
281 IF_FEATURE_HTTPD_CGI(char *host;)
282 IF_FEATURE_HTTPD_CGI(char *http_accept;)
283 IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
284
285 off_t file_size;
286#if ENABLE_FEATURE_HTTPD_RANGES
287 off_t range_start;
288 off_t range_end;
289 off_t range_len;
290#endif
291
292#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
293 Htaccess *g_auth;
294#endif
295 Htaccess *mime_a;
296#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
297 Htaccess *script_i;
298#endif
299 char *iobuf;
300#define hdr_buf bb_common_bufsiz1
301 char *hdr_ptr;
302 int hdr_cnt;
303#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
304 const char *http_error_page[ARRAY_SIZE(http_response_type)];
305#endif
306#if ENABLE_FEATURE_HTTPD_PROXY
307 Htaccess_Proxy *proxy;
308#endif
309#if ENABLE_FEATURE_HTTPD_GZIP
310
311 smallint content_gzip;
312#endif
313};
314#define G (*ptr_to_globals)
315#define verbose (G.verbose )
316#define flg_deny_all (G.flg_deny_all )
317#define rmt_ip (G.rmt_ip )
318#define bind_addr_or_port (G.bind_addr_or_port)
319#define g_query (G.g_query )
320#define opt_c_configFile (G.opt_c_configFile )
321#define home_httpd (G.home_httpd )
322#define index_page (G.index_page )
323#define found_mime_type (G.found_mime_type )
324#define found_moved_temporarily (G.found_moved_temporarily)
325#define last_mod (G.last_mod )
326#define ip_a_d (G.ip_a_d )
327#define g_realm (G.g_realm )
328#define remoteuser (G.remoteuser )
329#define referer (G.referer )
330#define user_agent (G.user_agent )
331#define host (G.host )
332#define http_accept (G.http_accept )
333#define http_accept_language (G.http_accept_language)
334#define file_size (G.file_size )
335#if ENABLE_FEATURE_HTTPD_RANGES
336#define range_start (G.range_start )
337#define range_end (G.range_end )
338#define range_len (G.range_len )
339#else
340enum {
341 range_start = 0,
342 range_end = MAXINT(off_t) - 1,
343 range_len = MAXINT(off_t),
344};
345#endif
346#define rmt_ip_str (G.rmt_ip_str )
347#define g_auth (G.g_auth )
348#define mime_a (G.mime_a )
349#define script_i (G.script_i )
350#define iobuf (G.iobuf )
351#define hdr_ptr (G.hdr_ptr )
352#define hdr_cnt (G.hdr_cnt )
353#define http_error_page (G.http_error_page )
354#define proxy (G.proxy )
355#if ENABLE_FEATURE_HTTPD_GZIP
356# define content_gzip (G.content_gzip )
357#else
358# define content_gzip 0
359#endif
360#define INIT_G() do { \
361 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
362 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
363 bind_addr_or_port = "80"; \
364 index_page = index_html; \
365 file_size = -1; \
366} while (0)
367
368
369#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
370
371
372enum {
373 SEND_HEADERS = (1 << 0),
374 SEND_BODY = (1 << 1),
375 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
376};
377static void send_file_and_exit(const char *url, int what) NORETURN;
378
379static void free_llist(has_next_ptr **pptr)
380{
381 has_next_ptr *cur = *pptr;
382 while (cur) {
383 has_next_ptr *t = cur;
384 cur = cur->next;
385 free(t);
386 }
387 *pptr = NULL;
388}
389
390static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
391{
392 free_llist((has_next_ptr**)pptr);
393}
394
395static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
396{
397 free_llist((has_next_ptr**)pptr);
398}
399
400
401
402static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
403{
404 const char *p = *strp;
405 int auto_mask = 8;
406 unsigned ip = 0;
407 int j;
408
409 if (*p == '/')
410 return -auto_mask;
411
412 for (j = 0; j < 4; j++) {
413 unsigned octet;
414
415 if ((*p < '0' || *p > '9') && *p != '/' && *p)
416 return -auto_mask;
417 octet = 0;
418 while (*p >= '0' && *p <= '9') {
419 octet *= 10;
420 octet += *p - '0';
421 if (octet > 255)
422 return -auto_mask;
423 p++;
424 }
425 if (*p == '.')
426 p++;
427 if (*p != '/' && *p)
428 auto_mask += 8;
429 ip = (ip << 8) | octet;
430 }
431 if (*p) {
432 if (*p != endc)
433 return -auto_mask;
434 p++;
435 if (*p == '\0')
436 return -auto_mask;
437 }
438 *ipp = ip;
439 *strp = p;
440 return auto_mask;
441}
442
443
444static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
445{
446 int i;
447 unsigned mask;
448 char *p;
449
450 i = scan_ip(&str, ipp, '/');
451 if (i < 0)
452 return i;
453
454 if (*str) {
455
456 i = bb_strtou(str, &p, 10);
457 if (*p == '.') {
458
459
460 return scan_ip(&str, maskp, '\0') - 32;
461 }
462 if (*p)
463 return -1;
464 }
465
466 if (i > 32)
467 return -1;
468
469 if (sizeof(unsigned) == 4 && i == 32) {
470
471 mask = 0;
472 } else {
473 mask = 0xffffffff;
474 mask >>= i;
475 }
476
477
478
479
480
481 *maskp = (uint32_t)(~mask);
482 return 0;
483}
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498enum {
499 FIRST_PARSE = 0,
500 SIGNALED_PARSE = 1,
501 SUBDIR_PARSE = 2,
502};
503static void parse_conf(const char *path, int flag)
504{
505
506 enum { TRY_CURDIR_PARSE = 3 };
507
508 FILE *f;
509 const char *filename;
510 char buf[160];
511
512
513 free_Htaccess_IP_list(&ip_a_d);
514 flg_deny_all = 0;
515
516 if (flag != SUBDIR_PARSE) {
517 free_Htaccess_list(&mime_a);
518#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
519 free_Htaccess_list(&g_auth);
520#endif
521#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
522 free_Htaccess_list(&script_i);
523#endif
524 }
525
526 filename = opt_c_configFile;
527 if (flag == SUBDIR_PARSE || filename == NULL) {
528 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
529 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
530 }
531
532 while ((f = fopen_for_read(filename)) == NULL) {
533 if (flag >= SUBDIR_PARSE) {
534
535 return;
536 }
537 if (flag == FIRST_PARSE) {
538
539 if (opt_c_configFile)
540 bb_simple_perror_msg_and_die(opt_c_configFile);
541
542
543 }
544 flag = TRY_CURDIR_PARSE;
545 filename = HTTPD_CONF;
546 }
547
548#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
549
550 if (flag != SUBDIR_PARSE)
551 path = "";
552#endif
553
554
555
556
557
558
559
560
561
562
563
564 while (fgets(buf, sizeof(buf), f) != NULL) {
565 unsigned strlen_buf;
566 unsigned char ch;
567 char *after_colon;
568
569 {
570 char *p, *p0;
571
572 p0 = buf;
573
574
575
576
577 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
578 && ch != ' ' && ch != '\t'
579 ) {
580 p0++;
581 }
582 p = p0;
583
584
585 while (ch != '\0' && ch != '\n' && ch != '#') {
586 if (ch != ' ' && ch != '\t') {
587 *p++ = ch;
588 }
589 ch = *++p0;
590 }
591 *p = '\0';
592 strlen_buf = p - buf;
593 if (strlen_buf == 0)
594 continue;
595 }
596
597 after_colon = strchr(buf, ':');
598
599 if (after_colon == NULL || *++after_colon == '\0')
600 goto config_error;
601
602 ch = (buf[0] & ~0x20);
603
604 if (ch == 'I') {
605 if (index_page != index_html)
606 free((char*)index_page);
607 index_page = xstrdup(after_colon);
608 continue;
609 }
610
611
612 if (flag == FIRST_PARSE && ch == 'H') {
613 home_httpd = xstrdup(after_colon);
614 xchdir(home_httpd);
615 continue;
616 }
617
618 if (ch == 'A' || ch == 'D') {
619 Htaccess_IP *pip;
620
621 if (*after_colon == '*') {
622 if (ch == 'D') {
623
624 flg_deny_all = 1;
625 }
626
627 continue;
628 }
629
630 pip = xzalloc(sizeof(*pip));
631 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
632
633 ch = 'D';
634 pip->mask = 0;
635 }
636 pip->allow_deny = ch;
637 if (ch == 'D') {
638
639 pip->next = ip_a_d;
640 ip_a_d = pip;
641 } else {
642
643 Htaccess_IP *prev_IP = ip_a_d;
644 if (prev_IP == NULL) {
645 ip_a_d = pip;
646 } else {
647 while (prev_IP->next)
648 prev_IP = prev_IP->next;
649 prev_IP->next = pip;
650 }
651 }
652 continue;
653 }
654
655#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
656 if (flag == FIRST_PARSE && ch == 'E') {
657 unsigned i;
658 int status = atoi(buf + 1);
659
660 if (status < HTTP_CONTINUE) {
661 goto config_error;
662 }
663
664 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
665 if (http_response_type[i] == status) {
666
667
668
669 http_error_page[i] = xstrdup(after_colon);
670 break;
671 }
672 }
673 continue;
674 }
675#endif
676
677#if ENABLE_FEATURE_HTTPD_PROXY
678 if (flag == FIRST_PARSE && ch == 'P') {
679
680 char *url_from, *host_port, *url_to;
681 Htaccess_Proxy *proxy_entry;
682
683 url_from = after_colon;
684 host_port = strchr(after_colon, ':');
685 if (host_port == NULL) {
686 goto config_error;
687 }
688 *host_port++ = '\0';
689 if (strncmp(host_port, "http://", 7) == 0)
690 host_port += 7;
691 if (*host_port == '\0') {
692 goto config_error;
693 }
694 url_to = strchr(host_port, '/');
695 if (url_to == NULL) {
696 goto config_error;
697 }
698 *url_to = '\0';
699 proxy_entry = xzalloc(sizeof(*proxy_entry));
700 proxy_entry->url_from = xstrdup(url_from);
701 proxy_entry->host_port = xstrdup(host_port);
702 *url_to = '/';
703 proxy_entry->url_to = xstrdup(url_to);
704 proxy_entry->next = proxy;
705 proxy = proxy_entry;
706 continue;
707 }
708#endif
709
710
711 ch = buf[0];
712
713 if (ch == '.'
714#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
715 || (ch == '*' && buf[1] == '.')
716#endif
717 ) {
718 char *p;
719 Htaccess *cur;
720
721 cur = xzalloc(sizeof(*cur) + strlen_buf);
722 strcpy(cur->before_colon, buf);
723 p = cur->before_colon + (after_colon - buf);
724 p[-1] = '\0';
725 cur->after_colon = p;
726 if (ch == '.') {
727
728 cur->next = mime_a;
729 mime_a = cur;
730 }
731#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
732 else {
733
734 cur->next = script_i;
735 script_i = cur;
736 }
737#endif
738 continue;
739 }
740
741#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
742 if (ch == '/') {
743 char *p;
744 Htaccess *cur;
745 unsigned file_len;
746
747
748
749 cur = xzalloc(sizeof(*cur)
750 + 1 + strlen(path)
751 + strlen_buf
752 );
753
754 sprintf(cur->before_colon, "/%s%.*s",
755 path,
756 (int) (after_colon - buf - 1),
757 buf);
758
759 p = bb_simplify_abs_path_inplace(cur->before_colon);
760 file_len = p - cur->before_colon;
761
762 strcpy(++p, after_colon);
763 cur->after_colon = p;
764
765
766
767 {
768 Htaccess *auth, **authp;
769
770 authp = &g_auth;
771 while ((auth = *authp) != NULL) {
772 if (file_len >= strlen(auth->before_colon)) {
773
774 cur->next = auth;
775 break;
776 }
777 authp = &auth->next;
778 }
779 *authp = cur;
780 }
781 continue;
782 }
783#endif
784
785
786 config_error:
787 bb_error_msg("config error '%s' in '%s'", buf, filename);
788 }
789
790 fclose(f);
791}
792
793#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
794
795
796
797
798
799
800
801
802static char *encodeString(const char *string)
803{
804
805
806 int len = strlen(string);
807 char *out = xmalloc(len * 6 + 1);
808 char *p = out;
809 char ch;
810
811 while ((ch = *string++) != '\0') {
812
813 if (isalnum(ch))
814 *p++ = ch;
815 else
816 p += sprintf(p, "&#%d;", (unsigned char) ch);
817 }
818 *p = '\0';
819 return out;
820}
821#endif
822
823
824
825
826
827
828
829
830
831
832
833
834
835static unsigned hex_to_bin(unsigned char c)
836{
837 unsigned v;
838
839 v = c - '0';
840 if (v <= 9)
841 return v;
842
843
844 v = (unsigned)(c | 0x20) - 'a';
845 if (v <= 5)
846 return v + 10;
847 return ~0;
848
849
850
851
852
853}
854static char *decodeString(char *orig, int option_d)
855{
856
857 char *string = orig;
858 char *ptr = string;
859 char c;
860
861 while ((c = *ptr++) != '\0') {
862 unsigned v;
863
864 if (option_d && c == '+') {
865 *string++ = ' ';
866 continue;
867 }
868 if (c != '%') {
869 *string++ = c;
870 continue;
871 }
872 v = hex_to_bin(ptr[0]);
873 if (v > 15) {
874 bad_hex:
875 if (!option_d)
876 return NULL;
877 *string++ = '%';
878 continue;
879 }
880 v = (v * 16) | hex_to_bin(ptr[1]);
881 if (v > 255)
882 goto bad_hex;
883 if (!option_d && (v == '/' || v == '\0')) {
884
885
886 return orig + 1;
887 }
888 *string++ = v;
889 ptr += 2;
890 }
891 *string = '\0';
892 return orig;
893}
894
895#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
896
897
898
899
900
901
902
903
904static void decodeBase64(char *Data)
905{
906 const unsigned char *in = (const unsigned char *)Data;
907
908 unsigned ch = 0;
909 int i = 0;
910
911 while (*in) {
912 int t = *in++;
913
914 if (t >= '0' && t <= '9')
915 t = t - '0' + 52;
916 else if (t >= 'A' && t <= 'Z')
917 t = t - 'A';
918 else if (t >= 'a' && t <= 'z')
919 t = t - 'a' + 26;
920 else if (t == '+')
921 t = 62;
922 else if (t == '/')
923 t = 63;
924 else if (t == '=')
925 t = 0;
926 else
927 continue;
928
929 ch = (ch << 6) | t;
930 i++;
931 if (i == 4) {
932 *Data++ = (char) (ch >> 16);
933 *Data++ = (char) (ch >> 8);
934 *Data++ = (char) ch;
935 i = 0;
936 }
937 }
938 *Data = '\0';
939}
940#endif
941
942
943
944
945static int openServer(void)
946{
947 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
948 if (!errno && n && n <= 0xffff)
949 n = create_and_bind_stream_or_die(NULL, n);
950 else
951 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
952 xlisten(n, 9);
953 return n;
954}
955
956
957
958
959static void log_and_exit(void) NORETURN;
960static void log_and_exit(void)
961{
962
963
964 shutdown(1, SHUT_WR);
965
966
967
968
969
970
971
972 if (verbose > 2)
973 bb_error_msg("closed");
974 _exit(xfunc_error_retval);
975}
976
977
978
979
980
981
982
983
984static void send_headers(int responseNum)
985{
986 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
987
988 const char *responseString = "";
989 const char *infoString = NULL;
990 const char *mime_type;
991#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
992 const char *error_page = NULL;
993#endif
994 unsigned i;
995 time_t timer = time(NULL);
996 char tmp_str[80];
997 int len;
998
999 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
1000 if (http_response_type[i] == responseNum) {
1001 responseString = http_response[i].name;
1002 infoString = http_response[i].info;
1003#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1004 error_page = http_error_page[i];
1005#endif
1006 break;
1007 }
1008 }
1009
1010 mime_type = responseNum == HTTP_OK ?
1011 found_mime_type : "text/html";
1012
1013 if (verbose)
1014 bb_error_msg("response:%u", responseNum);
1015
1016
1017 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
1018 len = sprintf(iobuf,
1019 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
1020 "Date: %s\r\nConnection: close\r\n",
1021 responseNum, responseString, mime_type, tmp_str);
1022
1023#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1024 if (responseNum == HTTP_UNAUTHORIZED) {
1025 len += sprintf(iobuf + len,
1026 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
1027 g_realm);
1028 }
1029#endif
1030 if (responseNum == HTTP_MOVED_TEMPORARILY) {
1031 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
1032 found_moved_temporarily,
1033 (g_query ? "?" : ""),
1034 (g_query ? g_query : ""));
1035 }
1036
1037#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1038 if (error_page && access(error_page, R_OK) == 0) {
1039 strcat(iobuf, "\r\n");
1040 len += 2;
1041
1042 if (DEBUG)
1043 fprintf(stderr, "headers: '%s'\n", iobuf);
1044 full_write(STDOUT_FILENO, iobuf, len);
1045 if (DEBUG)
1046 fprintf(stderr, "writing error page: '%s'\n", error_page);
1047 return send_file_and_exit(error_page, SEND_BODY);
1048 }
1049#endif
1050
1051 if (file_size != -1) {
1052 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
1053#if ENABLE_FEATURE_HTTPD_RANGES
1054 if (responseNum == HTTP_PARTIAL_CONTENT) {
1055 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"u-%"OFF_FMT"u/%"OFF_FMT"u\r\n",
1056 range_start,
1057 range_end,
1058 file_size);
1059 file_size = range_end - range_start + 1;
1060 }
1061#endif
1062 len += sprintf(iobuf + len,
1063#if ENABLE_FEATURE_HTTPD_RANGES
1064 "Accept-Ranges: bytes\r\n"
1065#endif
1066 "Last-Modified: %s\r\n%s %"OFF_FMT"u\r\n",
1067 tmp_str,
1068 content_gzip ? "Transfer-length:" : "Content-length:",
1069 file_size
1070 );
1071 }
1072
1073 if (content_gzip)
1074 len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n");
1075
1076 iobuf[len++] = '\r';
1077 iobuf[len++] = '\n';
1078 if (infoString) {
1079 len += sprintf(iobuf + len,
1080 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1081 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
1082 responseNum, responseString,
1083 responseNum, responseString, infoString);
1084 }
1085 if (DEBUG)
1086 fprintf(stderr, "headers: '%s'\n", iobuf);
1087 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
1088 if (verbose > 1)
1089 bb_perror_msg("error");
1090 log_and_exit();
1091 }
1092}
1093
1094static void send_headers_and_exit(int responseNum) NORETURN;
1095static void send_headers_and_exit(int responseNum)
1096{
1097 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1098 send_headers(responseNum);
1099 log_and_exit();
1100}
1101
1102
1103
1104
1105
1106
1107
1108
1109static int get_line(void)
1110{
1111 int count = 0;
1112 char c;
1113
1114 alarm(HEADER_READ_TIMEOUT);
1115 while (1) {
1116 if (hdr_cnt <= 0) {
1117 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
1118 if (hdr_cnt <= 0)
1119 break;
1120 hdr_ptr = hdr_buf;
1121 }
1122 iobuf[count] = c = *hdr_ptr++;
1123 hdr_cnt--;
1124
1125 if (c == '\r')
1126 continue;
1127 if (c == '\n') {
1128 iobuf[count] = '\0';
1129 break;
1130 }
1131 if (count < (IOBUF_SIZE - 1))
1132 count++;
1133 }
1134 return count;
1135}
1136
1137#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1138
1139
1140static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
1141static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1142{
1143 enum { FROM_CGI = 1, TO_CGI = 2 };
1144 struct pollfd pfd[3];
1145 int out_cnt;
1146 int count;
1147
1148
1149
1150
1151
1152
1153 signal(SIGPIPE, SIG_IGN);
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163 post_len -= hdr_cnt;
1164
1165
1166
1167 out_cnt = 0;
1168 while (1) {
1169 memset(pfd, 0, sizeof(pfd));
1170
1171 pfd[FROM_CGI].fd = fromCgi_rd;
1172 pfd[FROM_CGI].events = POLLIN;
1173
1174 if (toCgi_wr) {
1175 pfd[TO_CGI].fd = toCgi_wr;
1176 if (hdr_cnt > 0) {
1177 pfd[TO_CGI].events = POLLOUT;
1178 } else if (post_len > 0) {
1179 pfd[0].events = POLLIN;
1180 } else {
1181
1182
1183
1184 if (toCgi_wr != fromCgi_rd)
1185 close(toCgi_wr);
1186 toCgi_wr = 0;
1187 }
1188 }
1189
1190
1191 count = safe_poll(pfd, toCgi_wr ? TO_CGI+1 : FROM_CGI+1, -1);
1192 if (count <= 0) {
1193#if 0
1194 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
1195
1196
1197 continue;
1198 }
1199 if (DEBUG && WIFEXITED(status))
1200 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1201 if (DEBUG && WIFSIGNALED(status))
1202 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1203#endif
1204 break;
1205 }
1206
1207 if (pfd[TO_CGI].revents) {
1208
1209
1210 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1211
1212
1213
1214
1215 if (count > 0) {
1216 hdr_ptr += count;
1217 hdr_cnt -= count;
1218 } else {
1219
1220 hdr_cnt = post_len = 0;
1221 }
1222 }
1223
1224 if (pfd[0].revents) {
1225
1226
1227
1228
1229
1230
1231 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
1232 if (count > 0) {
1233 hdr_cnt = count;
1234 hdr_ptr = hdr_buf;
1235 post_len -= count;
1236 } else {
1237
1238 post_len = 0;
1239 }
1240 }
1241
1242 if (pfd[FROM_CGI].revents) {
1243
1244 char *rbuf = iobuf;
1245
1246
1247 if (out_cnt >= 0) {
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1261 if (count <= 0) {
1262
1263
1264 if (out_cnt) {
1265 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1266 full_write(STDOUT_FILENO, rbuf, out_cnt);
1267 }
1268 break;
1269 }
1270 out_cnt += count;
1271 count = 0;
1272
1273 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1274
1275 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
1276 break;
1277 rbuf += 8;
1278 count = out_cnt - 8;
1279 out_cnt = -1;
1280 } else if (out_cnt >= 4) {
1281
1282 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1283
1284 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
1285 break;
1286 }
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296 count = out_cnt;
1297 out_cnt = -1;
1298 }
1299 } else {
1300 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1301 if (count <= 0)
1302 break;
1303 }
1304 if (full_write(STDOUT_FILENO, rbuf, count) != count)
1305 break;
1306 if (DEBUG)
1307 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1308 }
1309 }
1310 log_and_exit();
1311}
1312#endif
1313
1314#if ENABLE_FEATURE_HTTPD_CGI
1315
1316static void setenv1(const char *name, const char *value)
1317{
1318 setenv(name, value ? value : "", 1);
1319}
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334static void send_cgi_and_exit(
1335 const char *url,
1336 const char *request,
1337 int post_len,
1338 const char *cookie,
1339 const char *content_type) NORETURN;
1340static void send_cgi_and_exit(
1341 const char *url,
1342 const char *request,
1343 int post_len,
1344 const char *cookie,
1345 const char *content_type)
1346{
1347 struct fd_pair fromCgi;
1348 struct fd_pair toCgi;
1349 char *script;
1350 int pid;
1351
1352
1353
1354 url = xstrdup(url);
1355
1356
1357
1358
1359
1360
1361
1362
1363 script = (char*)url;
1364 while ((script = strchr(script + 1, '/')) != NULL) {
1365 *script = '\0';
1366 if (!is_directory(url + 1, 1, NULL)) {
1367
1368 *script = '/';
1369 break;
1370 }
1371 *script = '/';
1372 }
1373 setenv1("PATH_INFO", script);
1374 setenv1("REQUEST_METHOD", request);
1375 if (g_query) {
1376 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
1377 } else {
1378 setenv1("REQUEST_URI", url);
1379 }
1380 if (script != NULL)
1381 *script = '\0';
1382
1383
1384 if (home_httpd[0] == '/') {
1385 char *fullpath = concat_path_file(home_httpd, url);
1386 setenv1("SCRIPT_FILENAME", fullpath);
1387 }
1388
1389 setenv1("SCRIPT_NAME", url);
1390
1391
1392
1393
1394
1395
1396
1397 setenv1("QUERY_STRING", g_query);
1398 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1399 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1400 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1401
1402
1403
1404
1405
1406 {
1407 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1408 char *cp = strrchr(p, ':');
1409 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1410 cp = NULL;
1411 if (cp) *cp = '\0';
1412 setenv1("REMOTE_ADDR", p);
1413 if (cp) {
1414 *cp = ':';
1415#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1416 setenv1("REMOTE_PORT", cp + 1);
1417#endif
1418 }
1419 }
1420 setenv1("HTTP_USER_AGENT", user_agent);
1421 if (http_accept)
1422 setenv1("HTTP_ACCEPT", http_accept);
1423 if (http_accept_language)
1424 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
1425 if (post_len)
1426 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
1427 if (cookie)
1428 setenv1("HTTP_COOKIE", cookie);
1429 if (content_type)
1430 setenv1("CONTENT_TYPE", content_type);
1431#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1432 if (remoteuser) {
1433 setenv1("REMOTE_USER", remoteuser);
1434 putenv((char*)"AUTH_TYPE=Basic");
1435 }
1436#endif
1437 if (referer)
1438 setenv1("HTTP_REFERER", referer);
1439 setenv1("HTTP_HOST", host);
1440
1441
1442
1443 xpiped_pair(fromCgi);
1444 xpiped_pair(toCgi);
1445
1446 pid = vfork();
1447 if (pid < 0) {
1448
1449 log_and_exit();
1450 }
1451
1452 if (!pid) {
1453
1454 char *argv[3];
1455
1456 xfunc_error_retval = 242;
1457
1458
1459 close(toCgi.wr);
1460 close(fromCgi.rd);
1461 xmove_fd(toCgi.rd, 0);
1462 xmove_fd(fromCgi.wr, 1);
1463
1464
1465
1466
1467
1468 script = strrchr(url, '/');
1469 if (script != url) {
1470 *script = '\0';
1471 if (chdir(url + 1) != 0) {
1472 bb_perror_msg("chdir(%s)", url + 1);
1473 goto error_execing_cgi;
1474 }
1475
1476 }
1477 script++;
1478
1479
1480 argv[0] = script;
1481 argv[1] = NULL;
1482
1483#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1484 {
1485 char *suffix = strrchr(script, '.');
1486
1487 if (suffix) {
1488 Htaccess *cur;
1489 for (cur = script_i; cur; cur = cur->next) {
1490 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1491
1492 argv[0] = cur->after_colon;
1493 argv[1] = script;
1494 argv[2] = NULL;
1495 break;
1496 }
1497 }
1498 }
1499 }
1500#endif
1501
1502 bb_signals(0
1503 | (1 << SIGCHLD)
1504 | (1 << SIGPIPE)
1505 | (1 << SIGHUP)
1506 , SIG_DFL);
1507
1508
1509
1510
1511 execv(argv[0], argv);
1512 if (verbose)
1513 bb_perror_msg("can't execute '%s'", argv[0]);
1514 error_execing_cgi:
1515
1516
1517 send_headers_and_exit(HTTP_NOT_FOUND);
1518 }
1519
1520
1521
1522
1523 xfunc_error_retval = 0;
1524
1525
1526 close(fromCgi.wr);
1527 close(toCgi.rd);
1528 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
1529}
1530
1531#endif
1532
1533
1534
1535
1536
1537
1538
1539
1540static NOINLINE void send_file_and_exit(const char *url, int what)
1541{
1542 char *suffix;
1543 int fd;
1544 ssize_t count;
1545
1546 if (content_gzip) {
1547
1548 char *gzurl = xasprintf("%s.gz", url);
1549 fd = open(gzurl, O_RDONLY);
1550 free(gzurl);
1551 if (fd != -1) {
1552 struct stat sb;
1553 fstat(fd, &sb);
1554 file_size = sb.st_size;
1555 last_mod = sb.st_mtime;
1556 } else {
1557 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1558 fd = open(url, O_RDONLY);
1559 }
1560 } else {
1561 fd = open(url, O_RDONLY);
1562 }
1563 if (fd < 0) {
1564 if (DEBUG)
1565 bb_perror_msg("can't open '%s'", url);
1566
1567
1568
1569 if (what != SEND_BODY)
1570 send_headers_and_exit(HTTP_NOT_FOUND);
1571 log_and_exit();
1572 }
1573
1574
1575 signal(SIGPIPE, SIG_IGN);
1576
1577
1578 found_mime_type = "application/octet-stream";
1579 suffix = strrchr(url, '.');
1580 if (suffix) {
1581 static const char suffixTable[] ALIGN1 =
1582
1583
1584
1585 ".txt.h.c.cc.cpp\0" "text/plain\0"
1586
1587 ".htm.html\0" "text/html\0"
1588 ".jpg.jpeg\0" "image/jpeg\0"
1589 ".gif\0" "image/gif\0"
1590 ".png\0" "image/png\0"
1591
1592 ".css\0" "text/css\0"
1593 ".wav\0" "audio/wav\0"
1594 ".avi\0" "video/x-msvideo\0"
1595 ".qt.mov\0" "video/quicktime\0"
1596 ".mpe.mpeg\0" "video/mpeg\0"
1597 ".mid.midi\0" "audio/midi\0"
1598 ".mp3\0" "audio/mpeg\0"
1599#if 0
1600 ".au\0" "audio/basic\0"
1601 ".pac\0" "application/x-ns-proxy-autoconfig\0"
1602 ".vrml.wrl\0" "model/vrml\0"
1603#endif
1604
1605 ;
1606 Htaccess *cur;
1607
1608
1609 const char *table = suffixTable;
1610 const char *table_next;
1611 for (; *table; table = table_next) {
1612 const char *try_suffix;
1613 const char *mime_type;
1614 mime_type = table + strlen(table) + 1;
1615 table_next = mime_type + strlen(mime_type) + 1;
1616 try_suffix = strstr(table, suffix);
1617 if (!try_suffix)
1618 continue;
1619 try_suffix += strlen(suffix);
1620 if (*try_suffix == '\0' || *try_suffix == '.') {
1621 found_mime_type = mime_type;
1622 break;
1623 }
1624
1625
1626
1627
1628
1629 break;
1630 }
1631
1632 for (cur = mime_a; cur; cur = cur->next) {
1633 if (strcmp(cur->before_colon, suffix) == 0) {
1634 found_mime_type = cur->after_colon;
1635 break;
1636 }
1637 }
1638 }
1639
1640 if (DEBUG)
1641 bb_error_msg("sending file '%s' content-type: %s",
1642 url, found_mime_type);
1643
1644#if ENABLE_FEATURE_HTTPD_RANGES
1645 if (what == SEND_BODY
1646 || content_gzip
1647 ) {
1648 range_start = 0;
1649 }
1650 range_len = MAXINT(off_t);
1651 if (range_start) {
1652 if (!range_end) {
1653 range_end = file_size - 1;
1654 }
1655 if (range_end < range_start
1656 || lseek(fd, range_start, SEEK_SET) != range_start
1657 ) {
1658 lseek(fd, 0, SEEK_SET);
1659 range_start = 0;
1660 } else {
1661 range_len = range_end - range_start + 1;
1662 send_headers(HTTP_PARTIAL_CONTENT);
1663 what = SEND_BODY;
1664 }
1665 }
1666#endif
1667 if (what & SEND_HEADERS)
1668 send_headers(HTTP_OK);
1669#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
1670 {
1671 off_t offset = range_start;
1672 while (1) {
1673
1674 ssize_t sz = MAXINT(ssize_t) - 0xffff;
1675 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1676 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1677 if (count < 0) {
1678 if (offset == range_start)
1679 break;
1680 goto fin;
1681 }
1682 IF_FEATURE_HTTPD_RANGES(range_len -= sz;)
1683 if (count == 0 || range_len == 0)
1684 log_and_exit();
1685 }
1686 }
1687#endif
1688 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
1689 ssize_t n;
1690 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
1691 n = full_write(STDOUT_FILENO, iobuf, count);
1692 if (count != n)
1693 break;
1694 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
1695 if (range_len == 0)
1696 break;
1697 }
1698 if (count < 0) {
1699 IF_FEATURE_HTTPD_USE_SENDFILE(fin:)
1700 if (verbose > 1)
1701 bb_perror_msg("error");
1702 }
1703 log_and_exit();
1704}
1705
1706static int checkPermIP(void)
1707{
1708 Htaccess_IP *cur;
1709
1710 for (cur = ip_a_d; cur; cur = cur->next) {
1711#if DEBUG
1712 fprintf(stderr,
1713 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1714 rmt_ip_str,
1715 (unsigned char)(cur->ip >> 24),
1716 (unsigned char)(cur->ip >> 16),
1717 (unsigned char)(cur->ip >> 8),
1718 (unsigned char)(cur->ip),
1719 (unsigned char)(cur->mask >> 24),
1720 (unsigned char)(cur->mask >> 16),
1721 (unsigned char)(cur->mask >> 8),
1722 (unsigned char)(cur->mask)
1723 );
1724#endif
1725 if ((rmt_ip & cur->mask) == cur->ip)
1726 return (cur->allow_deny == 'A');
1727 }
1728
1729 return !flg_deny_all;
1730}
1731
1732#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742static int check_user_passwd(const char *path, const char *user_and_passwd)
1743{
1744 Htaccess *cur;
1745 const char *prev = NULL;
1746
1747 for (cur = g_auth; cur; cur = cur->next) {
1748 const char *dir_prefix;
1749 size_t len;
1750
1751 dir_prefix = cur->before_colon;
1752
1753
1754
1755 if (prev && strcmp(prev, dir_prefix) != 0)
1756 continue;
1757
1758 if (DEBUG)
1759 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
1760
1761
1762 len = strlen(dir_prefix);
1763 if (len != 1
1764 && (strncmp(dir_prefix, path, len) != 0
1765 || (path[len] != '/' && path[len] != '\0'))
1766 ) {
1767 continue;
1768 }
1769
1770
1771 prev = dir_prefix;
1772
1773 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1774 char *md5_passwd;
1775
1776 md5_passwd = strchr(cur->after_colon, ':');
1777 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1778 && md5_passwd[3] == '$' && md5_passwd[4]
1779 ) {
1780 char *encrypted;
1781 int r, user_len_p1;
1782
1783 md5_passwd++;
1784 user_len_p1 = md5_passwd - cur->after_colon;
1785
1786 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
1787 continue;
1788 }
1789
1790 encrypted = pw_encrypt(
1791 user_and_passwd + user_len_p1 ,
1792 md5_passwd , 1 );
1793 r = strcmp(encrypted, md5_passwd);
1794 free(encrypted);
1795 if (r == 0)
1796 goto set_remoteuser_var;
1797 continue;
1798 }
1799 }
1800
1801
1802 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
1803 set_remoteuser_var:
1804 remoteuser = xstrndup(user_and_passwd,
1805 strchrnul(user_and_passwd, ':') - user_and_passwd);
1806 return 1;
1807 }
1808 }
1809
1810
1811 return (prev == NULL);
1812}
1813#endif
1814
1815#if ENABLE_FEATURE_HTTPD_PROXY
1816static Htaccess_Proxy *find_proxy_entry(const char *url)
1817{
1818 Htaccess_Proxy *p;
1819 for (p = proxy; p; p = p->next) {
1820 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1821 return p;
1822 }
1823 return NULL;
1824}
1825#endif
1826
1827
1828
1829
1830static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1831static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
1832{
1833 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
1834}
1835
1836
1837
1838
1839static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
1840static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
1841{
1842 static const char request_GET[] ALIGN1 = "GET";
1843 struct stat sb;
1844 char *urlcopy;
1845 char *urlp;
1846 char *tptr;
1847#if ENABLE_FEATURE_HTTPD_CGI
1848 static const char request_HEAD[] ALIGN1 = "HEAD";
1849 const char *prequest;
1850 char *cookie = NULL;
1851 char *content_type = NULL;
1852 unsigned long length = 0;
1853#elif ENABLE_FEATURE_HTTPD_PROXY
1854#define prequest request_GET
1855 unsigned long length = 0;
1856#endif
1857#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1858 smallint authorized = -1;
1859#endif
1860 smallint ip_allowed;
1861 char http_major_version;
1862#if ENABLE_FEATURE_HTTPD_PROXY
1863 char http_minor_version;
1864 char *header_buf = header_buf;
1865 char *header_ptr = header_ptr;
1866 Htaccess_Proxy *proxy_entry;
1867#endif
1868
1869
1870
1871 iobuf = xmalloc(IOBUF_SIZE);
1872
1873 rmt_ip = 0;
1874 if (fromAddr->u.sa.sa_family == AF_INET) {
1875 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
1876 }
1877#if ENABLE_FEATURE_IPV6
1878 if (fromAddr->u.sa.sa_family == AF_INET6
1879 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1880 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1881 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1882 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
1883#endif
1884 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
1885
1886 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
1887 }
1888 if (verbose) {
1889
1890 if (rmt_ip_str)
1891 applet_name = rmt_ip_str;
1892 if (verbose > 2)
1893 bb_error_msg("connected");
1894 }
1895
1896
1897 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
1898
1899 if (!get_line())
1900 send_headers_and_exit(HTTP_BAD_REQUEST);
1901
1902
1903 urlp = strpbrk(iobuf, " \t");
1904 if (urlp == NULL)
1905 send_headers_and_exit(HTTP_BAD_REQUEST);
1906 *urlp++ = '\0';
1907#if ENABLE_FEATURE_HTTPD_CGI
1908 prequest = request_GET;
1909 if (strcasecmp(iobuf, prequest) != 0) {
1910 prequest = request_HEAD;
1911 if (strcasecmp(iobuf, prequest) != 0) {
1912 prequest = "POST";
1913 if (strcasecmp(iobuf, prequest) != 0)
1914 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1915 }
1916 }
1917#else
1918 if (strcasecmp(iobuf, request_GET) != 0)
1919 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1920#endif
1921 urlp = skip_whitespace(urlp);
1922 if (urlp[0] != '/')
1923 send_headers_and_exit(HTTP_BAD_REQUEST);
1924
1925
1926 http_major_version = '0';
1927 IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
1928 tptr = strchrnul(urlp, ' ');
1929
1930 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1931 http_major_version = tptr[6];
1932 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
1933 }
1934 *tptr = '\0';
1935
1936
1937 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
1938
1939
1940 strcpy(urlcopy, urlp);
1941
1942
1943
1944 g_query = NULL;
1945 tptr = strchr(urlcopy, '?');
1946 if (tptr) {
1947 *tptr++ = '\0';
1948 g_query = tptr;
1949 }
1950
1951
1952 tptr = decodeString(urlcopy, 0);
1953 if (tptr == NULL)
1954 send_headers_and_exit(HTTP_BAD_REQUEST);
1955 if (tptr == urlcopy + 1) {
1956
1957 send_headers_and_exit(HTTP_NOT_FOUND);
1958 }
1959
1960
1961
1962
1963 urlp = tptr = urlcopy;
1964 do {
1965 if (*urlp == '/') {
1966
1967 if (*tptr == '/') {
1968 continue;
1969 }
1970 if (*tptr == '.') {
1971
1972 if (tptr[1] == '/' || !tptr[1]) {
1973 continue;
1974 }
1975
1976 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1977 ++tptr;
1978 if (urlp == urlcopy)
1979 send_headers_and_exit(HTTP_BAD_REQUEST);
1980 while (*--urlp != '/') ;
1981 continue;
1982 }
1983 }
1984 }
1985 *++urlp = *tptr;
1986 } while (*++tptr);
1987 *++urlp = '\0';
1988
1989
1990 if (urlp[-1] != '/') {
1991 if (is_directory(urlcopy + 1, 1, NULL)) {
1992 found_moved_temporarily = urlcopy;
1993 }
1994 }
1995
1996
1997 if (verbose > 1)
1998 bb_error_msg("url:%s", urlcopy);
1999
2000 tptr = urlcopy;
2001 ip_allowed = checkPermIP();
2002 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
2003
2004 *tptr = '\0';
2005 if (is_directory(urlcopy + 1, 1, NULL)) {
2006
2007 parse_conf(urlcopy + 1, SUBDIR_PARSE);
2008 ip_allowed = checkPermIP();
2009 }
2010 *tptr = '/';
2011 }
2012
2013#if ENABLE_FEATURE_HTTPD_PROXY
2014 proxy_entry = find_proxy_entry(urlcopy);
2015 if (proxy_entry)
2016 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
2017#endif
2018
2019 if (http_major_version >= '0') {
2020
2021
2022
2023 while (1) {
2024 if (!get_line())
2025 break;
2026 if (DEBUG)
2027 bb_error_msg("header: '%s'", iobuf);
2028
2029#if ENABLE_FEATURE_HTTPD_PROXY
2030
2031
2032 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
2033 int len = strlen(iobuf);
2034 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
2035 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
2036 memcpy(header_ptr, iobuf, len);
2037 header_ptr += len;
2038 header_ptr[0] = '\r';
2039 header_ptr[1] = '\n';
2040 header_ptr += 2;
2041 }
2042#endif
2043
2044#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
2045
2046 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
2047
2048 if (prequest != request_GET
2049# if ENABLE_FEATURE_HTTPD_CGI
2050 && prequest != request_HEAD
2051# endif
2052 ) {
2053 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
2054 if (!tptr[0])
2055 send_headers_and_exit(HTTP_BAD_REQUEST);
2056
2057 length = bb_strtou(tptr, NULL, 10);
2058
2059 if (errno || length > INT_MAX)
2060 send_headers_and_exit(HTTP_BAD_REQUEST);
2061 }
2062 }
2063#endif
2064#if ENABLE_FEATURE_HTTPD_CGI
2065 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
2066 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
2067 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
2068 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
2069 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
2070 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
2071 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
2072 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
2073 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2074 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
2075 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2076 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2077 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2078 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
2079 }
2080#endif
2081#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2082 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2083
2084
2085
2086
2087 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2088 if (STRNCASECMP(tptr, "Basic") != 0)
2089 continue;
2090 tptr += sizeof("Basic")-1;
2091
2092 decodeBase64(tptr);
2093 authorized = check_user_passwd(urlcopy, tptr);
2094 }
2095#endif
2096#if ENABLE_FEATURE_HTTPD_RANGES
2097 if (STRNCASECMP(iobuf, "Range:") == 0) {
2098
2099 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2100 if (strncmp(s, "bytes=", 6) == 0) {
2101 s += sizeof("bytes=")-1;
2102 range_start = BB_STRTOOFF(s, &s, 10);
2103 if (s[0] != '-' || range_start < 0) {
2104 range_start = 0;
2105 } else if (s[1]) {
2106 range_end = BB_STRTOOFF(s+1, NULL, 10);
2107 if (errno || range_end < range_start)
2108 range_start = 0;
2109 }
2110 }
2111 }
2112#endif
2113#if ENABLE_FEATURE_HTTPD_GZIP
2114 if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) {
2115
2116
2117
2118 const char *s = strstr(iobuf, "gzip");
2119 if (s) {
2120
2121
2122
2123
2124
2125 content_gzip = 1;
2126
2127 }
2128 }
2129#endif
2130 }
2131 }
2132
2133
2134 alarm(0);
2135
2136 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2137
2138 send_headers_and_exit(HTTP_FORBIDDEN);
2139 }
2140
2141#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2142
2143
2144 if (authorized < 0)
2145 authorized = check_user_passwd(urlcopy, ":");
2146 if (!authorized)
2147 send_headers_and_exit(HTTP_UNAUTHORIZED);
2148#endif
2149
2150 if (found_moved_temporarily) {
2151 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2152 }
2153
2154#if ENABLE_FEATURE_HTTPD_PROXY
2155 if (proxy_entry != NULL) {
2156 int proxy_fd;
2157 len_and_sockaddr *lsa;
2158
2159 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2160 if (proxy_fd < 0)
2161 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2162 lsa = host2sockaddr(proxy_entry->host_port, 80);
2163 if (lsa == NULL)
2164 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2165 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
2166 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2167 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2168 prequest,
2169 proxy_entry->url_to,
2170 urlcopy + strlen(proxy_entry->url_from),
2171 (g_query ? "?" : ""),
2172 (g_query ? g_query : ""),
2173 http_major_version, http_minor_version);
2174 header_ptr[0] = '\r';
2175 header_ptr[1] = '\n';
2176 header_ptr += 2;
2177 write(proxy_fd, header_buf, header_ptr - header_buf);
2178 free(header_buf);
2179 cgi_io_loop_and_exit(proxy_fd, proxy_fd, length);
2180 }
2181#endif
2182
2183 tptr = urlcopy + 1;
2184
2185#if ENABLE_FEATURE_HTTPD_CGI
2186 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2187 if (tptr[8] == '\0') {
2188
2189 send_headers_and_exit(HTTP_FORBIDDEN);
2190 }
2191 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
2192 }
2193#endif
2194
2195 if (urlp[-1] == '/')
2196 strcpy(urlp, index_page);
2197 if (stat(tptr, &sb) == 0) {
2198#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
2199 char *suffix = strrchr(tptr, '.');
2200 if (suffix) {
2201 Htaccess *cur;
2202 for (cur = script_i; cur; cur = cur->next) {
2203 if (strcmp(cur->before_colon + 1, suffix) == 0) {
2204 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
2205 }
2206 }
2207 }
2208#endif
2209 file_size = sb.st_size;
2210 last_mod = sb.st_mtime;
2211 }
2212#if ENABLE_FEATURE_HTTPD_CGI
2213 else if (urlp[-1] == '/') {
2214
2215
2216 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
2217 urlp[0] = '\0';
2218 g_query = urlcopy;
2219 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
2220 }
2221 }
2222
2223
2224 if (prequest != request_GET && prequest != request_HEAD) {
2225
2226 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2227 }
2228 send_file_and_exit(tptr,
2229 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
2230 );
2231#else
2232 send_file_and_exit(tptr, SEND_HEADERS_AND_BODY);
2233#endif
2234}
2235
2236
2237
2238
2239
2240
2241
2242#if BB_MMU
2243static void mini_httpd(int server_socket) NORETURN;
2244static void mini_httpd(int server_socket)
2245{
2246
2247
2248
2249
2250
2251 while (1) {
2252 int n;
2253 len_and_sockaddr fromAddr;
2254
2255
2256 fromAddr.len = LSA_SIZEOF_SA;
2257 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
2258 if (n < 0)
2259 continue;
2260
2261
2262 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2263
2264 if (fork() == 0) {
2265
2266
2267 signal(SIGHUP, SIG_IGN);
2268 close(server_socket);
2269 xmove_fd(n, 0);
2270 xdup2(0, 1);
2271
2272 handle_incoming_and_exit(&fromAddr);
2273 }
2274
2275 close(n);
2276 }
2277
2278}
2279#else
2280static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
2281static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2282{
2283 char *argv_copy[argc + 2];
2284
2285 argv_copy[0] = argv[0];
2286 argv_copy[1] = (char*)"-i";
2287 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2288
2289
2290
2291
2292
2293
2294 while (1) {
2295 int n;
2296 len_and_sockaddr fromAddr;
2297
2298
2299 fromAddr.len = LSA_SIZEOF_SA;
2300 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
2301 if (n < 0)
2302 continue;
2303
2304
2305 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2306
2307 if (vfork() == 0) {
2308
2309
2310 signal(SIGHUP, SIG_IGN);
2311 close(server_socket);
2312 xmove_fd(n, 0);
2313 xdup2(0, 1);
2314
2315
2316 re_exec(argv_copy);
2317 }
2318
2319 close(n);
2320 }
2321
2322}
2323#endif
2324
2325
2326
2327
2328
2329static void mini_httpd_inetd(void) NORETURN;
2330static void mini_httpd_inetd(void)
2331{
2332 len_and_sockaddr fromAddr;
2333
2334 memset(&fromAddr, 0, sizeof(fromAddr));
2335 fromAddr.len = LSA_SIZEOF_SA;
2336
2337 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
2338 handle_incoming_and_exit(&fromAddr);
2339}
2340
2341static void sighup_handler(int sig UNUSED_PARAM)
2342{
2343 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
2344}
2345
2346enum {
2347 c_opt_config_file = 0,
2348 d_opt_decode_url,
2349 h_opt_home_httpd,
2350 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2351 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2352 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2353 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
2354 p_opt_port ,
2355 p_opt_inetd ,
2356 p_opt_foreground,
2357 p_opt_verbose ,
2358 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2359 OPT_DECODE_URL = 1 << d_opt_decode_url,
2360 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
2361 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2362 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2363 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2364 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
2365 OPT_PORT = 1 << p_opt_port,
2366 OPT_INETD = 1 << p_opt_inetd,
2367 OPT_FOREGROUND = 1 << p_opt_foreground,
2368 OPT_VERBOSE = 1 << p_opt_verbose,
2369};
2370
2371
2372int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
2373int httpd_main(int argc UNUSED_PARAM, char **argv)
2374{
2375 int server_socket = server_socket;
2376 unsigned opt;
2377 char *url_for_decode;
2378 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2379 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2380 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2381 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
2382
2383 INIT_G();
2384
2385#if ENABLE_LOCALE_SUPPORT
2386
2387 setlocale(LC_TIME, "C");
2388#endif
2389
2390 home_httpd = xrealloc_getcwd_or_warn(NULL);
2391
2392 opt_complementary = "vv:if";
2393
2394
2395
2396 opt = getopt32(argv, "c:d:h:"
2397 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2398 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2399 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2400 IF_FEATURE_HTTPD_SETUID("u:")
2401 "p:ifv",
2402 &opt_c_configFile, &url_for_decode, &home_httpd
2403 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2404 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2405 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2406 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
2407 , &bind_addr_or_port
2408 , &verbose
2409 );
2410 if (opt & OPT_DECODE_URL) {
2411 fputs(decodeString(url_for_decode, 1), stdout);
2412 return 0;
2413 }
2414#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
2415 if (opt & OPT_ENCODE_URL) {
2416 fputs(encodeString(url_for_encode), stdout);
2417 return 0;
2418 }
2419#endif
2420#if ENABLE_FEATURE_HTTPD_AUTH_MD5
2421 if (opt & OPT_MD5) {
2422 char salt[sizeof("$1$XXXXXXXX")];
2423 salt[0] = '$';
2424 salt[1] = '1';
2425 salt[2] = '$';
2426 crypt_make_salt(salt + 3, 4);
2427 puts(pw_encrypt(pass, salt, 1));
2428 return 0;
2429 }
2430#endif
2431#if ENABLE_FEATURE_HTTPD_SETUID
2432 if (opt & OPT_SETUID) {
2433 xget_uidgid(&ugid, s_ugid);
2434 }
2435#endif
2436
2437#if !BB_MMU
2438 if (!(opt & OPT_FOREGROUND)) {
2439 bb_daemonize_or_rexec(0, argv);
2440 }
2441#endif
2442
2443 xchdir(home_httpd);
2444 if (!(opt & OPT_INETD)) {
2445 signal(SIGCHLD, SIG_IGN);
2446 server_socket = openServer();
2447#if ENABLE_FEATURE_HTTPD_SETUID
2448
2449 if (opt & OPT_SETUID) {
2450 if (ugid.gid != (gid_t)-1) {
2451 if (setgroups(1, &ugid.gid) == -1)
2452 bb_perror_msg_and_die("setgroups");
2453 xsetgid(ugid.gid);
2454 }
2455 xsetuid(ugid.uid);
2456 }
2457#endif
2458 }
2459
2460#if 0
2461
2462
2463
2464
2465
2466
2467 {
2468 char *p = getenv("PATH");
2469
2470 clearenv();
2471 if (p)
2472 putenv(p - 5);
2473
2474
2475 }
2476#endif
2477
2478 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
2479 if (!(opt & OPT_INETD))
2480 signal(SIGHUP, sighup_handler);
2481
2482 xfunc_error_retval = 0;
2483 if (opt & OPT_INETD)
2484 mini_httpd_inetd();
2485#if BB_MMU
2486 if (!(opt & OPT_FOREGROUND))
2487 bb_daemonize(0);
2488 mini_httpd(server_socket);
2489#else
2490 mini_httpd_nommu(server_socket, argc, argv);
2491#endif
2492
2493}
2494