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.63 by root, Wed Jan 23 03:07:05 2002 UTC vs.
Revision 1.83 by root, Sun Dec 3 17:49:22 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;
170 190
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
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}
205 } 250 }
206 } 251 }
207 252
208 if ($self->{method} ne "HEAD" 253 if ($self->{method} ne "HEAD"
209 && $self->{h}{"accept-encoding"} =~ /\bgzip\b/ 254 && $self->{h}{"accept-encoding"} =~ /\bgzip\b/
255 && 400 < length $content
210 && $hdr->{"Content-Length"} == length $content 256 && $hdr->{"Content-Length"} == length $content
211 && !exists $hdr->{"Content-Encoding"} 257 && !exists $hdr->{"Content-Encoding"}
212 ) { 258 ) {
213 my $orig = length $content; 259 my $orig = length $content;
214 $hdr->{"Content-Encoding"} = "gzip"; 260 $hdr->{"Content-Encoding"} = "gzip";
216 $hdr->{"Content-Length"} = length $content; 262 $hdr->{"Content-Length"} = length $content;
217 $GZ = sprintf "GZ%02d", 100 - 100*((length $content) / $orig); 263 $GZ = sprintf "GZ%02d", 100 - 100*((length $content) / $orig);
218 } 264 }
219 265
220 $res .= "Date: $HTTP_NOW\015\012"; 266 $res .= "Date: $HTTP_NOW\015\012";
267 $res .= "Server: $::NAME\015\012";
221 268
222 while (my ($h, $v) = each %$hdr) { 269 while (my ($h, $v) = each %$hdr) {
223 $res .= "$h: $v\015\012" 270 $res .= "$h: $v\015\012"
224 } 271 }
225 $res .= "\015\012"; 272 $res .= "\015\012";
226 273
227 $res .= $content if defined $content and $self->{method} ne "HEAD"; 274 $res .= $content if defined $content and $self->{method} ne "HEAD";
228 275
229 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).
230 " $self->{remote_id} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}.$GZ. 277 " $self->{remote_id} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}.$GZ.
231 " \"$self->{h}{referer}\"\n"; 278 " \"$self->{h}{referer}\"\n";
232 279
233 print $accesslog $log if $accesslog; 280 print $::accesslog $log if $::accesslog;
234 print STDERR $log; 281 print STDERR $log;
235 282
236 $self->{written} += 283 $tbf_top->request(length $res, 1e6);
237 print {$self->{fh}} $res; 284 $self->{written} += print {$self->{fh}} $res;
238} 285}
239 286
240sub err { 287sub err {
241 my $self = shift; 288 my $self = shift;
242 my ($code, $msg, $hdr, $content) = @_; 289 my ($code, $msg, $hdr, $content) = @_;
246 $hdr->{"Content-Type"} = "text/plain"; 293 $hdr->{"Content-Type"} = "text/plain";
247 $hdr->{"Content-Length"} = length $content; 294 $hdr->{"Content-Length"} = length $content;
248 } 295 }
249 $hdr->{"Connection"} = "close"; 296 $hdr->{"Connection"} = "close";
250 297
251 $self->response($code, $msg, $hdr, $content); 298 $self->response ($code, $msg, $hdr, $content);
252 299
253 die bless {}, err::; 300 die bless {}, err::
254} 301}
255 302
256sub handle { 303sub handle {
257 my $self = shift; 304 my $self = shift;
258 my $fh = $self->{fh}; 305 my $fh = $self->{fh};
259 306
260 my $host; 307 my $host;
261 308
262 $fh->timeout($::REQ_TIMEOUT); 309 $fh->timeout($::REQ_TIMEOUT);
263 while() { 310 while () {
264 $self->{reqs}++; 311 $self->{reqs}++;
265 312
266 # read request and parse first line 313 # read request and parse first line
267 my $req = $fh->readline("\015\012\015\012"); 314 my $req = $fh->readline("\015\012\015\012");
268 315
297 my (%hdr, $h, $v); 344 my (%hdr, $h, $v);
298 345
299 $hdr{lc $1} .= ",$2" 346 $hdr{lc $1} .= ",$2"
300 while $req =~ /\G 347 while $req =~ /\G
301 ([^:\000-\040]+): 348 ([^:\000-\040]+):
302 [\010\040]* 349 [\011\040]*
303 ((?: [^\015\012]+ | \015\012[\010\040] )*) 350 ((?: [^\015\012]+ | \015\012[\011\040] )*)
304 \015\012 351 \015\012
305 /gxc; 352 /gxc;
306 353
307 $req =~ /\G\015\012$/ 354 $req =~ /\G\015\012$/
308 or $self->err(400, "bad request"); 355 or $self->err(400, "bad request");
430 477
431 if ($self->{name} =~ s%^/internal/([^/]+)%%) { 478 if ($self->{name} =~ s%^/internal/([^/]+)%%) {
432 if ($::internal{$1}) { 479 if ($::internal{$1}) {
433 $::internal{$1}->($self); 480 $::internal{$1}->($self);
434 } else { 481 } else {
435 $self->err(404, "not found"); 482 $self->err (404, "not found");
436 } 483 }
437 } else { 484 } else {
438 485
439 stat $path 486 stat $path
440 or $self->err(404, "not found"); 487 or $self->err (404, "not found");
441 488
442 $self->{stat} = [stat _]; 489 $self->{stat} = [stat _];
443 490
444 # idiotic netscape sends idiotic headers AGAIN 491 # idiotic netscape sends idiotic headers AGAIN
445 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/ 492 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
448 if (-d _ && -r _) { 495 if (-d _ && -r _) {
449 # directory 496 # directory
450 if ($path !~ /\/$/) { 497 if ($path !~ /\/$/) {
451 # create a redirect to get the trailing "/" 498 # create a redirect to get the trailing "/"
452 # we don't try to avoid the :80 499 # we don't try to avoid the :80
453 $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}/" });
454 } else { 501 } else {
455 $ims < $self->{stat}[9] 502 $ims < $self->{stat}[9]
456 or $self->err(304, "not modified"); 503 or $self->err (304, "not modified");
457 504
458 if (-r "$path/index.html") { 505 if (-r "$path/index.html") {
459 # replace directory "size" by index.html filesize 506 # replace directory "size" by index.html filesize
460 $self->{stat} = [stat ($self->{path} .= "/index.html")]; 507 $self->{stat} = [stat ($self->{path} .= "/index.html")];
461 $self->handle_file($queue_index); 508 $self->handle_file ($queue_index, $tbf_top);
462 } else { 509 } else {
463 $self->handle_dir; 510 $self->handle_dir;
464 } 511 }
465 } 512 }
466 } elsif (-f _ && -r _) { 513 } elsif (-f _ && -r _) {
467 -x _ and $self->err(403, "forbidden"); 514 -x _ and $self->err (403, "forbidden");
468 515
469 if (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) { 516 if (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
470 my $timeout = $::NOW + 10; 517 my $timeout = $::NOW + 10;
471 while (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) { 518 while (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
472 if ($timeout < $::NOW) { 519 if ($timeout < $::NOW) {
475 $httpevent->wait; 522 $httpevent->wait;
476 } 523 }
477 } 524 }
478 } 525 }
479 526
480 $self->handle_file($queue_file); 527 $self->handle_file ($queue_file, $tbf_top);
481 } else { 528 } else {
482 $self->err(404, "not found"); 529 $self->err (404, "not found");
483 } 530 }
484 } 531 }
485} 532}
486 533
487sub handle_dir { 534sub handle_dir {
488 my $self = shift; 535 my $self = shift;
489 my $idx = $self->diridx; 536 my $idx = $self->diridx;
490 537
491 $self->response(200, "ok", 538 $self->response (200, "ok",
492 { 539 {
493 "Content-Type" => "text/html", 540 "Content-Type" => "text/html; charset=utf-8",
494 "Content-Length" => length $idx, 541 "Content-Length" => length $idx,
495 "Last-Modified" => time2str ($self->{stat}[9]), 542 "Last-Modified" => time2str ($self->{stat}[9]),
496 }, 543 },
497 $idx); 544 $idx);
498} 545}
499 546
500sub handle_file { 547sub handle_file {
501 my ($self, $queue) = @_; 548 my ($self, $queue, $tbf) = @_;
502 my $length = $self->{stat}[7]; 549 my $length = $self->{stat}[7];
503 my $hdr = { 550 my $hdr = {
504 "Last-Modified" => time2str ((stat _)[9]), 551 "Last-Modified" => time2str ((stat _)[9]),
552 "Accept-Ranges" => "bytes",
505 }; 553 };
506 554
507 my @code = (200, "ok"); 555 my @code = (200, "ok");
508 my ($l, $h); 556 my ($l, $h);
509 557
519 } 567 }
520 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l; 568 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l;
521 } 569 }
522 $hdr->{"Content-Range"} = "bytes */$length"; 570 $hdr->{"Content-Range"} = "bytes */$length";
523 $hdr->{"Content-Length"} = $length; 571 $hdr->{"Content-Length"} = $length;
524 $self->err(416, "not satisfiable", $hdr, ""); 572 $self->err (416, "not satisfiable", $hdr, "");
525 573
526satisfiable: 574satisfiable:
527 # check for segmented downloads 575 # check for segmented downloads
528 if ($l && $::NO_SEGMENTED) { 576 if ($l && $::NO_SEGMENTED) {
529 my $timeout = $::NOW + 15; 577 my $timeout = $::NOW + 15;
530 while (keys %{$uri{$self->{remote_id}}{$self->{uri}}} > 1) { 578 while (keys %{$uri{$self->{remote_id}}{$self->{uri}}} > 1) {
531 if ($timeout <= $::NOW) { 579 if ($timeout <= $::NOW) {
532 $self->block($::BLOCKTIME, "segmented downloads are forbidden"); 580 $self->block ($::BLOCKTIME, "segmented downloads are forbidden");
533 #$self->err_segmented_download; 581 #$self->err_segmented_download;
534 } else { 582 } else {
535 $httpevent->wait; 583 $httpevent->wait;
536 } 584 }
537 } 585 }
548 596
549 $self->{path} =~ /\.([^.]+)$/; 597 $self->{path} =~ /\.([^.]+)$/;
550 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream"; 598 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream";
551 $hdr->{"Content-Length"} = $length; 599 $hdr->{"Content-Length"} = $length;
552 600
553 $self->response(@code, $hdr, ""); 601 $self->response (@code, $hdr, "");
554 602
555 if ($self->{method} eq "GET") { 603 if ($self->{method} eq "GET") {
556 $self->{time} = $::NOW; 604 $self->{time} = $::NOW;
605 $self->{written} = 0;
557 606
558 my $current = $Coro::current;
559
560 my ($fh, $buf, $r);
561
562 open $fh, "<", $self->{path} 607 open my $fh, "<", $self->{path}
563 or die "$self->{path}: late open failure ($!)"; 608 or die "$self->{path}: late open failure ($!)";
564 609
565 $h -= $l - 1; 610 $h -= $l - 1;
566 611
567 if (0) { # !AIO
568 if ($l) {
569 sysseek $fh, $l, 0;
570 }
571 }
572
573 my $transfer = $queue->start_transfer($h); 612 my $transfer = $queue->start_transfer ($h);
574 my $locked; 613 my $locked;
575 my $bufsize = $::WAIT_BUFSIZE; # initial buffer size 614 my $bufsize = $::WAIT_BUFSIZE; # initial buffer size
576 615
577 while ($h > 0) { 616 while ($h > 0) {
578 unless ($locked) { 617 unless ($locked) {
579 if ($locked ||= $transfer->try($::WAIT_INTERVAL)) { 618 if ($locked ||= $transfer->try ($::WAIT_INTERVAL)) {
580 $bufsize = $::BUFSIZE; 619 $bufsize = $::BUFSIZE;
581 $self->{time} = $::NOW; 620 $self->{time} = $::NOW;
621 $self->{written} = 0;
582 } 622 }
583 } 623 }
584 624
585 if ($blocked{$self->{remote_id}}) { 625 if ($blocked{$self->{remote_id}}) {
586 $self->{h}{connection} = "close"; 626 $self->{h}{connection} = "close";
587 die bless {}, err::; 627 die bless {}, err::;
588 } 628 }
589 629
590 if (0) { # !AIO 630 Coro::AIO::aio_read $fh, $l, ($h > $bufsize ? $bufsize : $h), my $buf, 0
591 sysread $fh, $buf, $h > $bufsize ? $bufsize : $h
592 or last; 631 or last;
593 } else { 632
594 aio_read($fh, $l, ($h > $bufsize ? $bufsize : $h), 633 $tbf->request (length $buf);
595 $buf, 0, sub {
596 $r = $_[0];
597 Coro::ready($current);
598 });
599 &Coro::schedule;
600 last unless $r;
601 }
602 my $w = syswrite $self->{fh}, $buf 634 my $w = syswrite $self->{fh}, $buf
603 or last; 635 or last;
604 $::written += $w; 636 $::written += $w;
605 $self->{written} += $w; 637 $self->{written} += $w;
606 $l += $r; 638 $l += $w;
607 } 639 }
608 640
609 close $fh; 641 close $fh;
610 } 642 }
611} 643}
612 644
6131; 6451
646

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines