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 TELOPT_BINARY);
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 == 3;
112 $snl = "\n" if $mode == 2;
113 if ($mode == 2 && $line =~ />$/) {
117 $line =~ s/\n/\r/og if $mode == 1;
118 #my $p = qq($line$snl);
120 if (length $outqueue >= $client_buffer_lth) {
121 print $stdout $outqueue;
124 $outqueue .= "$savenl$line$snl";
127 print $stdout $savenl, $line, $snl;;
129 $savenl = $newsavenl;
130 } elsif ($sort eq 'M') {
131 $mode = $line; # set new mode from cluster
133 } elsif ($sort eq 'E') {
134 if ($sort eq 'telnet') {
135 $mode = $line; # set echo mode from cluster
136 my $term = POSIX::Termios->new;
137 $term->getattr(fileno($sock));
138 $term->setiflag( 0 );
139 $term->setoflag( 0 );
140 $term->setattr(fileno($sock), &POSIX::TCSANOW );
142 } elsif ($sort eq 'I') {
143 ; # ignore echoed I frames
144 } elsif ($sort eq 'B') {
145 if ($buffered && $outqueue) {
146 print $stdout $outqueue;
149 $buffered = $line; # set buffered or unbuffered
150 } elsif ($sort eq 'Z') { # end, disconnect, go, away .....
154 # ******************************************************
155 # ******************************************************
156 # any other sorts that might happen are silently ignored.
157 # ******************************************************
158 # ******************************************************
174 $r = sysread($fh, $buf, 1024);
177 # $prbuf =~ s/\r/\\r/;
178 # $prbuf =~ s/\n/\\n/;
179 # print "sys: $r ($prbuf)\n";
180 if (!defined $r || $r == 0) {
184 $buf =~ s/\r/\n/g if $mode == 1;
185 $buf =~ s/[\r\x00]//g if $mode == 2 || $mode == 3;
187 $dangle = !($buf =~ /\n$/);
191 @lines = split /\n/, $buf;
193 if ($dangle) { # pull off any dangly bits
198 $first = shift @lines;
199 unshift @lines, ($lastbit . $first) if ($first);
200 foreach $first (@lines) {
201 # print "send_now $call $first\n";
202 $conn->send_later("I$call|$first");
205 $savenl = ""; # reset savenl 'cos we will have done a newline on input
207 $conn->send_later("I$call|$buf");
219 my ($sort, $line) = @_;
220 dbg('connect', "CONNECT sort: $sort command: $line");
221 if ($sort eq 'telnet') {
222 # this is a straight network connect
223 my ($host, $port) = split /\s+/, $line;
224 $port = 23 if !$port;
226 $sock = new Net::Telnet (Timeout => $timeout, Port => $port);
227 $sock->option_callback(\&optioncb);
228 $sock->output_record_separator('');
229 $sock->option_accept(Dont => TELOPT_ECHO, Wont => TELOPT_ECHO);
230 $sock->open($host) or die "Can't connect to $host port $port $!";
233 } elsif ($sort eq 'ax25' || $sort eq 'prog') {
234 my @args = split /\s+/, $line;
237 $pid = open2($rfh, $wfh, "$line") or die "can't do $line $!";
238 die "no receive channel $!" unless $rfh;
239 die "no transmit channel $!" unless $wfh;
240 dbg('connect', "got pid $pid");
244 die "invalid type of connection ($sort)";
252 dbg('connect', "abort $string");
259 dbg('connect', "timeout set to $val");
265 my ($expect, $send) = @_;
266 dbg('connect', "CHAT \"$expect\" -> \"$send\"");
273 if ($csort eq 'telnet') {
274 $line = $sock->get();
275 cease(11) unless $line; # the socket has gone away?
276 if (length $line == 0) {
277 dbg('connect', "received 0 length line, aborting...");
282 } elsif ($csort eq 'ax25' || $csort eq 'prog') {
285 if (length $line == 0) {
286 dbg('connect', "received 0 length line, aborting...");
292 dbg('connect', "received \"$line\"");
293 if ($abort && $line =~ /$abort/i) {
294 dbg('connect', "aborted on /$abort/");
297 last if $line =~ /$expect/i;
301 if ($csort eq 'telnet') {
302 $sock->print("$send\n");
303 } elsif ($csort eq 'ax25') {
305 $wfh->print("$send");
307 dbg('connect', "sent \"$send\"");
313 dbg('connect', "timed out after $timeout seconds");
317 # handle callsign and connection type firtling
321 my @f = split /\s+/, $line;
322 $call = uc $f[0] if $f[0];
323 $csort = $f[1] if $f[1];
330 $mode = 2; # 1 - \n = \r as EOL, 2 - \n = \n, 0 - transparent
331 $call = ""; # the callsign being used
332 $conn = 0; # the connection object for the cluster
333 $lastbit = ""; # the last bit of an incomplete input line
334 $mynl = "\n"; # standard terminator
335 $lasttime = time; # lasttime something happened on the interface
336 $outqueue = ""; # the output queue
337 $client_buffer_lth = 200; # how many characters are buffered up on outqueue
338 $buffered = 1; # buffer output
339 $savenl = ""; # an NL that has been saved from last time
340 $timeout = 60; # default timeout for connects
341 $abort = ""; # the current abort string
342 $cpath = "$root/connect"; # the basic connect directory
344 $pid = 0; # the pid of the child program
345 $csort = ""; # the connection type
346 $sock = 0; # connection socket
359 $call = uc shift @ARGV if @ARGV;
360 $call = uc $myalias if !$call;
361 $connsort = lc shift @ARGV if @ARGV;
362 $connsort = 'local' if !$connsort;
364 $loginreq = $call eq 'LOGIN';
366 # we will do this again later 'cos things may have changed
367 $mode = ($connsort eq 'ax25') ? 1 : 2;
370 if ($call eq $mycall) {
371 print $stdout "You cannot connect as your cluster callsign ($mycall)", $nl;
375 $stdout->autoflush(1);
377 $SIG{'INT'} = \&sig_term;
378 $SIG{'TERM'} = \&sig_term;
379 $SIG{'HUP'} = \&sig_term;
380 $SIG{'CHLD'} = \&sig_chld;
381 $SIG{'ALRM'} = \&timeout;
385 # do we need to do a login and password job?
390 $connsort = 'telnet' if $connsort eq 'local';
393 if (-e "$data/issue") {
394 open(I, "$data/issue") or die;
398 $issue = s/\n/\r/og if $mode == 1;
400 $stdout->print($issue) if $issue;
403 # allow a login from an existing user. I could create a user but
404 # I want to check for valid callsigns and I don't have the
405 # necessary info / regular expression yet
408 $stdout->print('login: ');
411 $s = $stdin->getline();
414 $s =~ s/-\d+$//o; # no ssids!
415 cease(0) unless $s && $s gt ' ';
416 unless (iscallsign($s)) {
417 $stdout->print("Sorry, $s is an invalid callsign");
424 # is this an out going connection?
425 if ($connsort eq "connect") {
426 my $mcall = lc $call;
428 open(IN, "$cpath/$mcall") or cease(2);
438 doconnect($1, $2) if /^\s*co\w*\s+(\w+)\s+(.*)$/io;
439 doabort($1) if /^\s*a\w*\s+(.*)/io;
440 dotimeout($1) if /^\s*t\w*\s+(\d+)/io;
441 dochat($1, $2) if /^\s*\'(.*)\'\s+\'(.*)\'/io;
442 if (/^\s*cl\w+\s+(.*)/io) {
448 dbg('connect', "Connected to $call ($csort), starting normal protocol");
451 # if we get here we are connected
452 if ($csort eq 'ax25' || $csort eq 'prog') {
453 # open(STDIN, "<&R");
454 # open(STDOUT, ">&W");
459 $csort = 'telnet' if $csort eq 'prog';
460 } elsif ($csort eq 'telnet') {
461 # open(STDIN, "<&$sock");
462 # open(STDOUT, ">&$sock");
470 $stdout->autoflush(1);
471 $mode = ($connsort eq 'ax25') ? 1 : $mode;
479 # adjust the callsign if it has an SSID, SSID <= 8 are legal > 8 are netrom connections
480 my ($scall, $ssid) = split /-/, $call;
481 $ssid = undef unless $ssid && $ssid =~ /^\d+$/;
483 $ssid = 15 if $ssid > 15;
484 if ($connsort eq 'ax25') {
489 $call = "$scall-$ssid";
493 $conn = Msg->connect("$clusteraddr", $clusterport, \&rec_socket);
495 if (-r "$data/offline") {
496 open IN, "$data/offline" or die;
498 s/\n/\r/og if $mode == 1;
503 print $stdout "Sorry, the cluster $mycall is currently off-line", $mynl;
508 $let = $outbound ? 'O' : 'A';
509 $conn->send_now("$let$call|$connsort");
510 Msg->set_event_handler($stdin, "read" => \&rec_stdin);
514 Msg->event_loop(1, 1);
516 if ($t > $lasttime) {
518 print $stdout $outqueue;