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";
45 use Net::Telnet qw(TELOPT_ECHO);
50 # cease communications
54 # if ($conn && $sendz) {
55 # $conn->send_now("Z$call|bye...");
58 $stdout->flush if $stdout;
60 dbg('connect', "killing $pid");
64 # $SIG{__WARN__} = sub {my $a = shift; cluck($a); };
68 $conn->disconnect if $conn;
72 # terminate program from signal
81 $SIG{CHLD} = \&sig_chld;
83 dbg('connect', "caught $pid");
97 # handle incoming messages
100 my ($con, $msg, $err) = @_;
101 if (defined $err && $err) {
105 my ($sort, $call, $line) = $msg =~ /^(\w)([^\|]+)\|(.*)$/;
110 $snl = "" if $mode == 0;
111 $snl = "\r\n" if $mode == 2;
112 if ($mode == 2 && $line =~ />$/) {
116 $line =~ s/\n/\r/og if $mode == 1;
117 #my $p = qq($line$snl);
119 if (length $outqueue >= $client_buffer_lth) {
120 print $stdout $outqueue;
123 $outqueue .= "$savenl$line$snl";
126 print $stdout $savenl, $line, $snl;;
128 $savenl = $newsavenl;
129 } elsif ($sort eq 'M') {
130 $mode = $line; # set new mode from cluster
132 } elsif ($sort eq 'E') {
133 if ($sort eq 'telnet') {
134 $mode = $line; # set echo mode from cluster
135 my $term = POSIX::Termios->new;
136 $term->getattr(fileno($sock));
137 $term->setiflag( 0 );
138 $term->setoflag( 0 );
139 $term->setattr(fileno($sock), &POSIX::TCSANOW );
141 } elsif ($sort eq 'I') {
142 ; # ignore echoed I frames
143 } elsif ($sort eq 'B') {
144 if ($buffered && $outqueue) {
145 print $stdout $outqueue;
148 $buffered = $line; # set buffered or unbuffered
149 } elsif ($sort eq 'Z') { # end, disconnect, go, away .....
153 # ******************************************************
154 # ******************************************************
155 # any other sorts that might happen are silently ignored.
156 # ******************************************************
157 # ******************************************************
173 $r = sysread($fh, $buf, 1024);
176 # $prbuf =~ s/\r/\\r/;
177 # $prbuf =~ s/\n/\\n/;
178 # print "sys: $r ($prbuf)\n";
179 if (!defined $r || $r == 0) {
183 $buf =~ s/\r/\n/g if $mode == 1;
184 $buf =~ s/[\r\x00]//g if $mode == 2;
186 $dangle = !($buf =~ /\n$/);
190 @lines = split /\n/, $buf;
192 if ($dangle) { # pull off any dangly bits
197 $first = shift @lines;
198 unshift @lines, ($lastbit . $first) if ($first);
199 foreach $first (@lines) {
200 # print "send_now $call $first\n";
201 $conn->send_later("I$call|$first");
204 $savenl = ""; # reset savenl 'cos we will have done a newline on input
206 $conn->send_later("I$call|$buf");
218 my ($sort, $line) = @_;
219 dbg('connect', "CONNECT sort: $sort command: $line");
220 if ($sort eq 'telnet') {
221 # this is a straight network connect
222 my ($host, $port) = split /\s+/, $line;
223 $port = 23 if !$port;
227 $sock = new Net::Telnet (Timeout => $timeout, Port => $port);
228 $sock->option_callback(\&optioncb);
229 $sock->output_record_separator('');
230 # $sock->option_log('option_log');
231 # $sock->dump_log('dump');
232 $sock->option_accept(Dont => TELOPT_ECHO, Wont => TELOPT_ECHO);
233 $sock->open($host) or die "Can't connect to $host port $port $!";
235 # $sock = IO::Socket::INET->new(PeerAddr => "$host:$port", Proto => 'tcp')
236 # or die "Can't connect to $host port $port $!";
238 } elsif ($sort eq 'ax25' || $sort eq 'prog') {
239 my @args = split /\s+/, $line;
242 $pid = open2($rfh, $wfh, "$line") or die "can't do $line $!";
243 die "no receive channel $!" unless $rfh;
244 die "no transmit channel $!" unless $wfh;
245 dbg('connect', "got pid $pid");
248 die "invalid type of connection ($sort)";
256 dbg('connect', "abort $string");
263 dbg('connect', "timeout set to $val");
269 my ($expect, $send) = @_;
270 dbg('connect', "CHAT \"$expect\" -> \"$send\"");
277 if ($csort eq 'telnet') {
278 $line = $sock->get();
279 cease(11) unless $line; # the socket has gone away?
280 if (length $line == 0) {
281 dbg('connect', "received 0 length line, aborting...");
286 } elsif ($csort eq 'ax25' || $csort eq 'prog') {
289 if (length $line == 0) {
290 dbg('connect', "received 0 length line, aborting...");
296 dbg('connect', "received \"$line\"");
297 if ($abort && $line =~ /$abort/i) {
298 dbg('connect', "aborted on /$abort/");
301 last if $line =~ /$expect/i;
305 if ($csort eq 'telnet') {
306 $sock->print("$send\n");
307 } elsif ($csort eq 'ax25') {
309 $wfh->print("$send");
311 dbg('connect', "sent \"$send\"");
317 dbg('connect', "timed out after $timeout seconds");
321 # handle callsign and connection type firtling
325 my @f = split /\s+/, $line;
326 $call = uc $f[0] if $f[0];
327 $csort = $f[1] if $f[1];
334 $mode = 2; # 1 - \n = \r as EOL, 2 - \n = \n, 0 - transparent
335 $call = ""; # the callsign being used
336 $conn = 0; # the connection object for the cluster
337 $lastbit = ""; # the last bit of an incomplete input line
338 $mynl = "\n"; # standard terminator
339 $lasttime = time; # lasttime something happened on the interface
340 $outqueue = ""; # the output queue
341 $client_buffer_lth = 200; # how many characters are buffered up on outqueue
342 $buffered = 1; # buffer output
343 $savenl = ""; # an NL that has been saved from last time
344 $timeout = 60; # default timeout for connects
345 $abort = ""; # the current abort string
346 $cpath = "$root/connect"; # the basic connect directory
348 $pid = 0; # the pid of the child program
349 $csort = ""; # the connection type
350 $sock = 0; # connection socket
363 $call = uc shift @ARGV if @ARGV;
364 $call = uc $myalias if !$call;
365 $connsort = lc shift @ARGV if @ARGV;
366 $connsort = 'local' if !$connsort;
368 $loginreq = $call eq 'LOGIN';
370 # we will do this again later 'cos things may have changed
371 $mode = ($connsort eq 'ax25') ? 1 : 2;
374 if ($call eq $mycall) {
375 print $stdout "You cannot connect as your cluster callsign ($mycall)", $nl;
379 $stdout->autoflush(1);
381 $SIG{'INT'} = \&sig_term;
382 $SIG{'TERM'} = \&sig_term;
383 $SIG{'HUP'} = \&sig_term;
384 $SIG{'CHLD'} = \&sig_chld;
385 $SIG{'ALRM'} = \&timeout;
389 # do we need to do a login and password job?
394 $connsort = 'telnet' if $connsort eq 'local';
397 if (-e "$data/issue") {
398 open(I, "$data/issue") or die;
402 $issue = s/\n/\r/og if $mode == 1;
404 $stdout->print($issue) if $issue;
407 # allow a login from an existing user. I could create a user but
408 # I want to check for valid callsigns and I don't have the
409 # necessary info / regular expression yet
412 $stdout->print('login: ');
415 $s = $stdin->getline();
418 $s =~ s/-\d+$//o; # no ssids!
419 cease(0) unless $s && $s gt ' ';
420 unless (iscallsign($s)) {
421 $stdout->print("Sorry, $s is an invalid callsign");
428 # is this an out going connection?
429 if ($connsort eq "connect") {
430 my $mcall = lc $call;
432 open(IN, "$cpath/$mcall") or cease(2);
442 doconnect($1, $2) if /^\s*co\w*\s+(\w+)\s+(.*)$/io;
443 doabort($1) if /^\s*a\w*\s+(.*)/io;
444 dotimeout($1) if /^\s*t\w*\s+(\d+)/io;
445 dochat($1, $2) if /^\s*\'(.*)\'\s+\'(.*)\'/io;
446 if (/^\s*cl\w+\s+(.*)/io) {
452 dbg('connect', "Connected to $call ($csort), starting normal protocol");
455 # if we get here we are connected
456 if ($csort eq 'ax25' || $csort eq 'prog') {
457 # open(STDIN, "<&R");
458 # open(STDOUT, ">&W");
463 $csort = 'telnet' if $csort eq 'prog';
464 } elsif ($csort eq 'telnet') {
465 # open(STDIN, "<&$sock");
466 # open(STDOUT, ">&$sock");
474 $stdout->autoflush(1);
480 $mode = ($connsort eq 'ax25') ? 1 : 2;
483 # adjust the callsign if it has an SSID, SSID <= 8 are legal > 8 are netrom connections
484 my ($scall, $ssid) = split /-/, $call;
485 $ssid = undef unless $ssid && $ssid =~ /^\d+$/;
487 $ssid = 15 if $ssid > 15;
488 if ($connsort eq 'ax25') {
493 $call = "$scall-$ssid";
497 $conn = Msg->connect("$clusteraddr", $clusterport, \&rec_socket);
499 if (-r "$data/offline") {
500 open IN, "$data/offline" or die;
502 s/\n/\r/og if $mode == 1;
507 print $stdout "Sorry, the cluster $mycall is currently off-line", $mynl;
512 $let = $outbound ? 'O' : 'A';
513 $conn->send_now("$let$call|$connsort");
514 Msg->set_event_handler($stdin, "read" => \&rec_stdin);
518 Msg->event_loop(1, 1);
520 if ($t > $lasttime) {
522 print $stdout $outqueue;