2 # This class is the internal subclass that deals with the external port
3 # communications for Msg.pm
5 # This is where the cluster handles direct connections coming both in
10 # Copyright (c) 2001 - Dirk Koopman G1TLH
24 use vars qw(@ISA $deftimeout);
31 my ($conn, $msg) = @_;
32 unless ($msg =~ /^[ABZ]/) {
33 if ($msg =~ /^E[-\w]+\|([01])/ && $conn->{csort} eq 'telnet') {
36 # $conn->send_raw("\xFF\xFC\x01");
38 # $conn->send_raw("\xFF\xFB\x01");
41 $msg =~ s/^[-\w]+\|//;
42 push (@{$conn->{outqueue}}, $msg . $conn->{lineend});
49 my ($conn, $msg) = @_;
50 my $sock = $conn->{sock};
51 return unless defined($sock);
52 push (@{$conn->{outqueue}}, $msg);
53 dbg('connect', $msg) unless $conn->{state} eq 'C';
54 Msg::set_event_handler ($sock, "write" => sub {$conn->_send(0)});
62 if ($conn->{csort} eq 'ax25' && exists $conn->{msg}) {
63 $conn->{msg} =~ s/\cM/\cJ/g;
65 if ($conn->{state} eq 'WC') {
66 if (exists $conn->{cmd}) {
67 if (@{$conn->{cmd}}) {
68 dbg('connect', $conn->{msg});
69 $conn->_docmd($conn->{msg});
72 if ($conn->{state} eq 'WC' && exists $conn->{cmd} && @{$conn->{cmd}} == 0) {
73 $conn->to_connected($conn->{call}, 'O', $conn->{csort});
75 } elsif ($conn->{msg} =~ /\cJ/) {
76 my @lines = $conn->{msg} =~ /([^\cM\cJ]*)\cM?\cJ/g;
77 if ($conn->{msg} =~ /\cJ$/) {
80 $conn->{msg} = pop @lines;
82 while (defined ($msg = shift @lines)) {
83 dbg('connect', $msg) unless $conn->{state} eq 'C';
85 $msg =~ s/\xff\xfa.*\xff\xf0|\xff[\xf0-\xfe].//g; # remove telnet options
86 $msg =~ s/[\x00-\x08\x0a-\x19\x1b-\x1f\x80-\x9f]/./g; # immutable CSI sequence + control characters
88 if ($conn->{state} eq 'C') {
89 &{$conn->{rproc}}($conn, "I$conn->{call}|$msg");
90 } elsif ($conn->{state} eq 'WL' ) {
92 if (is_callsign($msg)) {
93 $conn->to_connected($msg, 'A', $conn->{csort});
95 $conn->send_now("Sorry $msg is an invalid callsign");
98 } elsif ($conn->{state} eq 'WC') {
99 if (exists $conn->{cmd} && @{$conn->{cmd}}) {
101 if ($conn->{state} eq 'WC' && exists $conn->{cmd} && @{$conn->{cmd}} == 0) {
102 $conn->to_connected($conn->{call}, 'O', $conn->{csort});
112 my ($conn, $call, $dir, $sort) = @_;
113 $conn->{state} = 'C';
116 $conn->{timeout}->del if $conn->{timeout};
117 delete $conn->{timeout};
118 &{$conn->{rproc}}($conn, "$dir$call|$sort");
119 $conn->_send_file("$main::data/connected");
123 my $server_conn = shift;
124 my $sock = $server_conn->{sock}->accept();
126 my $conn = $server_conn->new($server_conn->{rproc});
127 $conn->{sock} = $sock;
128 Msg::blocking($sock, 0);
129 $conn->{blocking} = 0;
131 my ($rproc, $eproc) = &{$server_conn->{rproc}} ($conn, $conn->{peerhost} = $sock->peerhost(), $conn->{peerport} = $sock->peerport());
133 $conn->{eproc} = $eproc;
134 Msg::set_event_handler ($sock, "error" => $eproc);
137 $conn->{rproc} = $rproc;
138 my $callback = sub {$conn->_rcv};
139 Msg::set_event_handler ($sock, "read" => $callback);
141 $conn->{state} = 'WL';
142 # $conn->send_raw("\xff\xfe\x01\xff\xfc\x01\ff\fd\x22");
143 # $conn->send_raw("\xff\xfa\x22\x01\x01\xff\xf0");
144 # $conn->send_raw("\xFF\xFC\x01");
145 $conn->_send_file("$main::data/issue");
146 $conn->send_raw("login: ");
147 $conn->_dotimeout(60);
149 &{$conn->{eproc}}() if $conn->{eproc};
153 dbg('err', "ExtMsg: error on accept ($!)");
161 my $conn = ExtMsg->new(\&main::new_channel);
164 my $f = new IO::File $fn;
165 push @{$conn->{cmd}}, <$f>;
167 $conn->{state} = 'WC';
168 $conn->_dotimeout($deftimeout);
178 while ($cmd = shift @{$conn->{cmd}}) {
180 next if $cmd =~ /^\s*\#/o;
181 next if $cmd =~ /^\s*$/o;
182 $conn->_doabort($1) if $cmd =~ /^\s*a\w*\s+(.*)/i;
183 $conn->_dotimeout($1) if $cmd =~ /^\s*t\w*\s+(\d+)/i;
184 $conn->_dolineend($1) if $cmd =~ /^\s*[Ll]\w*\s+\'((?:\\[rn])+)\'/i;
185 if ($cmd =~ /^\s*co\w*\s+(\w+)\s+(.*)$/i) {
186 unless ($conn->_doconnect($1, $2)) {
188 @{$conn->{cmd}} = []; # empty any further commands
192 if ($cmd =~ /^\s*\'.*\'\s+\'.*\'/i) {
193 $conn->_dochat($cmd, $msg);
196 if ($cmd =~ /^\s*cl\w+\s+(.*)/i) {
197 $conn->_doclient($1);
200 last if $conn->{state} eq 'E';
206 my ($conn, $sort, $line) = @_;
210 dbg('connect', "CONNECT sort: $sort command: $line");
211 if ($sort eq 'telnet') {
212 # this is a straight network connect
213 my ($host, $port) = split /\s+/, $line;
214 $port = 23 if !$port;
215 $r = $conn->connect($host, $port);
217 dbg('connect', "Connected to $host $port");
219 dbg('connect', "***Connect Failed to $host $port $!");
221 } elsif ($sort eq 'agw') {
222 # turn it into an AGW object
223 bless $conn, 'AGWMsg';
224 $r = $conn->connect($line);
225 } elsif ($sort eq 'ax25' || $sort eq 'prog') {
226 local $^F = 10000; # make sure it ain't closed on exec
227 my ($a, $b) = IO::Socket->socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC);
237 $conn->{csort} = $sort;
238 $conn->{lineend} = "\cM" if $sort eq 'ax25';
240 if ($conn->{rproc}) {
241 my $callback = sub {$conn->_rcv};
242 Msg::set_event_handler ($a, read => $callback);
244 dbg('connect', "started pid: $conn->{pid} as $line");
251 *STDIN = IO::File->new_from_fd($b, 'r') or die;
252 *STDOUT = IO::File->new_from_fd($b, 'w') or die;
253 *STDERR = IO::File->new_from_fd($b, 'w') or die;
255 unless ($main::is_win) {
256 # $SIG{HUP} = 'IGNORE';
257 $SIG{HUP} = $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = 'DEFAULT';
260 exec "$line" or dbg('err', "exec '$line' failed $!");
263 dbg('err', "cannot fork");
267 dbg('err', "no socket pair $!");
270 dbg('err', "invalid type of connection ($sort)");
272 $conn->disconnect unless $r;
280 dbg('connect', "abort $string");
281 $conn->{abort} = $string;
288 dbg('connect', "timeout set to $val");
289 $conn->{timeout}->del if $conn->{timeout};
290 $conn->{timeval} = $val;
291 $conn->{timeout} = Timer->new($val, sub{ &_timedout($conn) });
298 dbg('connect', "lineend set to $val ");
301 $conn->{lineend} = $val;
311 my ($expect, $send) = $cmd =~ /^\s*\'(.*)\'\s+\'(.*)\'/;
313 dbg('connect', "expecting: \"$expect\" received: \"$line\"");
314 if ($conn->{abort} && $line =~ /\Q$conn->{abort}/i) {
315 dbg('connect', "aborted on /$conn->{abort}/");
320 if ($line =~ /\Q$expect/i) {
321 dbg('connect', "got: \"$expect\" sending: \"$send\"");
322 $conn->send_later("D$conn->{call}|$send");
323 delete $conn->{msg}; # get rid any input if a match
328 $conn->{state} = 'WC';
329 unshift @{$conn->{cmd}}, $cmd;
335 dbg('connect', "timed out after $conn->{timeval} seconds");
336 $conn->{timeout}->del;
337 delete $conn->{timeout};
341 # handle callsign and connection type firtling
346 my @f = split /\s+/, $line;
347 my $call = uc $f[0] if $f[0];
349 $conn->{csort} = $f[1] if $f[1];
350 $conn->{state} = 'C';
351 &{$conn->{rproc}}($conn, "O$call|$conn->{csort}");
353 $conn->{timeout}->del if $conn->{timeout};
362 my $f = new IO::File $fn;
367 $conn->send_raw($_ . $conn->{lineend});