# # Monitorix - A lightweight system monitoring tool. # # Copyright (C) 2005-2022 by Jordi Sanfeliu # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # package user; use strict; use warnings; use Monitorix; use RRDs; use Exporter 'import'; our @EXPORT = qw(user_init user_update user_cgi); sub user_init { my $myself = (caller(0))[3]; my ($package, $config, $debug) = @_; my $rrd = $config->{base_lib} . $package . ".rrd"; my $info; my @rra; my @tmp; my $n; my @average; my @min; my @max; my @last; if(-e $rrd) { $info = RRDs::info($rrd); for my $key (keys %$info) { if(index($key, 'rra[') == 0) { if(index($key, '.rows') != -1) { push(@rra, substr($key, 4, index($key, ']') - 4)); } } } if(scalar(@rra) < 12 + (4 * $config->{max_historic_years})) { logger("$myself: Detected size mismatch between 'max_historic_years' (" . $config->{max_historic_years} . ") and $rrd (" . ((scalar(@rra) -12) / 4) . "). Resizing it accordingly. All historical data will be lost. Backup file created."); rename($rrd, "$rrd.bak"); } } if(!(-e $rrd)) { logger("Creating '$rrd' file."); for($n = 1; $n <= $config->{max_historic_years}; $n++) { push(@average, "RRA:AVERAGE:0.5:1440:" . (365 * $n)); push(@min, "RRA:MIN:0.5:1440:" . (365 * $n)); push(@max, "RRA:MAX:0.5:1440:" . (365 * $n)); push(@last, "RRA:LAST:0.5:1440:" . (365 * $n)); } eval { RRDs::create($rrd, "--step=60", "DS:user_sys:GAUGE:120:0:U", "DS:user_smb:GAUGE:120:0:U", "DS:user_mac:GAUGE:120:0:U", "DS:user_val1:GAUGE:120:0:U", "DS:user_val2:GAUGE:120:0:U", "DS:user_val3:GAUGE:120:0:U", "DS:user_val4:GAUGE:120:0:U", "DS:user_val5:GAUGE:120:0:U", "RRA:AVERAGE:0.5:1:1440", "RRA:AVERAGE:0.5:30:336", "RRA:AVERAGE:0.5:60:744", @average, "RRA:MIN:0.5:1:1440", "RRA:MIN:0.5:30:336", "RRA:MIN:0.5:60:744", @min, "RRA:MAX:0.5:1:1440", "RRA:MAX:0.5:30:336", "RRA:MAX:0.5:60:744", @max, "RRA:LAST:0.5:1:1440", "RRA:LAST:0.5:30:336", "RRA:LAST:0.5:60:744", @last, ); }; my $err = RRDs::error; if($@ || $err) { logger("$@") unless !$@; if($err) { logger("ERROR: while creating $rrd: $err"); if($err eq "RRDs::error") { logger("... is the RRDtool Perl package installed?"); } } return; } } push(@{$config->{func_update}}, $package); logger("$myself: Ok") if $debug; } sub user_update { my $myself = (caller(0))[3]; my ($package, $config, $debug) = @_; my $rrd = $config->{base_lib} . $package . ".rrd"; my $sys; my $smb; my $mac; my @data; my $rrdata = "N"; open(IN, "who -q |"); while() { if(/^#\s+users\s?=\s?(\d+)/) { $sys = $1; last; } } close(IN); $smb = 0; open(IN, "smbstatus -b 2>/dev/null |"); while() { if(/^----------/) { $smb++; next; } if($smb) { $smb++ unless !$_; } } close(IN); $smb-- if $smb > 0; open(IN, "macusers 2>/dev/null |"); @data = ; close(IN); $mac = scalar(@data) - 1; $mac = 0 unless @data; $rrdata .= ":$sys:$smb:$mac:0:0:0:0:0"; RRDs::update($rrd, $rrdata); logger("$myself: $rrdata") if $debug; my $err = RRDs::error; logger("ERROR: while updating $rrd: $err") if $err; } sub user_cgi { my ($package, $config, $cgi) = @_; my @output; my $user = $config->{user}; my @rigid = split(',', ($user->{rigid} || "")); my @limit = split(',', ($user->{limit} || "")); my $tf = $cgi->{tf}; my $colors = $cgi->{colors}; my $graph = $cgi->{graph}; my $silent = $cgi->{silent}; my $zoom = $config->{global_zoom}; my %rrd = ( 'new' => \&RRDs::graphv, 'old' => \&RRDs::graph, ); my $version = "new"; my @full_size_mode; my $pic; my $picz; my $picz_width; my $picz_height; my $u = ""; my $width; my $height; my @extra; my @riglim; my @tmp; my @tmpz; my @CDEF; my $n; my $err; $version = "old" if $RRDs::VERSION < 1.3; push(@full_size_mode, "--full-size-mode") if $RRDs::VERSION > 1.3; my $rrd = $config->{base_lib} . $package . ".rrd"; my $title = $config->{graph_title}->{$package}; my $IMG_DIR = $config->{base_dir} . "/" . $config->{imgs_dir}; my $imgfmt_uc = uc($config->{image_format}); my $imgfmt_lc = lc($config->{image_format}); foreach my $i (split(',', $config->{rrdtool_extra_options} || "")) { push(@extra, trim($i)) if trim($i); } $title = !$silent ? $title : ""; # text mode # if(lc($config->{iface_mode}) eq "text") { if($title) { push(@output, main::graph_header($title, 2)); push(@output, " \n"); push(@output, " \n"); } my (undef, undef, undef, $data) = RRDs::fetch("$rrd", "--resolution=$tf->{res}", "--start=-$tf->{nwhen}$tf->{twhen}", "AVERAGE"); $err = RRDs::error; push(@output, "ERROR: while fetching $rrd: $err\n") if $err; push(@output, "
\n");
		push(@output, "Time    Logged In     Samba  Netatalk\n");
		push(@output, "------------------------------------- \n");
		my $line;
		my @row;
		my $time;
		for($n = 0, $time = $tf->{tb}; $n < ($tf->{tb} * $tf->{ts}); $n++) {
			$line = @$data[$n];
			my ($sys, $smb, $mac) = @$line;
			@row = ($sys, $smb, $mac);
			$time = $time - (1 / $tf->{ts});
			push(@output, sprintf(" %2d$tf->{tc}       %6d    %6d    %6d\n", $time, @row));
		}
		push(@output, "    
\n"); if($title) { push(@output, " \n"); push(@output, " \n"); push(@output, main::graph_footer()); } push(@output, "
\n"); return @output; } # graph mode # if($silent eq "yes" || $silent eq "imagetag") { $zoom = 1; # force 'global_zoom' to 1 in Multihost viewer $colors->{fg_color} = "#000000"; # visible color for text mode $u = "_"; } if($silent eq "imagetagbig") { $zoom = 1; # force 'global_zoom' to 1 in Multihost viewer $colors->{fg_color} = "#000000"; # visible color for text mode $u = ""; } my $global_zoom = "--zoom=" . $zoom; my $IMG1 = $u . $package . "1." . $tf->{when} . ".$imgfmt_lc"; my $IMG2 = $u . $package . "2." . $tf->{when} . ".$imgfmt_lc"; my $IMG3 = $u . $package . "3." . $tf->{when} . ".$imgfmt_lc"; my $IMG1z = $u . $package . "1z." . $tf->{when} . ".$imgfmt_lc"; my $IMG2z = $u . $package . "2z." . $tf->{when} . ".$imgfmt_lc"; my $IMG3z = $u . $package . "3z." . $tf->{when} . ".$imgfmt_lc"; unlink ("$IMG_DIR" . "$IMG1", "$IMG_DIR" . "$IMG2", "$IMG_DIR" . "$IMG3"); if(lc($config->{enable_zoom}) eq "y") { unlink ("$IMG_DIR" . "$IMG1z", "$IMG_DIR" . "$IMG2z", "$IMG_DIR" . "$IMG3z"); } if($title) { push(@output, main::graph_header($title, 2)); } @riglim = @{setup_riglim($rigid[0], $limit[0])}; if($title) { push(@output, " \n"); push(@output, " \n"); } push(@tmp, "AREA:sys#44EE44:Logged In"); push(@tmp, "GPRINT:sys:LAST: Current\\: %3.0lf"); push(@tmp, "GPRINT:sys:AVERAGE: Average\\: %3.0lf"); push(@tmp, "GPRINT:sys:MIN: Min\\: %3.0lf"); push(@tmp, "GPRINT:sys:MAX: Max\\: %3.0lf\\n"); push(@tmp, "LINE1:sys#00EE00"); push(@tmpz, "AREA:sys#44EE44:Logged In"); push(@tmpz, "LINE1:sys#00EE00"); if(lc($config->{show_gaps}) eq "y") { push(@tmp, "AREA:wrongdata#$colors->{gap}:"); push(@tmpz, "AREA:wrongdata#$colors->{gap}:"); push(@CDEF, "CDEF:wrongdata=allvalues,UN,INF,UNKN,IF"); } ($width, $height) = split('x', $config->{graph_size}->{main}); if($silent =~ /imagetag/) { ($width, $height) = split('x', $config->{graph_size}->{remote}) if $silent eq "imagetag"; ($width, $height) = split('x', $config->{graph_size}->{main}) if $silent eq "imagetagbig"; @tmp = @tmpz; } $pic = $rrd{$version}->("$IMG_DIR" . "$IMG1", "--title=$config->{graphs}->{_user1} ($tf->{nwhen}$tf->{twhen})", "--start=-$tf->{nwhen}$tf->{twhen}", "--imgformat=$imgfmt_uc", "--vertical-label=Users", "--width=$width", "--height=$height", @extra, @riglim, $global_zoom, @{$cgi->{version12}}, @{$colors->{graph_colors}}, "DEF:sys=$rrd:user_sys:AVERAGE", "CDEF:allvalues=sys", @CDEF, "COMMENT: \\n", @tmp, "COMMENT: \\n", "COMMENT: \\n", "COMMENT: \\n"); $err = RRDs::error; push(@output, "ERROR: while graphing $IMG_DIR" . "$IMG1: $err\n") if $err; if(lc($config->{enable_zoom}) eq "y") { ($width, $height) = split('x', $config->{graph_size}->{zoom}); $picz = $rrd{$version}->("$IMG_DIR" . "$IMG1z", "--title=$config->{graphs}->{_user1} ($tf->{nwhen}$tf->{twhen})", "--start=-$tf->{nwhen}$tf->{twhen}", "--imgformat=$imgfmt_uc", "--vertical-label=Users", "--width=$width", "--height=$height", @full_size_mode, @extra, @riglim, $global_zoom, @{$cgi->{version12}}, @{$colors->{graph_colors}}, "DEF:sys=$rrd:user_sys:AVERAGE", "CDEF:allvalues=sys", @CDEF, @tmpz); $err = RRDs::error; push(@output, "ERROR: while graphing $IMG_DIR" . "$IMG1z: $err\n") if $err; } if($title || ($silent =~ /imagetag/ && $graph =~ /user1/)) { if(lc($config->{enable_zoom}) eq "y") { if(lc($config->{disable_javascript_void}) eq "y") { push(@output, " " . picz_a_element(config => $config, IMGz => $IMG1z, IMG => $IMG1) . "\n"); } else { if($version eq "new") { $picz_width = $picz->{image_width} * $zoom; $picz_height = $picz->{image_height} * $zoom; } else { $picz_width = $width + 115; $picz_height = $height + 100; } push(@output, " " . picz_js_a_element(width => $picz_width, height => $picz_height, config => $config, IMGz => $IMG1z, IMG => $IMG1) . "\n"); } } else { push(@output, " " . img_element(config => $config, IMG => $IMG1) . "\n"); } } if($title) { push(@output, " \n"); push(@output, " \n"); } @riglim = @{setup_riglim($rigid[1], $limit[1])}; undef(@tmp); undef(@tmpz); undef(@CDEF); push(@tmp, "AREA:smb#EEEE44:Samba"); push(@tmp, "GPRINT:smb:LAST: Current\\: %3.0lf\\n"); push(@tmp, "LINE1:smb#EEEE00"); push(@tmpz, "AREA:smb#EEEE44:Samba"); push(@tmpz, "LINE2:smb#EEEE00"); if(lc($config->{show_gaps}) eq "y") { push(@tmp, "AREA:wrongdata#$colors->{gap}:"); push(@tmpz, "AREA:wrongdata#$colors->{gap}:"); push(@CDEF, "CDEF:wrongdata=allvalues,UN,INF,UNKN,IF"); } ($width, $height) = split('x', $config->{graph_size}->{small}); if($silent =~ /imagetag/) { ($width, $height) = split('x', $config->{graph_size}->{remote}) if $silent eq "imagetag"; ($width, $height) = split('x', $config->{graph_size}->{main}) if $silent eq "imagetagbig"; @tmp = @tmpz; push(@tmp, "COMMENT: \\n"); push(@tmp, "COMMENT: \\n"); push(@tmp, "COMMENT: \\n"); } $pic = $rrd{$version}->("$IMG_DIR" . "$IMG2", "--title=$config->{graphs}->{_user2} ($tf->{nwhen}$tf->{twhen})", "--start=-$tf->{nwhen}$tf->{twhen}", "--imgformat=$imgfmt_uc", "--vertical-label=Users", "--width=$width", "--height=$height", @extra, @riglim, $global_zoom, @{$cgi->{version12}}, @{$cgi->{version12_small}}, @{$colors->{graph_colors}}, "DEF:smb=$rrd:user_smb:AVERAGE", "CDEF:allvalues=smb", @CDEF, @tmp); $err = RRDs::error; push(@output, "ERROR: while graphing $IMG_DIR" . "$IMG2: $err\n") if $err; if(lc($config->{enable_zoom}) eq "y") { ($width, $height) = split('x', $config->{graph_size}->{zoom}); $picz = $rrd{$version}->("$IMG_DIR" . "$IMG2z", "--title=$config->{graphs}->{_user2} ($tf->{nwhen}$tf->{twhen})", "--start=-$tf->{nwhen}$tf->{twhen}", "--imgformat=$imgfmt_uc", "--vertical-label=Users", "--width=$width", "--height=$height", @full_size_mode, @extra, @riglim, $global_zoom, @{$cgi->{version12}}, @{$cgi->{version12_small}}, @{$colors->{graph_colors}}, "DEF:smb=$rrd:user_smb:AVERAGE", "CDEF:allvalues=smb", @CDEF, @tmpz); $err = RRDs::error; push(@output, "ERROR: while graphing $IMG_DIR" . "$IMG2z: $err\n") if $err; } if($title || ($silent =~ /imagetag/ && $graph =~ /user2/)) { if(lc($config->{enable_zoom}) eq "y") { if(lc($config->{disable_javascript_void}) eq "y") { push(@output, " " . picz_a_element(config => $config, IMGz => $IMG2z, IMG => $IMG2) . "\n"); } else { if($version eq "new") { $picz_width = $picz->{image_width} * $zoom; $picz_height = $picz->{image_height} * $zoom; } else { $picz_width = $width + 115; $picz_height = $height + 100; } push(@output, " " . picz_js_a_element(width => $picz_width, height => $picz_height, config => $config, IMGz => $IMG2z, IMG => $IMG2) . "\n"); } } else { push(@output, " " . img_element(config => $config, IMG => $IMG2) . "\n"); } } @riglim = @{setup_riglim($rigid[2], $limit[2])}; undef(@tmp); undef(@tmpz); undef(@CDEF); push(@tmp, "AREA:mac#EE4444:Netatalk"); push(@tmp, "GPRINT:mac:LAST: Current\\: %3.0lf\\n"); push(@tmp, "LINE1:mac#EE0000"); push(@tmpz, "AREA:mac#EE4444:Netatalk"); push(@tmpz, "LINE2:mac#EE0000"); if(lc($config->{show_gaps}) eq "y") { push(@tmp, "AREA:wrongdata#$colors->{gap}:"); push(@tmpz, "AREA:wrongdata#$colors->{gap}:"); push(@CDEF, "CDEF:wrongdata=allvalues,UN,INF,UNKN,IF"); } ($width, $height) = split('x', $config->{graph_size}->{small}); if($silent =~ /imagetag/) { ($width, $height) = split('x', $config->{graph_size}->{remote}) if $silent eq "imagetag"; ($width, $height) = split('x', $config->{graph_size}->{main}) if $silent eq "imagetagbig"; @tmp = @tmpz; push(@tmp, "COMMENT: \\n"); push(@tmp, "COMMENT: \\n"); push(@tmp, "COMMENT: \\n"); } $pic = $rrd{$version}->("$IMG_DIR" . "$IMG3", "--title=$config->{graphs}->{_user3} ($tf->{nwhen}$tf->{twhen})", "--start=-$tf->{nwhen}$tf->{twhen}", "--imgformat=$imgfmt_uc", "--vertical-label=Users", "--width=$width", "--height=$height", @extra, @riglim, $global_zoom, @{$cgi->{version12}}, @{$cgi->{version12_small}}, @{$colors->{graph_colors}}, "DEF:mac=$rrd:user_mac:AVERAGE", "CDEF:allvalues=mac", @CDEF, @tmp); $err = RRDs::error; push(@output, "ERROR: while graphing $IMG_DIR" . "$IMG3: $err\n") if $err; if(lc($config->{enable_zoom}) eq "y") { ($width, $height) = split('x', $config->{graph_size}->{zoom}); $picz = $rrd{$version}->("$IMG_DIR" . "$IMG3z", "--title=$config->{graphs}->{_user3} ($tf->{nwhen}$tf->{twhen})", "--start=-$tf->{nwhen}$tf->{twhen}", "--imgformat=$imgfmt_uc", "--vertical-label=Users", "--width=$width", "--height=$height", @full_size_mode, @extra, @riglim, $global_zoom, @{$cgi->{version12}}, @{$cgi->{version12_small}}, @{$colors->{graph_colors}}, "DEF:mac=$rrd:user_mac:AVERAGE", "CDEF:allvalues=mac", @CDEF, @tmpz); $err = RRDs::error; push(@output, "ERROR: while graphing $IMG_DIR" . "$IMG3z: $err\n") if $err; } if($title || ($silent =~ /imagetag/ && $graph =~ /user3/)) { if(lc($config->{enable_zoom}) eq "y") { if(lc($config->{disable_javascript_void}) eq "y") { push(@output, " " . picz_a_element(config => $config, IMGz => $IMG3z, IMG => $IMG3) . "\n"); } else { if($version eq "new") { $picz_width = $picz->{image_width} * $zoom; $picz_height = $picz->{image_height} * $zoom; } else { $picz_width = $width + 115; $picz_height = $height + 100; } push(@output, " " . picz_js_a_element(width => $picz_width, height => $picz_height, config => $config, IMGz => $IMG3z, IMG => $IMG3) . "\n"); } } else { push(@output, " " . img_element(config => $config, IMG => $IMG3) . "\n"); } } if($title) { push(@output, " \n"); push(@output, " \n"); push(@output, main::graph_footer()); } push(@output, "
\n"); return @output; } 1;