add not here message
[spider.git] / perl / DXCommandmode.pm
1 #!/usr/bin/perl
2 #
3 # This module impliments the user facing command mode for a dx cluster
4 #
5 # Copyright (c) 1998 Dirk Koopman G1TLH
6 #
7 # $Id$
8
9
10 package DXCommandmode;
11
12 use POSIX;
13
14 @ISA = qw(DXChannel);
15
16 use DXUtil;
17 use DXChannel;
18 use DXUser;
19 use DXVars;
20 use DXDebug;
21 use DXM;
22 use DXLog;
23 use DXLogPrint;
24 use DXBearing;
25 use CmdAlias;
26 use Filter;
27 use Minimuf;
28 use DXDb;
29 use AnnTalk;
30 use WCY;
31 use Sun;
32 use Internet;
33
34 use strict;
35 use vars qw(%Cache %cmd_cache $errstr %aliases $scriptbase $maxerrors);
36
37 %Cache = ();                                    # cache of dynamically loaded routine's mod times
38 %cmd_cache = ();                                # cache of short names
39 $errstr = ();                                   # error string from eval
40 %aliases = ();                                  # aliases for (parts of) commands
41 $scriptbase = "$main::root/scripts"; # the place where all users start scripts go
42 $maxerrors = 20;                                # the maximum number of concurrent errors allowed before disconnection
43
44 #
45 # obtain a new connection this is derived from dxchannel
46 #
47
48 sub new 
49 {
50         my $self = DXChannel::alloc(@_);
51
52         # routing, this must go out here to prevent race condx
53         my $pkg = shift;
54         my $call = shift;
55         my @rout = $main::routeroot->add_user($call, Route::here(1));
56         DXProt::route_pc16($DXProt::me, $main::routeroot, @rout) if @rout;
57
58         return $self;
59 }
60
61 # this is how a a connection starts, you get a hello message and the motd with
62 # possibly some other messages asking you to set various things up if you are
63 # new (or nearly new and slacking) user.
64
65 sub start
66
67         my ($self, $line, $sort) = @_;
68         my $user = $self->{user};
69         my $call = $self->{call};
70         my $name = $user->{name};
71         
72         $self->{name} = $name ? $name : $call;
73         $self->send($self->msg('l2',$self->{name}));
74         $self->send_file($main::motd) if (-e $main::motd);
75         $self->state('prompt');         # a bit of room for further expansion, passwords etc
76         $self->{priv} = $user->priv || 0;
77         $self->{lang} = $user->lang || $main::lang || 'en';
78         $self->{pagelth} = $user->pagelth || 20;
79         $self->{priv} = 0 if $line =~ /^(ax|te)/; # set the connection priv to 0 - can be upgraded later
80         $self->{consort} = $line;       # save the connection type
81         
82         # set some necessary flags on the user if they are connecting
83         $self->{beep} = $user->wantbeep;
84         $self->{ann} = $user->wantann;
85         $self->{wwv} = $user->wantwwv;
86         $self->{wcy} = $user->wantwcy;
87         $self->{talk} = $user->wanttalk;
88         $self->{wx} = $user->wantwx;
89         $self->{dx} = $user->wantdx;
90         $self->{logininfo} = $user->wantlogininfo;
91         $self->{here} = 1;
92
93         # get the filters
94         $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'user_default', 0);
95         $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'user_default', 0);
96         $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'user_default', 0);
97         $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'user_default', 0) ;
98
99         # clean up qra locators
100         my $qra = $user->qra;
101         $qra = undef if ($qra && !DXBearing::is_qra($qra));
102         unless ($qra) {
103                 my $lat = $user->lat;
104                 my $long = $user->long;
105                 $user->qra(DXBearing::lltoqra($lat, $long)) if (defined $lat && defined $long);  
106         }
107
108         $DXProt::me->conn($self->conn) if $call eq $main::myalias; # send all output for mycall to myalias
109
110         Log('DXCommand', "$call connected");
111
112         # send prompts and things
113         my $info = Route::cluster();
114         $self->send("Cluster:$info");
115         $self->send($self->msg('namee1')) if !$user->name;
116         $self->send($self->msg('qthe1')) if !$user->qth;
117         $self->send($self->msg('qll')) if !$user->qra || (!$user->lat && !$user->long);
118         $self->send($self->msg('hnodee1')) if !$user->qth;
119         $self->send($self->msg('m9')) if DXMsg::for_me($call);
120         $self->prompt;
121
122         # decide on echo
123         if (!$user->wantecho) {
124                 $self->send_now('E', "0");
125                 $self->send($self->msg('echow'));
126         }
127         
128         $self->tell_login('loginu');
129         
130 }
131
132 #
133 # This is the normal command prompt driver
134 #
135
136 sub normal
137 {
138         my $self = shift;
139         my $cmdline = shift;
140         my @ans;
141         
142         # remove leading and trailing spaces
143         $cmdline =~ s/^\s*(.*)\s*$/$1/;
144         
145         if ($self->{state} eq 'page') {
146                 my $i = $self->{pagelth};
147                 my $ref = $self->{pagedata};
148                 my $tot = @$ref;
149                 
150                 # abort if we get a line starting in with a
151                 if ($cmdline =~ /^a/io) {
152                         undef $ref;
153                         $i = 0;
154                 }
155         
156                 # send a tranche of data
157                 while ($i-- > 0 && @$ref) {
158                         my $line = shift @$ref;
159                         $line =~ s/\s+$//o;     # why am having to do this? 
160                         $self->send($line);
161                 }
162                 
163                 # reset state if none or else chuck out an intermediate prompt
164                 if ($ref && @$ref) {
165                         $tot -= $self->{pagelth};
166                         $self->send($self->msg('page', $tot));
167                 } else {
168                         $self->state('prompt');
169                 }
170         } elsif ($self->{state} eq 'sysop') {
171                 my $passwd = $self->{user}->passwd;
172                 my @pw = split / */, $passwd;
173                 if ($passwd) {
174                         my @l = @{$self->{passwd}};
175                         my $str = "$pw[$l[0]].*$pw[$l[1]].*$pw[$l[2]].*$pw[$l[3]].*$pw[$l[4]]";
176                         if ($cmdline =~ /$str/) {
177                                 $self->{priv} = $self->{user}->priv;
178                         } else {
179                                 $self->send($self->msg('sorry'));
180                         }
181                 } else {
182                         $self->send($self->msg('sorry'));
183                 }
184                 delete $self->{passwd};
185                 $self->state('prompt');
186         } elsif ($self->{state} eq 'talk') {
187                 if ($cmdline =~ m{^(?:/EX|/ABORT)}i) {
188                         for (@{$self->{talklist}}) {
189                                 $self->send_talks($_,  $self->msg('talkend'));
190                         }
191                         $self->state('prompt');
192                         delete $self->{talklist};
193                 } elsif ($cmdline =~ m(^/\w+)) {
194                         $cmdline =~ s(^/)();
195                         $self->send_ans(run_cmd($self, $cmdline));
196                         $self->send($self->talk_prompt);
197                 } elsif ($self->{talklist} && @{$self->{talklist}}) {
198                         # send what has been said to whoever is in this person's talk list
199                         for (@{$self->{talklist}}) {
200                                 $self->send_talks($_, $cmdline);
201                         }
202                         $self->send($self->talk_prompt) if $self->{state} eq 'talk';
203                 } else {
204                         # for safety
205                         $self->state('prompt');
206                 }
207         } else {
208                 $self->send_ans(run_cmd($self, $cmdline));
209         } 
210         
211         # send a prompt only if we are in a prompt state
212         $self->prompt() if $self->{state} =~ /^prompt/o;
213 }
214
215 # send out the talk messages taking into account vias and connectivity
216 sub send_talks
217 {
218         my ($self, $ent, $line) = @_;
219         
220         my ($to, $via) = $ent =~ /(\S+)>(\S+)/;
221         $to = $ent unless $to;
222         my $call = $via ? $via : $to;
223         my $clref = Route::get($call);
224         my $dxchan = $clref->dxchan if $clref;
225         if ($dxchan) {
226                 $dxchan->talk($self->{call}, $to, $via, $line);
227         } else {
228                 $self->send($self->msg('disc2', $via ? $via : $to));
229                 my @l = grep { $_ ne $ent } @{$self->{talklist}};
230                 if (@l) {
231                         $self->{talklist} = \@l;
232                 } else {
233                         delete $self->{talklist};
234                         $self->state('prompt');
235                 }
236         }
237 }
238
239 sub talk_prompt
240 {
241         my $self = shift;
242         my @call;
243         for (@{$self->{talklist}}) {
244                 my ($to, $via) = /(\S+)>(\S+)/;
245                 $to = $_ unless $to;
246                 push @call, $to;
247         }
248         return $self->msg('talkprompt', join(',', @call));
249 }
250
251 #
252 # send a load of stuff to a command user with page prompting
253 # and stuff
254 #
255
256 sub send_ans
257 {
258         my $self = shift;
259         
260         if ($self->{pagelth} && @_ > $self->{pagelth}) {
261                 my $i;
262                 for ($i = $self->{pagelth}; $i-- > 0; ) {
263                         my $line = shift @_;
264                         $line =~ s/\s+$//o;     # why am having to do this? 
265                         $self->send($line);
266                 }
267                 $self->{pagedata} =  [ @_ ];
268                 $self->state('page');
269                 $self->send($self->msg('page', scalar @_));
270         } else {
271                 for (@_) {
272                         $self->send($_) if $_;
273                 }
274         } 
275 }
276
277 # this is the thing that runs the command, it is done like this for the 
278 # benefit of remote command execution
279 #
280
281 sub run_cmd
282 {
283         my $self = shift;
284         my $user = $self->{user};
285         my $call = $self->{call};
286         my $cmdline = shift;
287         my @ans;
288         
289         if ($self->{func}) {
290                 my $c = qq{ \@ans = $self->{func}(\$self, \$cmdline) };
291                 dbg("stored func cmd = $c\n") if isdbg('eval');
292                 eval  $c;
293                 if ($@) {
294                         return ("Syserr: Eval err $errstr on stored func $self->{func}", $@);
295                 }
296         } else {
297
298                 return () if length $cmdline == 0;
299                 
300                 # strip out //
301                 $cmdline =~ s|//|/|og;
302                 
303                 # split the command line up into parts, the first part is the command
304                 my ($cmd, $args) = split /\s+/, $cmdline, 2;
305                 $args = "" unless defined $args;
306                 
307                 if ($cmd) {
308                         
309                         my ($path, $fcmd);
310                         
311                         dbg("cmd: $cmd") if isdbg('command');
312                         
313                         # alias it if possible
314                         my $acmd = CmdAlias::get_cmd($cmd);
315                         if ($acmd) {
316                                 ($cmd, $args) = split /\s+/, "$acmd $args", 2;
317                                 $args = "" unless defined $args;
318                                 dbg("aliased cmd: $cmd $args") if isdbg('command');
319                         }
320                         
321                         # first expand out the entry to a command
322                         ($path, $fcmd) = search($main::localcmd, $cmd, "pl");
323                         ($path, $fcmd) = search($main::cmd, $cmd, "pl") if !$path || !$fcmd;
324
325                         if ($path && $cmd) {
326                                 dbg("path: $cmd cmd: $fcmd") if isdbg('command');
327                         
328                                 my $package = find_cmd_name($path, $fcmd);
329                                 @ans = (0) if !$package ;
330                                 
331                                 if ($package) {
332                                         dbg("package: $package") if isdbg('command');
333                                         my $c;
334                                         unless (exists $Cache{$package}->{'sub'}) {
335                                                 $c = eval $Cache{$package}->{'eval'};
336                                                 if ($@) {
337                                                         return DXDebug::shortmess($@);
338                                                 }
339                                                 $Cache{$package}->{'sub'} = $c;
340                                         }
341                                         $c = $Cache{$package}->{'sub'};
342                                         eval {
343                                                 @ans = &{$c}($self, $args);
344                                     };
345                                         
346                                         if ($@) {
347                                                 #cluck($@);
348                                                 return (DXDebug::shortmess($@));
349                                         };
350                                 }
351                         } else {
352                                 dbg("cmd: $cmd not found") if isdbg('command');
353                                 if (++$self->{errors} > $maxerrors) {
354                                         $self->send($self->msg('e26'));
355                                         $self->disconnect;
356                                         return ();
357                                 } else {
358                                         return ($self->msg('e1'));
359                                 }
360                         }
361                 }
362         }
363         
364         my $ok = shift @ans;
365         if ($ok) {
366                 delete $self->{errors};
367         } else {
368                 if (++$self->{errors} > $maxerrors) {
369                         $self->send($self->msg('e26'));
370                         $self->disconnect;
371                         return ();
372                 }
373         }
374         return (@ans);
375 }
376
377 #
378 # This is called from inside the main cluster processing loop and is used
379 # for despatching commands that are doing some long processing job
380 #
381 sub process
382 {
383         my $t = time;
384         my @dxchan = DXChannel->get_all();
385         my $dxchan;
386         
387         foreach $dxchan (@dxchan) {
388                 next if $dxchan->sort ne 'U';  
389                 
390                 # send a prompt if no activity out on this channel
391                 if ($t >= $dxchan->t + $main::user_interval) {
392                         $dxchan->prompt() if $dxchan->{state} =~ /^prompt/o;
393                         $dxchan->t($t);
394                 }
395         }
396 }
397
398 #
399 # finish up a user context
400 #
401 sub disconnect
402 {
403         my $self = shift;
404         my $call = $self->call;
405
406         # reset the redirection of messages back to 'normal' if we are the sysop
407         if ($call eq $main::myalias) {
408                 $DXProt::me->conn(undef);
409         }
410
411         my @rout = $main::routeroot->del_user($call);
412         dbg("B/C PC17 on $main::mycall for: $call") if isdbg('route');
413
414         # issue a pc17 to everybody interested
415         DXProt::route_pc17($DXProt::me, $main::routeroot, @rout) if @rout;
416
417         # I was the last node visited
418     $self->user->node($main::mycall);
419                 
420         # send info to all logged in thingies
421         $self->tell_login('logoutu');
422
423         Log('DXCommand', "$call disconnected");
424
425         $self->SUPER::disconnect;
426 }
427
428 #
429 # short cut to output a prompt
430 #
431
432 sub prompt
433 {
434         my $self = shift;
435         $self->send($self->msg($self->here ? 'pr' : 'pr2', $self->call, cldate($main::systime), ztime($main::systime)));
436 }
437
438 # broadcast a message to all users [except those mentioned after buffer]
439 sub broadcast
440 {
441         my $pkg = shift;                        # ignored
442         my $s = shift;                          # the line to be rebroadcast
443         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
444         my @list = DXChannel->get_all(); # just in case we are called from some funny object
445         my ($dxchan, $except);
446         
447  L: foreach $dxchan (@list) {
448                 next if !$dxchan->sort eq 'U'; # only interested in user channels  
449                 foreach $except (@except) {
450                         next L if $except == $dxchan;   # ignore channels in the 'except' list
451                 }
452                 $dxchan->send($s);                      # send it
453         }
454 }
455
456 # gimme all the users
457 sub get_all
458 {
459         my @list = DXChannel->get_all();
460         my $ref;
461         my @out;
462         foreach $ref (@list) {
463                 push @out, $ref if $ref->sort eq 'U';
464         }
465         return @out;
466 }
467
468 # run a script for this user
469 sub run_script
470 {
471         my $self = shift;
472         my $silent = shift || 0;
473         
474 }
475
476 #
477 # search for the command in the cache of short->long form commands
478 #
479
480 sub search
481 {
482         my ($path, $short_cmd, $suffix) = @_;
483         my ($apath, $acmd);
484         
485         # commands are lower case
486         $short_cmd = lc $short_cmd;
487         dbg("command: $path $short_cmd\n") if isdbg('command');
488
489         # do some checking for funny characters
490         return () if $short_cmd =~ /\/$/;
491
492         # return immediately if we have it
493         ($apath, $acmd) = split ',', $cmd_cache{$short_cmd} if $cmd_cache{$short_cmd};
494         if ($apath && $acmd) {
495                 dbg("cached $short_cmd = ($apath, $acmd)\n") if isdbg('command');
496                 return ($apath, $acmd);
497         }
498         
499         # if not guess
500         my @parts = split '/', $short_cmd;
501         my $dirfn;
502         my $curdir = $path;
503         my $p;
504         my $i;
505         my @lparts;
506         
507         for ($i = 0; $i < @parts; $i++) {
508                 my  $p = $parts[$i];
509                 opendir(D, $curdir) or confess "can't open $curdir $!";
510                 my @ls = readdir D;
511                 closedir D;
512                 my $l;
513                 foreach $l (sort @ls) {
514                         next if $l =~ /^\./;
515                         if ($i < $#parts) {             # we are dealing with directories
516                                 if ((-d "$curdir/$l") && $p eq substr($l, 0, length $p)) {
517                                         dbg("got dir: $curdir/$l\n") if isdbg('command');
518                                         $dirfn .= "$l/";
519                                         $curdir .= "/$l";
520                                         last;
521                                 }
522                         } else {                        # we are dealing with commands
523                                 @lparts = split /\./, $l;                  
524                                 next if $lparts[$#lparts] ne $suffix;        # only look for .$suffix files
525                                 if ($p eq substr($l, 0, length $p)) {
526                                         pop @lparts; #  remove the suffix
527                                         $l = join '.', @lparts;
528                                         #                 chop $dirfn;               # remove trailing /
529                                         $dirfn = "" unless $dirfn;
530                                         $cmd_cache{"$short_cmd"} = join(',', ($path, "$dirfn$l")); # cache it
531                                         dbg("got path: $path cmd: $dirfn$l\n") if isdbg('command');
532                                         return ($path, "$dirfn$l"); 
533                                 }
534                         }
535                 }
536         }
537         return ();  
538 }  
539
540 # clear the command name cache
541 sub clear_cmd_cache
542 {
543         %cmd_cache = ();
544 }
545
546 #
547 # the persistant execution of things from the command directories
548 #
549 #
550 # This allows perl programs to call functions dynamically
551
552 # This has been nicked directly from the perlembed pages
553 #
554
555 #require Devel::Symdump;  
556
557 sub valid_package_name {
558         my($string) = @_;
559         $string =~ s/([^A-Za-z0-9\/])/sprintf("_%2x",unpack("C",$1))/eg;
560         
561         #second pass only for words starting with a digit
562         $string =~ s|/(\d)|sprintf("/_%2x",unpack("C",$1))|eg;
563         
564         #Dress it up as a real package name
565         $string =~ s/\//_/og;
566         return $string;
567 }
568
569 # find a cmd reference
570 # this is really for use in user written stubs
571 #
572 # use the result as a symbolic reference:-
573 #
574 # no strict 'refs';
575 # @out = &$r($self, $line);
576 #
577 sub find_cmd_ref
578 {
579         my $cmd = shift;
580         my $r;
581         
582         if ($cmd) {
583                 
584                 # first expand out the entry to a command
585                 my ($path, $fcmd) = search($main::localcmd, $cmd, "pl");
586                 ($path, $fcmd) = search($main::cmd, $cmd, "pl") if !$path || !$fcmd;
587                 
588                 # make sure it is loaded
589                 $r = find_cmd_name($path, $fcmd);
590         }
591         return $r;
592 }
593
594
595 # this bit of magic finds a command in the offered directory
596 sub find_cmd_name {
597         my $path = shift;
598         my $cmdname = shift;
599         my $package = valid_package_name($cmdname);
600         my $filename = "$path/$cmdname.pl";
601         my $mtime = -M $filename;
602         
603         # return if we can't find it
604         $errstr = undef;
605         unless (defined $mtime) {
606                 $errstr = DXM::msg('e1');
607                 return undef;
608         }
609         
610         if(defined $Cache{$package}->{mtime} &&$Cache{$package}->{mtime} <= $mtime) {
611                 #we have compiled this subroutine already,
612                 #it has not been updated on disk, nothing left to do
613                 #print STDERR "already compiled $package->handler\n";
614                 ;
615         } else {
616
617                 my $sub = readfilestr($filename);
618                 unless ($sub) {
619                         $errstr = "Syserr: can't open '$filename' $!";
620                         return undef;
621                 };
622                 
623                 #wrap the code into a subroutine inside our unique package
624                 my $eval = qq( sub { $sub } );
625                 
626                 if (isdbg('eval')) {
627                         my @list = split /\n/, $eval;
628                         my $line;
629                         for (@list) {
630                                 dbg($_ . "\n") if isdbg('eval');
631                         }
632                 }
633                 
634                 $Cache{$package} = {mtime => $mtime, 'eval' => $eval };
635         }
636
637         return $package;
638 }
639
640 # send a talk message here
641 sub talk
642 {
643         my ($self, $from, $to, $via, $line) = @_;
644         $line =~ s/\\5E/\^/g;
645         $self->send("$to de $from: $line") if $self->{talk};
646         Log('talk', $to, $from, $main::mycall, $line);
647         # send a 'not here' message if required
648         unless ($self->{here} && $from ne $to) {
649                 my ($ref, $dxchan);
650                 if (($ref = Route::get($from)) && ($dxchan = $ref->dxchan)) {
651                         my $name = $self->user->name || $to;
652                         my $s = $self->user->nothere || $dxchan->msg('nothere', $name);
653                         $dxchan->talk($to, $from, undef, $s);
654                 }
655         }
656 }
657
658 # send an announce
659 sub announce
660 {
661
662 }
663
664 # send a dx spot
665 sub dx_spot
666 {
667         
668 }
669
670 1;
671 __END__