2 # The new protocol for real at last
6 # Copyright (c) 2005 Dirk Koopman G1TLH
20 use Time::HiRes qw(gettimeofday tv_interval);
35 use vars qw($VERSION $BRANCH);
37 main::mkver($VERSION = q$Revision$);
39 use vars qw(@ISA $ntpflag $dupeage $cf_interval $hello_interval);
43 $ntpflag = 0; # should be set in startup if NTP in use
44 $dupeage = 12*60*60; # duplicates stored half a day
45 $cf_interval = 30*60; # interval between config broadcasts
46 $hello_interval = 3*60*60; # interval between hello broadcasts for me and local users
59 my $self = DXChannel::alloc(@_);
61 # add this node to the table, the values get filled in later
64 $self->{'sort'} = 'W';
70 my ($self, $line, $sort) = @_;
71 my $call = $self->{call};
72 my $user = $self->{user};
75 my $host = $self->{conn}->{peerhost} || "unknown";
76 Log('Aranea', "$call connected from $host");
78 # remember type of connection
79 $self->{consort} = $line;
80 $self->{outbound} = $sort eq 'O';
81 my $priv = $user->priv;
82 $priv = $user->priv(1) unless $priv;
83 $self->{priv} = $priv; # other clusters can always be 'normal' users
84 $self->{lang} = $user->lang || 'en';
85 $self->{consort} = $line; # save the connection type
89 # sort out registration
90 $self->{registered} = 1;
92 # get the output filters
93 $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
94 $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
95 $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
96 $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
97 $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
100 # get the INPUT filters (these only pertain to Clusters)
101 $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
102 $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
103 $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
104 $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
105 $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
107 $self->conn->echo(0) if $self->conn->can('echo');
109 # ping neighbour node stuff
110 my $ping = $user->pingint;
111 $ping = $DXProt::pingint unless defined $ping;
112 $self->{pingint} = $ping;
113 $self->{nopings} = $user->nopings || $DXProt::obscount;
114 $self->{pingtime} = [ ];
115 $self->{pingave} = 999;
116 $self->{metric} ||= 100;
117 $self->{lastping} = $main::systime;
119 $self->state('normal');
120 $self->{pc50_t} = $main::systime;
122 # send info to all logged in thingies
123 $self->tell_login('loginn');
125 # broadcast our configuration to the world
126 unless ($self->{outbound}) {
127 my $thing = Thingy::Rt->new_cf;
129 $main::me->lastcf($main::systime);
132 # run a script send the output to the debug file
133 my $script = new Script(lc $call) || new Script('node_default');
134 $script->run($self) if $script;
138 # This is the normal despatcher
142 my ($self, $line) = @_;
143 my $thing = input($line);
144 $thing->queue($self) if $thing;
148 # periodic processing (every second)
157 my $d = (gmtime($main::systime))[3];
160 $daystart = $main::systime - ($main::systime % 86400);
162 if ($main::systime >= $lastmin + 60) {
164 $lastmin = $main::systime;
170 # send hello and cf packages periodically
171 foreach my $dxchan (DXChannel::get_all()) {
172 next if $dxchan->is_aranea;
173 if ($main::systime >= $dxchan->lasthello + $hello_interval) {
174 my $thing = Thingy::Hello->new(h => $dxchan->here);
175 $thing->{user} = $dxchan->{call} unless $dxchan == $main::me;
176 if (my $v = $dxchan->{version}) {
177 if ($dxchan->is_spider) {
178 $thing->{sw} = 'DXSp';
182 $thing->{b} = $dxchan->{build} if $dxchan->{build};
183 $thing->broadcast($dxchan);
184 $dxchan->lasthello($main::systime);
186 if ($dxchan->is_node) {
187 if ($main::systime >= $dxchan->lastcf + $cf_interval) {
188 my $call = $dxchan->call;
189 if ($dxchan == $main::me) {
191 # i am special but, currently, still a node
192 my $thing = Thingy::Rt->new_cf;
194 $dxchan->lastcf($main::systime);
197 # i am a pc protocol node connected directly
198 my $thing = Thingy::Rt->new();
199 $thing->{user} = $call unless $dxchan == $main::me;
200 if (my $nref = Route::Node::get($call)) {
201 $thing->copy_pc16_data($nref);
202 $thing->broadcast($dxchan);
203 $dxchan->lastcf($main::systime);
205 dbg("Aranea::per_minute: Route::Node for $call disappeared");
217 my $call = $self->call;
219 return if $self->{disconnecting}++;
221 my $thing = Thingy::Bye->new(origin=>$main::mycall, user=>$call);
222 $thing->broadcast($self);
224 # get rid of any PC16/17/19
225 DXProt::eph_del_regex("^PC1[679]*$call");
227 # do routing stuff, remove me from routing table
228 my $node = Route::Node::get($call);
231 @rout = $node->del($main::routeroot);
233 # and all my ephemera as well
236 DXProt::eph_del_regex("^PC1[679].*$c");
240 RouteDB::delete_interface($call);
242 # unbusy and stop and outgoing mail
243 my $mref = DXMsg::get_busy($call);
244 $mref->stop_msg($call) if $mref;
246 # broadcast to all other nodes that all the nodes connected to via me are gone
247 DXProt::route_pc21($self, $main::mycall, undef, @rout) if @rout;
249 # remove outstanding pings
250 # delete $pings{$call};
252 # I was the last node visited
253 $self->user->node($main::mycall);
255 # send info to all logged in thingies
256 $self->tell_login('logoutn');
258 Log('Aranea', $call . " Disconnected");
260 $self->SUPER::disconnect;
264 # generate new header (this is a general subroutine, not a method
265 # because it has to be used before a channel is fully initialised).
276 my $s = "$mycall,$dts,$hop";
277 $s .= ",$user" if $user;
279 $s .= "," unless $user;
280 $s .= ",$group" if $group;
291 my $date = ((($dayno << 1) | $ntpflag) << 18) | ($main::systime % 86400);
292 my $r = formathead($mycall, sprintf('%6X%04X', $date, $seqno), 0, $from, $to);
294 $seqno = 0 if $seqno > 0x0ffff;
299 # decode the date time sequence group
305 my ($dt, $seqno) = map {hex} unpack "A6 A4", $dts;
306 my $secs = $dt & 0x3FFFF;
311 if ($dayno == $day) {
312 $t = $daystart + $secs;
313 } elsif ($dayno < $day) {
314 $t = $daystart + (($day-$dayno) * 86400) + $secs;
316 $t = $daystart + (($dayno-$day) * 86400) + $secs;
318 return ($t, $seqno, $ntp);
321 # subroutines to encode and decode values in lists
325 $s =~ s/([\%=|,\'\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
326 # $s = "'$s'" if $s =~ / /;
333 $s =~ s/^'(.*)'$/$1/;
334 $s =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg;
335 return length $s ? $s : '';
341 my $list = ref $_[0] ? shift : \@_;
342 my ($name) = uc ref $thing;
345 my $head = genheader($thing->{origin},
346 ($thing->{group} || $thing->{touser} || $thing->{tonode}),
347 ($thing->{user} || $thing->{fromuser} || $thing->{fromnode})
350 my $data = uc $name . ',';
352 my $k = lc shift @$list;
353 my $v = $thing->{$k};
354 $data .= "$k=" . tencode($v) . ',' if defined $v;
357 return "$head|$data";
365 return ('I', $self->{call}, $line);
371 my ($head, $data) = split /\|/, $line, 2;
372 return unless $head && $data;
374 my ($origin, $dts, $hop, $user, $group) = split /,/, $head;
375 return if DXDupe::check("Ara,$origin,$dts", $dupeage);
377 $err .= "incomplete header," unless $origin && $dts && defined $hop;
378 my ($cmd, $rdata) = split /,/, $data, 2;
380 # validate it further
381 $err .= "missing cmd or data," unless $cmd && $data;
382 $err .= "invalid command ($cmd)," unless $cmd =~ /^[A-Z][A-Z0-9]*$/;
383 my ($gp, $tus) = split /:/, $group, 2 if $group;
385 $err .= "from me," if $origin eq $main::mycall;
386 $err .= "invalid group ($gp)," if $gp && $gp !~ /^[A-Z0-9]{2,}$/;
387 $err .= "invalid tocall ($tus)," if $tus && !is_callsign($tus);
388 $err .= "invalid fromcall ($user)," if $user && !is_callsign($user);
390 my $class = 'Thingy::' . ucfirst(lc $cmd);
392 my ($t, $seqno, $ntp) = decode_dts($dts) unless $err;
393 dbg("dts: $dts = $ntp $t($main::systime) $seqno") if isdbg('dts');
394 $err .= "invalid date/seq," unless $t;
398 dbg("Aranea input: $err");
399 } elsif ($class->can('new')) {
400 # create the appropriate Thingy
401 $thing = $class->new();
403 # reconstitute the header but wth hop increased by one
404 $head = formathead($origin, $dts, ++$hop, $user, $group);
405 $thing->{Aranea} = "$head|$data";
408 $thing->{origin} = $origin;
410 $thing->{group} = $gp if $gp;
411 $thing->{touser} = $tus if $tus;
412 $thing->{user} = $user if $user;
413 $thing->{hopsaway} = $hop;
416 for (split(/,/, $rdata)) {
418 my ($k,$v) = split /=/, $_, 2;
419 $thing->{$k} = tdecode($v);
426 # post process the thing, this generally adds on semantic meaning
427 # does parameter checking etc. It also adds / prepares the thingy so
428 # this is compatible with older protocol and arranges data so
429 # that the filtering can still work.
430 if ($thing->can('from_Aranea')) {
432 # if a thing is ok then return that thing, otherwise return
434 $thing = $thing->from_Aranea;
440 # this is the DXChannel send
441 # note that this does NOT send out stuff in same way as other DXChannels
442 # it is just as it comes, no extra bits added (here)
443 sub send # this is always later and always data
446 my $conn = $self->{conn};
448 my $call = $self->{call};
452 my @lines = split /\n/;
454 $conn->send_later($_);
455 dbg("-> D $call $_") if isdbg('chan');
458 $self->{t} = $main::systime;
462 # load of dummies for DXChannel broadcasts
463 # these will go away in time?
464 # These are all from PC protocol
474 if ($self->{spotsfilter}) {
475 ($filter, $hops) = $self->{spotsfilter}->it(@_);
476 return unless $filter;
478 # send_prot_line($self, $filter, $hops, $isolate, $line);
488 if ($self->{wwvfilter}) {
489 ($filter, $hops) = $self->{wwvfilter}->it(@_);
490 return unless $filter;
492 # send_prot_line($self, $filter, $hops, $isolate, $line)
502 if ($self->{wcyfilter}) {
503 ($filter, $hops) = $self->{wcyfilter}->it(@_);
504 return unless $filter;
506 # send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
519 if ($self->{annfilter}) {
520 ($filter, $hops) = $self->{annfilter}->it(@_);
521 return unless $filter;
523 # send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;