This file is indexed.

/usr/lib/xymon/client/ext/dirtyvcs is in hobbit-plugins 20170219.

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
#!/usr/bin/perl -w

# Copyright (C) 2010-2014 Axel Beckert <abe@debian.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.

my $ext_vcs_config = "/etc/xymon";
use strict;
use Hobbit qw(file_to_list_of_globs);
use File::Which;

my $dirty_vcs_dirs_file = $ext_vcs_config."/dirty_vcs_dirs";
my $dirty_vcs_fsck_skip = 'dirtyvcs_no_fsck';
my @possible_repos = file_to_list_of_globs($dirty_vcs_dirs_file);

$ENV{'PATH'} = '/bin:/sbin:/usr/bin:/usr/sbin';
$ENV{'LC_ALL'} = 'C';
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};

my $bb = new Hobbit('dirtyvcs');

my $empty_re = qr/^\s*$/s;
my %vcs_to_dir = (
    'git' => { dir => '.git',
               clean => qr/nothing to commit,? \(?working \w+ clean/ },
    'bzr' => { dir => '.bzr',
               clean => $empty_re },
    'hg'  => { dir => '.hg',
               clean => $empty_re },
    'svn' => { dir => '.svn',
               clean => $empty_re },
);

my @blacklist = map { s/^!//; $_ } grep { /^!/ } @possible_repos;


my $repos_found = 0;
foreach my $vcs (sort keys %vcs_to_dir) {
    my $vcs_avail = which($vcs);

    foreach my $path (sort @possible_repos) {
        foreach my $repo (sort grep { -d "$_/$vcs_to_dir{$vcs}{dir}" and
                                     !-d "$_/../$vcs_to_dir{$vcs}{dir}" } glob("$path")) {
            next if grep { $_ eq $repo } map { glob } @blacklist;

            $repos_found++;
            if ($vcs_avail) {
                chdir($repo);
                my $status = `$vcs status 2>&1`;
                if ($status =~ $vcs_to_dir{$vcs}{clean} and
                    $status =~ /warning|permission denied|fatal|abort|unable/i) {
                    $bb->color_line('yellow', "$repo ($vcs) is clean, but has warnings or errors:\n".
                                    "<blockquote>$status</blockquote>");
                } elsif ($status =~ $vcs_to_dir{$vcs}{clean}) {
                    $bb->color_line('green', "$repo ($vcs) is clean".
                                    ($vcs_to_dir{$vcs}{clean} eq $empty_re ?
                                     ".\n" : ":\n<blockquote>$status</blockquote>"));
                } else {
                    $bb->color_line('yellow', "$repo ($vcs) is dirty:\n".
                                    "<blockquote>$status</blockquote>");
                }

                if ($vcs eq 'git' and
                    !-e "$repo/.$dirty_vcs_fsck_skip" and
                    !-e "$repo/.git/$dirty_vcs_fsck_skip") {
                    # Options --no-dangling and --no-progress unknown in Squeeze
                    my $status = `git fsck 2>&1 | egrep -v 'Checking|dangling' 2>&1`;
                    if ($status =~ /missing|broken/) {
                        $bb->color_line('red', "fsck for $repo ($vcs) failed:\n".
                                    "<blockquote>$status</blockquote>");
                    } elsif ($status) {
                        $bb->color_line('yellow', "fsck for $repo ($vcs) found issues:\n".
                                    "<blockquote>$status</blockquote>");
                    }
                }
            } else {
                $bb->color_line('yellow', "$repo ($vcs) exists, but $vcs seems not installed.\n");
            }
        }
    }
}

if ($repos_found) {
    $bb->print("\n$repos_found VCS repositories found.");
} else {
    $bb->color_line('green', "No VCS repositories found.");
}

$bb->send;