Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
usr
/
share
/
perl5
/
Lintian
/
//usr/share/perl5/Lintian/Check.pm
# -*- perl -*- # Lintian::Check -- Lintian checks shared between multiple scripts # Copyright (C) 2009 Russ Allbery # Copyright (C) 2004 Marc Brockschmidt # Copyright (C) 1998 Richard Braakman # # 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, see <http://www.gnu.org/licenses/>. package Lintian::Check; use strict; use warnings; use Exporter qw(import); use Email::Valid; use Lintian::Data; use Lintian::Tags qw(tag); use Lintian::Util qw(strip); our $KNOWN_BOUNCE_ADDRESSES = Lintian::Data->new('fields/bounce-addresses'); our @EXPORT_OK = qw(check_maintainer check_spelling check_spelling_picky $known_shells_regex spelling_tag_emitter ); =head1 NAME Lintian::Check -- Lintian checks shared between multiple scripts =head1 SYNOPSIS use Lintian::Check qw(check_maintainer); my ($maintainer, $field) = ('John Doe', 'uploader'); check_maintainer ($maintainer, $field); =head1 DESCRIPTION This module provides functions to do some Lintian checks that need to be done in multiple places. There are certain low-level checks, such as validating a maintainer name and e-mail address or checking spelling, which apply in multiple situations and should be done in multiple checks scripts or in checks scripts and the Lintian front-end. The functions provided by this module issue tags directly, usually either taking the tag name to issue as an argument or dynamically constructing the tag name based on function parameters. The caller is responsible for ensuring that all tags are declared in the relevant *.desc file with proper descriptions and other metadata. The possible tags issued by each function are described in the documentation for that function. =head1 FUNCTIONS =over 4 =item check_maintainer(MAINTAINER, FIELD) Checks the maintainer name and address MAINTAINER for Policy compliance and other issues. FIELD is the context in which the maintainer name and address was seen and should be one of C<maintainer> (the Maintainer field in a control file), C<uploader> (the Uploaders field in a control file), or C<changed-by> (the Changed-By field in a changes file). The following tags may be issued by this function. The string C<%s> in the tags below will be replaced with the value of FIELD. =over 4 =item %s-address-is-on-localhost The e-mail address portion of MAINTAINER is at C<localhost> or some other similar domain. = item %s-address-is-root-user The user (from email or username) of MAINTAINER is root. =item %s-address-causes-mail-loops-or-bounces The e-mail address portion of MAINTAINER or UPLOADER refers to the PTS e-mail addresses C<package@packages.debian.org> or C<package@packages.qa.debian.org>, or, alternatively refers to a mailing list which is known to bounce off-list mails sent by Debian role accounts. =item %s-address-looks-weird MAINTAINER may be syntactically correct, but it isn't conventionally formatted. Currently this tag is only issued for missing whitespace between the name and the address. =item %s-address-malformed MAINTAINER doesn't fit the basic syntax of a maintainer name and address as specified in Policy. =item %s-address-missing MAINTAINER does not contain an e-mail address in angle brackets (<>). =item %s-name-missing MAINTAINER does not contain a full name before the address, or the e-mail address was not in angle brackets. =item wrong-debian-qa-address-set-as-maintainer MAINTAINER appears to be the Debian QA Group, but the e-mail address portion is wrong for orphaned packages. This tag is only issued for a FIELD of C<maintainer>. =item wrong-debian-qa-group-name MAINTAINER appears to be the Debian QA Group, but the name portion is not C<Debian QA Group>. This tag is only issued for a FIELD of C<maintainer>. =back The last two tags are issued here rather than in a location more specific to checks of the Maintainer control field because they take advantage of the parsing done by the rest of the function. =cut sub check_maintainer { my ($maintainer, $field) = @_; # Do the initial parse. $maintainer =~ /^([^<\s]*(?:\s+[^<\s]+)*)?(\s*)(?:<(.+)>)?(.*)$/; my ($name, $del, $mail, $extra) = ($1, $2, $3, $4); if (not $mail and $name =~ m/@/) { # Name probably missing and address has no <>. $mail = $name; $name = ''; } # Some basic tests. my $malformed; # If there is something after the mail address OR if there is a # ">" after the last "@" in the mail it is malformed. This # happens with "name <name <email>>", where $mail will be "name # <email>" (#640489). Email::Valid->address (below) will accept # this in most cases (because that is generally valid), but we # only want Email::Valid to validate the "email" part and not the # name (Policy allows "." to be unquoted in names, Email::Valid # does not etc.). Thus this check is to ensure we only pass the # "email"-part to Email::Valid. if ($extra or ($mail && $mail =~ m/\@[^\>\@]+\>[^\>\@]*$/o)) { tag "$field-address-malformed", $maintainer; $malformed = 1; } tag "$field-address-looks-weird", $maintainer if (not $del and $name and $mail); if (not $name) { tag "$field-name-missing", $maintainer; } else { if ($name eq 'root') { tag "$field-address-is-root-user", $maintainer; } } # Don't issue the malformed tag twice if we already saw problems. if (not $mail) { # Cannot be done accurately for uploaders due to changes with commas # (see #485705) tag "$field-address-missing", $maintainer unless $field eq 'uploader'; } else { if (not $malformed and not Email::Valid->address($mail)) { # Either not a valid email or possibly missing a comma between # two entries. tag "$field-address-malformed", $maintainer; } if ($mail =~ /(?:localhost|\.localdomain|\.localnet)$/) { tag "$field-address-is-on-localhost", $maintainer; } if ($mail =~ /^root@/) { tag "$field-address-is-root-user", $maintainer; } if (($field ne 'changed-by') and $KNOWN_BOUNCE_ADDRESSES->known($mail)) { tag "$field-address-causes-mail-loops-or-bounces", $maintainer; } # Some additional checks that we only do for maintainer fields. if ($field eq 'maintainer') { if ( ($mail eq 'debian-qa@lists.debian.org') or ( $name =~ /\bdebian\s+qa\b/i and $mail ne 'packages@qa.debian.org') ) { tag 'wrong-debian-qa-address-set-as-maintainer',$maintainer; } elsif ($mail eq 'packages@qa.debian.org') { tag 'wrong-debian-qa-group-name', $maintainer if ($name ne 'Debian QA Group'); } } } return; } =item spelling_tag_emitter(TAGNAME[, FILENAME]) Create and return a subroutine that is useful for emitting lintian tags for spelling mistakes. The returned CODE ref can be passed to L</check_spelling(TEXT,[ EXCEPTIONS,] CODEREF)> and will faithfully emit TAGNAME once for each unique spelling mistake. The optional extra parameter FILENAME is used to denote the file name, when this is not given from the tagname. =cut sub spelling_tag_emitter { my (@orig_args) = @_; return sub { return tag(@orig_args, @_); }; } =item check_spelling(TEXT,[ EXCEPTIONS,] CODEREF) Performs a spelling check of TEXT. Call CODEREF once for each unique misspelling with the following arguments: =over 4 =item The misspelled word/phrase =item The correct word/phrase =back If EXCEPTIONS is given, it will be used as a hash ref of exceptions. Any lowercase word appearing as a key of this hash ref will never be considered a spelling mistake (exception being if it is a part of a multiword misspelling). Returns the number of spelling mistakes found in TEXT. =cut my (%CORRECTIONS, @CORRECTIONS_MULTIWORD); sub check_spelling { my ($text, $exceptions, $code_ref, $duplicate_check) = @_; return 0 unless $text; if (not $code_ref and $exceptions and ref($exceptions) eq 'CODE') { $code_ref = $exceptions; $exceptions = {}; } else { $exceptions //= {}; } $duplicate_check //= 1; my (%seen, %duplicates, $last_word, $quoted); my $counter = 0; my $text_orig = $text; if (!%CORRECTIONS) { my $corrections_multiword = Lintian::Data->new('spelling/corrections-multiword', '\|\|'); my $corrections = Lintian::Data->new('spelling/corrections', '\|\|'); for my $misspelled ($corrections->all) { $CORRECTIONS{$misspelled} = $corrections->value($misspelled); } for my $misspelled_regex ($corrections_multiword->all) { my $correct = $corrections_multiword->value($misspelled_regex); push(@CORRECTIONS_MULTIWORD, [qr/\b($misspelled_regex)\b/, $correct]); } } $text =~ tr/[]//d; # Strip () except for "(s)" suffixes. $text =~ s/(\((?!s\))|(?<!\(s)\))//gi; $text =~ s/(\w-)\s*\n\s*/$1/; $text =~ tr/\r\n \t/ /s; $text =~ s/\s++/ /g; strip($text); for my $word (split(' ', $text)) { my $ends_with_punct = 0; my $q = $word =~ tr/"/"/; # Change quoting on "foo or foo" but not "foo". if ($q & 1) { $quoted = not $quoted; } $ends_with_punct = 1 if $word =~ s/[.,;:?!]+$//; if ($duplicate_check and defined($last_word) and $last_word eq $word) { # Avoid flagging words inside quoted text. $code_ref->("$word $word (duplicate word)", $word) if not $quoted and not $duplicates{$word}++ and not $ends_with_punct and $text_orig !~ /\b$word\s*\($word\b/; } if ($word =~ m/^[A-Za-z]+$/ and not $ends_with_punct) { $last_word = $word; } else { $last_word = undef; } next if ($word =~ /^[A-Z]{1,5}\z/); # Some exceptions are based on case (e.g. "teH"). next if exists($exceptions->{$word}); my $lcword = lc $word; if (exists($CORRECTIONS{$lcword}) &&!exists($exceptions->{$lcword})) { $counter++; my $correction = $CORRECTIONS{$lcword}; if ($word =~ /^[A-Z]+$/) { $correction = uc $correction; } elsif ($word =~ /^[A-Z]/) { $correction = ucfirst $correction; } next if $seen{$lcword}++; $code_ref->($word, $correction); } } # Special case for correcting multi-word strings. for my $cm (@CORRECTIONS_MULTIWORD) { my ($oregex, $correction) = @{$cm}; if ($text =~ $oregex) { my $word = $1; if ($word =~ /^[A-Z]+$/) { $correction = uc $correction; } elsif ($word =~ /^[A-Z]/) { $correction = ucfirst $correction; } $counter++; next if $seen{lc $word}++; $code_ref->($word, $correction); } } return $counter; } =item check_spelling_picky(TEXT, CODEREF) Performs a spelling check of TEXT. Call CODEREF once for each unique misspelling with the following arguments: =over 4 =item The misspelled word/phrase =item The correct word/phrase =back This method performs some pickier corrections - such as checking for common capitalization mistakes - which would are not included in check_spelling as they are not appropriate for some files, such as changelogs. Returns the number of spelling mistakes found in TEXT. =cut sub check_spelling_picky { my ($text, $code_ref) = @_; my %seen; my $counter = 0; my $corrections_case = Lintian::Data->new('spelling/corrections-case', '\|\|'); # Check this first in case it's contained in square brackets and # removed below. if ($text =~ m,meta\s+package,) { $counter++; $code_ref->('meta package', 'metapackage'); } # Exclude text enclosed in square brackets as it could be a package list # or similar which may legitimately contain lower-cased versions of # the words. $text =~ s/\[.+?\]//sg; $text =~ tr/\r\n \t/ /s; $text =~ s/\s++/ /g; strip($text); for my $word (split(/\s+/, $text)) { $word =~ s/^\(|[).,?!:;]+$//g; if ($corrections_case->known($word)) { $counter++; next if $seen{$word}++; $code_ref->($word, $corrections_case->value($word)); } } return $counter; } =back =head1 VARIABLES =over 4 =item $known_shells_regex Regular expression that matches names of any known shell. =cut our $known_shells_regex = qr'(?:[bd]?a|t?c|(?:pd|m)?k|z)?sh'; =back =head1 AUTHOR Originally written by Russ Allbery <rra@debian.org> for Lintian. Based on code from checks scripts by Marc Brockschmidt and Richard Braakman. =head1 SEE ALSO lintian(1) =cut 1; # Local Variables: # indent-tabs-mode: nil # cperl-indent-level: 4 # End: # vim: syntax=perl sw=4 sts=4 sr et