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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
package Debian::ExtRepo::Commands::Enable;
use v5.28;
use warnings;
use Debian::ExtRepo::Data qw/fetch_repodata/;
use Dpkg::Control::HashCore;
use LWP::UserAgent;
use Crypt::Digest::SHA256 qw/sha256_hex/;
use autodie qw/system/;
sub run {
my $config = shift;
my $mirror = shift;
my $update_mode = shift;
my $reponame = shift;
my $conf = Dpkg::Control::HashCore->new;
if(!length($reponame)) {
FILE:
foreach my $file(glob("/etc/apt/sources.list.d/extrepo_*.sources")) {
next unless $file =~ /extrepo_(.*)\.sources/;
my $repo = $1;
eval {
run($config, $mirror, $update_mode, $repo);
};
if($@) {
if ($@ =~ /Repository.*does not exist/) {
say "The repository $repo does not seem to exist (anymore?), so was not updated. Consider 'extrepo disable $repo'";
next FILE;
} else {
die $@;
}
}
}
return;
}
die "Need to be root to modify external repository configuration!\n" unless($< == 0);
umask 0022;
my $extrepos = fetch_repodata($config);
die "Repository $reponame does not exist!" unless exists($extrepos->{$reponame});
my $repo = $extrepos->{$reponame};
if(exists($config->{tor}) && defined($config->{tor}) && $config->{tor} ne "off") {
if($config->{tor} eq "onion") {
if(!exists($repo->{"onion-URIs"})) {
die ".onion URL requested, but the repository $reponame does not have a .onion URL configured.\n";
}
$repo->{source}{URIs} = "tor+" . $repo->{"onion-URIs"};
} elsif($config->{tor} eq "tunnel") {
$repo->{source}{URIs} = "tor+" . $repo->{source}{URIs};
} elsif($config->{tor} eq "auto") {
$repo->{source}{URIs} = "tor+" . (exists($repo->{"onion-URIs"}) ? $repo->{"onion-URIs"} : $repo->{source}{URIs});
} elsif($config->{tor} eq "if-onion") {
$repo->{source}{URIs} = exists($repo->{"onion-URIs"}) ? ("tor+" . $repo->{"onion-URIs"}) : $repo->{source}{URIs};
} else {
die "invalid value for tor configuration: found " . $config->{tor} . ", expecting one of onion, tunnel, auto, if-onion, or off";
}
}
my $aptfile = "/etc/apt/sources.list.d/extrepo_$reponame.sources";
if(!$update_mode && -f $aptfile) {
$conf->load($aptfile);
$conf->{Enabled} = "yes";
if($mirror){
$conf->{'URIs'} = $mirror;
}
$conf->set_output_order(sort(keys %$conf));
$conf->save($aptfile);
print "Configuration for $reponame enabled.\n\nNote that configuration for this repository already existed; it was enabled, but not updated.\nFor updates, see the update command.\n";
return;
}
my $ua = LWP::UserAgent->new;
$ua->env_proxy;
my $key_url = join('/', $config->{url}, $config->{dist}, $config->{version}, $repo->{"gpg-key-file"});
my $response = $ua->get($key_url);
if(!$response->is_success) {
print "Could not download gpg public key for secure apt of repository $reponame:\n";
die $response->status_line;
}
my $key_data = $response->decoded_content;
if(sha256_hex($key_data) ne $repo->{"gpg-key-checksum"}{sha256}) {
die "Could not enable repository $reponame: GPG key checksum is invalid!\n";
}
my @components;
my $components;
my $enabled = 0;
my %enabled_policies;
foreach my $policy(@{$config->{enabled_policies}}) {
$enabled_policies{$policy}=1;
}
if(exists($repo->{policies})) {
foreach my $component(keys %{$repo->{policies}}) {
if(exists($enabled_policies{$repo->{policies}{$component}})) {
push @components, $component;
}
}
if(scalar(@components) > 0) {
$enabled = 1;
}
$components = join(" ", @components);
} else {
if(grep({$_ eq $repo->{policy}} @{$config->{enabled_policies}})) {
$enabled = 1;
}
}
if(!$enabled) {
die "None of the license inclusion policies in $reponame were enabled. Please edit /etc/extrepo/config.yaml and enable the required policies\n";
}
if(exists($repo->{source}{Architectures})) {
my $sysarch = qx/dpkg --print-architecture/; chomp $sysarch;
my $foreign_arch = qx/dpkg --print-foreign-architectures/;
my @targetarchs = ($sysarch, split(/\s+/, $foreign_arch));
my @havearchs = split /\s+/, $repo->{source}{Architectures};
my $found = 0;
ARCH:
foreach my $arch(@havearchs) {
if (grep { $arch eq $_ } @targetarchs) {
$found = 1;
last ARCH;
}
}
if(!$found) {
die "The repository $reponame does not support any of the architectures enabled on this system. Not proceeding with this repository.\n";
}
}
DEB822KEY:
foreach my $key(keys %{$repo->{source}}) {
my $value = $repo->{source}{$key};
$value =~ s/<COMPONENTS>/$components/g;
next DEB822KEY if(lc($key) eq "architectures");
$conf->{$key} = $value;
}
# If the file existed already, and we're in update mode,
# load the enabled/disabled value from it.
if($update_mode && -f $aptfile) {
my $temp_conf = Dpkg::Control::HashCore->new;
$temp_conf->load($aptfile);
if(exists($temp_conf->{Enabled})) {
$conf->{Enabled} = $temp_conf->{Enabled};
if($conf->{Enabled} eq "no") {
print "Configuration for $reponame will be updated, but note the repository isn't enabled.\n";
}
}
}
my $key_file = "/var/lib/extrepo/keys/$reponame.asc";
open my $key_fh, ">", "$key_file" or die "opening key file: $!";
print $key_fh $key_data;
close $key_fh;
$conf->{"Signed-By"} = $key_file;
if($mirror){
$conf->{'URIs'} = $mirror;
}
$conf->set_output_order(sort(keys %$conf));
$conf->save($aptfile) or die "writing apt config: $!\n";
if(!$update_mode && exists($repo->{"post-enable-commands"})) {
say "Running post-enable-commands for $reponame:";
say " " . join("\n ", @{$repo->{"post-enable-commands"}});
say "Interrupt (with Ctrl-C) in the next 10 seconds to prevent this from happening.\nNote that doing so may make your repository and/or your apt configuration unusable.";
$| = 1;
foreach my $count(1..10) {
print "$count...";
sleep 1;
}
$| = 0;
say "you have been warned!";
foreach my $command(@{$repo->{"post-enable-commands"}}) {
system($command);
}
}
}
1;
|