3 # This module impliments the user facing command mode for a dx cluster
5 # Copyright (c) 1998 Dirk Koopman G1TLH
10 package DXCommandmode;
35 use vars qw(%Cache %cmd_cache $errstr %aliases $scriptbase $maxerrors);
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
45 # obtain a new connection this is derived from dxchannel
50 my $self = DXChannel::alloc(@_);
52 # routing, this must go out here to prevent race condx
55 my @rout = $main::routeroot->add_user($call, Route::here(1));
56 DXProt::route_pc16($DXProt::me, $main::routeroot, @rout) if @rout;
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.
67 my ($self, $line, $sort) = @_;
68 my $user = $self->{user};
69 my $call = $self->{call};
70 my $name = $user->{name};
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
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;
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) ;
99 # clean up qra locators
100 my $qra = $user->qra;
101 $qra = undef if ($qra && !DXBearing::is_qra($qra));
103 my $lat = $user->lat;
104 my $long = $user->long;
105 $user->qra(DXBearing::lltoqra($lat, $long)) if (defined $lat && defined $long);
108 $DXProt::me->conn($self->conn) if $call eq $main::myalias; # send all output for mycall to myalias
110 Log('DXCommand', "$call connected");
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);
123 if (!$user->wantecho) {
124 $self->send_now('E', "0");
125 $self->send($self->msg('echow'));
128 $self->tell_login('loginu');
133 # This is the normal command prompt driver
142 # remove leading and trailing spaces
143 $cmdline =~ s/^\s*(.*)\s*$/$1/;
145 if ($self->{state} eq 'page') {
146 my $i = $self->{pagelth};
147 my $ref = $self->{pagedata};
150 # abort if we get a line starting in with a
151 if ($cmdline =~ /^a/io) {
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?
163 # reset state if none or else chuck out an intermediate prompt
165 $tot -= $self->{pagelth};
166 $self->send($self->msg('page', $tot));
168 $self->state('prompt');
170 } elsif ($self->{state} eq 'sysop') {
171 my $passwd = $self->{user}->passwd;
172 my @pw = split / */, $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;
179 $self->send($self->msg('sorry'));
182 $self->send($self->msg('sorry'));
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'));
191 $self->state('prompt');
192 delete $self->{talklist};
193 } elsif ($cmdline =~ m(^/\w+)) {
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);
202 $self->send($self->talk_prompt) if $self->{state} eq 'talk';
205 $self->state('prompt');
208 $self->send_ans(run_cmd($self, $cmdline));
211 # send a prompt only if we are in a prompt state
212 $self->prompt() if $self->{state} =~ /^prompt/o;
215 # send out the talk messages taking into account vias and connectivity
218 my ($self, $ent, $line) = @_;
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;
226 $dxchan->talk($self->{call}, $to, $via, $line);
228 $self->send($self->msg('disc2', $via ? $via : $to));
229 my @l = grep { $_ ne $ent } @{$self->{talklist}};
231 $self->{talklist} = \@l;
233 delete $self->{talklist};
234 $self->state('prompt');
243 for (@{$self->{talklist}}) {
244 my ($to, $via) = /(\S+)>(\S+)/;
248 return $self->msg('talkprompt', join(',', @call));
252 # send a load of stuff to a command user with page prompting
260 if ($self->{pagelth} && @_ > $self->{pagelth}) {
262 for ($i = $self->{pagelth}; $i-- > 0; ) {
264 $line =~ s/\s+$//o; # why am having to do this?
267 $self->{pagedata} = [ @_ ];
268 $self->state('page');
269 $self->send($self->msg('page', scalar @_));
272 $self->send($_) if $_;
277 # this is the thing that runs the command, it is done like this for the
278 # benefit of remote command execution
284 my $user = $self->{user};
285 my $call = $self->{call};
290 my $c = qq{ \@ans = $self->{func}(\$self, \$cmdline) };
291 dbg('eval', "stored func cmd = $c\n");
294 return ("Syserr: Eval err $errstr on stored func $self->{func}", $@);
298 return () if length $cmdline == 0;
301 $cmdline =~ s|//|/|og;
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;
311 dbg('command', "cmd: $cmd");
313 # alias it if possible
314 my $acmd = CmdAlias::get_cmd($cmd);
316 ($cmd, $args) = split /\s+/, "$acmd $args", 2;
317 $args = "" unless defined $args;
318 dbg('command', "aliased cmd: $cmd $args");
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;
326 dbg('command', "path: $cmd cmd: $fcmd");
328 my $package = find_cmd_name($path, $fcmd);
329 @ans = (0) if !$package ;
332 dbg('command', "package: $package");
334 unless (exists $Cache{$package}->{'sub'}) {
335 $c = eval $Cache{$package}->{'eval'};
337 return DXDebug::shortmess($@);
339 $Cache{$package}->{'sub'} = $c;
341 $c = $Cache{$package}->{'sub'};
343 @ans = &{$c}($self, $args);
348 return (DXDebug::shortmess($@));
352 dbg('command', "cmd: $cmd not found");
353 if (++$self->{errors} > $maxerrors) {
354 $self->send($self->msg('e26'));
358 return ($self->msg('e1'));
366 delete $self->{errors};
368 if (++$self->{errors} > $maxerrors) {
369 $self->send($self->msg('e26'));
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
384 my @dxchan = DXChannel->get_all();
387 foreach $dxchan (@dxchan) {
388 next if $dxchan->sort ne 'U';
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;
399 # finish up a user context
404 my $call = $self->call;
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);
411 my @rout = $main::routeroot->del_user($call);
412 dbg('route', "B/C PC17 on $main::mycall for: $call");
414 # issue a pc17 to everybody interested
415 DXProt::route_pc17($DXProt::me, $main::routeroot, @rout) if @rout;
417 # I was the last node visited
418 $self->user->node($main::mycall);
420 # send info to all logged in thingies
421 $self->tell_login('logoutu');
423 Log('DXCommand', "$call disconnected");
425 $self->SUPER::disconnect;
429 # short cut to output a prompt
435 $self->send($self->msg($self->here ? 'pr' : 'pr2', $self->call, cldate($main::systime), ztime($main::systime)));
438 # broadcast a message to all users [except those mentioned after buffer]
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);
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
452 $dxchan->send($s); # send it
456 # gimme all the users
459 my @list = DXChannel->get_all();
462 foreach $ref (@list) {
463 push @out, $ref if $ref->sort eq 'U';
468 # run a script for this user
472 my $silent = shift || 0;
477 # search for the command in the cache of short->long form commands
482 my ($path, $short_cmd, $suffix) = @_;
485 # commands are lower case
486 $short_cmd = lc $short_cmd;
487 dbg('command', "command: $path $short_cmd\n");
489 # do some checking for funny characters
490 return () if $short_cmd =~ /\/$/;
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('command', "cached $short_cmd = ($apath, $acmd)\n");
496 return ($apath, $acmd);
500 my @parts = split '/', $short_cmd;
507 for ($i = 0; $i < @parts; $i++) {
509 opendir(D, $curdir) or confess "can't open $curdir $!";
513 foreach $l (sort @ls) {
515 if ($i < $#parts) { # we are dealing with directories
516 if ((-d "$curdir/$l") && $p eq substr($l, 0, length $p)) {
517 dbg('command', "got dir: $curdir/$l\n");
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('command', "got path: $path cmd: $dirfn$l\n");
532 return ($path, "$dirfn$l");
540 # clear the command name cache
547 # the persistant execution of things from the command directories
550 # This allows perl programs to call functions dynamically
552 # This has been nicked directly from the perlembed pages
555 #require Devel::Symdump;
557 sub valid_package_name {
559 $string =~ s/([^A-Za-z0-9\/])/sprintf("_%2x",unpack("C",$1))/eg;
561 #second pass only for words starting with a digit
562 $string =~ s|/(\d)|sprintf("/_%2x",unpack("C",$1))|eg;
564 #Dress it up as a real package name
565 $string =~ s/\//_/og;
569 # find a cmd reference
570 # this is really for use in user written stubs
572 # use the result as a symbolic reference:-
575 # @out = &$r($self, $line);
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;
588 # make sure it is loaded
589 $r = find_cmd_name($path, $fcmd);
595 # this bit of magic finds a command in the offered directory
599 my $package = valid_package_name($cmdname);
600 my $filename = "$path/$cmdname.pl";
601 my $mtime = -M $filename;
603 # return if we can't find it
605 unless (defined $mtime) {
606 $errstr = DXM::msg('e1');
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";
617 my $sub = readfilestr($filename);
619 $errstr = "Syserr: can't open '$filename' $!";
623 #wrap the code into a subroutine inside our unique package
624 my $eval = qq( sub { $sub } );
627 my @list = split /\n/, $eval;
630 dbg('eval', $_, "\n");
634 $Cache{$package} = {mtime => $mtime, 'eval' => $eval };
640 # send a talk message here
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);