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

Comparing deliantra/server/ext/tcp.ext (file contents):
Revision 1.1 by root, Fri Dec 15 19:29:18 2006 UTC vs.
Revision 1.23 by root, Mon Nov 5 23:23:04 2012 UTC

1#! perl 1#! perl # mandatory
2 2
3# this listens for new tcp connections and hands them over to the server core 3# this listens for new tcp connections and hands them over to the server core
4# wether this being an extension introduces or reduces stability problems 4# whether this being an extension introduces or reduces stability problems
5# is unknown as of today. 5# is unknown as of today.
6 6
7use Socket; 7use Socket;
8use IO::Socket::INET; 8use AnyEvent::Socket;
9 9
10our $LISTEN = new IO::Socket::INET 10CONF BIND_ADDRESSES = [[undef, 13327]];
11 LocalPort => cf::settings->csport,
12 Listen => 1,
13 ReuseAddr => 1;
14 11
15if (!$LISTEN) { 12our $MAX_DETECT = 16; # how many bytes to raed to identify the protocol
16 # extension yes, completely stupid, not yet 13
17 warn "unable to establish listen sockect, exiting.\n"; 14our @LISTENERS;
18 exit (2); 15
16sub flash_policy_server {
17 my ($fh) = @_;
18
19 # socket policy file, just write answer and hope the kernel accepts it in one go
20 syswrite $fh, <<EOF . "\x00"
21<?xml version="1.0"?>
22<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
23<cross-domain-policy>
24 <allow-access-from domain="*" to-ports="*"/>
25</cross-domain-policy>
26EOF
19} 27}
20 28
21Event->io (fd => $LISTEN, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub { 29for (@$BIND_ADDRESSES) {
22 my ($fh, $peername) = $LISTEN->accept 30 my ($host, $port) = @$_;
23 or return; 31 cf::info "listening on ", (format_hostport $host, $port), "\n";
24 32
25 my $fd = fileno $fh; 33 push @LISTENERS, tcp_server $host, $port, sub {
26 my $host = inet_ntoa +(sockaddr_in $peername)[1]; 34 my ($fh, $host, $port) = @_
35 or return;
27 36
28 warn "new connection from $host\n"; 37 my $lhost = AnyEvent::Socket::format_address
38 +(AnyEvent::Socket::unpack_sockaddr getsockname $fh)[1];
29 39
30 cf::add_client_socket $fd, $host; 40 my $id = format_hostport $host, $port;
31}); 41
42 cf::info "$id: new connection\n"
43 if $lhost ne $host; # do not log connections from the host, e.g. for watchdogs
44
45 my $buf;
46 my $w; $w = AE::io $fh, 0, sub {
47 my $len = sysread $fh, $buf, 512, length $buf;
48
49 if ($len) {
50 if ($buf =~ /^..version /s) { # deliantra protocol
51 undef $w;
52
53 my $ns = cf::client::create fileno $fh, $host;
54 $ns->inbuf_append ($buf);
55
56 } elsif ($buf =~ /^GET / && defined &ext::http::server) { # http or websocket
57 undef $w;
58
59 &ext::http::server ($id, $fh, $buf);
60
61 } elsif ($buf =~ /^<policy-file-request\/>\x00/) {
62 undef $w;
63
64 flash_policy_server $fh;
65
66 } elsif (length $buf >= $MAX_DETECT) { # unable to detect protocol
67 undef $w;
68
69 cf::info "$id: protocol detection error\n";
70 }
71 } else {
72 undef $w;
73
74 cf::info "$id: read error during protocol detection\n";
75 }
76 };
77 };
78}
79

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines