]> git.proxmox.com Git - aab.git/blobdiff - PVE/AAB.pm
change `pacman -Sy` to `-Syy`, cleanup whitespace
[aab.git] / PVE / AAB.pm
index 5bab20013c609df454e4913d92fb625d99c99565..77410adf6bd2b4d59fc6e97d39b64ca8fa1f66ab 100644 (file)
@@ -7,6 +7,7 @@ use File::Path;
 use File::Copy;
 use IO::File;
 use IO::Select;
+use IPC::Open2;
 use IPC::Open3;
 use UUID;
 use Cwd;
@@ -100,7 +101,7 @@ sub read_config {
            my $long = $2;
            $long =~ s/^\s+/ /;
            $res->{description} = $long;
-           chomp $res->{description};      
+           chomp $res->{description};
        } elsif ($rec =~ s/^([^:]+):\s*(.*\S)\s*\n//) {
            my ($key, $value) = (lc ($1), $2);
            if ($key eq 'source' || $key eq 'mirror') {
@@ -116,6 +117,8 @@ sub read_config {
 
     die "unable to parse config file" if $rec;
 
+    $res->{architecture} = 'amd64' if $res->{architecture} eq 'x86_64';
+
     return $res;
 }
 
@@ -130,7 +133,7 @@ sub new {
     die "no 'maintainer' specified\n" if !$config->{maintainer};
 
     my $name = $config->{name} || die "no 'name' specified\n";
-    $name =~ m/^[a-z][0-9a-z\-\*\.]+$/ || 
+    $name =~ m/^[a-z][0-9a-z\-\*\.]+$/ ||
        die "illegal characters in name '$name'\n";
 
     my $targetname;
@@ -165,8 +168,8 @@ sub __sample_config {
     return <<"CFG";
 lxc.arch = $arch
 lxc.include = /usr/share/lxc/config/archlinux.common.conf
-lxc.utsname = localhost
-lxc.rootfs = $self->{rootfs}
+lxc.uts.name = localhost
+lxc.rootfs.path = $self->{rootfs}
 lxc.mount.entry = $self->{pkgcache} $self->{pkgdir} none bind 0 0
 CFG
 }
@@ -235,10 +238,12 @@ sub initialize {
 
     $fh = IO::File->new($self->{'pacman.conf'}, O_WRONLY|O_CREAT|O_EXCL) ||
        die "unable to write pacman config file $self->{'pacman.conf'} - $!";
+    my $arch = $config->{architecture};
+    $arch = 'x86_64' if $arch eq 'amd64';
     print $fh <<"EOF";
 [options]
 HoldPkg = pacman glibc
-Architecture = $config->{architecture}
+Architecture = $arch
 CheckSpace
 SigLevel = Never
 
@@ -248,10 +253,12 @@ $servers
 $servers
 [community]
 $servers
-[multilib]
-$servers
 EOF
 
+    if ($config->{architecture} eq 'x86_64') {
+       print $fh "[multilib]\n$servers\n";
+    }
+
     mkdir $self->{rootfs} || die "unable to create rootfs - $!";
 
     $self->logmsg("configured VE $self->{veid}\n");
@@ -281,7 +288,7 @@ sub ve_status {
        }
     }
     close($fh);
-    
+
     return $res;
 }
 
@@ -304,13 +311,14 @@ sub ve_init {
 
 
     my $veid = $self->{veid};
+    my $conffile = $self->{veconffile};
 
     $self->logmsg ("initialize VE $veid\n");
 
     my $vestat = $self->ve_status();
     if ($vestat->{running}) {
-       $self->run_command ("lxc-stop -n $veid --kill");
-    } 
+       $self->run_command ("lxc-stop -n $veid --rcfile $conffile --kill");
+    }
 
     rmtree $self->{rootfs};
     mkpath $self->{rootfs};
@@ -320,12 +328,13 @@ sub ve_command {
     my ($self, $cmd, $input) = @_;
 
     my $veid = $self->{veid};
+    my $conffile = $self->{veconffile};
 
     if (ref ($cmd) eq 'ARRAY') {
-       unshift @$cmd, 'lxc-attach', '-n', $veid, '--clear-env', '--';
+       unshift @$cmd, 'lxc-attach', '-n', $veid, '--rcfile', $conffile,'--clear-env', '--';
        $self->run_command ($cmd, $input);
     } else {
-       $self->run_command ("lxc-attach -n $veid --clear-env -- $cmd", $input);
+       $self->run_command ("lxc-attach -n $veid --rcfile $conffile --clear-env -- $cmd", $input);
     }
 }
 
@@ -333,9 +342,10 @@ sub ve_exec {
     my ($self, @cmd) = @_;
 
     my $veid = $self->{veid};
+    my $conffile = $self->{veconffile};
 
     my $reader;
-    my $pid = open2($reader, "<&STDIN", 'lxc-attach', '-n', $veid,  '--', @cmd)
+    my $pid = open2($reader, "<&STDIN", 'lxc-attach', '-n', $veid, '--rcfile', $conffile, '--', @cmd)
        or die "unable to exec command";
 
     while (defined (my $line = <$reader>)) {
@@ -373,8 +383,8 @@ sub run_command {
     # catch exec errors
     if ($orig_pid != $$) {
        $self->logmsg ("ERROR: command '$cmdstr' failed - fork failed\n");
-       POSIX::_exit (1); 
-       kill ('KILL', $$); 
+       POSIX::_exit (1);
+       kill ('KILL', $$);
     }
 
     die $err if $err;
@@ -424,7 +434,8 @@ sub start_container {
 sub stop_container {
     my ($self) = @_;
     my $veid = $self->{veid};
-    $self->run_command ("lxc-stop -n $veid --kill");
+    my $conffile = $self->{veconffile};
+    $self->run_command ("lxc-stop -n $veid --rcfile $conffile --kill");
 }
 
 sub pacman_command {
@@ -432,6 +443,7 @@ sub pacman_command {
     my $root = $self->{rootfs};
     return ('/usr/bin/pacman',
             '--root', $root,
+            '--config', $self->{'pacman.conf'},
             '--cachedir', $self->{pkgcache},
             '--noconfirm');
 }
@@ -454,7 +466,7 @@ sub bootstrap {
     mkpath $self->{pkgcache};
     mkpath $self->{pkgdir};
     mkpath "$root/var/lib/pacman";
-    $self->run_command([@pacman, '-Sy']);
+    $self->run_command([@pacman, '-Syy']);
 
     print "Figuring out what to install...\n";
     my $incl = { map { $_ => 1 } @{$self->{incl}} };
@@ -518,10 +530,7 @@ sub bootstrap {
     }
 
     print "Populating keyring...\n";
-    $self->run_command(['mount', '-t', 'devtmpfs', '-o', 'mode=0755,nosuid', 'udev', "$root/dev"]);
-    $self->run_command(['unshare', '--fork', '--pid', 'chroot', "$root", 'pacman-key', '--init']);
-    $self->run_command(['unshare', '--fork', '--pid', 'chroot', "$root", 'pacman-key', '--populate']);
-    $self->run_command(['umount', "$root/dev"]);
+    $self->populate_keyring();
 
     print "Starting container...\n";
     $self->start_container();
@@ -530,6 +539,44 @@ sub bootstrap {
     $self->ve_command(['pacman', '-S', '--needed', '--noconfirm', '--', @$packages]);
 }
 
+sub populate_keyring {
+    my ($self) = @_;
+    my $root = $self->{rootfs};
+
+    # devices needed for gnupg to function:
+    my $devs = {
+       '/dev/null'    => ['c', '1', '3'],
+       '/dev/random'  => ['c', '1', '9'], # fake /dev/random (really urandom)
+       '/dev/urandom' => ['c', '1', '9'],
+       '/dev/tty'     => ['c', '5', '0'],
+    };
+
+    my $cleanup_dev = sub {
+       # remove temporary device files
+       unlink "${root}$_" foreach keys %$devs;
+    };
+    local $SIG{INT} = $SIG{TERM} = $cleanup_dev;
+
+    # at least /dev/null exists as regular file after installing the filesystem package,
+    # and we want to replace /dev/random, so delete devices first
+    &$cleanup_dev();
+
+    foreach my $dev (keys %$devs) {
+       my ($type, $major, $minor) = @{$devs->{$dev}};
+       system('mknod', "${root}${dev}", $type, $major, $minor);
+    }
+
+    # generate weak master key and populate the keyring
+    system('unshare', '--fork', '--pid', 'chroot', "$root", 'pacman-key', '--init') == 0
+       or die "failed to initialize keyring: $?";
+    system('unshare', '--fork', '--pid', 'chroot', "$root", 'pacman-key', '--populate') == 0
+       or die "failed to populate keyring: $?";
+
+    &$cleanup_dev();
+    # reset to original state
+    system('touch', "$root/dev/null");
+}
+
 sub install {
     my ($self, $pkglist) = @_;
 
@@ -551,6 +598,7 @@ sub write_config {
     $data .= "Section: $config->{section}\n";
     $data .= "Maintainer: $config->{maintainer}\n";
     $data .= "Architecture: $config->{architecture}\n";
+    $data .= "Infopage: https://www.archlinux.org\n";
     $data .= "Installed-Size: $size\n";
 
     # optional
@@ -577,6 +625,9 @@ sub finalize {
     unlink $file;
     rename_file($file.'.aab_orig', $file);
 
+    print "Removing weak temporary pacman keyring...\n";
+    rmtree("$rootdir/etc/pacman.d/gnupg");
+
     my $sizestr = $self->run_command("du -sm $rootdir", undef, 1);
     my $size;
     if ($sizestr =~ m/^(\d+)\s+\Q$rootdir\E$/) {
@@ -602,6 +653,7 @@ sub finalize {
 sub enter {
     my ($self) = @_;
     my $veid = $self->{veid};
+    my $conffile = $self->{veconffile};
 
     my $vestat = $self->ve_status();
     if (!$vestat->{exist}) {
@@ -613,7 +665,7 @@ sub enter {
        $self->start_container();
     }
 
-    system ("lxc-attach -n $veid --clear-env");
+    system ("lxc-attach -n $veid --rcfile $conffile --clear-env");
 }
 
 sub clean {