3 # A thing that implements dxcluster 'protocol'
5 # This is a perl module/program that sits on the end of a dxcluster
6 # 'protocol' connection and deals with anything that might come along.
8 # this program is called by ax25d or inetd and gets raw ax25 text on its input
9 # It can also be launched into the ether by the cluster program itself for outgoing
14 # client.pl [callsign] [telnet|ax25|local] [[connect] [program name and args ...]]
16 # if the callsign isn't given then the sysop callsign in DXVars.pm is assumed
18 # if there is no connection type then 'local' is assumed
20 # if there is a 'connect' keyword then it will try to launch the following program
21 # and any arguments and connect the stdin & stdout of both the program and the
24 # Copyright (c) 1998 Dirk Koopman G1TLH
31 # search local then perl directories
33 # root of directory tree for this system
35 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
37 unshift @INC, "$root/perl"; # this IS the right way round!
38 unshift @INC, "$root/local";
47 use Net::Telnet qw(TELOPT_ECHO);
50 # cease communications
54 if ($conn && $sendz) {
55 $conn->send_now("Z$call|bye...\n");
57 $stdout->flush if $stdout;
59 dbg('connect', "killing $pid");
63 # $SIG{__WARN__} = sub {my $a = shift; cluck($a); };
68 # terminate program from signal
77 $SIG{CHLD} = \&sig_chld;
79 dbg('connect', "caught $pid");
93 # handle incoming messages
96 my ($con, $msg, $err) = @_;
97 if (defined $err && $err) {
101 my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
106 $snl = "" if $mode == 0;
107 if ($mode == 2 && $line =~ />$/) {
111 $line =~ s/\n/\r/og if $mode == 1;
112 #my $p = qq($line$snl);
114 if (length $outqueue >= $client_buffer_lth) {
115 print $stdout $outqueue;
118 $outqueue .= "$savenl$line$snl";
121 print $stdout $savenl, $line, $snl;;
123 $savenl = $newsavenl;
124 } elsif ($sort eq 'M') {
125 $mode = $line; # set new mode from cluster
127 } elsif ($sort eq 'E') {
128 if ($sort eq 'telnet') {
129 $mode = $line; # set echo mode from cluster
130 my $term = POSIX::Termios->new;
131 $term->getattr(fileno($sock));
132 $term->setiflag( 0 );
133 $term->setoflag( 0 );
134 $term->setattr(fileno($sock), &POSIX::TCSANOW );
136 } elsif ($sort eq 'I') {
137 ; # ignore echoed I frames
138 } elsif ($sort eq 'B') {
139 if ($buffered && $outqueue) {
140 print $stdout $outqueue;
143 $buffered = $line; # set buffered or unbuffered
144 } elsif ($sort eq 'Z') { # end, disconnect, go, away .....
160 $r = sysread($fh, $buf, 1024);
163 # $prbuf =~ s/\r/\\r/;
164 # $prbuf =~ s/\n/\\n/;
165 # print "sys: $r ($prbuf)\n";
166 if (!defined $r || $r == 0) {
170 $buf =~ s/\r/\n/og if $mode == 1;
171 $buf =~ s/\r\n/\n/og if $mode == 2;
172 $dangle = !($buf =~ /\n$/);
176 @lines = split /\n/, $buf;
178 if ($dangle) { # pull off any dangly bits
183 $first = shift @lines;
184 unshift @lines, ($lastbit . $first) if ($first);
185 foreach $first (@lines) {
186 # print "send_now $call $first\n";
187 $conn->send_later("I$call|$first");
190 $savenl = ""; # reset savenl 'cos we will have done a newline on input
192 $conn->send_later("I$call|$buf");
204 my ($sort, $line) = @_;
205 dbg('connect', "CONNECT sort: $sort command: $line");
206 if ($sort eq 'telnet') {
207 # this is a straight network connect
208 my ($host, $port) = split /\s+/, $line;
209 $port = 23 if !$port;
212 $sock = new Net::Telnet (Timeout => $timeout, Port => $port);
213 $sock->option_callback(\&optioncb);
214 $sock->output_record_separator('');
215 $sock->option_log('option_log');
216 $sock->dump_log('dump');
217 $sock->option_accept(Wont => TELOPT_ECHO);
218 $sock->open($host) or die "Can't connect to $host port $port $!";
220 # $sock = IO::Socket::INET->new(PeerAddr => "$host:$port", Proto => 'tcp')
221 # or die "Can't connect to $host port $port $!";
223 } elsif ($sort eq 'ax25' || $sort eq 'prog') {
224 my @args = split /\s+/, $line;
227 $pid = open2($rfh, $wfh, "$line") or die "can't do $line $!";
228 die "no receive channel $!" unless $rfh;
229 die "no transmit channel $!" unless $wfh;
230 dbg('connect', "got pid $pid");
233 die "invalid type of connection ($sort)";
241 dbg('connect', "abort $string");
248 dbg('connect', "timeout set to $val");
254 my ($expect, $send) = @_;
255 dbg('connect', "CHAT \"$expect\" -> \"$send\"");
262 if ($csort eq 'telnet') {
263 $line = $sock->get();
264 $line =~ s/\r\n/\n/og;
266 } elsif ($csort eq 'ax25' || $csort eq 'prog') {
271 dbg('connect', "received \"$line\"");
272 if ($abort && $line =~ /$abort/i) {
273 dbg('connect', "aborted on /$abort/");
276 last if $line =~ /$expect/i;
280 if ($csort eq 'telnet') {
281 $sock->print("$send\n");
282 } elsif ($csort eq 'ax25') {
284 $wfh->print("$send");
286 dbg('connect', "sent \"$send\"");
292 dbg('connect', "timed out after $timeout seconds");
301 $mode = 2; # 1 - \n = \r as EOL, 2 - \n = \n, 0 - transparent
302 $call = ""; # the callsign being used
303 $conn = 0; # the connection object for the cluster
304 $lastbit = ""; # the last bit of an incomplete input line
305 $mynl = "\n"; # standard terminator
306 $lasttime = time; # lasttime something happened on the interface
307 $outqueue = ""; # the output queue
308 $client_buffer_lth = 200; # how many characters are buffered up on outqueue
309 $buffered = 1; # buffer output
310 $savenl = ""; # an NL that has been saved from last time
311 $timeout = 60; # default timeout for connects
312 $abort = ""; # the current abort string
313 $cpath = "$root/connect"; # the basic connect directory
315 $pid = 0; # the pid of the child program
316 $csort = ""; # the connection type
317 $sock = 0; # connection socket
330 $call = uc shift @ARGV if @ARGV;
331 $call = uc $myalias if !$call;
332 $connsort = lc shift @ARGV if @ARGV;
333 $connsort = 'local' if !$connsort;
335 $loginreq = $call eq 'LOGIN';
337 # we will do this again later 'cos things may have changed
338 $mode = ($connsort eq 'ax25') ? 1 : 2;
341 if ($call eq $mycall) {
342 print $stdout "You cannot connect as your cluster callsign ($mycall)", $nl;
346 $stdout->autoflush(1);
348 $SIG{'INT'} = \&sig_term;
349 $SIG{'TERM'} = \&sig_term;
350 $SIG{'HUP'} = 'IGNORE';
351 $SIG{'CHLD'} = \&sig_chld;
352 $SIG{'ALRM'} = \&timeout;
356 # do we need to do a login and password job?
361 if (-e "$data/issue") {
362 open(I, "$data/issue") or die;
366 $issue = s/\n/\r/og if $mode == 1;
368 $stdout->print($issue) if $issue;
374 DXUser->init($userfn);
376 # allow a login from an existing user. I could create a user but
377 # I want to check for valid callsigns and I don't have the
378 # necessary info / regular expression yet
379 for ($state = 0; $state < 2; ) {
383 $stdout->print('login: ');
386 $s = $stdin->getline();
389 $s =~ s/-\d+$//o; # no ssids!
390 cease(0) unless $s gt ' ';
392 $user = DXUser->get($call);
394 } elsif ($state == 1) {
395 $stdout->print('password: ');
398 $s = $stdin->getline();
401 if (!$user || ($user->passwd && $user->passwd ne $s)) {
402 $stdout->print("sorry...$nl");
409 # handle callsign and connection type firtling
413 my @f = split /\s+/, $line;
414 $call = uc $f[0] if $f[0];
415 $csort = $f[1] if $f[1];
418 # is this an out going connection?
419 if ($connsort eq "connect") {
420 my $mcall = lc $call;
422 open(IN, "$cpath/$mcall") or cease(2);
432 doconnect($1, $2) if /^\s*co\w*\s+(\w+)\s+(.*)$/io;
433 doabort($1) if /^\s*a\w*\s+(.*)/io;
434 dotimeout($1) if /^\s*t\w*\s+(\d+)/io;
435 dochat($1, $2) if /\s*\'(.*)\'\s+\'(.*)\'/io;
436 if (/\s*cl\w+\s+(.*)/io) {
442 dbg('connect', "Connected to $call ($csort), starting normal protocol");
445 # if we get here we are connected
446 if ($csort eq 'ax25' || $csort eq 'prog') {
447 # open(STDIN, "<&R");
448 # open(STDOUT, ">&W");
453 $csort = 'telnet' if $csort eq 'prog';
454 } elsif ($csort eq 'telnet') {
455 # open(STDIN, "<&$sock");
456 # open(STDOUT, ">&$sock");
464 $stdout->autoflush(1);
470 $mode = ($connsort eq 'ax25') ? 1 : 2;
473 $conn = Msg->connect("$clusteraddr", $clusterport, \&rec_socket);
475 if (-r "$data/offline") {
476 open IN, "$data/offline" or die;
478 s/\n/\r/og if $mode == 1;
483 print $stdout "Sorry, the cluster $mycall is currently off-line", $mynl;
488 $let = $outbound ? 'O' : 'A';
489 $conn->send_now("$let$call|$connsort");
490 Msg->set_event_handler($stdin, "read" => \&rec_stdin);
494 Msg->event_loop(1, 0.010);
496 if ($t > $lasttime) {
498 print $stdout $outqueue;