2011-11-23 15:13:37 +00:00
|
|
|
|
package Nix::CopyClosure;
|
|
|
|
|
|
2014-08-20 15:00:17 +00:00
|
|
|
|
use utf8;
|
2011-11-23 15:13:37 +00:00
|
|
|
|
use strict;
|
|
|
|
|
use Nix::Config;
|
|
|
|
|
use Nix::Store;
|
2014-07-11 14:02:19 +00:00
|
|
|
|
use Nix::SSH;
|
2013-04-11 17:52:21 +00:00
|
|
|
|
use List::Util qw(sum);
|
2014-07-10 09:51:22 +00:00
|
|
|
|
use IPC::Open2;
|
|
|
|
|
|
|
|
|
|
|
2014-07-11 14:02:19 +00:00
|
|
|
|
sub copyToOpen {
|
2014-07-24 15:11:54 +00:00
|
|
|
|
my ($from, $to, $sshHost, $storePaths, $includeOutputs, $dryRun, $sign, $useSubstitutes) = @_;
|
2011-11-23 15:13:37 +00:00
|
|
|
|
|
2014-07-11 14:02:19 +00:00
|
|
|
|
$useSubstitutes = 0 if $dryRun || !defined $useSubstitutes;
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
2011-11-23 15:13:37 +00:00
|
|
|
|
# Get the closure of this path.
|
|
|
|
|
my @closure = reverse(topoSortPaths(computeFSClosure(0, $includeOutputs,
|
|
|
|
|
map { followLinksToStorePath $_ } @{$storePaths})));
|
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
# Send the "query valid paths" command with the "lock" option
|
2014-07-10 12:15:12 +00:00
|
|
|
|
# enabled. This prevents a race where the remote host
|
2014-07-10 18:43:04 +00:00
|
|
|
|
# garbage-collect paths that are already there. Optionally, ask
|
|
|
|
|
# the remote host to substitute missing paths.
|
2014-07-11 14:02:19 +00:00
|
|
|
|
syswrite($to, pack("L<x4L<x4L<x4", 1, 1, $useSubstitutes)) or die;
|
|
|
|
|
writeStrings(\@closure, $to);
|
2014-07-10 09:51:22 +00:00
|
|
|
|
|
|
|
|
|
# Get back the set of paths that are already valid on the remote host.
|
|
|
|
|
my %present;
|
2014-07-24 10:24:25 +00:00
|
|
|
|
$present{$_} = 1 foreach readStrings($from);
|
2014-07-10 09:51:22 +00:00
|
|
|
|
|
|
|
|
|
my @missing = grep { !$present{$_} } @closure;
|
|
|
|
|
return if !@missing;
|
|
|
|
|
|
2014-07-10 15:44:18 +00:00
|
|
|
|
my $missingSize = 0;
|
|
|
|
|
$missingSize += (queryPathInfo($_, 1))[3] foreach @missing;
|
|
|
|
|
|
|
|
|
|
printf STDERR "copying %d missing paths (%.2f MiB) to ‘$sshHost’...\n",
|
2014-07-11 12:27:17 +00:00
|
|
|
|
scalar(@missing), $missingSize / (1024**2);
|
2014-07-10 15:44:18 +00:00
|
|
|
|
return if $dryRun;
|
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
# Send the "import paths" command.
|
|
|
|
|
syswrite($to, pack("L<x4", 4)) or die;
|
2014-07-24 15:11:54 +00:00
|
|
|
|
exportPaths(fileno($to), $sign, @missing);
|
2014-08-20 15:00:17 +00:00
|
|
|
|
readInt($from) == 1 or die "remote machine ‘$sshHost’ failed to import closure\n";
|
2014-07-10 09:51:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-07-11 14:02:19 +00:00
|
|
|
|
sub copyTo {
|
2014-10-14 09:01:18 +00:00
|
|
|
|
my ($sshHost, $storePaths, $includeOutputs, $dryRun, $sign, $useSubstitutes) = @_;
|
2014-07-11 14:02:19 +00:00
|
|
|
|
|
|
|
|
|
# Connect to the remote host.
|
|
|
|
|
my ($from, $to);
|
|
|
|
|
eval {
|
2014-10-14 09:01:18 +00:00
|
|
|
|
($from, $to) = connectToRemoteNix($sshHost, []);
|
2014-07-11 14:02:19 +00:00
|
|
|
|
};
|
|
|
|
|
if ($@) {
|
|
|
|
|
chomp $@;
|
|
|
|
|
warn "$@; falling back to old closure copying method\n";
|
2014-11-10 15:03:51 +00:00
|
|
|
|
$@ = "";
|
2014-07-11 14:02:19 +00:00
|
|
|
|
return oldCopyTo(@_);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-24 15:11:54 +00:00
|
|
|
|
copyToOpen($from, $to, $sshHost, $storePaths, $includeOutputs, $dryRun, $sign, $useSubstitutes);
|
2014-07-11 14:02:19 +00:00
|
|
|
|
|
|
|
|
|
close $to;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
# For backwards compatibility with Nix <= 1.7. Will be removed
|
|
|
|
|
# eventually.
|
|
|
|
|
sub oldCopyTo {
|
2014-10-14 09:01:18 +00:00
|
|
|
|
my ($sshHost, $storePaths, $includeOutputs, $dryRun, $sign, $useSubstitutes) = @_;
|
2014-07-10 09:51:22 +00:00
|
|
|
|
|
2014-07-11 14:02:19 +00:00
|
|
|
|
# Get the closure of this path.
|
|
|
|
|
my @closure = reverse(topoSortPaths(computeFSClosure(0, $includeOutputs,
|
|
|
|
|
map { followLinksToStorePath $_ } @{$storePaths})));
|
|
|
|
|
|
2014-07-10 18:43:04 +00:00
|
|
|
|
# Optionally use substitutes on the remote host.
|
|
|
|
|
if (!$dryRun && $useSubstitutes) {
|
2014-10-14 09:01:18 +00:00
|
|
|
|
system "ssh $sshHost @globalSshOpts nix-store -r --ignore-unknown @closure";
|
2014-07-10 18:43:04 +00:00
|
|
|
|
# Ignore exit status because this is just an optimisation.
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-23 15:13:37 +00:00
|
|
|
|
# Ask the remote host which paths are invalid. Because of limits
|
|
|
|
|
# to the command line length, do this in chunks. Eventually,
|
|
|
|
|
# we'll want to use ‘--from-stdin’, but we can't rely on the
|
|
|
|
|
# target having this option yet.
|
2014-07-10 09:51:22 +00:00
|
|
|
|
my @missing;
|
2013-04-11 17:52:21 +00:00
|
|
|
|
my $missingSize = 0;
|
2014-07-11 14:02:19 +00:00
|
|
|
|
while (scalar(@closure) > 0) {
|
|
|
|
|
my @ps = splice(@closure, 0, 1500);
|
2014-10-14 09:01:18 +00:00
|
|
|
|
open(READ, "set -f; ssh $sshHost @globalSshOpts nix-store --check-validity --print-invalid @ps|");
|
2011-11-23 15:13:37 +00:00
|
|
|
|
while (<READ>) {
|
|
|
|
|
chomp;
|
|
|
|
|
push @missing, $_;
|
2013-04-11 17:52:21 +00:00
|
|
|
|
my ($deriver, $narHash, $time, $narSize, $refs) = queryPathInfo($_, 1);
|
|
|
|
|
$missingSize += $narSize;
|
2011-11-23 15:13:37 +00:00
|
|
|
|
}
|
|
|
|
|
close READ or die;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Export the store paths and import them on the remote machine.
|
|
|
|
|
if (scalar @missing > 0) {
|
|
|
|
|
print STDERR "copying ", scalar @missing, " missing paths to ‘$sshHost’...\n";
|
|
|
|
|
unless ($dryRun) {
|
2014-10-14 09:01:18 +00:00
|
|
|
|
open SSH, "| ssh $sshHost @globalSshOpts 'nix-store --import' > /dev/null" or die;
|
2011-11-23 15:13:37 +00:00
|
|
|
|
exportPaths(fileno(SSH), $sign, @missing);
|
2014-08-20 15:00:17 +00:00
|
|
|
|
close SSH or die "copying store paths to remote machine ‘$sshHost’ failed: $?";
|
2011-11-23 15:13:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1;
|