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