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.4 by root, Fri Dec 22 06:02:29 2006 UTC vs.
Revision 1.25 by root, Tue Nov 6 01:25:48 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; # how many bytes to read 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); 15our @DETECTORS;
16our %DETECTORS;
17
18sub _update_detectors {
19 $MAX_DETECT = List::Util::max map $_->[1], values %DETECTORS;
20
21 use Data::Dump;
22 ddx [$MAX_DETECT, \%DETECTORS];
19} 23}
20 24
21Event->io (fd => $LISTEN, nice => 1, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub { 25sub register($$$$) {
22 my ($fh, $peername) = $LISTEN->accept 26 my ($name, $max_detect, $detect, $serve) = @_;
23 or return;
24 27
25 my $fd = fileno $fh; 28 $DETECTORS{$name} = [$max_detect, $detect, $serve];
26 my $host = inet_ntoa +(sockaddr_in $peername)[1]; 29 _update_detectors;
27 30
28 warn "new connection from $host\n"; 31 Guard::guard {
32 delete $DETECTORS{$name};
33 _update_detectors;
34 }
35}
29 36
30 cf::client::create $fd, $host; 37our $deliantra_detector = ext::tcp::register deliantra => 10, sub {
38 /^..version /s
39}, sub {
40 my $ns = cf::client::create fileno $_[1], $_[0];
41 $ns->inbuf_append ($_[2]);
31}); 42};
43
44for (@$BIND_ADDRESSES) {
45 my ($host, $port) = @$_;
46 cf::info "listening on ", (format_hostport $host, $port), "\n";
47
48 push @LISTENERS, tcp_server $host, $port, sub {
49 my ($fh, $host, $port) = @_
50 or return;
51
52 my $lhost = AnyEvent::Socket::format_address
53 +(AnyEvent::Socket::unpack_sockaddr getsockname $fh)[1];
54
55 my $id = format_hostport $host, $port;
56
57 cf::info "$id: accepted connection.\n"
58 if $lhost ne $host; # do not log connections from the host, e.g. for watchdogs
59
60 my $buf;
61 my $w; $w = AE::io $fh, 0, sub {
62 my $len = sysread $fh, $buf, 512, length $buf;
63
64 if ($len) {
65 for ($buf) {
66 while (my ($name, $v) = each %DETECTORS) {
67 if (my $cb = $v->[1]()) {
68 undef $w;
69 cf::debug "$id: detected protocol $name.\n";
70 $v->[2]($id, $fh, $buf);
71 return;
72 }
73 }
74
75 if (length >= $MAX_DETECT) { # unable to detect protocol
76 undef $w;
77 cf::debug "$id: data received, but cannot detect protocol, closing.\n";
78 }
79 }
80 } else {
81 undef $w;
82 cf::info "$id: read error during protocol detection ($!)\n";
83 }
84 };
85 };
86}
87

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines