convert gpg keyring processing to less nesting and abort earlier if possible
This commit is contained in:
parent
c26ec4d6fc
commit
ae15fe3d9f
1 changed files with 88 additions and 86 deletions
82
mmdebstrap
82
mmdebstrap
|
@ -3183,10 +3183,16 @@ sub main() {
|
|||
) {
|
||||
$keyring
|
||||
= '/usr/share/keyrings/debian-archive-keyring.gpg';
|
||||
} else {
|
||||
last;
|
||||
}
|
||||
|
||||
# we can only check if we need the signed-by entry if we u
|
||||
# automatically chosen keyring exists
|
||||
if (defined $keyring && -e $keyring) {
|
||||
if (!defined $keyring || !-e $keyring) {
|
||||
last;
|
||||
}
|
||||
|
||||
# we can only check key material if gpg is installed
|
||||
my $gpghome = tempdir(
|
||||
"mmdebstrap.gpghome.XXXXXXXXXXXX",
|
||||
|
@ -3209,14 +3215,32 @@ sub main() {
|
|||
}
|
||||
# we only want to check if the gpg command exists
|
||||
close $fh;
|
||||
if ($? == 0 && defined $ret && !defined $message) {
|
||||
if ($? != 0 || !defined $ret || defined $message) {
|
||||
info "gpg --version failed: cannot determine the right"
|
||||
. " signed-by value";
|
||||
last;
|
||||
}
|
||||
# find all the fingerprints of the keys apt currently
|
||||
# knows about
|
||||
my @keyringopts = ();
|
||||
opendir my $dh, "$options->{apttrustedparts}"
|
||||
or error "cannot read $options->{apttrustedparts}";
|
||||
while (my $filename = readdir $dh) {
|
||||
if ($filename !~ /\.(asc|gpg)$/) {
|
||||
next;
|
||||
}
|
||||
push @keyringopts, '--keyring',
|
||||
"$options->{apttrustedparts}/$filename";
|
||||
}
|
||||
if (-e $options->{apttrusted}) {
|
||||
push @keyringopts, '--keyring', $options->{apttrusted};
|
||||
}
|
||||
my @aptfingerprints = ();
|
||||
my $collect_fingerprints = sub {
|
||||
my $filename = shift;
|
||||
open my $fh, '-|', @gpgcmd, '--keyring',
|
||||
$filename, '--with-colons',
|
||||
if (scalar @keyringopts == 0) {
|
||||
$signedby = " [signed-by=\"$keyring\"]";
|
||||
last;
|
||||
}
|
||||
open my $fh, '-|', @gpgcmd, @keyringopts, '--with-colons',
|
||||
'--list-keys' // error "failed to fork(): $!";
|
||||
while (my $line = <$fh>) {
|
||||
if ($line !~ /^fpr:::::::::([^:]+):/) {
|
||||
|
@ -3225,32 +3249,26 @@ sub main() {
|
|||
push @aptfingerprints, $1;
|
||||
}
|
||||
close $fh;
|
||||
};
|
||||
opendir my $dh, "$options->{apttrustedparts}"
|
||||
or error "cannot read $options->{apttrustedparts}";
|
||||
while (my $filename = readdir $dh) {
|
||||
if ($filename !~ /\.(asc|gpg)$/) {
|
||||
next;
|
||||
if ($? != 0) {
|
||||
error "gpg failed";
|
||||
}
|
||||
$collect_fingerprints->(
|
||||
"$options->{apttrustedparts}/$filename");
|
||||
if (scalar @aptfingerprints == 0) {
|
||||
$signedby = " [signed-by=\"$keyring\"]";
|
||||
last;
|
||||
}
|
||||
if (-e $options->{apttrusted}) {
|
||||
$collect_fingerprints->($options->{apttrusted});
|
||||
}
|
||||
# check if all fingerprints from the keyring that we
|
||||
# guessed are known by apt and only add signed-by
|
||||
# option if that's not the case
|
||||
# check if all fingerprints from the keyring that we guessed
|
||||
# are known by apt and only add signed-by option if that's not
|
||||
# the case
|
||||
my @suitefingerprints = ();
|
||||
open my $suitefh, '-|', @gpgcmd, '--keyring',
|
||||
$keyring, '--with-colons',
|
||||
open my $suitefh, '-|', @gpgcmd, '--keyring', $keyring,
|
||||
'--with-colons',
|
||||
'--list-keys' // error "failed to fork(): $!";
|
||||
while (my $line = <$suitefh>) {
|
||||
if ($line !~ /^fpr:::::::::([^:]+):/) {
|
||||
next;
|
||||
}
|
||||
# if this fingerprint is not known by apt, then we
|
||||
# need to add the signed-by option
|
||||
# if this fingerprint is not known by apt, then we need to
|
||||
# add the signed-by option
|
||||
if (none { $_ eq $1 } @aptfingerprints) {
|
||||
$signedby = " [signed-by=\"$keyring\"]";
|
||||
last;
|
||||
|
@ -3260,22 +3278,6 @@ sub main() {
|
|||
if ($? != 0) {
|
||||
error "gpg failed";
|
||||
}
|
||||
} else {
|
||||
info "gpg --version failed: cannot determine the right"
|
||||
. " signed-by value";
|
||||
}
|
||||
remove_tree($gpghome, { error => \my $err });
|
||||
if (@$err) {
|
||||
for my $diag (@$err) {
|
||||
my ($file, $message) = %$diag;
|
||||
if ($file eq '') {
|
||||
warning "general error: $message";
|
||||
} else {
|
||||
warning "problem unlinking $file: $message";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (scalar @ARGV > 0) {
|
||||
for my $arg (@ARGV) {
|
||||
|
|
Loading…
Reference in a new issue