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);
107 my $sort = shift || confess "need a valid AGW command letter";
108 my $from = shift || '';
109 my $to = shift || '';
110 my $port = shift || 0;
111 my $pid = shift || 0;
112 my $data = shift || '';
116 if ($sort eq 'y' || $sort eq 'H') {
117 dbg('agwpoll', "AGW sendf: $sort '${from}'->'${to}' port: $port pid: $pid \"$data\"");
118 } elsif ($sort eq 'D') {
122 dbg('agw', "AGW sendf: $sort '${from}'->'${to}' port: $port pid: $pid \"$d\"");
125 dbg('agw', "AGW sendf: $sort '${from}'->'${to}' port: $port pid: $pid \"$data\"");
127 push @outqueue, pack('C x3 a1 x1 C x1 a10 a10 V x4 a*', $port, $sort, $pid, $from, $to, $len, $data);
128 Msg::set_event_handler($sock, write=>\&_send);
135 # If $flush is set, set the socket to blocking, and send all
136 # messages in the queue - return only if there's an error
137 # If $flush is 0 (deferred mode) make the socket non-blocking, and
138 # return to the event loop only after every message, or if it
139 # is likely to block in the middle of a message.
141 my $offset = $send_offset;
144 my $msg = $outqueue[0];
145 my $mlth = length($msg);
146 my $bytes_to_write = $mlth - $offset;
147 my $bytes_written = 0;
148 confess("Negative Length! msg: '$msg' lth: $mlth offset: $offset") if $bytes_to_write < 0;
149 while ($bytes_to_write > 0) {
150 $bytes_written = syswrite ($sock, $msg,
151 $bytes_to_write, $offset);
152 if (!defined($bytes_written)) {
153 if (Msg::_err_will_block($!)) {
154 # Should happen only in deferred mode. Record how
155 # much we have already sent.
156 $send_offset = $offset;
157 # Event handler should already be set, so we will
158 # be called back eventually, and will resume sending
162 return 0; # fail. Message remains in queue ..
166 dbgdump('raw', "AGW send $bytes_written: ", $msg);
168 $offset += $bytes_written;
169 $bytes_to_write -= $bytes_written;
171 $send_offset = $offset = 0;
173 last; # Go back to select and wait
174 # for it to fire again.
177 # Call me back if queue has not been drained.
179 Msg::set_event_handler ($sock, write => \&_send);
181 Msg::set_event_handler ($sock, write => undef);
186 sub _rcv { # Complement to _send
188 my ($msg, $offset, $bytes_read);
190 $bytes_read = sysread ($sock, $msg, 1024, 0);
191 if (defined ($bytes_read)) {
192 if ($bytes_read > 0) {
195 dbgdump('raw', "AGW read $bytes_read: ", $msg);
199 if (Msg::_err_will_block($!)) {
207 if (defined $bytes_read && $bytes_read == 0) {
210 _decode() if length $inmsg >= 36;
216 dbg('err', "error on AGW connection $addr/$port $!");
217 Msg::set_event_handler($sock, read=>undef, write=>undef, error=>undef);
220 &{$_->{eproc}}() if $_->{eproc};
229 # we have at least 36 bytes of data (ugh!)
230 while (length $inmsg >= 36) {
231 my ($port, $sort, $pid, $from, $to, $len) = unpack('C x3 a1 x1 C x1 Z10 Z10 V x4', $inmsg);
234 # do a sanity check on the length
236 dbg('err', "AGW: invalid length $len > 2000 received ($sort $port $pid '$from'->'$to')");
241 if (length $inmsg > 36) {
242 $inmsg = substr($inmsg, 36);
246 } elsif (length $inmsg > $len + 36) {
247 $data = substr($inmsg, 36, $len);
248 $inmsg = substr($inmsg, $len + 36);
249 } elsif (length $inmsg == $len + 36) {
250 $data = substr($inmsg, 36);
254 # we don't have enough data or something
255 # or we have screwed up
260 $data = '' unless defined $data;
262 my $d = unpack "Z*", $data;
264 dbg('agw', "AGW Data In port: $port pid: $pid '$from'->'$to' length: $len \"$d\"");
265 my $conn = _find($from eq $main::mycall ? $to : $from);
267 if ($conn->{state} eq 'WC') {
268 if (exists $conn->{cmd}) {
269 if (@{$conn->{cmd}}) {
274 if ($conn->{state} eq 'WC' && exists $conn->{cmd} && @{$conn->{cmd}} == 0) {
275 $conn->to_connected($conn->{call}, 'O', $conn->{csort});
278 my @lines = split /\cM/, $data;
281 &{$conn->{rproc}}($conn, "I$conn->{call}|$_");
284 &{$conn->{rproc}}($conn, "I$conn->{call}|");
288 dbg('err', "AGW error Unsolicited Data!");
290 } elsif ($sort eq 'I' || $sort eq 'S' || $sort eq 'U' || $sort eq 'M' || $sort eq 'T') {
291 my $d = unpack "Z*", $data;
293 my @lines = split /\cM/, $d;
296 s/([\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
297 dbg('agw', "AGW Monitor port: $port \"$_\"");
299 } elsif ($sort eq 'C') {
300 my $d = unpack "Z*", $data;
302 dbg('agw', "AGW Connect port: $port pid: $pid '$from'->'$to' \"$d\"");
303 my $call = $from eq $main::mycall ? $to : $from;
304 my $conn = _find($call);
306 if ($conn->{state} eq 'WC') {
307 if (exists $conn->{cmd} && @{$conn->{cmd}}) {
309 if ($conn->{state} eq 'WC' && exists $conn->{cmd} && @{$conn->{cmd}} == 0) {
310 $conn->to_connected($conn->{call}, 'O', $conn->{csort});
315 $conn = AGWMsg->new($rproc);
316 $conn->{agwpid} = $pid;
317 $conn->{agwport} = $port;
318 $conn->{lineend} = "\cM";
319 $conn->{incoming} = 1;
320 $conn->{agwcall} = $call;
321 $circuit{$call} = $conn;
322 if ($call =~ /^(\w+)-(\d\d?)$/) {
326 if ($s <= 8 && $s > 0) {
332 $conn->to_connected($call, 'A', $conn->{csort} = 'ax25');
334 } elsif ($sort eq 'd') {
335 my $d = unpack "Z*", $data;
337 dbg('agw', "AGW '$from'->'$to' port: $port Disconnected ($d)");
338 my $conn = _find($from eq $main::mycall ? $to : $from);
340 &{$conn->{eproc}}() if $conn->{eproc};
341 $conn->in_disconnect;
343 } elsif ($sort eq 'y') {
344 my ($frames) = unpack "V", $data;
345 dbg('agwpollans', "AGW Frames Outstanding on port $port = $frames");
346 my $conn = _find($from);
347 $conn->{oframes} = $frames if $conn;
348 } elsif ($sort eq 'Y') {
349 my ($frames) = unpack "V", $data;
350 dbg('agw', "AGW Frames Outstanding on circuit '$from'->'$to' = $frames");
351 my $conn = _find($from eq $main::mycall ? $to : $from);
352 $conn->{oframes} = $frames if $conn;
353 } elsif ($sort eq 'H') {
354 unless ($from =~ /^\s+$/) {
355 my $d = unpack "Z*", $data;
357 dbg('agw', "AGW Heard port: $port \"$d\"");
359 } elsif ($sort eq 'X') {
360 my ($r) = unpack "C", $data;
361 $r = $r ? "Successful" : "Failed";
362 dbg('err', "AGW Register $from $r");
364 } elsif ($sort eq 'R') {
365 my ($major, $minor) = unpack "v x2 v x2", $data;
366 dbg('agw', "AGW Version $major.$minor");
367 } elsif ($sort eq 'G') {
368 my @ports = split /;/, $data;
369 $noports = shift @ports || '0';
370 dbg('agw', "AGW $noports Ports available");
371 pop @ports while @ports > $noports;
374 dbg('agw', "AGW Port: $_");
376 for (my $i = 0; $i < $noports; $i++) {
377 _sendf('y', undef, undef, $i);
378 _sendf('g', undef, undef, $i);
381 my $d = unpack "Z*", $data;
382 dbg('agw', "AGW decode $sort port: $port pid: $pid '$from'->'$to' length: $len \"$d\"");
390 return $circuit{$call};
395 my ($conn, $line) = @_;
397 my ($port, $call) = split /\s+/, $line;
398 $conn->{agwpid} = ord "\xF0";
399 $conn->{agwport} = $port - 1;
400 $conn->{lineend} = "\cM";
401 $conn->{incoming} = 0;
402 $conn->{csort} = 'ax25';
403 $conn->{agwcall} = uc $call;
404 $circuit{$conn->{agwcall}} = $conn;
406 _sendf('C', $main::mycall, $conn->{agwcall}, $conn->{agwport}, $conn->{agwpid});
407 $conn->{state} = 'WC';
415 delete $circuit{$conn->{agwcall}};
416 $conn->SUPER::disconnect;
422 delete $circuit{$conn->{agwcall}};
423 if ($conn->{incoming}) {
424 _sendf('d', $conn->{agwcall}, $main::mycall, $conn->{agwport}, $conn->{agwpid});
426 _sendf('d', $main::mycall, $conn->{agwcall}, $conn->{agwport}, $conn->{agwpid});
428 $conn->SUPER::disconnect;
433 my ($conn, $msg) = @_;
435 $msg =~ s/^[-\w]+\|//;
436 # _sendf('Y', $main::mycall, $conn->{call}, $conn->{agwport}, $conn->{agwpid});
437 _sendf('D', $main::mycall, $conn->{agwcall}, $conn->{agwport}, $conn->{agwpid}, $msg . $conn->{lineend});
438 my $len = length($msg) + 1;
439 dbg('agw', "AGW Data Out port: $conn->{agwport} pid: $conn->{agwpid} '$main::mycall'->'$conn->{agwcall}' length: $len \"$msg\"");
446 if ($ypolltime && $main::systime - $lastytime >= $ypolltime) {
447 for (my $i = 0; $i < $noports; $i++) {
448 _sendf('y', undef, undef, $i );
450 $lastytime = $main::systime;
452 if ($hpolltime && $main::systime - $lasthtime >= $hpolltime) {
453 for (my $i = 0; $i < $noports; $i++) {
454 _sendf('H', undef, undef, $i );
456 $lasthtime = $main::systime;