get serviceids from torrus config + our torrus_srvderive table, not from srvexport
[freeside.git] / FS / FS / NetworkMonitoringSystem / Torrus_Internal.pm
1 package FS::NetworkMonitoringSystem::Torrus_Internal;
2
3 use strict;
4 #use vars qw( $DEBUG $me );
5 use Fcntl qw(:flock);
6 use IO::File;
7 use File::Slurp qw(slurp);
8 use Date::Format;
9 use XML::Simple;
10 use FS::Record qw(qsearch qsearchs dbh);
11 use FS::svc_port;
12 use FS::torrus_srvderive;
13 use FS::torrus_srvderive_component;
14 use Torrus::ConfigTree;
15
16 #$DEBUG = 0;
17 #$me = '[FS::NetworkMonitoringSystem::Torrus_Internal]';
18
19 our $lock;
20 our $lockfile = '/usr/local/etc/torrus/discovery/FSLOCK';
21 our $ddxfile  = '/usr/local/etc/torrus/discovery/routers.ddx';
22
23 sub new {
24     my $class = shift;
25     my $self = {};
26     bless $self, $class;
27     return $self;
28 }
29
30 sub ddx2hash {
31     my $self = shift;
32     my $ddx_xml = slurp($ddxfile);
33     my $xs = new XML::Simple(RootName=> undef, SuppressEmpty => '', 
34                                 ForceArray => 1, );
35     return $xs->XMLin($ddx_xml);
36 }
37
38 sub get_router_serviceids {
39   my $self = shift;
40   my $router = shift;
41   my $find_serviceid = shift;
42   my $found_serviceid = 0;
43   my $ddx_hash = $self->ddx2hash;
44   return '' unless $ddx_hash->{'host'};
45
46   my @hosts = @{$ddx_hash->{host}};
47   foreach my $host ( @hosts ) {
48     my $param = $host->{param};
49     if($param && $param->{'snmp-host'} 
50               && (!$router || $param->{'snmp-host'}->{'value'} eq $router)
51               && $param->{'RFC2863_IF_MIB::external-serviceid'}) {
52       my $serviceids =
53         $param->{'RFC2863_IF_MIB::external-serviceid'}->{'content'};
54       my %hash = ();
55       if ($serviceids) {
56         my @serviceids = split(',',$serviceids);
57         foreach my $serviceid ( @serviceids ) {
58           $serviceid =~ s/^\s+|\s+$//g;
59           my @s = split(':',$serviceid);
60           next unless scalar(@s) == 4;
61           $hash{$s[1]} = $s[0] if $router;
62           if ($find_serviceid && $find_serviceid eq $s[0]) {
63             $hash{$param->{'snmp-host'}->{'value'}} = $s[1];
64             $found_serviceid = 1;
65           }
66         }
67       }
68       return \%hash if ($router || $found_serviceid);
69     }
70   }
71   '';
72 }
73
74 #false laziness and probably should be merged w/above, but didn't want to mess
75 # that up
76 sub all_router_serviceids {
77   my $self = shift;
78   my $ddx_hash = $self->ddx2hash;
79   return () unless $ddx_hash->{'host'};
80
81   my %hash = ();
82   my @hosts = @{$ddx_hash->{host}};
83   foreach my $host ( @hosts ) {
84     my $param = $host->{param};
85     if($param && $param->{'snmp-host'} 
86               && $param->{'RFC2863_IF_MIB::external-serviceid'}) {
87       my $serviceids =
88         $param->{'RFC2863_IF_MIB::external-serviceid'}->{'content'};
89       if ($serviceids) {
90         my @serviceids = split(',',$serviceids);
91         foreach my $serviceid ( @serviceids ) {
92           $serviceid =~ s/^\s+|\s+$//g;
93           my @s = split(':',$serviceid);
94           next unless scalar(@s) == 4;
95           $hash{$s[0]}=1;
96         }
97       }
98     }
99   }
100   return sort keys %hash;
101 }
102
103 sub port_graphs_link {
104     # hardcoded for 'main' tree for now 
105     my $self = shift;
106     my $serviceid = shift;
107     my $hash = $self->get_router_serviceids(undef,$serviceid) or return '';
108     my @keys = keys %$hash; # yeah this is weird...
109     my $host = $keys[0];
110     my $iface = $hash->{$keys[0]};
111     my $config_tree = new Torrus::ConfigTree( -TreeName => 'main' );
112     my $token = $config_tree->token("/Routers/$host/Interface_Counters/$iface/InOut_bps");
113     return $Torrus::Freeside::FSURL."/torrus/main?token=$token";
114 }
115
116 sub find_svc {
117     my $self = shift;
118     my $serviceid = shift;
119     return '' unless $serviceid =~ /^[0-9A-Za-z_\-.\\\/ ]+$/;
120   
121     my @svc_port = qsearch('svc_port', { 'serviceid' => $serviceid });
122     return '' unless scalar(@svc_port);
123
124     # for now it's like this, later on just change to qsearchs
125
126     return $svc_port[0];
127 }
128
129 sub find_torrus_srvderive_component {
130     my $self = shift;
131     my $serviceid = shift;
132     return '' unless $serviceid =~ /^[0-9A-Za-z_\-.\\\/ ]+$/;
133   
134     qsearchs('torrus_srvderive_component', { 'serviceid' => $serviceid });
135 }
136
137 sub report {
138   my $self = shift;
139
140   my @ls = localtime(time);
141   my ($d,$m,$y) = ($ls[3], $ls[4]+1, $ls[5]+1900);
142   if ( $ls[3] == 1 ) {
143     $m--;
144     if ($m == 0) { $m=12; $y-- }
145     #i should have better error checking
146     system('torrus', 'report', '--report=MonthlyUsage', "--date=$y-$m-01");
147     system('torrus', 'report', '--genhtml', '--tree=main');
148   }
149
150 }
151
152 sub add_router {
153   my($self, $ip) = @_;
154
155   my $newhost = 
156     qq(  <host>\n).
157     qq(    <param name="snmp-host" value="$ip"/>\n).
158     qq(  </host>\n);
159
160   my $ddx = $self->_torrus_loadddx;
161
162   $ddx =~ s{(</snmp-discovery>)}{$newhost$1};
163
164   $self->_torrus_newddx($ddx);
165
166 }
167
168 sub add_interface {
169   my($self, $router_ip, $interface, $serviceid ) = @_;
170
171   $interface =~ s(\/)(_)g; #slashes become underscores
172   $interface =~ s(\.)(_)g; #periods too, huh
173
174   #should just use a proper XML parser huh
175
176   my @ddx = split(/\n/, $self->_torrus_loadddx);
177
178   die "Torrus Service ID $serviceid in use\n"
179     if grep /^\s*$serviceid:/, @ddx;
180
181   my $newline = "     $serviceid:$interface:Both:main,";
182
183   my $new = '';
184
185   my $added = 0;
186
187   while ( my $line = shift(@ddx) ) {
188     $new .= "$line\n";
189     next unless $line =~ /^\s*<param\s+name="snmp-host"\s+value="$router_ip"\/?>/i;
190
191     while ( my $hostline = shift(@ddx) ) {
192       $new .= "$hostline\n" unless $hostline =~ /^\s+<\/host>\s*/i;
193       if ( $hostline =~ /^\s*<param name="RFC2863_IF_MIB::external-serviceid"\/?>/i ) {
194
195         while ( my $paramline = shift(@ddx) ) {
196           if ( $paramline =~ /^\s*<\/param>/ ) {
197             $new .= "$newline\n$paramline\n";
198             last; #paramline
199           } else {
200             $new .= "$paramline\n";
201           }
202         }
203
204         $added++;
205
206       } elsif ( $hostline =~ /^\s+<\/host>\s*/i ) {
207         unless ( $added ) {
208           $new .= 
209             qq(   <param name="RFC2863_IF_MIB::external-serviceid">\n).
210             qq(     $newline\n").
211             qq(   </param>\n);
212         }
213         $new .= "$hostline\n";
214         last; #hostline
215       }
216  
217     }
218
219   }
220
221   $self->_torrus_newddx($new);
222
223 }
224
225 sub _torrus_lock {
226   $lock = new IO::File ">>$lockfile" or die $!;
227   flock($lock, LOCK_EX);
228 }
229
230 sub _torrus_unlock {
231   flock($lock, LOCK_UN);
232   close $lock;
233 }
234
235 sub _torrus_loadddx {
236   my($self) = @_;
237   $self->_torrus_lock;
238   return slurp($ddxfile);
239 }
240
241 sub _torrus_newddx {
242   my($self, $ddx) = @_;
243
244   my $new = new IO::File ">$ddxfile.new"
245     or die "can't write to $ddxfile.new: $!";
246   print $new $ddx;
247   close $new;
248
249   my $tmpname = $ddxfile . Date::Format::time2str('%Y%m%d%H%M%S',time);
250   rename("$ddxfile", $tmpname) or die $!;
251   rename("$ddxfile.new", $ddxfile) or die $!;
252
253   $self->_torrus_reload;
254 }
255
256 sub _torrus_reload {
257   my($self) = @_;
258
259   #i should use IPC::Run and have better error checking (commands are silent
260   # for success, or output errors)
261
262   system('torrus', 'devdiscover', "--in=$ddxfile");
263
264   system('torrus', 'compile', '--tree=main'); # , '--verbose'
265
266   $self->_torrus_unlock;
267
268 }
269
270 #sub torrus_serviceids {
271 #  my $self = shift;
272 #
273 #  #is this going to get too slow or will the index make it okay?
274 #  my $sth = dbh->prepare("SELECT DISTINCT(serviceid) FROM srvexport")
275 #    or die dbh->errstr;
276 #  $sth->execute or die $sth->errstr;
277 #  my %serviceid = ();
278 #  while ( my $row = $sth->fetchrow_arrayref ) {
279 #    my $serviceid = $row->[0];
280 #    $serviceid =~ s/_(IN|OUT)$//;
281 #    $serviceid{$serviceid}=1;
282 #  }
283 #  my @serviceids = sort keys %serviceid;
284 #
285 #  @serviceids;
286 #
287 #}
288
289 sub torrus_serviceids {
290   my $self = shift;
291   my @serviceids = $self->all_router_serviceids;
292   push @serviceids, map $_->serviceid, qsearch('torrus_srvderive', {});
293   return sort @serviceids;
294 }
295
296 1;