ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/tcp_http.ext
(Generate patch)

Comparing deliantra/server/ext/tcp_http.ext (file contents):
Revision 1.2 by root, Tue Nov 6 03:45:17 2012 UTC vs.
Revision 1.9 by root, Sat Nov 10 02:32:13 2012 UTC

1#! perl # optional depends=tcp 1#! perl # optional depends=tcp
2 2
3# http server 3# http server - this tried to speak enough of http 1.1 (and 1.0)
4# to work with browsers. it does not even attempt to be a complete
5# implementation, although it should be mostly correct for that it does.
4 6
5sub send { 7sub send {
6 my $self = $_[0]; 8 my $self = $_[0];
7 9
10 if (length $self->{wbuf}) {
8 $self->{wbuf} .= $_[1]; 11 $self->{wbuf} .= $_[1];
12 } else {
13 $self->{wbuf} .= $_[1];
9 14
10 $self->{ww} ||= AE::io $self->{fh}, 1, sub {
11 my $len = syswrite $self->{fh}, $self->{wbuf}; 15 my $len = syswrite $self->{fh}, $self->{wbuf};
12 substr $self->{wbuf}, 0, $len, ""; 16 substr $self->{wbuf}, 0, $len, "";
13 17
18 $self->{ww} = AE::io $self->{fh}, 1, sub {
19 my $len = syswrite $self->{fh}, $self->{wbuf};
20 substr $self->{wbuf}, 0, $len, "";
21
14 delete $self->{ww} unless length $self->{wbuf}; 22 $self->{ww}->stop unless length $self->{wbuf};
23 } if length $self->{wbuf};
15 }; 24 }
16} 25}
17 26
18sub fatal { 27sub fatal {
19 my ($self) = @_; 28 my ($self) = @_;
20 29
21 $self->send ("HTTP/1.1 500 internal error\015\012"); 30 $self->send ("HTTP/1.1 500 internal error\015\012");
22 delete $self->{rw};
23} 31}
24 32
25sub respond { 33sub respond {
26 $_[0]->send ("HTTP/1.1 $_[1]\015\012" 34 $_[0]->send ("HTTP/1.1 $_[1]\015\012"
27 . "content-length: " . (0 + length $_[2]) . "\015\012" 35 . "content-length: " . (0 + length $_[2]) . "\015\012"
28 . "access-control-allow-origin: *\015\012" 36 . "access-control-allow-origin: *\015\012"
29 . "$_[3]\015\012$_[2]"); 37 . $_[0]{ohdr}
38 . "$_[3]\015\012" . ($_[0]{give_head} ? "" : $_[2]));
30} 39}
31 40
32my $cache_headers = "cache-control: max-age=8640000\015\012" 41my $cache_headers = "cache-control: max-age=8640000\015\012"
33 . "etag: \"0\"\015\012"; 42 . "etag: \"0\"\015\012";
34 43
35sub content_type { 44sub content_type {
36 return "content-type: image/png\015\012" if $_[0] =~ /^\x89PNG/; 45 return "content-type: image/png\015\012" if $_[0] =~ /^\x89PNG/;
37 return "content-type: image/jpeg\015\012" if $_[0] =~ /^......JFIF/s; 46 return "content-type: image/jpeg\015\012" if $_[0] =~ /^......JFIF/s;
38 return "content-type: audio/wav\015\012" if $_[0] =~ /^RIFF/; 47 return "content-type: audio/wav\015\012" if $_[0] =~ /^RIFF/;
39 return "content-type: audio/ogg\015\012" if $_[0] =~ /^OggS/; 48 return "content-type: audio/ogg\015\012" if $_[0] =~ /^OggS/;
49 return "content-type: text/html\015\012" if $_[0] =~ /^</;
40 50
41 "content-type: text/plain\015\012" 51 "content-type: text/plain\015\012"
42} 52}
43 53
44sub handle_req { 54sub handle_con {
45 my ($self) = @_; 55 my ($self) = @_;
46 56
57 my ($method, $uri, $http, $req, $close, $len);
58
59 while () {
47 while ($self->{rbuf} =~ s/^( (?: [^\015]+ | . )+? )\015\012\015\012//xs) { 60 while ($self->{rbuf} =~ s/^( (?: [^\015]+ | . )+? \015\012)\015\012//xs) {
48 my $req = $1; 61 $req = $1;
49 62
50 # we ignore headers atm. 63 # we ignore headers atm.
51 64
52 $req =~ m%^GET (\S+) HTTP/[0-9.]+\015\012%i 65 $req =~ m%^(\S+) (\S+) HTTP/([0-9.]+)\015\012%ig
53 or return $self->fatal; 66 or return $self->respond ("400 bad request");
54 67
68 $method = uc $1;
55 my $uri = $1; 69 $uri = $2;
70 $http = $3;
56 71
57 $uri =~ s%^http://[^/]*%%i; # just in case 72 $uri =~ s%^http://[^/]*%%i; # just in case
73 $uri =~ s/%([0-9a-fA-F][0-9a-fA-F])/chr hex $1/ge; # %-decode
58 74
75# my %hdr;
76#
77# $hdr{lc $1} .= ",$2"
78# while $req =~ /\G
79# ([^:\000-\037]*):
80# [\011\040]*
81# ((?: [^\012]+ | \012[\011\040] )*)
82# \012
83# /gxc;
84#
85# $req =~ /\G$/
86# or return $self->respond ("400 bad request");
87#
88# # remove the "," prefix we added to all headers above
89# substr $_, 0, 1, ""
90# for values %hdr;
91
92 if ($http == 1.0) {
93 if ($req =~ /^connection\s*:\s*keep-alive/mi) {
94 $self->{ohdr} = "connection: keep-alive\015\012";
95 } else {
96 $self->{ohdr} = "connection: close\015\012";
97 $close = 1;
98 }
99 }
100
101 $self->{give_head} = $method eq "HEAD"
102 and $method = "GET";
103
59 cf::debug "HTTP GET: $self->{id} $uri"; 104 cf::debug "HTTP $method: $self->{id} $uri";
60 105
61 if ($uri =~ m%^/(M?)([0-9a-f]+)$%) { # faces 106 if ($method ne "GET") {
62 my $want_meta = $1; 107 $self->respond ("405 no $method");
63 my $idx = $cf::FACEHASH{pack "H*", $2};
64
65 $idx
66 or do { $self->respond ("404 illegal face name"), next };
67
68 if ($req =~ /if-none-match/i) { # dirtiest hack evar
69 $self->respond ("304 not modified", "", $cache_headers);
70 next; 108 next;
71 } 109 }
72 110
111 # not needed for GET, but who knows
112 $self->send ("HTTP/1.1 100 go on\015\012")
113 if $req =~ /^expect:.*\b100-continue\b/i;
114
115 if ($uri =~ m%^/([0-9a-f]+)(M?)$%) { # faces
116 my $want_meta = $2;
117 my $idx = $cf::FACEHASH{pack "H*", $1};
118
119 $idx
120 or do { $self->respond ("404 illegal face name"), next };
121
122 if ($req =~ /if-none-match/i) { # dirtiest hack evar
123 $self->respond ("304 not modified", "", $cache_headers);
124 next;
125 }
126
73 my $type = cf::face::get_type $idx, 1; 127 my $type = cf::face::get_type $idx, 1;
74 my $data = cf::face::get_data $idx, 1; 128 my $data = cf::face::get_data $idx, 1;
75 129
76 (my $meta, $data) = unpack "(w/a*)*", $data 130 (my $meta, $data) = unpack "(w/a*)*", $data
77 if $type & 1; 131 if $type & 1;
78 132
79 if ($want_meta) { 133 if ($want_meta) {
80 if ($type & 1) { 134 if ($type & 1) {
81 $self->respond ("200 OK", $meta, "content-type: text/plain\015\012" . $cache_headers); 135 $self->respond ("200 OK", $meta, "content-type: text/plain\015\012" . $cache_headers);
136 } else {
137 $self->respond ("404 type $type has no metadata");
138 }
82 } else { 139 } else {
83 $self->respond ("404 type $type has no metadata"); 140 $self->respond ("200 OK", $data, (content_type $data) . $cache_headers);
141 }
142
143 } elsif (my $idx = (cf::face::find "res/http$uri") || (cf::face::find "res/http${uri}index.html")) {
144 # TODO: use etag (shudder)
145 my $data = cf::face::get_data $idx, 1;
146 $self->respond ("200 OK", $data, (content_type $data) . $cache_headers);
147
148 } elsif (cf::face::find "res/http$uri/index.html") {
149 $self->respond ("302 dirslash", "", "location: $uri/\015\012");
150
151 } elsif ($uri eq "/debug") { # for debugging
152 my @body = "<html><body>";
153
154 for my $type (6, 5, 4, 3, 2, 1, 0) {
155 push @body, "<h1>$type</h1>";
156
157 for (1 .. cf::face::faces_size - 1) {
158 cf::cede_to_tick;
159
160 next if $type != cf::face::get_type $_;
161 my $name = cf::face::get_name $_;
162 my $id = unpack "H*", cf::face::get_chksum $_, 1;
163 push @body, "$_ <a href='$id'>$name ($id)</a>";
164 push @body, " <a href='${id}M'>(meta)</a>" if $type & 1;
165 push @body, "<br>";
84 } 166 }
167 }
168
169 push @body, "</body></html>";
170
171 my $body = join "", @body;
172 utf8::encode $body;
173 $self->respond ("200 OK", $body, "content-type: text/html\015\012");
174
85 } else { 175 } else {
86 $self->respond ("200 OK", $data, (content_type $data) . $cache_headers); 176 $self->respond ("404 not found");
87 } 177 }
88 178
89 } elsif ($uri eq "/debug") { # for debugging 179 cf::cede_to_tick;
90 my $body = "<html><body>";
91
92 for my $type (6, 5, 4, 3, 2, 1, 0) {
93 $body .= "<h1>$type</h1>";
94
95 for (1 .. cf::face::faces_size - 1) {
96 next if $type != cf::face::get_type $_;
97 my $name = cf::face::get_name $_;
98 my $id = unpack "H*", cf::face::get_chksum $_, 1;
99 $body .= "$_ <a href='$id'>$name ($id)</a>";
100 $body .= " <a href='M$id'>(meta)</a>" if $type & 1;
101 $body .= "<br>";
102 }
103 }
104
105 $body .= "</body></html>";
106
107 $self->respond ("200 OK", $body, "Content-Type: text/html\015\012");
108 } elsif ($uri eq "/ws" && defined &ext::ws::server) {
109 &ext::ws::server ($self->{id}, $self->{fh}, "$req\015\012\015\012$self->{rbuf}");
110
111 %$self = ();
112
113 } else {
114 $self->respond ("404 not found");
115 } 180 }
181
182 return if $close; # http 1.0 only currently
183 return if length $self->{rbuf} > 8192; # headers too long
184
185 Coro::AnyEvent::readable $self->{fh}, 6;
186
187 $len = sysread $self->{fh}, $self->{rbuf}, 4096, length $self->{rbuf};
188
189 return if $len <= 0;
116 } 190 };
117} 191}
118 192
119our $DETECTOR = ext::tcp::register http => 64, sub { 193our $DETECTOR = ext::tcp::register http => 64, sub {
120 # regex avoids conflict with websockets, which use /ws 194 # regex avoids conflict with websockets, which use /ws
121 m{^(?i:GET|HEAD|OPTIONS) \ (?! (?i:http://[^/]+)? /ws \ ) }x 195 m{^(?i:GET|HEAD|OPTIONS) \ (?! (?i:http://[^/]+)? /ws \ ) }x
125 fh => $_[1], 199 fh => $_[1],
126 rbuf => $_[2], 200 rbuf => $_[2],
127 wbuf => "", 201 wbuf => "",
128 }; 202 };
129 203
130 $self->{rw} = AE::io $self->{fh}, 0, sub { 204 $self->{async} = Coro::async_pool {
131 my $len = sysread $self->{fh}, $self->{rbuf}, 4096, length $self->{rbuf}; 205 $Coro::current->nice (4);
206 $Coro::current->{desc} = "http $self->{id}";
132 207
133 if ($len == 0) {
134 delete $self->{rw};
135 } else {
136 $self->handle_req; 208 $self->handle_con;
137 209
138 delete $self->{rw} if length $self->{rbuf} > 8192; # headers too long 210 # this is ultra-ugly, but overall, fast
139 } 211# Coro::AnyEvent::writable $self->{fh}
212# while length $self->{wbuf};
213
214# %$self = ();
140 }; 215 };
141
142 $self->handle_req; # in the unlikely case of the buffer already forming a valid request
143}; 216};
144 217
145cf::register_exticmd http_faceurl => sub { 218cf::register_exticmd http_faceurl => sub {
146 my ($ns) = @_; 219 my ($ns) = @_;
147 220

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines