<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Copyright Â© 2008-2011 RaphaÃ«l Hertzog &lt;hertzog@debian.org&gt;
#
# 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 &lt;http://www.gnu.org/licenses/&gt;.

package Dpkg::Source::Package;

=encoding utf8

=head1 NAME

Dpkg::Source::Package - manipulate Debian source packages

=head1 DESCRIPTION

This module provides an object that can manipulate Debian source
packages. While it supports both the extraction and the creation
of source packages, the only API that is officially supported
is the one that supports the extraction of the source package.

=head1 FUNCTIONS

=cut

use strict;
use warnings;

our $VERSION = "1.0";

use Dpkg::Gettext;
use Dpkg::ErrorHandling;
use Dpkg::Control;
use Dpkg::Checksums;
use Dpkg::Version;
use Dpkg::Compression;
use Dpkg::Exit;
use Dpkg::Path qw(check_files_are_the_same);
use Dpkg::IPC;
use Dpkg::Vendor qw(run_vendor_hook);

use POSIX;
use File::Basename;

# Public variables
our $diff_ignore_default_regexp = '
# Ignore general backup files
(?:^|/).*~$|
# Ignore emacs recovery files
(?:^|/)\.#.*$|
# Ignore vi swap files
(?:^|/)\..*\.sw.$|
# Ignore baz-style junk files or directories
(?:^|/),,.*(?:$|/.*$)|
# File-names that should be ignored (never directories)
(?:^|/)(?:DEADJOE|\.arch-inventory|\.(?:bzr|cvs|hg|git)ignore)$|
# File or directory names that should be ignored
(?:^|/)(?:CVS|RCS|\.deps|\{arch\}|\.arch-ids|\.svn|
\.hg(?:tags|sigs)?|_darcs|\.git(?:attributes|modules)?|
\.shelf|_MTN|\.be|\.bzr(?:\.backup|tags)?)(?:$|/.*$)
';
# Take out comments and newlines
$diff_ignore_default_regexp =~ s/^#.*$//mg;
$diff_ignore_default_regexp =~ s/\n//sg;
no warnings 'qw';
our @tar_ignore_default_pattern = qw(
*.a
*.la
*.o
*.so
.*.sw?
*/*~
,,*
.[#~]*
.arch-ids
.arch-inventory
.be
.bzr
.bzr.backup
.bzr.tags
.bzrignore
.cvsignore
.deps
.git
.gitattributes
.gitignore
.gitmodules
.hg
.hgignore
.hgsigs
.hgtags
.shelf
.svn
CVS
DEADJOE
RCS
_MTN
_darcs
{arch}
);

=over 4

=item $p = Dpkg::Source::Package-&gt;new(filename =&gt; $dscfile, options =&gt; {})

Creates a new object corresponding to the source package described
by the file $dscfile.

The options hash supports the following options:

=over 8

=item skip_debianization

If set to 1, do not apply Debian changes on the extracted source package.

=item skip_patches

If set to 1, do not apply Debian-specific patches. This options is
specific for source packages using format "2.0" and "3.0 (quilt)".

=item require_valid_signature

If set to 1, the check_signature() method will be stricter and will error
out if the signature can't be verified.

=item copy_orig_tarballs

If set to 1, the extraction will copy the upstream tarballs next the
target directory. This is useful if you want to be able to rebuild the
source package after its extraction.

=back

=cut

# Object methods
sub new {
    my ($this, %args) = @_;
    my $class = ref($this) || $this;
    my $self = {
        'fields' =&gt; Dpkg::Control-&gt;new(type =&gt; CTRL_PKG_SRC),
        'options' =&gt; {},
	'checksums' =&gt; Dpkg::Checksums-&gt;new(),
    };
    bless $self, $class;
    if (exists $args{'options'}) {
        $self-&gt;{'options'} = $args{'options'};
    }
    if (exists $args{"filename"}) {
        $self-&gt;initialize($args{"filename"});
        $self-&gt;init_options();
    }
    return $self;
}

sub init_options {
    my ($self) = @_;
    # Use full ignore list by default
    # note: this function is not called by V1 packages
    $self-&gt;{'options'}{'diff_ignore_regexp'} ||= $diff_ignore_default_regexp;
    $self-&gt;{'options'}{'diff_ignore_regexp'} .= '|(?:^|/)debian/source/local-.*$';
    if (defined $self-&gt;{'options'}{'tar_ignore'}) {
        $self-&gt;{'options'}{'tar_ignore'} = [ @tar_ignore_default_pattern ]
            unless @{$self-&gt;{'options'}{'tar_ignore'}};
    } else {
        $self-&gt;{'options'}{'tar_ignore'} = [ @tar_ignore_default_pattern ];
    }
    push @{$self-&gt;{'options'}{'tar_ignore'}}, "debian/source/local-options",
         "debian/source/local-patch-header";
    # Skip debianization while specific to some formats has an impact
    # on code common to all formats
    $self-&gt;{'options'}{'skip_debianization'} ||= 0;
}

sub initialize {
    my ($self, $filename) = @_;
    my ($fn, $dir) = fileparse($filename);
    error(_g("%s is not the name of a file"), $filename) unless $fn;
    $self-&gt;{'basedir'} = $dir || "./";
    $self-&gt;{'filename'} = $fn;

    # Check if it contains a signature
    open(DSC, "&lt;", $filename) || syserr(_g("cannot open %s"), $filename);
    $self-&gt;{'is_signed'} = 0;
    while (&lt;DSC&gt;) {
        next if /^\s*$/o;
        $self-&gt;{'is_signed'} = 1 if /^-----BEGIN PGP SIGNED MESSAGE-----\s*$/o;
        last;
    }
    close(DSC);
    # Read the fields
    my $fields = Dpkg::Control-&gt;new(type =&gt; CTRL_PKG_SRC);
    $fields-&gt;load($filename);
    $self-&gt;{'fields'} = $fields;

    foreach my $f (qw(Source Version Files)) {
        unless (defined($fields-&gt;{$f})) {
            error(_g("missing critical source control field %s"), $f);
        }
    }

    $self-&gt;{'checksums'}-&gt;add_from_control($fields, use_files_for_md5 =&gt; 1);

    $self-&gt;upgrade_object_type(0);
}

sub upgrade_object_type {
    my ($self, $update_format) = @_;
    $update_format = 1 unless defined $update_format;
    $self-&gt;{'fields'}{'Format'} = '1.0'
        unless exists $self-&gt;{'fields'}{'Format'};
    my $format = $self-&gt;{'fields'}{'Format'};

    if ($format =~ /^([\d\.]+)(?:\s+\((.*)\))?$/) {
        my ($version, $variant, $major, $minor) = ($1, $2, $1, undef);
        $major =~ s/\.[\d\.]+$//;
        my $module = "Dpkg::Source::Package::V$major";
        $module .= "::$variant" if defined $variant;
        eval "require $module; \$minor = \$${module}::CURRENT_MINOR_VERSION;";
        $minor = 0 unless defined $minor;
        if ($update_format) {
            $self-&gt;{'fields'}{'Format'} = "$major.$minor";
            $self-&gt;{'fields'}{'Format'} .= " ($variant)" if defined $variant;
        }
        if ($@) {
	    error(_g("source package format `%s' is not supported (Perl module %s is required)"), $format, $module);
        }
        bless $self, $module;
    } else {
        error(_g("invalid Format field `%s'"), $format);
    }
}

=item $p-&gt;get_filename()

Returns the filename of the DSC file.

=cut

sub get_filename {
    my ($self) = @_;
    return $self-&gt;{'basedir'} . $self-&gt;{'filename'};
}

=item $p-&gt;get_files()

Returns the list of files referenced by the source package. The filenames
usually do not have any path information.

=cut

sub get_files {
    my ($self) = @_;
    return $self-&gt;{'checksums'}-&gt;get_files();
}

=item $p-&gt;check_checksums()

Verify the checksums embedded in the DSC file. It requires the presence of
the other files constituting the source package. If any inconsistency is
discovered, it immediately errors out.

=cut

sub check_checksums {
    my ($self) = @_;
    my $checksums = $self-&gt;{'checksums'};
    # add_from_file verify the checksums if they are already existing
    foreach my $file ($checksums-&gt;get_files()) {
	$checksums-&gt;add_from_file($self-&gt;{'basedir'} . $file, key =&gt; $file);
    }
}

sub get_basename {
    my ($self, $with_revision) = @_;
    my $f = $self-&gt;{'fields'};
    unless (exists $f-&gt;{'Source'} and exists $f-&gt;{'Version'}) {
        error(_g("source and version are required to compute the source basename"));
    }
    my $v = Dpkg::Version-&gt;new($f-&gt;{'Version'});
    my $basename = $f-&gt;{'Source'} . "_" . $v-&gt;version();
    if ($with_revision and $f-&gt;{'Version'} =~ /-/) {
        $basename .= "-" . $v-&gt;revision();
    }
    return $basename;
}

sub find_original_tarballs {
    my ($self, %opts) = @_;
    $opts{extension} = $compression_re_file_ext unless exists $opts{extension};
    $opts{include_main} = 1 unless exists $opts{include_main};
    $opts{include_supplementary} = 1 unless exists $opts{include_supplementary};
    my $basename = $self-&gt;get_basename();
    my @tar;
    foreach my $dir (".", $self-&gt;{'basedir'}, $self-&gt;{'options'}{'origtardir'}) {
        next unless defined($dir) and -d $dir;
        opendir(DIR, $dir) || syserr(_g("cannot opendir %s"), $dir);
        push @tar, map { "$dir/$_" } grep {
		($opts{include_main} and
		 /^\Q$basename\E\.orig\.tar\.$opts{extension}$/) or
		($opts{include_supplementary} and
		 /^\Q$basename\E\.orig-[[:alnum:]-]+\.tar\.$opts{extension}$/)
	    } readdir(DIR);
        closedir(DIR);
    }
    return @tar;
}

=item $bool = $p-&gt;is_signed()

Returns 1 if the DSC files contains an embedded OpenPGP signature.
Otherwise returns 0.

=cut

sub is_signed {
    my $self = shift;
    return $self-&gt;{'is_signed'};
}

=item $p-&gt;check_signature()

Implement the same OpenPGP signature check that dpkg-source does.
In case of problems, it prints a warning or errors out.

If the object has been created with the "require_valid_signature" option,
then any problem will result in a fatal error.

=cut

sub check_signature {
    my ($self) = @_;
    my $dsc = $self-&gt;get_filename();
    my @exec;
    if (-x '/usr/bin/gpgv') {
        push @exec, "gpgv";
    } elsif (-x '/usr/bin/gpg') {
        push @exec, "gpg", "--no-default-keyring", "-q", "--verify";
    }
    if (scalar(@exec)) {
        if (-r "$ENV{'HOME'}/.gnupg/trustedkeys.gpg") {
            push @exec, "--keyring", "$ENV{'HOME'}/.gnupg/trustedkeys.gpg";
        }
        foreach my $vendor_keyring (run_vendor_hook('keyrings')) {
            if (-r $vendor_keyring) {
                push @exec, "--keyring", $vendor_keyring;
            }
        }
        push @exec, $dsc;

        my ($stdout, $stderr);
        spawn('exec' =&gt; \@exec, wait_child =&gt; 1, nocheck =&gt; 1,
              to_string =&gt; \$stdout, error_to_string =&gt; \$stderr,
              timeout =&gt; 10);
        if (WIFEXITED($?)) {
            my $gpg_status = WEXITSTATUS($?);
            print STDERR "$stdout$stderr" if $gpg_status;
            if ($gpg_status == 1 or ($gpg_status &amp;&amp;
                $self-&gt;{'options'}{'require_valid_signature'}))
            {
                error(_g("failed to verify signature on %s"), $dsc);
            } elsif ($gpg_status) {
                warning(_g("failed to verify signature on %s"), $dsc);
            }
        } else {
            subprocerr("@exec");
        }
    } else {
        if ($self-&gt;{'options'}{'require_valid_signature'}) {
            error(_g("could not verify signature on %s since gpg isn't installed"), $dsc);
        } else {
            warning(_g("could not verify signature on %s since gpg isn't installed"), $dsc);
        }
    }
}

sub parse_cmdline_options {
    my ($self, @opts) = @_;
    foreach (@opts) {
        if (not $self-&gt;parse_cmdline_option($_)) {
            warning(_g("%s is not a valid option for %s"), $_, ref($self));
        }
    }
}

sub parse_cmdline_option {
    return 0;
}

=item $p-&gt;extract($targetdir)

Extracts the source package in the target directory $targetdir. Beware
that if $targetdir already exists, it will be erased.

=cut

sub extract {
    my $self = shift;
    my $newdirectory = $_[0];

    my ($ok, $error) = version_check($self-&gt;{'fields'}{'Version'});
    error($error) unless $ok;

    # Copy orig tarballs
    if ($self-&gt;{'options'}{'copy_orig_tarballs'}) {
        my $basename = $self-&gt;get_basename();
        my ($dirname, $destdir) = fileparse($newdirectory);
        $destdir ||= "./";
	my $ext = $compression_re_file_ext;
        foreach my $orig (grep { /^\Q$basename\E\.orig(-[[:alnum:]-]+)?\.tar\.$ext$/ }
                          $self-&gt;get_files())
        {
            my $src = File::Spec-&gt;catfile($self-&gt;{'basedir'}, $orig);
            my $dst = File::Spec-&gt;catfile($destdir, $orig);
            if (not check_files_are_the_same($src, $dst, 1)) {
                system('cp', '--', $src, $dst);
                subprocerr("cp $src to $dst") if $?;
            }
        }
    }

    # Try extract
    eval { $self-&gt;do_extract(@_) };
    if ($@) {
        &amp;$_() foreach reverse @Dpkg::Exit::handlers;
        die $@;
    }

    # Store format if non-standard so that next build keeps the same format
    if ($self-&gt;{'fields'}{'Format'} ne "1.0" and
        not $self-&gt;{'options'}{'skip_debianization'})
    {
        my $srcdir = File::Spec-&gt;catdir($newdirectory, "debian", "source");
        my $format_file = File::Spec-&gt;catfile($srcdir, "format");
	unless (-e $format_file) {
	    mkdir($srcdir) unless -e $srcdir;
	    open(FORMAT, "&gt;", $format_file) || syserr(_g("cannot write %s"), $format_file);
	    print FORMAT $self-&gt;{'fields'}{'Format'} . "\n";
	    close(FORMAT);
	}
    }

    # Make sure debian/rules is executable
    my $rules = File::Spec-&gt;catfile($newdirectory, "debian", "rules");
    my @s = lstat($rules);
    if (not scalar(@s)) {
        unless ($! == ENOENT) {
            syserr(_g("cannot stat %s"), $rules);
        }
        warning(_g("%s does not exist"), $rules)
            unless $self-&gt;{'options'}{'skip_debianization'};
    } elsif (-f _) {
        chmod($s[2] | 0111, $rules) ||
            syserr(_g("cannot make %s executable"), $rules);
    } else {
        warning(_g("%s is not a plain file"), $rules);
    }
}

sub do_extract {
    internerr("Dpkg::Source::Package doesn't know how to unpack a " .
              "source package. Use one of the subclasses.");
}

# Function used specifically during creation of a source package

sub before_build {
    my ($self, $dir) = @_;
}

sub build {
    my $self = shift;
    eval { $self-&gt;do_build(@_) };
    if ($@) {
        &amp;$_() foreach reverse @Dpkg::Exit::handlers;
        die $@;
    }
}

sub after_build {
    my ($self, $dir) = @_;
}

sub do_build {
    internerr("Dpkg::Source::Package doesn't know how to build a " .
              "source package. Use one of the subclasses.");
}

sub can_build {
    my ($self, $dir) = @_;
    return (0, "can_build() has not been overriden");
}

sub add_file {
    my ($self, $filename) = @_;
    my ($fn, $dir) = fileparse($filename);
    if ($self-&gt;{'checksums'}-&gt;has_file($fn)) {
        internerr("tried to add file '%s' twice", $fn);
    }
    $self-&gt;{'checksums'}-&gt;add_from_file($filename, key =&gt; $fn);
    $self-&gt;{'checksums'}-&gt;export_to_control($self-&gt;{'fields'},
					    use_files_for_md5 =&gt; 1);
}

sub commit {
    my ($self, $dir) = @_;
    info(_g("'%s' is not supported by the source format '%s'"),
         "dpkg-source --commit", $self-&gt;{'fields'}{'Format'});
}

sub write_dsc {
    my ($self, %opts) = @_;
    my $fields = $self-&gt;{'fields'};

    foreach my $f (keys %{$opts{'override'}}) {
	$fields-&gt;{$f} = $opts{'override'}{$f};
    }

    unless($opts{'nocheck'}) {
        foreach my $f (qw(Source Version)) {
            unless (defined($fields-&gt;{$f})) {
                error(_g("missing information for critical output field %s"), $f);
            }
        }
        foreach my $f (qw(Maintainer Architecture Standards-Version)) {
            unless (defined($fields-&gt;{$f})) {
                warning(_g("missing information for output field %s"), $f);
            }
        }
    }

    foreach my $f (keys %{$opts{'remove'}}) {
	delete $fields-&gt;{$f};
    }

    my $filename = $opts{'filename'};
    unless (defined $filename) {
        $filename = $self-&gt;get_basename(1) . ".dsc";
    }
    open(DSC, "&gt;", $filename) || syserr(_g("cannot write %s"), $filename);
    $fields-&gt;apply_substvars($opts{'substvars'});
    $fields-&gt;output(\*DSC);
    close(DSC);
}

=back

=head1 AUTHOR

RaphaÃ«l Hertzog, E&lt;lt&gt;hertzog@debian.orgE&lt;gt&gt;

=cut

# vim: set et sw=4 ts=8
1;
</pre></body></html>