diff options
author | rillig <rillig@pkgsrc.org> | 2009-04-26 11:24:23 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2009-04-26 11:24:23 +0000 |
commit | d8f63721f7d8b360f78422dd75f11bccd12ded9b (patch) | |
tree | 68e0d5b8ebf128e7b070fd0cf4ac21f1160f1a91 /pkgtools | |
parent | c6b75e679c9053b5c10774fc12a81d6b2268309f (diff) | |
download | pkgsrc-d8f63721f7d8b360f78422dd75f11bccd12ded9b.tar.gz |
Added a check that ensures that all types in makevars.map actually exist
in the code, avoiding "Type not found" fatal errors at runtime. In this
case, only the variables *_SPECIFIC_PKGS were affected.
The real problem that induced the above change was the unknown type
"List of Pathname", which was a bug in the pkglint code itself,
introduced three years ago (revision 1.574).
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 44 |
1 files changed, 36 insertions, 8 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 49a8bcb3027..f9959483a94 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.808 2009/04/26 08:44:42 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.809 2009/04/26 11:24:23 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -1687,6 +1687,23 @@ sub parse_acls($$) { return $acls; } +my $get_vartypes_basictypes_result = undef; +sub get_vartypes_basictypes() { + if (defined($get_vartypes_basictypes_result)) { + return $get_vartypes_basictypes_result; + } + + my $lines = load_file($0); + my $types = {}; + assert($lines, "Couldn't load pkglint.pl from $0"); + foreach my $line (@$lines) { + if ($line->text =~ m"^\s+\} elsif \(\$type eq \"(\w+)\"\) \{$") { + $types->{$1} = 1; + } + } + return ($get_vartypes_basictypes_result = $types); +} + my $get_vartypes_map_result = undef; sub get_vartypes_map() { my ($fname, $vartypes); @@ -1704,12 +1721,13 @@ sub get_vartypes_map() { $"x; use constant re_vartypedef => qr"^ - ([\w\d_.]+?) # variable name - (\*|\.\*|) \s+ # parameterized? - (?:(InternalList|List) \s+ of \s+)? # kind of list - (?:([\w\d_]+) | \{\s*([\w\d_+,\-.\s]+?)\s*\}) # basic type - (?:\s+ \[ ([^\]]*) \])? # optional ACL - (?:\s*\#.*)? # optional comment + ([\w\d_.]+?) # $1 = variable name + (\*|\.\*|) \s+ # $2 = parameterized? + (?:(InternalList|List) \s+ of \s+)? # $3 ?= kind of list + (?:([\w\d_]+) # $4 ?= basic type + | \{\s*([\w\d_+,\-.\s]+?)\s*\}) # $5 ?= enumeration values + (?:\s+ \[ ([^\]]*) \])? # $6 ?= optional ACL + (?:\s*\#.*)? # $7 ?= optional comment $"x; $fname = conf_datadir."/makevars.map"; @@ -1731,6 +1749,13 @@ sub get_vartypes_map() { : ($kind_of_list_text eq "List") ? LK_EXTERNAL : LK_INTERNAL; + if (defined($typename) && !exists(get_vartypes_basictypes()->{$typename})) { + $line->log_fatal("Unknown basic type \"$typename\" for variable $varname. " + . "Valid basic types are " + . join(", ", sort keys %{get_vartypes_basictypes()}) + . "."); + } + my $basic_type = defined($enums) ? array_to_hash(split(qr"\s+", $enums)) : $typename; @@ -2881,7 +2906,7 @@ sub get_variable_type($$) { : ($varname =~ m"FILES$") ? PkgLint::Type->new(LK_EXTERNAL, "Pathmask", allow_runtime, GUESSED) : ($varname =~ m"FILE$") ? PkgLint::Type->new(LK_NONE, "Pathname", allow_runtime, GUESSED) : ($varname =~ m"PATH$") ? PkgLint::Type->new(LK_NONE, "Pathlist", allow_runtime, GUESSED) - : ($varname =~ m"PATHS$") ? PkgLint::Type->new(LK_EXTERNAL, "List of Pathname", allow_runtime, GUESSED) + : ($varname =~ m"PATHS$") ? PkgLint::Type->new(LK_EXTERNAL, "Pathname", allow_runtime, GUESSED) : ($varname =~ m"_USER$") ? PkgLint::Type->new(LK_NONE, "UserGroupName", allow_all, GUESSED) : ($varname =~ m"_GROUP$") ? PkgLint::Type->new(LK_NONE, "UserGroupName", allow_all, GUESSED) : ($varname =~ m"_ENV$") ? PkgLint::Type->new(LK_EXTERNAL, "ShellWord", allow_runtime, GUESSED) @@ -5146,6 +5171,9 @@ sub checkline_mk_vartype_basic($$$$$$$$) { $line->log_warning("\"${value}\" is not a valid package name. A valid package name has the form packagename-version, where version consists only of digits, letters and dots."); } + } elsif ($type eq "PkgPath") { + checkline_relative_pkgdir($line, "$cur_pkgsrcdir/$value"); + } elsif ($type eq "PkgOptionsVar") { checkline_mk_vartype_basic($line, $varname, "Varname", $op, $value, $comment, false, $is_guessed); if ($value =~ m"\$\{PKGBASE[:\}]") { |