This file is indexed.

/usr/share/lintian/checks/changes-file is in lintian 2.5.10.4.

This file is owned by root:root, with mode 0o644.

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
# changes-file -- lintian check script -*- perl -*-

# Copyright (C) 1998 Christian Schwarz and Richard Braakman
#
# This program is free software.  It is distributed 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, you can find it on the World Wide
# Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301, USA.

package Lintian::changes_file;
use strict;
use warnings;

use Lintian::Tags qw(tag);
use Lintian::Check qw(check_maintainer);
use Lintian::Util qw(get_file_checksum);

my $KNOWN_DISTS = Lintian::Data->new ('changes-file/known-dists');

sub run {

my $pkg = shift;
my $type = shift;
my $info = shift;

# If we don't have a Format key, something went seriously wrong.
# Tag the file and skip remaining processing.
if (!$info->field('format')) {
    tag 'malformed-changes-file';
    return 0;
}

# Description is mandated by dak, but only makes sense if binary
# packages are included.  Don't tag pure source uploads.
if (!$info->field('description') && ($info->field('architecture')//'') ne 'source') {
    tag 'no-description-in-changes-file';
}

# check distribution field
if (defined $info->field('distribution')) {
    my @distributions = split /\s+/o, $info->field('distribution');
    for my $distribution (@distributions) {
        if ($distribution eq 'UNRELEASED') {
            # ignore
        } else {
            my $dist = $distribution;
            if ($dist !~ m/^(?:sid|unstable|experimental)/) {
                # Strip common "extensions" for distributions (except sid and
                # experimental, where they would make no sense)
                $dist =~ s/-(?:backports|proposed(?:-updates)?|updates|security|volatile)$//o;
            }
            if (! $KNOWN_DISTS->known ($dist)) {
                # bad distribution entry
                tag 'bad-distribution-in-changes-file', $distribution;
            }
        }
    }

    if ($#distributions > 0) {
        tag 'multiple-distributions-in-changes-file',
            $info->field('distribution');
    }
}

# Urgency is only recommended by Policy.
if (!$info->field('urgency')) {
    tag 'no-urgency-in-changes-file';
} else {
    my $urgency = lc $info->field('urgency');
    $urgency =~ s/ .*//o;
    unless ($urgency =~ /^(?:low|medium|high|critical|emergency)$/io) {
        tag 'bad-urgency-in-changes-file', $info->field('urgency');
    }
}

# Changed-By is optional in Policy, but if set, must be
# syntactically correct.  It's also used by dak.
if ($info->field('changed-by')) {
    check_maintainer($info->field('changed-by'), 'changed-by');
}

my $files = $info->files;
my $path = readlink('changes');
$path =~ s#/[^/]+$##;
foreach my $file (keys %$files) {
    my $file_info = $files->{$file};

    # check section
    if (($file_info->{section} eq 'non-free') or
        ($file_info->{section} eq 'contrib')) {
        tag 'bad-section-in-changes-file', $file, $file_info->{section};
    }

    foreach my $alg (qw(sha1 sha256)) {
        my $checksum_info = $file_info->{checksums}{$alg};
        if (defined $checksum_info) {
            if ($file_info->{size} != $checksum_info->{filesize}) {
                tag 'file-size-mismatch-in-changes-file', $file,
                    $file_info->{size} . ' != ' .
                    $checksum_info->{filesize};
            }
        }
    }

    # check size
    my $filename = "$path/$file";
    my $size = -s $filename;

    if ($size ne $file_info->{size}) {
        tag 'file-size-mismatch-in-changes-file', $file,
             $file_info->{size} . " != $size";
    }

    # check checksums
    foreach my $alg (qw(md5 sha1 sha256)) {
        next unless exists $file_info->{checksums}{$alg};

        my $real_checksum = get_file_checksum($alg, $filename);

        if ($real_checksum ne $file_info->{checksums}{$alg}{sum}) {
            tag 'checksum-mismatch-in-changes-file', $alg, $file;
        }
    }
}

}

1;

# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et