ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/myhttpd/access.pl
Revision: 1.27
Committed: Wed Dec 5 02:02:23 2001 UTC (22 years, 7 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.26: +3 -4 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 package transferqueue;
2
3 my @reserve = (
4 [ 1_200_000, 2],
5 [ 8_000_000, 1],
6 [ 75_000_000, 1],
7 );
8
9 sub new {
10 my $class = shift;
11 my $self = bless {
12 slots => $_[0],
13 lastspb => 0,
14 avgspb => 0,
15 }, $class;
16 $self->{reschedule} = Event->timer(
17 after => 10,
18 interval => 3,
19 cb => sub { $self->wake_next },
20 );
21 $self;
22 }
23
24 sub start_transfer {
25 my $self = shift;
26 my $size = $_[0];
27
28 my $transfer = bless {
29 queue => $self,
30 time => $::NOW,
31 size => $size,
32 coro => $Coro::current,
33 started => 0,
34 }, transfer::;
35
36 push @{$self->{wait}}, $transfer;
37
38 $self->wake_next;
39
40 $transfer;
41 }
42
43 sub sort {
44 my @queue = grep $_, @{$_[0]{wait}};
45
46 $_->{spb} = ($::NOW-$_->{time}) / ($_->{size} || 1) for @queue;
47
48 $_[0]{wait} = [sort { $b->{spb} <=> $a->{spb} } @queue];
49
50 Scalar::Util::weaken $_ for @{$_[0]{wait}};
51 }
52
53 sub wake_next {
54 my $self = shift;
55
56 $self->sort;
57
58 while (@{$self->{wait}}) {
59 my $size = $self->{wait}[0]{size};
60 my $min = 0;
61 for (@reserve) {
62 last if $size <= $_->[0];
63 $min += $_->[1];
64 }
65 last unless $self->{slots} > $min;
66 my $transfer = shift @{$self->{wait}};
67 $self->{lastspb} = $transfer->{spb};
68 $self->{avgspb} = $self->{avgspb} * 0.99 + $transfer->{spb} * 0.01;
69 $self->{started}++;
70 $transfer->wake;
71 last;
72 }
73 }
74
75 sub waiters {
76 $_[0]->sort;
77 @{$_[0]{wait}};
78 }
79
80 sub DESTROY {
81 my $self = shift;
82
83 $self->{reschedule}->cancel;
84 }
85
86 package transfer;
87
88 use Coro::Timer ();
89
90 sub wake {
91 my $self = shift;
92
93 $self->{alloc} = 1;
94 $self->{queue}{slots}--;
95 $self->{wake} and $self->{wake}->ready;
96 }
97
98 sub try {
99 my $self = shift;
100
101 $self->{alloc} || do {
102 my $timeout = Coro::Timer::timeout $_[0];
103 local $self->{wake} = $self->{coro};
104
105 Coro::schedule;
106
107 $self->{alloc};
108 }
109 }
110
111 sub DESTROY {
112 my $self = shift;
113
114 if ($self->{alloc}) {
115 $self->{queue}{slots}++;
116 $self->{queue}->wake_next;
117 }
118 }
119
120 package conn;
121
122 our %blockuri;
123 our $blockref;
124
125 sub read_blockuri {
126 local *B;
127 my %group;
128 %blockuri = ();
129 if (open B, "<blockuri") {
130 while (<B>) {
131 chomp;
132 if (/^group\s+(\S+)\s+(.*)/i) {
133 $group{$1} = [split /\s+/, $2];
134 } elsif (/^!([^\t]*)\t\s*(.*)/) {
135 my $g = $1;
136 my @r;
137 for (split /\s+/, $2) {
138 push @r, $group{$_} ? @{$group{$_}} : $_;
139 }
140 print "not($g) => (@r)\n";
141 push @{$blockuri{$_}}, $g for @r;
142 push @blockuri, [qr/$g/i, \@r];
143 } elsif (/\S/) {
144 print "blockuri: unparsable line: $_\n";
145 }
146 }
147 for (keys %blockuri) {
148 my $qr = join ")|(?:", @{$blockuri{$_}};
149 $blockuri{$_} = qr{(?:$qr)}i;
150 }
151 } else {
152 print "no blockuri\n";
153 }
154 }
155
156 sub read_blockref {
157 local *B;
158 my @blockref;
159 if (open B, "<blockreferer") {
160 while (<B>) {
161 chomp;
162 if (/^([^\t]*)\t\s*(.*)/) {
163 push @blockref, $1;
164 } elsif (/\S/) {
165 print "blockref: unparsable line: $_\n";
166 }
167 }
168 $blockref = join ")|(?:", @blockref;
169 $blockref = qr{^(?:$blockref)}i;
170 } else {
171 print "no blockref\n";
172 $blockref = qr{^x^};
173 }
174 }
175
176 read_blockuri;
177 read_blockref;
178
179 use Tie::Cache;
180 tie %whois_cache, Tie::Cache::, 32;
181
182 sub access_check {
183 my $self = shift;
184
185 my $ref = $self->{h}{referer};
186 my $uri = $self->{path};
187 my %disallow;
188
189 $self->err_block_referer
190 if $self->{h}{referer} =~ $blockref;
191
192 my $whois = $whois_cache{$self->{remote_addr}}
193 ||= netgeo::ip_request($self->{remote_addr});
194
195 my $country = "XX";
196
197 if ($whois =~ /^\*cy: (\S+)/m) {
198 $country = uc $1;
199 } else {
200 $self->slog(9, "no country($whois)");
201 }
202
203 $self->{country} = $country;
204
205 $self->err_block_country($whois)
206 if $self->{path} =~ $blockuri{$country};
207 }
208
209 1;