ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/myhttpd/httpd.pl
(Generate patch)

Comparing cvsroot/Coro/myhttpd/httpd.pl (file contents):
Revision 1.64 by root, Wed Jan 23 04:49:50 2002 UTC vs.
Revision 1.81 by root, Sat Dec 2 03:29:29 2006 UTC

1use Coro; 1use Coro;
2use Coro::Semaphore; 2use Coro::Semaphore;
3use Coro::Event; 3use Coro::Event;
4use Coro::Socket; 4use Coro::Socket;
5use Coro::Signal; 5use Coro::Signal;
6use Coro::AIO ();
6 7
7use HTTP::Date; 8use HTTP::Date;
8use POSIX (); 9use POSIX ();
9 10
10use Compress::Zlib (); 11use Compress::Zlib ();
21our $accesslog; 22our $accesslog;
22our $errorlog; 23our $errorlog;
23 24
24our $NOW; 25our $NOW;
25our $HTTP_NOW; 26our $HTTP_NOW;
27
28our $ERROR_LOG;
29our $ACCESS_LOG;
26 30
27Event->timer(interval => 1, hard => 1, cb => sub { 31Event->timer(interval => 1, hard => 1, cb => sub {
28 $NOW = time; 32 $NOW = time;
29 $HTTP_NOW = time2str $NOW; 33 $HTTP_NOW = time2str $NOW;
30})->now; 34})->now;
55our $httpevent = new Coro::Signal; 59our $httpevent = new Coro::Signal;
56 60
57our $queue_file = new transferqueue $MAX_TRANSFERS; 61our $queue_file = new transferqueue $MAX_TRANSFERS;
58our $queue_index = new transferqueue 10; 62our $queue_index = new transferqueue 10;
59 63
64our $tbf_top = new tbf rate => $TBF_RATE || 100000;
65
66my $unused_bytes = 0;
67my $unused_last = time;
68
69sub unused_bandwidth {
70 $unused_bytes += $_[0];
71 if ($unused_last < $NOW - 30 && $unused_bytes / ($NOW - $unused_last) > 50000) {
72 $unused_last = $NOW;
73 $unused_bytes = 0;
74 $queue_file->force_wake_next;
75 slog 1, "forced filetransfer due to unused bandwidth";
76 }
77}
78
60my @newcons; 79my @newcons;
61my @pool; 80my @pool;
62 81
63# one "execution thread" 82# one "execution thread"
64sub handler { 83sub handler {
65 while () { 84 while () {
66 if (@newcons) { 85 if (@newcons) {
67 eval { 86 eval {
68 conn->new(@{pop @newcons})->handle; 87 conn->new (@{pop @newcons})->handle;
69 }; 88 };
70 slog 1, "$@" if $@ && !ref $@; 89 slog 1, "$@" if $@ && !ref $@;
71 90
72 $httpevent->broadcast; # only for testing, but doesn't matter much 91 $httpevent->broadcast; # only for testing, but doesn't matter much
73 92
95 if (@pool) { 114 if (@pool) {
96 (pop @pool)->ready; 115 (pop @pool)->ready;
97 } else { 116 } else {
98 async \&handler; 117 async \&handler;
99 } 118 }
100
101 } 119 }
102 }; 120 };
103} 121}
104 122
105my $http_port = new Coro::Socket 123my $http_port = new Coro::Socket
106 LocalAddr => $SERVER_HOST, 124 LocalAddr => $SERVER_HOST,
107 LocalPort => $SERVER_PORT, 125 LocalPort => $SERVER_PORT,
108 ReuseAddr => 1, 126 ReuseAddr => 1,
109 Listen => 50, 127 Listen => 50,
110 or die "unable to start server"; 128 or die "unable to start server";
111 129
112listen_on $http_port; 130listen_on $http_port;
113 131
114if ($SERVER_PORT2) { 132if ($SERVER_PORT2) {
115 my $http_port = new Coro::Socket 133 my $http_port = new Coro::Socket
116 LocalAddr => $SERVER_HOST, 134 LocalAddr => $SERVER_HOST,
117 LocalPort => $SERVER_PORT2, 135 LocalPort => $SERVER_PORT2,
118 ReuseAddr => 1, 136 ReuseAddr => 1,
119 Listen => 50, 137 Listen => 50,
120 or die "unable to start server"; 138 or die "unable to start server";
121 139
122 listen_on $http_port; 140 listen_on $http_port;
123} 141}
124 142
125package conn; 143package conn;
144
145use strict;
146use bytes;
126 147
127use Socket; 148use Socket;
128use HTTP::Date; 149use HTTP::Date;
129use Convert::Scalar 'weaken'; 150use Convert::Scalar 'weaken';
130use Linux::AIO; 151use IO::AIO;
131 152
132Linux::AIO::min_parallel $::AIO_PARALLEL; 153IO::AIO::min_parallel $::AIO_PARALLEL;
133 154
134Event->io(fd => Linux::AIO::poll_fileno, 155Event->io (fd => IO::AIO::poll_fileno,
135 poll => 'r', async => 1, 156 poll => 'r', async => 1,
136 cb => \&Linux::AIO::poll_cb); 157 cb => \&IO::AIO::poll_cb);
137 158
138our %conn; # $conn{ip}{self} => connobj 159our %conn; # $conn{ip}{self} => connobj
139our %uri; # $uri{ip}{uri}{self} 160our %uri; # $uri{ip}{uri}{self}
140our %blocked; 161our %blocked;
141our %mimetype; 162our %mimetype;
142 163
143sub read_mimetypes { 164sub read_mimetypes {
144 local *M;
145 if (open M, "<mime_types") { 165 if (open my $fh, "<mime_types") {
146 while (<M>) { 166 while (<$fh>) {
147 if (/^([^#]\S+)\t+(\S+)$/) { 167 if (/^([^#]\S+)\t+(\S+)$/) {
148 $mimetype{lc $1} = $2; 168 $mimetype{lc $1} = $2;
149 } 169 }
150 } 170 }
151 } else { 171 } else {
159 my $class = shift; 179 my $class = shift;
160 my $fh = shift; 180 my $fh = shift;
161 my $peername = shift; 181 my $peername = shift;
162 my $self = bless { fh => $fh }, $class; 182 my $self = bless { fh => $fh }, $class;
163 my (undef, $iaddr) = unpack_sockaddr_in $peername 183 my (undef, $iaddr) = unpack_sockaddr_in $peername
164 or $self->err(500, "unable to decode peername"); 184 or $self->err (500, "unable to decode peername");
165 185
166 $self->{remote_addr} = 186 $self->{remote_addr} =
167 $self->{remote_id} = inet_ntoa $iaddr; 187 $self->{remote_id} = inet_ntoa $iaddr;
168 188
169 $self->{time} = $::NOW; 189 $self->{time} = $::NOW;
171 weaken ($Coro::current->{conn} = $self); 191 weaken ($Coro::current->{conn} = $self);
172 192
173 $::conns++; 193 $::conns++;
174 $::maxconns = $::conns if $::conns > $::maxconns; 194 $::maxconns = $::conns if $::conns > $::maxconns;
175 195
176 $self; 196 $self
177} 197}
178 198
179sub DESTROY { 199sub DESTROY {
180 #my $self = shift; 200 #my $self = shift;
201 close $self->{fh}; # workaround
181 $::conns--; 202 --$::conns;
182} 203}
204
205sub prune_cache {
206 my $hash = $_[0];
207
208 for (keys %$hash) {
209 if (ref $hash->{$_} eq HASH::) {
210 prune_cache($hash->{$_});
211 unless (scalar keys %{$hash->{$_}}) {
212 delete $hash->{$_};
213 }
214 }
215 }
216}
217
218sub prune_caches {
219 prune_cache \%conn;
220 prune_cache \%uri;
221
222 for (keys %blocked) {
223 delete $blocked{$_} unless $blocked{$_}[0] > $::NOW;
224 }
225}
226
227Event->timer (interval => 60, cb => \&prune_caches);
183 228
184sub slog { 229sub slog {
185 my $self = shift; 230 my $self = shift;
186 main::slog($_[0], "$self->{remote_id}> $_[1]"); 231 main::slog($_[0], "$self->{remote_id}> $_[1]");
187} 232}
217 $hdr->{"Content-Length"} = length $content; 262 $hdr->{"Content-Length"} = length $content;
218 $GZ = sprintf "GZ%02d", 100 - 100*((length $content) / $orig); 263 $GZ = sprintf "GZ%02d", 100 - 100*((length $content) / $orig);
219 } 264 }
220 265
221 $res .= "Date: $HTTP_NOW\015\012"; 266 $res .= "Date: $HTTP_NOW\015\012";
267 $res .= "Server: $::NAME\015\012";
222 268
223 while (my ($h, $v) = each %$hdr) { 269 while (my ($h, $v) = each %$hdr) {
224 $res .= "$h: $v\015\012" 270 $res .= "$h: $v\015\012"
225 } 271 }
226 $res .= "\015\012"; 272 $res .= "\015\012";
227 273
228 $res .= $content if defined $content and $self->{method} ne "HEAD"; 274 $res .= $content if defined $content and $self->{method} ne "HEAD";
229 275
230 my $log = (POSIX::strftime "%Y-%m-%d %H:%M:%S", gmtime $NOW). 276 my $log = (POSIX::strftime "%Y-%m-%d %H:%M:%S", gmtime $::NOW).
231 " $self->{remote_id} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}.$GZ. 277 " $self->{remote_id} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}.$GZ.
232 " \"$self->{h}{referer}\"\n"; 278 " \"$self->{h}{referer}\"\n";
233 279
234 print $accesslog $log if $accesslog; 280 print $::accesslog $log if $::accesslog;
235 print STDERR $log; 281 print STDERR $log;
236 282
237 $self->{written} += 283 $tbf_top->request(length $res, 1e6);
238 print {$self->{fh}} $res; 284 $self->{written} += print {$self->{fh}} $res;
239} 285}
240 286
241sub err { 287sub err {
242 my $self = shift; 288 my $self = shift;
243 my ($code, $msg, $hdr, $content) = @_; 289 my ($code, $msg, $hdr, $content) = @_;
247 $hdr->{"Content-Type"} = "text/plain"; 293 $hdr->{"Content-Type"} = "text/plain";
248 $hdr->{"Content-Length"} = length $content; 294 $hdr->{"Content-Length"} = length $content;
249 } 295 }
250 $hdr->{"Connection"} = "close"; 296 $hdr->{"Connection"} = "close";
251 297
252 $self->response($code, $msg, $hdr, $content); 298 $self->response ($code, $msg, $hdr, $content);
253 299
254 die bless {}, err::; 300 die bless {}, err::
255} 301}
256 302
257sub handle { 303sub handle {
258 my $self = shift; 304 my $self = shift;
259 my $fh = $self->{fh}; 305 my $fh = $self->{fh};
260 306
261 my $host; 307 my $host;
262 308
263 $fh->timeout($::REQ_TIMEOUT); 309 $fh->timeout($::REQ_TIMEOUT);
264 while() { 310 while () {
265 $self->{reqs}++; 311 $self->{reqs}++;
266 312
267 # read request and parse first line 313 # read request and parse first line
268 my $req = $fh->readline("\015\012\015\012"); 314 my $req = $fh->readline("\015\012\015\012");
269 315
298 my (%hdr, $h, $v); 344 my (%hdr, $h, $v);
299 345
300 $hdr{lc $1} .= ",$2" 346 $hdr{lc $1} .= ",$2"
301 while $req =~ /\G 347 while $req =~ /\G
302 ([^:\000-\040]+): 348 ([^:\000-\040]+):
303 [\010\040]* 349 [\011\040]*
304 ((?: [^\015\012]+ | \015\012[\010\040] )*) 350 ((?: [^\015\012]+ | \015\012[\011\040] )*)
305 \015\012 351 \015\012
306 /gxc; 352 /gxc;
307 353
308 $req =~ /\G\015\012$/ 354 $req =~ /\G\015\012$/
309 or $self->err(400, "bad request"); 355 or $self->err(400, "bad request");
431 477
432 if ($self->{name} =~ s%^/internal/([^/]+)%%) { 478 if ($self->{name} =~ s%^/internal/([^/]+)%%) {
433 if ($::internal{$1}) { 479 if ($::internal{$1}) {
434 $::internal{$1}->($self); 480 $::internal{$1}->($self);
435 } else { 481 } else {
436 $self->err(404, "not found"); 482 $self->err (404, "not found");
437 } 483 }
438 } else { 484 } else {
439 485
440 stat $path 486 stat $path
441 or $self->err(404, "not found"); 487 or $self->err (404, "not found");
442 488
443 $self->{stat} = [stat _]; 489 $self->{stat} = [stat _];
444 490
445 # idiotic netscape sends idiotic headers AGAIN 491 # idiotic netscape sends idiotic headers AGAIN
446 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/ 492 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
449 if (-d _ && -r _) { 495 if (-d _ && -r _) {
450 # directory 496 # directory
451 if ($path !~ /\/$/) { 497 if ($path !~ /\/$/) {
452 # create a redirect to get the trailing "/" 498 # create a redirect to get the trailing "/"
453 # we don't try to avoid the :80 499 # we don't try to avoid the :80
454 $self->err(301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" }); 500 $self->err (301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" });
455 } else { 501 } else {
456 $ims < $self->{stat}[9] 502 $ims < $self->{stat}[9]
457 or $self->err(304, "not modified"); 503 or $self->err (304, "not modified");
458 504
459 if (-r "$path/index.html") { 505 if (-r "$path/index.html") {
460 # replace directory "size" by index.html filesize 506 # replace directory "size" by index.html filesize
461 $self->{stat} = [stat ($self->{path} .= "/index.html")]; 507 $self->{stat} = [stat ($self->{path} .= "/index.html")];
462 $self->handle_file($queue_index); 508 $self->handle_file ($queue_index, $tbf_top);
463 } else { 509 } else {
464 $self->handle_dir; 510 $self->handle_dir;
465 } 511 }
466 } 512 }
467 } elsif (-f _ && -r _) { 513 } elsif (-f _ && -r _) {
468 -x _ and $self->err(403, "forbidden"); 514 -x _ and $self->err (403, "forbidden");
469 515
470 if (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) { 516 if (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
471 my $timeout = $::NOW + 10; 517 my $timeout = $::NOW + 10;
472 while (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) { 518 while (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
473 if ($timeout < $::NOW) { 519 if ($timeout < $::NOW) {
476 $httpevent->wait; 522 $httpevent->wait;
477 } 523 }
478 } 524 }
479 } 525 }
480 526
481 $self->handle_file($queue_file); 527 $self->handle_file ($queue_file, $tbf_top);
482 } else { 528 } else {
483 $self->err(404, "not found"); 529 $self->err (404, "not found");
484 } 530 }
485 } 531 }
486} 532}
487 533
488sub handle_dir { 534sub handle_dir {
489 my $self = shift; 535 my $self = shift;
490 my $idx = $self->diridx; 536 my $idx = $self->diridx;
491 537
492 $self->response(200, "ok", 538 $self->response (200, "ok",
493 { 539 {
494 "Content-Type" => "text/html", 540 "Content-Type" => "text/html; charset=utf-8",
495 "Content-Length" => length $idx, 541 "Content-Length" => length $idx,
496 "Last-Modified" => time2str ($self->{stat}[9]), 542 "Last-Modified" => time2str ($self->{stat}[9]),
497 }, 543 },
498 $idx); 544 $idx);
499} 545}
500 546
501sub handle_file { 547sub handle_file {
502 my ($self, $queue) = @_; 548 my ($self, $queue, $tbf) = @_;
503 my $length = $self->{stat}[7]; 549 my $length = $self->{stat}[7];
504 my $hdr = { 550 my $hdr = {
505 "Last-Modified" => time2str ((stat _)[9]), 551 "Last-Modified" => time2str ((stat _)[9]),
552 "Accept-Ranges" => "bytes",
506 }; 553 };
507 554
508 my @code = (200, "ok"); 555 my @code = (200, "ok");
509 my ($l, $h); 556 my ($l, $h);
510 557
520 } 567 }
521 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l; 568 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l;
522 } 569 }
523 $hdr->{"Content-Range"} = "bytes */$length"; 570 $hdr->{"Content-Range"} = "bytes */$length";
524 $hdr->{"Content-Length"} = $length; 571 $hdr->{"Content-Length"} = $length;
525 $self->err(416, "not satisfiable", $hdr, ""); 572 $self->err (416, "not satisfiable", $hdr, "");
526 573
527satisfiable: 574satisfiable:
528 # check for segmented downloads 575 # check for segmented downloads
529 if ($l && $::NO_SEGMENTED) { 576 if ($l && $::NO_SEGMENTED) {
530 my $timeout = $::NOW + 15; 577 my $timeout = $::NOW + 15;
531 while (keys %{$uri{$self->{remote_id}}{$self->{uri}}} > 1) { 578 while (keys %{$uri{$self->{remote_id}}{$self->{uri}}} > 1) {
532 if ($timeout <= $::NOW) { 579 if ($timeout <= $::NOW) {
533 $self->block($::BLOCKTIME, "segmented downloads are forbidden"); 580 $self->block ($::BLOCKTIME, "segmented downloads are forbidden");
534 #$self->err_segmented_download; 581 #$self->err_segmented_download;
535 } else { 582 } else {
536 $httpevent->wait; 583 $httpevent->wait;
537 } 584 }
538 } 585 }
549 596
550 $self->{path} =~ /\.([^.]+)$/; 597 $self->{path} =~ /\.([^.]+)$/;
551 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream"; 598 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream";
552 $hdr->{"Content-Length"} = $length; 599 $hdr->{"Content-Length"} = $length;
553 600
554 $self->response(@code, $hdr, ""); 601 $self->response (@code, $hdr, "");
555 602
556 if ($self->{method} eq "GET") { 603 if ($self->{method} eq "GET") {
557 $self->{time} = $::NOW; 604 $self->{time} = $::NOW;
605 $self->{written} = 0;
558 606
559 my $current = $Coro::current;
560
561 my ($fh, $buf, $r);
562
563 open $fh, "<", $self->{path} 607 open my $fh, "<", $self->{path}
564 or die "$self->{path}: late open failure ($!)"; 608 or die "$self->{path}: late open failure ($!)";
565 609
566 $h -= $l - 1; 610 $h -= $l - 1;
567 611
568 if (0) { # !AIO
569 if ($l) {
570 sysseek $fh, $l, 0;
571 }
572 }
573
574 my $transfer = $queue->start_transfer($h); 612 my $transfer = $queue->start_transfer ($h);
575 my $locked; 613 my $locked;
576 my $bufsize = $::WAIT_BUFSIZE; # initial buffer size 614 my $bufsize = $::WAIT_BUFSIZE; # initial buffer size
577 615
578 while ($h > 0) { 616 while ($h > 0) {
579 unless ($locked) { 617 unless ($locked) {
580 if ($locked ||= $transfer->try($::WAIT_INTERVAL)) { 618 if ($locked ||= $transfer->try ($::WAIT_INTERVAL)) {
581 $bufsize = $::BUFSIZE; 619 $bufsize = $::BUFSIZE;
582 $self->{time} = $::NOW; 620 $self->{time} = $::NOW;
621 $self->{written} = 0;
583 } 622 }
584 } 623 }
585 624
586 if ($blocked{$self->{remote_id}}) { 625 if ($blocked{$self->{remote_id}}) {
587 $self->{h}{connection} = "close"; 626 $self->{h}{connection} = "close";
588 die bless {}, err::; 627 die bless {}, err::;
589 } 628 }
590 629
591 if (0) { # !AIO 630 Coro::AIO::aio_read $fh, $l, ($h > $bufsize ? $bufsize : $h), my $buf, 0
592 sysread $fh, $buf, $h > $bufsize ? $bufsize : $h
593 or last; 631 or last;
594 } else { 632
595 aio_read($fh, $l, ($h > $bufsize ? $bufsize : $h), 633 $tbf->request (length $buf);
596 $buf, 0, sub {
597 $r = $_[0];
598 Coro::ready($current);
599 });
600 &Coro::schedule;
601 last unless $r;
602 }
603 my $w = syswrite $self->{fh}, $buf 634 my $w = syswrite $self->{fh}, $buf
604 or last; 635 or last;
605 $::written += $w; 636 $::written += $w;
606 $self->{written} += $w; 637 $self->{written} += $w;
607 $l += $r; 638 $l += $w;
608 } 639 }
609 640
610 close $fh; 641 close $fh;
611 } 642 }
612} 643}
613 644
6141; 6451
646

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines