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

Comparing Coro/myhttpd/httpd.pl (file contents):
Revision 1.29 by root, Sat Aug 25 15:14:03 2001 UTC vs.
Revision 1.80 by root, Fri Dec 1 04:18:32 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;
6use Coro::AIO ();
7
8use HTTP::Date;
9use POSIX ();
10
11use Compress::Zlib ();
5 12
6no utf8; 13no utf8;
7use bytes; 14use bytes;
8 15
9# at least on my machine, this thingy serves files 16# at least on my machine, this thingy serves files
11# and quite a bit slower than thttpd :( 18# and quite a bit slower than thttpd :(
12 19
13$SIG{PIPE} = 'IGNORE'; 20$SIG{PIPE} = 'IGNORE';
14 21
15our $accesslog; 22our $accesslog;
23our $errorlog;
24
25our $NOW;
26our $HTTP_NOW;
27
28our $ERROR_LOG;
29our $ACCESS_LOG;
30
31Event->timer(interval => 1, hard => 1, cb => sub {
32 $NOW = time;
33 $HTTP_NOW = time2str $NOW;
34})->now;
35
36if ($ERROR_LOG) {
37 use IO::Handle;
38 open $errorlog, ">>$ERROR_LOG"
39 or die "$ERROR_LOG: $!";
40 $errorlog->autoflush(1);
41}
16 42
17if ($ACCESS_LOG) { 43if ($ACCESS_LOG) {
18 use IO::Handle; 44 use IO::Handle;
19 open $accesslog, ">>$ACCESS_LOG" 45 open $accesslog, ">>$ACCESS_LOG"
20 or die "$ACCESS_LOG: $!"; 46 or die "$ACCESS_LOG: $!";
22} 48}
23 49
24sub slog { 50sub slog {
25 my $level = shift; 51 my $level = shift;
26 my $format = shift; 52 my $format = shift;
53 my $NOW = (POSIX::strftime "%Y-%m-%d %H:%M:%S", gmtime $::NOW);
27 printf "---: $format\n", @_; 54 printf "$NOW: $format\n", @_;
55 printf $errorlog "$NOW: $format\n", @_ if $errorlog;
28} 56}
29 57
30my $connections = new Coro::Semaphore $MAX_CONNECTS; 58our $connections = new Coro::Semaphore $MAX_CONNECTS || 250;
59our $httpevent = new Coro::Signal;
60
61our $queue_file = new transferqueue $MAX_TRANSFERS;
62our $queue_index = new transferqueue 10;
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}
31 78
32my @newcons; 79my @newcons;
33my @pool; 80my @pool;
34 81
35# one "execution thread" 82# one "execution thread"
36sub handler { 83sub handler {
37 while () { 84 while () {
38 my $new = pop @newcons;
39 if ($new) { 85 if (@newcons) {
40 eval { 86 eval {
41 conn->new(@$new)->handle; 87 conn->new(@{pop @newcons})->handle;
42 }; 88 };
43 slog 1, "$@" if $@ && !ref $@; 89 slog 1, "$@" if $@ && !ref $@;
90
91 $httpevent->broadcast; # only for testing, but doesn't matter much
92
44 $connections->up; 93 $connections->up;
45 } else { 94 } else {
46 last if @pool >= $MAX_POOL; 95 last if @pool >= $MAX_POOL;
47 push @pool, $Coro::current; 96 push @pool, $Coro::current;
48 schedule; 97 schedule;
49 } 98 }
50 } 99 }
100}
101
102sub listen_on {
103 my $listen = $_[0];
104
105 push @listen_sockets, $listen;
106
107 # the "main thread"
108 async {
109 slog 1, "accepting connections";
110 while () {
111 $connections->down;
112 push @newcons, [$listen->accept];
113 #slog 3, "accepted @$connections ".scalar(@pool);
114 if (@pool) {
115 (pop @pool)->ready;
116 } else {
117 async \&handler;
118 }
119 }
120 };
51} 121}
52 122
53my $http_port = new Coro::Socket 123my $http_port = new Coro::Socket
54 LocalAddr => $SERVER_HOST, 124 LocalAddr => $SERVER_HOST,
55 LocalPort => $SERVER_PORT, 125 LocalPort => $SERVER_PORT,
56 ReuseAddr => 1, 126 ReuseAddr => 1,
57 Listen => 50, 127 Listen => 50,
58 or die "unable to start server"; 128 or die "unable to start server";
59 129
60push @listen_sockets, $http_port; 130listen_on $http_port;
61 131
62# the "main thread" 132if ($SERVER_PORT2) {
63async { 133 my $http_port = new Coro::Socket
64 slog 1, "accepting connections"; 134 LocalAddr => $SERVER_HOST,
65 while () { 135 LocalPort => $SERVER_PORT2,
66 $connections->down; 136 ReuseAddr => 1,
67 push @newcons, [$http_port->accept]; 137 Listen => 50,
68 #slog 3, "accepted @$connections ".scalar(@pool); 138 or die "unable to start server";
69 $::NOW = time;
70 if (@pool) {
71 (pop @pool)->ready;
72 } else {
73 async \&handler;
74 }
75 139
76 } 140 listen_on $http_port;
77}; 141}
78 142
79package conn; 143package conn;
144
145use strict;
146use bytes;
80 147
81use Socket; 148use Socket;
82use HTTP::Date; 149use HTTP::Date;
83use Convert::Scalar 'weaken'; 150use Convert::Scalar 'weaken';
84use Linux::AIO; 151use IO::AIO;
85 152
86Linux::AIO::min_parallel $::AIO_PARALLEL; 153IO::AIO::min_parallel $::AIO_PARALLEL;
87 154
88my $aio_requests = new Coro::Semaphore $::AIO_PARALLEL * 4;
89
90Event->io(fd => Linux::AIO::poll_fileno, 155Event->io (fd => IO::AIO::poll_fileno,
91 poll => 'r', async => 1, 156 poll => 'r', async => 1,
92 cb => \&Linux::AIO::poll_cb); 157 cb => \&IO::AIO::poll_cb);
93 158
94our %conn; # $conn{ip}{self} => connobj 159our %conn; # $conn{ip}{self} => connobj
95our %uri; # $uri{ip}{uri}{self} 160our %uri; # $uri{ip}{uri}{self}
96our %blocked; 161our %blocked;
97our %mimetype; 162our %mimetype;
111 176
112read_mimetypes; 177read_mimetypes;
113 178
114sub new { 179sub new {
115 my $class = shift; 180 my $class = shift;
181 my $fh = shift;
116 my $peername = shift; 182 my $peername = shift;
117 my $fh = shift;
118 my $self = bless { fh => $fh }, $class; 183 my $self = bless { fh => $fh }, $class;
119 my (undef, $iaddr) = unpack_sockaddr_in $peername 184 my (undef, $iaddr) = unpack_sockaddr_in $peername
120 or $self->err(500, "unable to decode peername"); 185 or $self->err(500, "unable to decode peername");
121 186
187 $self->{remote_addr} =
122 $self->{remote_addr} = inet_ntoa $iaddr; 188 $self->{remote_id} = inet_ntoa $iaddr;
189
123 $self->{time} = $::NOW; 190 $self->{time} = $::NOW;
124 191
125 # enter ourselves into various lists 192 weaken ($Coro::current->{conn} = $self);
126 weaken ($conn{$self->{remote_addr}}{$self*1} = $self);
127 193
128 $::conns++; 194 $::conns++;
195 $::maxconns = $::conns if $::conns > $::maxconns;
129 196
130 $self; 197 $self;
131} 198}
132 199
133sub DESTROY { 200sub DESTROY {
134 my $self = shift; 201 #my $self = shift;
135
136 $::conns--; 202 $::conns--;
137
138 $self->eoconn;
139 delete $conn{$self->{remote_addr}}{$self*1};
140} 203}
141 204
142# end of connection 205sub prune_cache {
143sub eoconn { 206 my $hash = $_[0];
144 my $self = shift; 207
145 delete $uri{$self->{remote_addr}}{$self->{uri}}{$self*1}; 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 }
146} 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);
147 228
148sub slog { 229sub slog {
149 my $self = shift; 230 my $self = shift;
150 main::slog($_[0], ($self->{remote_id} || $self->{remote_addr}) ."> $_[1]"); 231 main::slog($_[0], "$self->{remote_id}> $_[1]");
151} 232}
152 233
153sub response { 234sub response {
154 my ($self, $code, $msg, $hdr, $content) = @_; 235 my ($self, $code, $msg, $hdr, $content) = @_;
155 my $res = "HTTP/1.1 $code $msg\015\012"; 236 my $res = "HTTP/1.1 $code $msg\015\012";
237 my $GZ = "";
156 238
157 $self->{h}{connection} ||= $hdr->{Connection}; 239 if (exists $hdr->{Connection}) {
240 if ($hdr->{Connection} =~ /close/) {
241 $self->{h}{connection} = "close"
242 }
243 } else {
244 if ($self->{version} < 1.1) {
245 if ($self->{h}{connection} =~ /keep-alive/i) {
246 $hdr->{Connection} = "Keep-Alive";
247 } else {
248 $self->{h}{connection} = "close"
249 }
250 }
251 }
158 252
159 $res .= "Date: ".(time2str $::NOW)."\015\012"; # slow? nah. :( 253 if ($self->{method} ne "HEAD"
254 && $self->{h}{"accept-encoding"} =~ /\bgzip\b/
255 && 400 < length $content
256 && $hdr->{"Content-Length"} == length $content
257 && !exists $hdr->{"Content-Encoding"}
258 ) {
259 my $orig = length $content;
260 $hdr->{"Content-Encoding"} = "gzip";
261 $content = Compress::Zlib::memGzip(\$content);
262 $hdr->{"Content-Length"} = length $content;
263 $GZ = sprintf "GZ%02d", 100 - 100*((length $content) / $orig);
264 }
265
266 $res .= "Date: $HTTP_NOW\015\012";
267 $res .= "Server: $::NAME\015\012";
160 268
161 while (my ($h, $v) = each %$hdr) { 269 while (my ($h, $v) = each %$hdr) {
162 $res .= "$h: $v\015\012" 270 $res .= "$h: $v\015\012"
163 } 271 }
164 $res .= "\015\012"; 272 $res .= "\015\012";
165 273
166 $res .= $content if defined $content and $self->{method} ne "HEAD"; 274 $res .= $content if defined $content and $self->{method} ne "HEAD";
167 275
168 my $log = "$self->{remote_addr} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}." \"$self->{h}{referer}\"\n"; 276 my $log = (POSIX::strftime "%Y-%m-%d %H:%M:%S", gmtime $::NOW).
277 " $self->{remote_id} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}.$GZ.
278 " \"$self->{h}{referer}\"\n";
169 279
170 print $accesslog $log if $accesslog; 280 print $::accesslog $log if $::accesslog;
171 print STDERR $log; 281 print STDERR $log;
172 282
173 $self->{written} += 283 $tbf_top->request(length $res, 1e6);
174 print {$self->{fh}} $res; 284 $self->{written} += print {$self->{fh}} $res;
175} 285}
176 286
177sub err { 287sub err {
178 my $self = shift; 288 my $self = shift;
179 my ($code, $msg, $hdr, $content) = @_; 289 my ($code, $msg, $hdr, $content) = @_;
180 290
181 unless (defined $content) { 291 unless (defined $content) {
182 $content = "$code $msg"; 292 $content = "$code $msg\n";
183 $hdr->{"Content-Type"} = "text/plain"; 293 $hdr->{"Content-Type"} = "text/plain";
184 $hdr->{"Content-Length"} = length $content; 294 $hdr->{"Content-Length"} = length $content;
185 } 295 }
186 $hdr->{"Connection"} = "close"; 296 $hdr->{"Connection"} = "close";
187 297
188 $self->response($code, $msg, $hdr, $content); 298 $self->response($code, $msg, $hdr, $content);
189 299
190 die bless {}, err::; 300 die bless {}, err::;
191}
192
193sub err_blocked {
194 my $self = shift;
195 my $ip = $self->{remote_addr};
196 my $time = time2str $blocked{$ip} = $::NOW + $::BLOCKTIME;
197
198 Coro::Event::do_timer(after => 20*rand);
199
200 $self->err(401, "too many connections",
201 {
202 "Content-Type" => "text/html",
203 "Retry-After" => $::BLOCKTIME,
204 "Warning" => "Please do NOT retry, you have been blocked",
205 "WWW-Authenticate" => "Basic realm=\"Please do NOT retry, you have been blocked\"",
206 "Connection" => "close",
207 },
208 <<EOF);
209<html>
210<head>
211<title>Too many connections</title>
212</head>
213<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#000080" alink="#ff0000">
214
215<p>You have been blocked because you opened too many connections. You
216may retry at</p>
217
218 <p><blockquote>$time.</blockquote></p>
219
220<p>Until then, each new access will renew the block. You might want to have a
221look at the <a href="http://www.goof.com/pcg/marc/animefaq.html#connectionlimit">FAQ</a>.</p>
222
223</body></html>
224EOF
225} 301}
226 302
227sub handle { 303sub handle {
228 my $self = shift; 304 my $self = shift;
229 my $fh = $self->{fh}; 305 my $fh = $self->{fh};
246 } 322 }
247 323
248 $self->{h} = {}; 324 $self->{h} = {};
249 325
250 $fh->timeout($::RES_TIMEOUT); 326 $fh->timeout($::RES_TIMEOUT);
251 my $ip = $self->{remote_addr};
252
253 if ($blocked{$ip}) {
254 $self->err_blocked($blocked{$ip})
255 if $blocked{$ip} > $::NOW;
256
257 delete $blocked{$ip};
258 }
259
260 if (%{$conn{$ip}} > $::MAX_CONN_IP) {
261 $self->slog(2, "blocked ip $ip");
262 $self->err_blocked;
263 }
264 327
265 $req =~ /^(?:\015\012)? 328 $req =~ /^(?:\015\012)?
266 (GET|HEAD) \040+ 329 (GET|HEAD) \040+
267 ([^\040]+) \040+ 330 ([^\040]+) \040+
268 HTTP\/([0-9]+\.[0-9]+) 331 HTTP\/([0-9]+\.[0-9]+)
281 my (%hdr, $h, $v); 344 my (%hdr, $h, $v);
282 345
283 $hdr{lc $1} .= ",$2" 346 $hdr{lc $1} .= ",$2"
284 while $req =~ /\G 347 while $req =~ /\G
285 ([^:\000-\040]+): 348 ([^:\000-\040]+):
286 [\008\040]* 349 [\011\040]*
287 ((?: [^\015\012]+ | \015\012[\008\040] )*) 350 ((?: [^\015\012]+ | \015\012[\011\040] )*)
288 \015\012 351 \015\012
289 /gxc; 352 /gxc;
290 353
291 $req =~ /\G\015\012$/ 354 $req =~ /\G\015\012$/
292 or $self->err(400, "bad request"); 355 or $self->err(400, "bad request");
293 356
294 $self->{h}{$h} = substr $v, 1 357 $self->{h}{$h} = substr $v, 1
295 while ($h, $v) = each %hdr; 358 while ($h, $v) = each %hdr;
359 }
360
361 # remote id should be unique per user
362 my $id = $self->{remote_addr};
363
364 if (exists $self->{h}{"client-ip"}) {
365 $id .= "[".$self->{h}{"client-ip"}."]";
366 } elsif (exists $self->{h}{"x-forwarded-for"}) {
367 $id .= "[".$self->{h}{"x-forwarded-for"}."]";
368 }
369
370 $self->{remote_id} = $id;
371
372 weaken (local $conn{$id}{$self*1} = $self);
373
374 if ($blocked{$id}) {
375 $self->err_blocked
376 if $blocked{$id}[0] > $::NOW;
377
378 delete $blocked{$id};
296 } 379 }
297 380
298 # find out server name and port 381 # find out server name and port
299 if ($self->{uri} =~ s/^http:\/\/([^\/?#]*)//i) { 382 if ($self->{uri} =~ s/^http:\/\/([^\/?#]*)//i) {
300 $host = $1; 383 $host = $1;
304 387
305 if (defined $host) { 388 if (defined $host) {
306 $self->{server_port} = $host =~ s/:([0-9]+)$// ? $1 : 80; 389 $self->{server_port} = $host =~ s/:([0-9]+)$// ? $1 : 80;
307 } else { 390 } else {
308 ($self->{server_port}, $host) 391 ($self->{server_port}, $host)
309 = unpack_sockaddr_in $self->{fh}->getsockname 392 = unpack_sockaddr_in $self->{fh}->sockname
310 or $self->err(500, "unable to get socket name"); 393 or $self->err(500, "unable to get socket name");
311 $host = inet_ntoa $host; 394 $host = inet_ntoa $host;
312 } 395 }
313 396
314 $self->{server_name} = $host; 397 $self->{server_name} = $host;
315 398
316 # remote id should be unique per user
317 $self->{remote_id} = $self->{remote_addr};
318
319 if (exists $self->{h}{"client-ip"}) {
320 $self->{remote_id} .= "[".$self->{h}{"client-ip"}."]";
321 } elsif (exists $self->{h}{"x-forwarded-for"}) {
322 $self->{remote_id} .= "[".$self->{h}{"x-forwarded-for"}."]";
323 }
324
325 weaken ($uri{$self->{remote_addr}}{$self->{uri}}{$self*1} = $self); 399 weaken (local $uri{$id}{$self->{uri}}{$self*1} = $self);
326 400
327 eval { 401 eval {
328 $self->map_uri; 402 $self->map_uri;
329 $self->respond; 403 $self->respond;
330 }; 404 };
331 405
332 $self->eoconn;
333
334 die if $@ && !ref $@; 406 die if $@ && !ref $@;
335 407
336 last if $self->{h}{connection} =~ /close/ || $self->{version} < 1.1; 408 last if $self->{h}{connection} =~ /close/i;
409
410 $httpevent->broadcast;
337 411
338 $fh->timeout($::PER_TIMEOUT); 412 $fh->timeout($::PER_TIMEOUT);
339 } 413 }
414}
415
416sub block {
417 my $self = shift;
418
419 $blocked{$self->{remote_id}} = [$::NOW + $_[0], $_[1]];
420 $self->slog(2, "blocked ip $self->{remote_id}");
421 $self->err_blocked;
340} 422}
341 423
342# uri => path mapping 424# uri => path mapping
343sub map_uri { 425sub map_uri {
344 my $self = shift; 426 my $self = shift;
391 473
392sub respond { 474sub respond {
393 my $self = shift; 475 my $self = shift;
394 my $path = $self->{path}; 476 my $path = $self->{path};
395 477
396 stat $path 478 if ($self->{name} =~ s%^/internal/([^/]+)%%) {
397 or $self->err(404, "not found"); 479 if ($::internal{$1}) {
398 480 $::internal{$1}->($self);
399 $self->{stat} = [stat _];
400
401 # idiotic netscape sends idiotic headers AGAIN
402 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
403 ? str2time $1 : 0;
404
405 if (-d _ && -r _) {
406 # directory
407 if ($path !~ /\/$/) {
408 # create a redirect to get the trailing "/"
409 # we don't try to avoid the :80
410 $self->err(301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" });
411 } else { 481 } else {
412 $ims < $self->{stat}[9] 482 $self->err(404, "not found");
483 }
484 } else {
485
486 stat $path
413 or $self->err(304, "not modified"); 487 or $self->err(404, "not found");
414 488
415 if (-r "$path/index.html") { 489 $self->{stat} = [stat _];
416 $self->{path} .= "/index.html"; 490
417 $self->handle_file; 491 # idiotic netscape sends idiotic headers AGAIN
492 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
493 ? str2time $1 : 0;
494
495 if (-d _ && -r _) {
496 # directory
497 if ($path !~ /\/$/) {
498 # create a redirect to get the trailing "/"
499 # we don't try to avoid the :80
500 $self->err(301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" });
418 } else { 501 } else {
502 $ims < $self->{stat}[9]
503 or $self->err(304, "not modified");
504
505 if (-r "$path/index.html") {
506 # replace directory "size" by index.html filesize
507 $self->{stat} = [stat ($self->{path} .= "/index.html")];
508 $self->handle_file($queue_index, $tbf_top);
509 } else {
419 $self->handle_dir; 510 $self->handle_dir;
420 } 511 }
421 } 512 }
422 } elsif (-f _ && -r _) { 513 } elsif (-f _ && -r _) {
423 -x _ and $self->err(403, "forbidden"); 514 -x _ and $self->err(403, "forbidden");
424 $self->handle_file; 515
516 if (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
517 my $timeout = $::NOW + 10;
518 while (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
519 if ($timeout < $::NOW) {
520 $self->block($::BLOCKTIME, "too many connections");
521 } else {
522 $httpevent->wait;
523 }
524 }
525 }
526
527 $self->handle_file($queue_file, $tbf_top);
425 } else { 528 } else {
426 $self->err(404, "not found"); 529 $self->err(404, "not found");
530 }
427 } 531 }
428} 532}
429 533
430sub handle_dir { 534sub handle_dir {
431 my $self = shift; 535 my $self = shift;
432 my $idx = $self->diridx; 536 my $idx = $self->diridx;
433 537
434 $self->response(200, "ok", 538 $self->response(200, "ok",
435 { 539 {
436 "Content-Type" => "text/html", 540 "Content-Type" => "text/html; charset=utf-8",
437 "Content-Length" => length $idx, 541 "Content-Length" => length $idx,
542 "Last-Modified" => time2str ($self->{stat}[9]),
438 }, 543 },
439 $idx); 544 $idx);
440} 545}
441 546
442sub handle_file { 547sub handle_file {
443 my $self = shift; 548 my ($self, $queue, $tbf) = @_;
444 my $length = -s _; 549 my $length = $self->{stat}[7];
445 my $hdr = { 550 my $hdr = {
446 "Last-Modified" => time2str ((stat _)[9]), 551 "Last-Modified" => time2str ((stat _)[9]),
552 "Accept-Ranges" => "bytes",
447 }; 553 };
448 554
449 my @code = (200, "ok"); 555 my @code = (200, "ok");
450 my ($l, $h); 556 my ($l, $h);
451 557
461 } 567 }
462 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l; 568 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l;
463 } 569 }
464 $hdr->{"Content-Range"} = "bytes */$length"; 570 $hdr->{"Content-Range"} = "bytes */$length";
465 $hdr->{"Content-Length"} = $length; 571 $hdr->{"Content-Length"} = $length;
466 $self->slog(9, "not satisfiable($self->{h}{range}|".$self->{h}{"user-agent"}.")");
467 $self->err(416, "not satisfiable", $hdr, ""); 572 $self->err(416, "not satisfiable", $hdr, "");
468 573
469satisfiable: 574satisfiable:
470 # check for segmented downloads 575 # check for segmented downloads
471 if ($l && $::NO_SEGMENTED) { 576 if ($l && $::NO_SEGMENTED) {
472 my $delay = 60; 577 my $timeout = $::NOW + 15;
473 while (%{$uri{$self->{remote_addr}}{$self->{uri}}} > 1) { 578 while (keys %{$uri{$self->{remote_id}}{$self->{uri}}} > 1) {
474 if ($delay <= 0) { 579 if ($timeout <= $::NOW) {
475 $self->err(400, "segmented downloads are not allowed", 580 $self->block($::BLOCKTIME, "segmented downloads are forbidden");
476 { "Content-Type" => "text/html", Connection => "close" }, <<EOF); 581 #$self->err_segmented_download;
477<html>
478<head>
479<title>Segmented downloads are not allowed</title>
480</head>
481<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#000080" alink="#ff0000">
482
483<p>Segmented downloads are not allowed on this server. Please refer to the
484<a href="http://www.goof.com/pcg/marc/animefaq.html#segmented_downloads">FAQ</a>.</p>
485
486</body></html>
487EOF
488 } else { 582 } else {
489 Coro::Event::do_timer(after => 3); $delay -= 3; 583 $httpevent->wait;
490 } 584 }
491 } 585 }
492 } 586 }
493 587
494 $hdr->{"Content-Range"} = "bytes $l-$h/$length"; 588 $hdr->{"Content-Range"} = "bytes $l-$h/$length";
505 $hdr->{"Content-Length"} = $length; 599 $hdr->{"Content-Length"} = $length;
506 600
507 $self->response(@code, $hdr, ""); 601 $self->response(@code, $hdr, "");
508 602
509 if ($self->{method} eq "GET") { 603 if ($self->{method} eq "GET") {
510 my ($fh, $buf, $r); 604 $self->{time} = $::NOW;
511 my $current = $Coro::current; 605 $self->{written} = 0;
606
607 my $fh;
608
512 open $fh, "<", $self->{path} 609 open $fh, "<", $self->{path}
513 or die "$self->{path}: late open failure ($!)"; 610 or die "$self->{path}: late open failure ($!)";
514 611
515 $h -= $l - 1; 612 $h -= $l - 1;
516 613
517 if (0) { 614 if (0) { # !AIO
518 if ($l) { 615 if ($l) {
519 sysseek $fh, $l, 0; 616 sysseek $fh, $l, 0;
520 } 617 }
521 } 618 }
619
620 my $transfer = $queue->start_transfer($h);
621 my $locked;
622 my $bufsize = $::WAIT_BUFSIZE; # initial buffer size
522 623
523 while ($h > 0) { 624 while ($h > 0) {
524 if (0) { 625 unless ($locked) {
525 sysread $fh, $buf, $h > $::BUFSIZE ? $::BUFSIZE : $h 626 if ($locked ||= $transfer->try($::WAIT_INTERVAL)) {
627 $bufsize = $::BUFSIZE;
628 $self->{time} = $::NOW;
629 $self->{written} = 0;
630 }
631 }
632
633 if ($blocked{$self->{remote_id}}) {
634 $self->{h}{connection} = "close";
635 die bless {}, err::;
636 }
637
638 Coro::AIO::aio_read $fh, $l, ($h > $bufsize ? $bufsize : $h), my $buf, 0
526 or last; 639 or last;
527 } else { 640
528 undef $buf; 641 $tbf->request (length $buf);
529 $aio_requests->down; 642 my $w = syswrite $self->{fh}, $buf
530 aio_read($fh, $l, ($h > $::BUFSIZE ? $::BUFSIZE : $h),
531 $buf, 0, sub {
532 $r = $_[0];
533 $current->ready;
534 });
535 &Coro::schedule;
536 $aio_requests->up;
537 last unless $r;
538 }
539 my $w = $self->{fh}->syswrite($buf)
540 or last; 643 or last;
541 $::written += $w; 644 $::written += $w;
542 $self->{written} += $w; 645 $self->{written} += $w;
543 $l += $r; 646 $l += $w;
544 } 647 }
545 }
546 648
547 close $fh; 649 close $fh;
650 }
548} 651}
549 652
5501; 6531
654

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines