2 # This class is the internal subclass that deals with AGW Engine connections
4 # The complication here is that there only one 'real' (and from the node's point
5 # of view, invisible) IP connection. This connection then has multiplexed
6 # connections passed down it, a la BPQ native host ports (but not as nicely).
8 # It is a shame that the author has chosen an inherently dangerous binary format
9 # which is non-framed and has the potential for getting out of sync and not
10 # being able to recover. Relying on length fields is recipe for disaster (esp.
11 # for him!). DoS attacks are a wonderful thing....
13 # Also making the user handle the distinction between a level 2 and 4 connection
14 # and especially Digis, in the way that he has, is a bit of a cop out! If I can
15 # be arsed to do anything other than straight ax25 connects then it will only
16 # because I have the 'power of perl' available that avoids me getting
17 # terminally bored sorting out other people's sloppyness.
21 # Copyright (c) 2001 - Dirk Koopman G1TLH
32 use vars qw(@ISA $sock @outqueue $send_offset $inmsg $rproc $noports $lastytime
33 $lasthtime $ypolltime $hpolltime %circuit);
35 @ISA = qw(Msg ExtMsg);
42 $lastytime = $lasthtime = time;
43 $ypolltime = 10 unless defined $ypolltime;
44 $hpolltime = 300 unless defined $hpolltime;
49 return unless $enable;
53 dbg('err', "AGW initialising and connecting to $addr/$port ...");
54 $sock = IO::Socket::INET->new(PeerAddr => $addr, PeerPort => $port, Proto=>'tcp', Timeout=>15);
56 dbg('err', "Cannot connect to AGW Engine at $addr/$port $!");
59 Msg::blocking($sock, 0);
60 Msg::set_event_handler($sock, read=>\&_rcv, error=>\&_error);
62 # send a P frame for the login if required
64 my $data = pack "a255 a255", $login, $passwd;
65 _sendf('P', undef, undef, undef, undef, $data);
69 # R frame for the release number
70 # G frame to ask for ports
71 # X frame to say who we are
72 # optional m frame to enable monitoring
75 _sendf('X', $main::mycall);
76 _sendf('m') if $monitor;
86 dbg('err', "AGW ending...");
87 for (values %circuit) {
88 &{$_->{eproc}}() if $_->{eproc};
92 _sendf('m') if $monitor;
93 _sendf('x', $main::mycall);
95 Msg::set_event_handler($sock, read=>undef, write=>undef, error=>undef);
102 my $sort = shift || confess "need a valid AGW command letter";
103 my $from = shift || '';
104 my $to = shift || '';
105 my $port = shift || 0;
106 my $pid = shift || 0;
107 my $data = shift || '';
111 if ($sort eq 'y' || $sort eq 'H') {
112 dbg('agwpoll', "AGW sendf: $sort '${from}'->'${to}' port: $port pid: $pid \"$data\"");
113 } elsif ($sort eq 'D') {
117 dbg('agw', "AGW sendf: $sort '${from}'->'${to}' port: $port pid: $pid \"$d\"");
120 dbg('agw', "AGW sendf: $sort '${from}'->'${to}' port: $port pid: $pid \"$data\"");
122 push @outqueue, pack('C x3 a1 x1 C x1 a10 a10 V x4 a*', $port, $sort, $pid, $from, $to, $len, $data);
123 Msg::set_event_handler($sock, write=>\&_send);
130 # If $flush is set, set the socket to blocking, and send all
131 # messages in the queue - return only if there's an error
132 # If $flush is 0 (deferred mode) make the socket non-blocking, and
133 # return to the event loop only after every message, or if it
134 # is likely to block in the middle of a message.
136 my $offset = $send_offset;
139 my $msg = $outqueue[0];
140 my $mlth = length($msg);
141 my $bytes_to_write = $mlth - $offset;
142 my $bytes_written = 0;
143 confess("Negative Length! msg: '$msg' lth: $mlth offset: $offset") if $bytes_to_write < 0;
144 while ($bytes_to_write > 0) {
145 $bytes_written = syswrite ($sock, $msg,
146 $bytes_to_write, $offset);
147 if (!defined($bytes_written)) {
148 if (Msg::_err_will_block($!)) {
149 # Should happen only in deferred mode. Record how
150 # much we have already sent.
151 $send_offset = $offset;
152 # Event handler should already be set, so we will
153 # be called back eventually, and will resume sending
157 return 0; # fail. Message remains in queue ..
161 dbgdump('raw', "send $bytes_written: ", $msg);
163 $offset += $bytes_written;
164 $bytes_to_write -= $bytes_written;
166 $send_offset = $offset = 0;
168 last; # Go back to select and wait
169 # for it to fire again.
172 # Call me back if queue has not been drained.
174 Msg::set_event_handler ($sock, write => \&_send);
176 Msg::set_event_handler ($sock, write => undef);
181 sub _rcv { # Complement to _send
183 my ($msg, $offset, $bytes_read);
185 $bytes_read = sysread ($sock, $msg, 1024, 0);
186 if (defined ($bytes_read)) {
187 if ($bytes_read > 0) {
190 dbgdump('raw', "read $bytes_read: ", $msg);
194 if (Msg::_err_will_block($!)) {
202 if (defined $bytes_read && $bytes_read == 0) {
205 _decode() if length $inmsg >= 36;
211 dbg('agw', "error on AGW connection $addr/$port $!");
212 Msg::set_event_handler($sock, read=>undef, write=>undef, error=>undef);
215 &{$_->{eproc}}() if $_->{eproc};
224 # we have at least 36 bytes of data (ugh!)
225 my ($port, $sort, $pid, $from, $to, $len) = unpack('C x3 a1 x1 C x1 Z10 Z10 V x4', $inmsg);
228 # do a sanity check on the length
230 dbg('err', "AGW: invalid length $len > 2000 received ($sort $port $pid '$from'->'$to')");
235 if (length $inmsg > 36) {
236 $inmsg = substr($inmsg, 36);
240 } elsif (length $inmsg > $len + 36) {
241 $data = substr($inmsg, 36, $len);
242 $inmsg = substr($inmsg, $len + 36);
243 } elsif (length $inmsg == $len + 36) {
244 $data = substr($inmsg, 36);
247 # we don't have enough data or something
248 # or we have screwed up
252 $data = '' unless defined $data;
254 my $d = unpack "Z*", $data;
256 dbg('agw', "AGW Data In port: $port pid: $pid '$from'->'$to' length: $len \"$d\"");
257 my $conn = _find($from eq $main::mycall ? $to : $from);
259 if ($conn->{state} eq 'WC') {
260 if (exists $conn->{cmd}) {
261 if (@{$conn->{cmd}}) {
266 if ($conn->{state} eq 'WC' && exists $conn->{cmd} && @{$conn->{cmd}} == 0) {
267 $conn->to_connected($conn->{call}, 'O', $conn->{csort});
270 my @lines = split /\cM/, $data;
273 &{$conn->{rproc}}($conn, "I$conn->{call}|$_");
276 &{$conn->{rproc}}($conn, "I$conn->{call}|");
280 dbg('err', "AGW error Unsolicited Data!");
282 } elsif ($sort eq 'I' || $sort eq 'S' || $sort eq 'U' || $sort eq 'M' || $sort eq 'T') {
283 my $d = unpack "Z*", $data;
285 my @lines = split /\cM/, $d;
288 s/([\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
289 dbg('agw', "AGW Monitor port: $port \"$_\"");
291 } elsif ($sort eq 'C') {
292 my $d = unpack "Z*", $data;
294 dbg('agw', "AGW Connect port: $port pid: $pid '$from'->'$to' \"$d\"");
295 my $call = $from eq $main::mycall ? $to : $from;
296 my $conn = _find($call);
298 if ($conn->{state} eq 'WC') {
299 if (exists $conn->{cmd} && @{$conn->{cmd}}) {
301 if ($conn->{state} eq 'WC' && exists $conn->{cmd} && @{$conn->{cmd}} == 0) {
302 $conn->to_connected($conn->{call}, 'O', $conn->{csort});
307 $conn = AGWMsg->new($rproc);
308 $conn->{agwpid} = $pid;
309 $conn->{agwport} = $port;
310 $conn->{lineend} = "\cM";
311 $conn->{incoming} = 1;
312 $conn->{agwcall} = $call;
313 $circuit{$call} = $conn;
314 if ($call =~ /^(\w+)-(\d\d?)$/) {
318 if ($s <= 8 && $s > 0) {
324 $conn->to_connected($call, 'A', $conn->{csort} = 'ax25');
326 } elsif ($sort eq 'd') {
327 dbg('agw', "AGW '$from'->'$to' port: $port Disconnected");
328 my $conn = _find($from eq $main::mycall ? $to : $from);
330 &{$conn->{eproc}}() if $conn->{eproc};
331 $conn->in_disconnect;
333 } elsif ($sort eq 'y') {
334 my ($frames) = unpack "V", $data;
335 dbg('agwpollans', "AGW Frames Outstanding on port $port = $frames");
336 my $conn = _find($from);
337 $conn->{oframes} = $frames if $conn;
338 } elsif ($sort eq 'Y') {
339 my ($frames) = unpack "V", $data;
340 dbg('agw', "AGW Frames Outstanding on circuit '$from'->'$to' = $frames");
341 my $conn = _find($from eq $main::mycall ? $to : $from);
342 $conn->{oframes} = $frames if $conn;
343 } elsif ($sort eq 'H') {
344 unless ($from =~ /^\s+$/) {
345 my $d = unpack "Z*", $data;
347 dbg('agw', "AGW Heard port: $port \"$d\"");
349 } elsif ($sort eq 'X') {
350 my ($r) = unpack "C", $data;
351 $r = $r ? "Successful" : "Failed";
352 dbg('err', "AGW Register $from $r");
354 } elsif ($sort eq 'R') {
355 my ($major, $minor) = unpack "v x2 v x2", $data;
356 dbg('agw', "AGW Version $major.$minor");
357 } elsif ($sort eq 'G') {
358 my @ports = split /;/, $data;
359 $noports = shift @ports || '0';
360 dbg('agw', "AGW $noports Ports available");
361 pop @ports while @ports > $noports;
364 dbg('agw', "AGW Port: $_");
366 for (my $i = 0; $i < $noports; $i++) {
367 _sendf('y', undef, undef, $i);
368 _sendf('g', undef, undef, $i);
371 my $d = unpack "Z*", $data;
372 dbg('agw', "AGW decode $sort port: $port pid: $pid '$from'->'$to' length: $len \"$d\"");
379 return $circuit{$call};
384 my ($conn, $line) = @_;
386 my ($port, $call) = split /\s+/, $line;
387 $conn->{agwpid} = ord "\xF0";
388 $conn->{agwport} = $port - 1;
389 $conn->{lineend} = "\cM";
390 $conn->{incoming} = 0;
391 $conn->{csort} = 'ax25';
392 $conn->{agwcall} = uc $call;
393 $circuit{$conn->{agwcall}} = $conn;
395 _sendf('C', $main::mycall, $conn->{agwcall}, $conn->{agwport}, $conn->{agwpid});
396 $conn->{state} = 'WC';
404 delete $circuit{$conn->{agwcall}};
405 $conn->SUPER::disconnect;
411 delete $circuit{$conn->{agwcall}};
412 if ($conn->{incoming}) {
413 _sendf('d', $conn->{agwcall}, $main::mycall, $conn->{agwport}, $conn->{agwpid});
415 _sendf('d', $main::mycall, $conn->{agwcall}, $conn->{agwport}, $conn->{agwpid});
417 $conn->SUPER::disconnect;
422 my ($conn, $msg) = @_;
424 $msg =~ s/^[-\w]+\|//;
425 # _sendf('Y', $main::mycall, $conn->{call}, $conn->{agwport}, $conn->{agwpid});
426 _sendf('D', $main::mycall, $conn->{agwcall}, $conn->{agwport}, $conn->{agwpid}, $msg . $conn->{lineend});
427 my $len = length($msg) + 1;
428 dbg('agw', "AGW Data Out port: $conn->{agwport} pid: $conn->{agwpid} '$main::mycall'->'$conn->{agwcall}' length: $len \"$msg\"");
435 if ($ypolltime && $main::systime - $lastytime >= $ypolltime) {
436 for (my $i = 0; $i < $noports; $i++) {
437 _sendf('y', undef, undef, $i );
439 $lastytime = $main::systime;
441 if ($hpolltime && $main::systime - $lasthtime >= $hpolltime) {
442 for (my $i = 0; $i < $noports; $i++) {
443 _sendf('H', undef, undef, $i );
445 $lasthtime = $main::systime;