ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/myhttpd/httpd.pl
Revision: 1.34
Committed: Thu Aug 30 02:58:17 2001 UTC (22 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.33: +13 -9 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use Coro;
2 use Coro::Semaphore;
3 use Coro::Event;
4 use Coro::Socket;
5
6 use HTTP::Date;
7
8 no utf8;
9 use bytes;
10
11 # at least on my machine, this thingy serves files
12 # quite a bit faster than apache, ;)
13 # and quite a bit slower than thttpd :(
14
15 $SIG{PIPE} = 'IGNORE';
16
17 our $accesslog;
18
19 if ($ACCESS_LOG) {
20 use IO::Handle;
21 open $accesslog, ">>$ACCESS_LOG"
22 or die "$ACCESS_LOG: $!";
23 $accesslog->autoflush(1);
24 }
25
26 sub slog {
27 my $level = shift;
28 my $format = shift;
29 printf "---: $format\n", @_;
30 }
31
32 our $connections = new Coro::Semaphore $MAX_CONNECTS || 250;
33
34 our $wait_factor = 0.95;
35
36 our @transfers = (
37 [(new Coro::Semaphore $MAX_TRANSFERS_SMALL || 50), 600],
38 [(new Coro::Semaphore $MAX_TRANSFERS_LARGE || 50), 600],
39 );
40
41 my @newcons;
42 my @pool;
43
44 # one "execution thread"
45 sub handler {
46 while () {
47 my $new = pop @newcons;
48 if ($new) {
49 eval {
50 conn->new(@$new)->handle;
51 };
52 slog 1, "$@" if $@ && !ref $@;
53 $connections->up;
54 } else {
55 last if @pool >= $MAX_POOL;
56 push @pool, $Coro::current;
57 schedule;
58 }
59 }
60 }
61
62 my $http_port = new Coro::Socket
63 LocalAddr => $SERVER_HOST,
64 LocalPort => $SERVER_PORT,
65 ReuseAddr => 1,
66 Listen => 50,
67 or die "unable to start server";
68
69 push @listen_sockets, $http_port;
70
71 our $NOW;
72 our $HTTP_NOW;
73
74 Event->timer(interval => 1, hard => 1, cb => sub {
75 $NOW = time;
76 $HTTP_NOW = time2str $NOW;
77 })->now;
78
79 # the "main thread"
80 async {
81 slog 1, "accepting connections";
82 while () {
83 $connections->down;
84 push @newcons, [$http_port->accept];
85 #slog 3, "accepted @$connections ".scalar(@pool);
86 if (@pool) {
87 (pop @pool)->ready;
88 } else {
89 async \&handler;
90 }
91
92 }
93 };
94
95 package conn;
96
97 use Socket;
98 use HTTP::Date;
99 use Convert::Scalar 'weaken';
100 use Linux::AIO;
101
102 Linux::AIO::min_parallel $::AIO_PARALLEL;
103
104 my $aio_requests = new Coro::Semaphore $::AIO_PARALLEL * 4;
105
106 Event->io(fd => Linux::AIO::poll_fileno,
107 poll => 'r', async => 1,
108 cb => \&Linux::AIO::poll_cb);
109
110 our %conn; # $conn{ip}{self} => connobj
111 our %uri; # $uri{ip}{uri}{self}
112 our %blocked;
113 our %mimetype;
114
115 sub read_mimetypes {
116 local *M;
117 if (open M, "<mime_types") {
118 while (<M>) {
119 if (/^([^#]\S+)\t+(\S+)$/) {
120 $mimetype{lc $1} = $2;
121 }
122 }
123 } else {
124 print "cannot open mime_types\n";
125 }
126 }
127
128 read_mimetypes;
129
130 sub new {
131 my $class = shift;
132 my $peername = shift;
133 my $fh = shift;
134 my $self = bless { fh => $fh }, $class;
135 my (undef, $iaddr) = unpack_sockaddr_in $peername
136 or $self->err(500, "unable to decode peername");
137
138 $self->{remote_addr} = inet_ntoa $iaddr;
139 $self->{time} = $::NOW;
140
141 # enter ourselves into various lists
142 weaken ($conn{$self->{remote_addr}}{$self*1} = $self);
143
144 $::conns++;
145
146 $self;
147 }
148
149 sub DESTROY {
150 my $self = shift;
151
152 $::conns--;
153
154 $self->eoconn;
155 delete $conn{$self->{remote_addr}}{$self*1};
156 }
157
158 # end of connection
159 sub eoconn {
160 my $self = shift;
161 delete $uri{$self->{remote_addr}}{$self->{uri}}{$self*1};
162 }
163
164 sub slog {
165 my $self = shift;
166 main::slog($_[0], ($self->{remote_id} || $self->{remote_addr}) ."> $_[1]");
167 }
168
169 sub response {
170 my ($self, $code, $msg, $hdr, $content) = @_;
171 my $res = "HTTP/1.1 $code $msg\015\012";
172
173 $self->{h}{connection} ||= $hdr->{Connection};
174
175 $res .= "Date: $HTTP_NOW\015\012";
176
177 while (my ($h, $v) = each %$hdr) {
178 $res .= "$h: $v\015\012"
179 }
180 $res .= "\015\012";
181
182 $res .= $content if defined $content and $self->{method} ne "HEAD";
183
184 my $log = "$self->{remote_addr} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}." \"$self->{h}{referer}\"\n";
185
186 print $accesslog $log if $accesslog;
187 print STDERR $log;
188
189 $self->{written} +=
190 print {$self->{fh}} $res;
191 }
192
193 sub err {
194 my $self = shift;
195 my ($code, $msg, $hdr, $content) = @_;
196
197 unless (defined $content) {
198 $content = "$code $msg";
199 $hdr->{"Content-Type"} = "text/plain";
200 $hdr->{"Content-Length"} = length $content;
201 }
202 $hdr->{"Connection"} = "close";
203
204 $self->response($code, $msg, $hdr, $content);
205
206 die bless {}, err::;
207 }
208
209 sub handle {
210 my $self = shift;
211 my $fh = $self->{fh};
212
213 my $host;
214
215 $fh->timeout($::REQ_TIMEOUT);
216 while() {
217 $self->{reqs}++;
218
219 # read request and parse first line
220 my $req = $fh->readline("\015\012\015\012");
221
222 unless (defined $req) {
223 if (exists $self->{version}) {
224 last;
225 } else {
226 $self->err(408, "request timeout");
227 }
228 }
229
230 $self->{h} = {};
231
232 $fh->timeout($::RES_TIMEOUT);
233 my $ip = $self->{remote_addr};
234
235 if ($blocked{$ip}) {
236 $self->err_blocked($blocked{$ip})
237 if $blocked{$ip} > $::NOW;
238
239 delete $blocked{$ip};
240 }
241
242 if (%{$conn{$ip}} > $::MAX_CONN_IP) {
243 my $delay = 120;
244 while (%{$conn{$ip}} > $::MAX_CONN_IP) {
245 if ($delay <= 0) {
246 $self->slog(2, "blocked ip $ip");
247 $self->err_blocked;
248 } else {
249 Coro::Event::do_timer(after => 3);
250 $delay -= 3;
251 }
252 }
253 }
254
255 $req =~ /^(?:\015\012)?
256 (GET|HEAD) \040+
257 ([^\040]+) \040+
258 HTTP\/([0-9]+\.[0-9]+)
259 \015\012/gx
260 or $self->err(405, "method not allowed", { Allow => "GET,HEAD" });
261
262 $self->{method} = $1;
263 $self->{uri} = $2;
264 $self->{version} = $3;
265
266 $3 =~ /^1\./
267 or $self->err(506, "http protocol version $3 not supported");
268
269 # parse headers
270 {
271 my (%hdr, $h, $v);
272
273 $hdr{lc $1} .= ",$2"
274 while $req =~ /\G
275 ([^:\000-\040]+):
276 [\008\040]*
277 ((?: [^\015\012]+ | \015\012[\008\040] )*)
278 \015\012
279 /gxc;
280
281 $req =~ /\G\015\012$/
282 or $self->err(400, "bad request");
283
284 $self->{h}{$h} = substr $v, 1
285 while ($h, $v) = each %hdr;
286 }
287
288 # find out server name and port
289 if ($self->{uri} =~ s/^http:\/\/([^\/?#]*)//i) {
290 $host = $1;
291 } else {
292 $host = $self->{h}{host};
293 }
294
295 if (defined $host) {
296 $self->{server_port} = $host =~ s/:([0-9]+)$// ? $1 : 80;
297 } else {
298 ($self->{server_port}, $host)
299 = unpack_sockaddr_in $self->{fh}->getsockname
300 or $self->err(500, "unable to get socket name");
301 $host = inet_ntoa $host;
302 }
303
304 $self->{server_name} = $host;
305
306 # remote id should be unique per user
307 $self->{remote_id} = $self->{remote_addr};
308
309 if (exists $self->{h}{"client-ip"}) {
310 $self->{remote_id} .= "[".$self->{h}{"client-ip"}."]";
311 } elsif (exists $self->{h}{"x-forwarded-for"}) {
312 $self->{remote_id} .= "[".$self->{h}{"x-forwarded-for"}."]";
313 }
314
315 weaken ($uri{$self->{remote_addr}}{$self->{uri}}{$self*1} = $self);
316
317 eval {
318 $self->map_uri;
319 $self->respond;
320 };
321
322 $self->eoconn;
323
324 die if $@ && !ref $@;
325
326 last if $self->{h}{connection} =~ /close/ || $self->{version} < 1.1;
327
328 $fh->timeout($::PER_TIMEOUT);
329 }
330 }
331
332 # uri => path mapping
333 sub map_uri {
334 my $self = shift;
335 my $host = $self->{server_name};
336 my $uri = $self->{uri};
337
338 # some massaging, also makes it more secure
339 $uri =~ s/%([0-9a-fA-F][0-9a-fA-F])/chr hex $1/ge;
340 $uri =~ s%//+%/%g;
341 $uri =~ s%/\.(?=/|$)%%g;
342 1 while $uri =~ s%/[^/]+/\.\.(?=/|$)%%;
343
344 $uri =~ m%^/?\.\.(?=/|$)%
345 and $self->err(400, "bad request");
346
347 $self->{name} = $uri;
348
349 # now do the path mapping
350 $self->{path} = "$::DOCROOT/$host$uri";
351
352 $self->access_check;
353 }
354
355 sub _cgi {
356 my $self = shift;
357 my $path = shift;
358 my $fh;
359
360 # no two-way xxx supported
361 if (0 == fork) {
362 open STDOUT, ">&".fileno($self->{fh});
363 if (chdir $::DOCROOT) {
364 $ENV{SERVER_SOFTWARE} = "thttpd-myhttpd"; # we are thttpd-alike
365 $ENV{HTTP_HOST} = $self->{server_name};
366 $ENV{HTTP_PORT} = $self->{server_port};
367 $ENV{SCRIPT_NAME} = $self->{name};
368 exec $path;
369 }
370 Coro::State::_exit(0);
371 } else {
372 die;
373 }
374 }
375
376 sub server_hostport {
377 $_[0]{server_port} == 80
378 ? $_[0]{server_name}
379 : "$_[0]{server_name}:$_[0]{server_port}";
380 }
381
382 sub respond {
383 my $self = shift;
384 my $path = $self->{path};
385
386 stat $path
387 or $self->err(404, "not found");
388
389 $self->{stat} = [stat _];
390
391 # idiotic netscape sends idiotic headers AGAIN
392 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
393 ? str2time $1 : 0;
394
395 if (-d _ && -r _) {
396 # directory
397 if ($path !~ /\/$/) {
398 # create a redirect to get the trailing "/"
399 # we don't try to avoid the :80
400 $self->err(301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" });
401 } else {
402 $ims < $self->{stat}[9]
403 or $self->err(304, "not modified");
404
405 if (-r "$path/index.html") {
406 $self->{path} .= "/index.html";
407 $self->handle_file;
408 } else {
409 $self->handle_dir;
410 }
411 }
412 } elsif (-f _ && -r _) {
413 -x _ and $self->err(403, "forbidden");
414 $self->handle_file;
415 } else {
416 $self->err(404, "not found");
417 }
418 }
419
420 sub handle_dir {
421 my $self = shift;
422 my $idx = $self->diridx;
423
424 $self->response(200, "ok",
425 {
426 "Content-Type" => "text/html",
427 "Content-Length" => length $idx,
428 },
429 $idx);
430 }
431
432 sub handle_file {
433 my $self = shift;
434 my $length = $self->{stat}[7];
435 my $queue = $::transfers[$length >= $::TRANSFER_SMALL];
436 my $hdr = {
437 "Last-Modified" => time2str ((stat _)[9]),
438 };
439
440 my @code = (200, "ok");
441 my ($l, $h);
442
443 if ($self->{h}{range} =~ /^bytes=(.*)$/) {
444 for (split /,/, $1) {
445 if (/^-(\d+)$/) {
446 ($l, $h) = ($length - $1, $length - 1);
447 } elsif (/^(\d+)-(\d*)$/) {
448 ($l, $h) = ($1, ($2 ne "" || $2 >= $length) ? $2 : $length - 1);
449 } else {
450 ($l, $h) = (0, $length - 1);
451 goto ignore;
452 }
453 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l;
454 }
455 $hdr->{"Content-Range"} = "bytes */$length";
456 $hdr->{"Content-Length"} = $length;
457 $self->slog(9, "not satisfiable($self->{h}{range}|".$self->{h}{"user-agent"}.")");
458 $self->err(416, "not satisfiable", $hdr, "");
459
460 satisfiable:
461 # check for segmented downloads
462 if ($l && $::NO_SEGMENTED) {
463 my $delay = 180;
464 while (%{$uri{$self->{remote_addr}}{$self->{uri}}} > 1) {
465 if ($delay <= 0) {
466 $self->err_segmented_download;
467 } else {
468 Coro::Event::do_timer(after => 3); $delay -= 3;
469 }
470 }
471 }
472
473 $hdr->{"Content-Range"} = "bytes $l-$h/$length";
474 @code = (206, "partial content");
475 $length = $h - $l + 1;
476
477 ignore:
478 } else {
479 ($l, $h) = (0, $length - 1);
480 }
481
482 $self->{path} =~ /\.([^.]+)$/;
483 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream";
484 $hdr->{"Content-Length"} = $length;
485
486 $self->response(@code, $hdr, "");
487
488 if ($self->{method} eq "GET") {
489 $self->{time} = $::NOW;
490
491 my $transfer = $queue->[0]->guard;
492 $self->{fh}->writable or return;
493
494 $queue->[1] = $queue->[1] * $::wait_factor
495 + ($::NOW - $self->{time}) * (1 - $::wait_factor);
496 $self->{time} = $::NOW;
497
498 my ($fh, $buf, $r);
499 my $current = $Coro::current;
500 open $fh, "<", $self->{path}
501 or die "$self->{path}: late open failure ($!)";
502
503 $h -= $l - 1;
504
505 if (0) {
506 if ($l) {
507 sysseek $fh, $l, 0;
508 }
509 }
510
511 while ($h > 0) {
512 if (0) {
513 sysread $fh, $buf, $h > $::BUFSIZE ? $::BUFSIZE : $h
514 or last;
515 } else {
516 undef $buf;
517 $aio_requests->down;
518 aio_read($fh, $l, ($h > $::BUFSIZE ? $::BUFSIZE : $h),
519 $buf, 0, sub {
520 $r = $_[0];
521 $current->ready;
522 });
523 &Coro::schedule;
524 $aio_requests->up;
525 last unless $r;
526 }
527 my $w = $self->{fh}->syswrite($buf)
528 or last;
529 $::written += $w;
530 $self->{written} += $w;
531 $l += $r;
532 }
533
534 close $fh;
535 }
536 }
537
538 1;