summaryrefslogtreecommitdiff
path: root/src/check-aclperms.pl
blob: 5b1b4dbad3b6c6650501c9fdacc844b555f6129f (plain)
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
#!/usr/bin/perl
#
# Copyright (C) 2013 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library.  If not, see
# <http://www.gnu.org/licenses/>.
#
# This script just validates that the stringified version of
# a virAccessPerm enum matches the enum constant name. We do
# a lot of auto-generation of code, so when these don't match
# problems occur, preventing auth from succeeding at all.

my $hdr = shift;
my $impl = shift;

my %perms;

my @perms;

open HDR, $hdr or die "cannot read $hdr: $!";

while (<HDR>) {
    if (/^\s+VIR_ACCESS_PERM_([_A-Z]+)(,?|\s|$)/) {
        my $perm = $1;

        $perms{$perm} = 1 unless ($perm =~ /_LAST$/);
    }
}

close HDR;


open IMPL, $impl or die "cannot read $impl: $!";

my $group;
my $warned = 0;

while (defined (my $line = <IMPL>)) {
    if ($line =~ /VIR_ACCESS_PERM_([_A-Z]+)_LAST/) {
        $group = $1;
    } elsif ($line =~ /"[_a-z]+"/) {
        my @bits = split /,/, $line;
        foreach my $bit (@bits) {
            if ($bit =~ /"([_a-z]+)"/) {
                my $perm = uc($group . "_" . $1);
                if (!exists $perms{$perm}) {
                    print STDERR "Unknown perm string $1 for group $group\n";
                    $warned = 1;
                }
                delete $perms{$perm};
            }
        }
    }
}
close IMPL;

foreach my $perm (keys %perms) {
    print STDERR "Perm $perm had not string form\n";
    $warned = 1;
}

exit $warned;