/usr/sbin/munin-node-configure is in munin-node 1.4.6-3ubuntu3.4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 | #!/usr/bin/perl -w
# -*- cperl -*-
#
# Copyright (C) 2003-2006 Jimmy Olsen, Nicolai Langfeldt.
#
# 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; version 2 dated June,
# 1991.
#
# 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.
#
# Program to suggest what plugins to use and not
use strict;
use warnings;
use Getopt::Long;
use POSIX ();
use Data::Dumper;
use Carp;
use Munin::Common::Defaults;
use Munin::Node::Configure::PluginList;
use Munin::Node::Configure::Debug;
use Munin::Node::Config;
my $config = Munin::Node::Config->instance();
my $timeout = 10;
my @all_families = qw/auto manual contrib/;
my @default_families = qw/auto/;
sub main
{
parse_args();
my $plugins = Munin::Node::Configure::PluginList->new(
libdir => $config->{libdir},
servicedir => $config->{servicedir},
);
$plugins->load(@{$config->{families}});
# Gather information
if (@{ $config->{snmp} }) {
my $snmp = init_snmp($plugins);
$snmp->run_probes($plugins);
}
elsif ($config->{suggest}) {
gather_suggestions($plugins);
}
else {
print_status_list($plugins);
exit 0;
}
# Display results.
if ($config->{shell}) {
manage_links($plugins);
}
else {
show_suggestions($plugins);
}
# Report errors.
# FIXME: surely exit 0 unless m-n-c itself has gone funny?
if (my @errors = list_errors($plugins->list)) {
print STDERR "# The following plugins caused errors:\n";
foreach my $err (@errors) {
print STDERR "# $err\n";
}
exit 1;
}
exit 0;
}
sub parse_args
{
my $conffile = "$Munin::Common::Defaults::MUNIN_CONFDIR/munin-node.conf";
my $servicedir = "$Munin::Common::Defaults::MUNIN_CONFDIR/plugins";
my $sconfdir = "$Munin::Common::Defaults::MUNIN_CONFDIR/plugin-conf.d";
my $libdir = "$Munin::Common::Defaults::MUNIN_LIBDIR/plugins";
my $debug;
my ($suggest, $shell, $removes, $newer);
my $exit_not_error = 1;
my @families;
my (@snmp_hosts, $snmpver, $snmpcomm, $snmpport);
print_usage_and_exit() unless GetOptions(
"help" => \&print_usage_and_exit,
"shell!" => \$shell,
"exitnoterror!" => \$exit_not_error,
"debug!" => \$debug,
"suggest!" => \$suggest,
"config=s" => \$conffile,
"servicedir=s" => \$servicedir,
"sconfdir=s" => \$sconfdir,
"remove-also!" => \$removes,
"libdir=s" => \$libdir,
"families=s" => \@families,
"version!" => \&print_version_and_exit,
"snmp=s" => \@snmp_hosts,
"snmpversion=s" => \$snmpver,
"snmpcommunity=s" => \$snmpcomm,
"snmpport=i" => \$snmpport,
"newer=s" => \$newer
);
$config->parse_config_from_file($conffile);
# --shell implies --suggest unless --snmp was also used
$suggest = 1 if ($shell and not @snmp_hosts);
@families = (@families) ? map { split /,/ } @families :
(@snmp_hosts) ? ('snmpauto') :
($suggest) ? @default_families :
@all_families ;
# Allow the user to mix multiple invocations of --snmp with the
# comma-delimited form
@snmp_hosts = map { split /,/ } @snmp_hosts;
$config->reinitialize({
timeout => $timeout,
%$config,
newer => $newer,
shell => $shell,
exit_not_error => $exit_not_error,
suggest => $suggest,
remove_also => $removes,
families => \@families,
conffile => $conffile,
servicedir => $servicedir,
sconfdir => $sconfdir,
libdir => $libdir,
snmp => \@snmp_hosts,
snmp_version => $snmpver,
snmp_community => $snmpcomm,
snmp_port => $snmpport,
DEBUG => $debug,
});
return;
}
sub print_usage_and_exit
{
my $all_families = join(', ', @all_families);
my $default_families = join(', ', @default_families);
print qq{Usage: $0 [options]
Options:
--help View this help page
--version Show version information
--debug View debug information (very verbose). All
debugging output is printed on STDOUT but each
line is prefixed with '#'. Only errors are
printed on STDERR.
--config <file> Override configuration file
[$Munin::Common::Defaults::MUNIN_CONFDIR/munin.conf]
--servicedir <dir> Override plugin directory
[$Munin::Common::Defaults::MUNIN_CONFDIR/plugins/]
--sconfdir <dir> Override plugin configuration directory
[$Munin::Common::Defaults::MUNIN_CONFDIR/plugin-conf.d]
--libdir <dir> Override plugin lib
[$Munin::Common::Defaults::MUNIN_LIBDIR/plugins/]
--families <family,...> Override families ($all_families) [$default_families]
--suggest Show suggestions instead of status
--shell Show shell commands (implies --suggest)
--exitnoterror Do not consider non-zero exit-value as error
--remove-also Also show rm-commands when doing --shell
--newer <version> Only show suggestions related to plugins
included more recently than version <version>.
Only supported along with --shell.
--snmp <host|cidr> Do SNMP probing on the host or CIDR network
(e.g. "192.168.1.0/24"). This may take some
time, especially if the probe includes many
hosts. This option can be specified multiple
times, or once with a comma-separated list, to
include more than one host/CIDR.
--snmpversion <ver> Set SNMP version (1, 2c or 3) [2c]
--snmpcommunity <comm> Set SNMP community string [public]
--snmpport <port> Set SNMP port [161]
By default this program shows which plugins are activated on the system.
If you specify --suggest, it will present a table of plugins that will
probably work (according to the plugins' autoconf command).
If you specify --shell, shell commands to install those same plugins
will be printed. These can be reviewed or piped directly into a shell to
install the plugins.
};
exit 0;
}
sub print_version_and_exit
{
print qq{munin-node-configure (munin-node) version $Munin::Common::Defaults::MUNIN_VERSION.
Written by Jimmy Olsen
Copyright (C) 2003-2006 Jimmy Olsen
This is free software released under the GNU General Public License. There
is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. For details, please refer to the file COPYING that is included
with this software or refer to
http://www.fsf.org/licensing/licenses/gpl.txt
};
exit 0;
}
sub print_table_entry
{
printf "%-26s | %-4s | %-39s\n", @_;
return;
}
### Reporting current status ###################################################
# For each available plugin, prints a line detailing whether or not it's
# installed, and (if it's a wildcard plugin) what identities are currently
# in use
sub print_status_list
{
my ($plugins) = @_;
print_table_entry("Plugin", "Used", "Extra information");
print_table_entry("------", "----", "-----------------");
foreach my $plugin ($plugins->list) {
print_table_entry(
$plugin->{name},
$plugin->is_installed,
$plugin->installed_services_string
);
}
return;
}
### Reporting and managing suggestions #########################################
# Asks each available autoconf plugin whether or not it should be installed,
# and (if it's a wildcard plugin) its suggested profiles.
sub gather_suggestions
{
my ($plugins) = @_;
# We're going to be running plugins
Munin::Node::Service->prepare_plugin_environment($plugins->names);
foreach my $plugin ($plugins->list) {
fetch_plugin_autoconf($plugin);
fetch_plugin_suggestions($plugin);
}
return;
}
# Prints out the tabular representation of the suggestion
sub show_suggestions
{
my ($plugins) = @_;
print_table_entry("Plugin", "Used", "Suggestions");
print_table_entry("------", "----", "-----------");
foreach my $plugin ($plugins->list) {
print_table_entry(
$plugin->{name},
$plugin->is_installed,
$plugin->suggestion_string
);
}
return;
}
# prints shell commands to get the system into the recommended
# state by adding or removing symlinks
sub manage_links
{
my ($plugins) = @_;
foreach my $plugin ($plugins->list) {
link_add($plugin->{path}, $_) foreach $plugin->services_to_add;
if ($config->{remove_also}) {
link_remove($_) foreach $plugin->services_to_remove;
}
}
return;
}
# Prints a shell-command to remove a given symlink from the servicedir
sub link_remove
{
my ($service) = @_;
return unless (-l "$config->{servicedir}/$service"); # Strange...
print "rm -f '$config->{servicedir}/$service'\n";
return;
}
# Prints a shell-command to add a symlink called $service pointing to
# the plugin.
sub link_add
{
my ($plugin, $service) = @_;
print "ln -s '$plugin' '$config->{servicedir}/$service'\n";
return;
}
### SNMP probing ###############################################################
# Prepares for SNMP probing
sub init_snmp
{
my ($plugins) = @_;
unless (eval { require Munin::Node::SNMPConfig; }) {
die "# ERROR: Cannot perform SNMP probing since Munin::Node::SNMPConfig module is not available.\n",
$@;
}
Munin::Node::Service->prepare_plugin_environment($plugins->names);
fetch_plugin_snmpconf($_) foreach ($plugins->list);
return Munin::Node::SNMPConfig->new(
hosts => $config->{snmp},
community => $config->{snmp_community},
version => $config->{snmp_version},
port => $config->{snmp_port},
);
}
### Running plugins and analysing responses ####################################
# Runs the plugin with argument $mode (eg. 'suggest', 'autoconf') and runs
# tests on the results. Assuming no errors were detected, returns a list
# of the lines printed to STDOUT, with any debug output removed.
sub run_plugin
{
my ($plugin, $mode) = @_;
my $name = $plugin->{name};
DEBUG("Running '$mode' on $name" );
my $res = Munin::Node::Service->fork_service($config->{libdir},
$name, $mode);
# No if it timed out
if ($res->{timed_out}) {
$plugin->log_error("Timed out during $mode");
return;
}
elsif ($res->{retval}) {
# Non-zero exit is an immediate fail
my $plugin_exit = $res->{retval} >> 8;
my $plugin_signal = $res->{retval} & 127;
# Definitely a bad sign
if ($plugin_signal) {
$plugin->log_error("Died with signal $plugin_signal during $mode");
return;
}
elsif ($plugin_exit) {
$plugin->log_error("Non-zero exit during $mode ($plugin_exit)");
# Verboten according to the specification, but lots of plugins
# still exit(1) it during autoconf. So making it a non-fatal error
# for the time being
return unless ($mode eq 'autoconf'
and $plugin_exit == 1
and $config->{exit_not_error});
}
}
# No if there is anything on stderr that's not debug
if (grep !/^#/, @{ $res->{stderr} }) {
$plugin->log_error("Junk printed to stderr");
# FIXME: log the other output
return;
}
# Ignore debug output
my @response = grep !/^#/, @{ $res->{stdout} };
$plugin->log_error('Nothing printed to stdout') unless (scalar @response);
return @response;
}
# Runs the given plugin, and records whether it thinks it should be installed.
# Sets the 'default' and 'defaultreason' fields
sub fetch_plugin_autoconf
{
my ($plugin) = @_;
return unless ($plugin->{capabilities}{autoconf});
my @response = run_plugin($plugin, 'autoconf') or return;
return $plugin->parse_autoconf_response(@response);
}
# Runs the given wildcard plugin and saves a list of suggested profiles
# in the 'suggestions' field
sub fetch_plugin_suggestions
{
my ($plugin) = @_;
# Only run if the autoconf gave the go-ahead
return unless ($plugin->{default} eq "yes");
return unless ($plugin->{capabilities}{suggest});
my @suggested = run_plugin($plugin, 'suggest');
return $plugin->parse_suggest_response(@suggested);
}
# Runs a given snmpconf-capable plugin, and notes the parameters it returns
sub fetch_plugin_snmpconf
{
my ($plugin) = @_;
return unless ($plugin->{capabilities}{snmpconf});
my @response = run_plugin($plugin, 'snmpconf');
return $plugin->parse_snmpconf_response(@response);
}
### Debugging and error reporting ##############################################
sub list_errors
{
my @error_list;
foreach my $plugin (@_) {
if (my @errors = @{$plugin->{errors}}) {
push @error_list, "$plugin->{name}:";
push @error_list, map { "\t$_" } @errors;
}
}
return @error_list;
}
exit main() unless caller;
1;
__END__
=head1 NAME
munin-node-configure - View and modify which plugins are enabled.
=head1 SYNOPSIS
munin-node-configure [options]
=head1 OPTIONS
=over 5
=item B<< --help >>
View this help page
=item B<< --version >>
Show version information
=item B<< --debug >>
Print debug information (very verbose). All debugging output is
printed on STDOUT but each line is prefixed with '#'. Only errors are
printed on STDERR.
=item B<< --config <file> >>
Override configuration file [@@CONFDIR@@/munin-node.conf]
=item B<< --servicedir <dir> >>
Override plugin dir [@@CONFDIR@@/plugins/]
=item B<< --sconfdir <dir> >>
Override plugin configuration directory [@@CONFDIR@@/plugin-conf.d/]
=item B<< --libdir <dir> >>
Override plugin lib [@@LIBDIR@@/plugins/]
=item B<< --families <family,...> >>
Override families (auto, manual, contrib) [auto]
=item B<< --suggest >>
Show suggestions instead of status
=item B<< --shell >>
Show shell commands instead of a table (implies --suggest unless --snmp was
also provided)
=item B<< --exitnoterror >>
Do not consider non-zero exit-value as error
=item B<< --remove-also >>
Also show rm-commands when doing --shell
=item B<< --newer <version> >>
Only show suggestions related to plugins included more recently than
version <version>.
=item B<< --snmp <host|cidr,...> >>
Do SNMP probing on the host or CIDR network (e.g. "192.168.1.0/24"). This may
take some time, especially if the probe includes many hosts. This option can
be specified multiple times, or as a comma-separated list, to include more
than one host/CIDR.
=item B<< --snmpversion <ver> >>
Set the SNMP version (1, 2c or 3) to use when probing. Default is "2c".
=item B<< --snmpcommunity <comm> >>
Set SNMP community string to use when probing. Default is "public".
=item B<< --snmpport <port> >>
Set SNMP port. Default is "161".
=back
=head1 DESCRIPTION
munin-node-configure is a script to show which plugins are currently enabled
on the current node. It can also suggest changes to this list.
=head1 FILES
@@CONFDIR@@/munin-node.conf
@@CONFDIR@@/plugin-conf.d/*
@@CONFDIR@@/plugins/*
@@LIBDIR@@/plugins/plugins.history
@@LIBDIR@@/plugins/*
=head1 VERSION
This is munin-node-configure v@@VERSION@@.
=head1 AUTHORS
Jimmy Olsen, Nicolai Langfeldt
=head1 BUGS
Please see L<http://munin.projects.linpro.no/report/1>.
=head1 COPYRIGHT
Copyright (C) 2003-2006 Jimmy Olsen, Nicolai Langfeldt.
This is free software; see the source for copying conditions. There is
NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
This program is released under the GNU General Public License
=cut
# vim: sw=4 : ts=4 : expandtab
|