2010-02-03 16:34:52 +01:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
|
|
|
|
2010-12-05 18:50:29 +01:00
|
|
|
use SSH;
|
2007-02-22 00:14:53 +01:00
|
|
|
|
2008-11-20 16:44:59 +01:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
|
2007-02-22 00:14:53 +01:00
|
|
|
|
|
|
|
|
2007-02-22 16:48:20 +01:00
|
|
|
if (scalar @ARGV < 1) {
|
|
|
|
print STDERR <<EOF
|
2007-10-22 14:05:18 +02:00
|
|
|
Usage: nix-copy-closure [--from | --to] HOSTNAME [--sign] [--gzip] PATHS...
|
2007-02-22 16:48:20 +01:00
|
|
|
EOF
|
|
|
|
;
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-22 00:14:53 +01:00
|
|
|
# Get the target host.
|
2007-03-26 22:49:22 +02:00
|
|
|
my $sshHost;
|
2007-02-22 16:48:20 +01:00
|
|
|
|
|
|
|
my $sign = 0;
|
2007-02-22 00:14:53 +01:00
|
|
|
|
2010-02-04 02:39:23 +01:00
|
|
|
my $compressor = "";
|
|
|
|
my $decompressor = "";
|
2007-02-22 17:42:01 +01:00
|
|
|
|
2007-03-26 22:49:22 +02:00
|
|
|
my $toMode = 1;
|
|
|
|
|
2007-02-22 00:14:53 +01:00
|
|
|
|
|
|
|
# !!! Copied from nix-pack-closure, should put this in a module.
|
|
|
|
my @storePaths = ();
|
|
|
|
|
|
|
|
while (@ARGV) {
|
2007-03-26 22:49:22 +02:00
|
|
|
my $arg = shift @ARGV;
|
2007-03-26 23:05:17 +02:00
|
|
|
|
2007-03-26 22:49:22 +02:00
|
|
|
if ($arg eq "--sign") {
|
2007-02-22 16:48:20 +01:00
|
|
|
$sign = 1;
|
|
|
|
}
|
2007-03-26 23:05:17 +02:00
|
|
|
elsif ($arg eq "--gzip") {
|
2010-02-04 02:39:23 +01:00
|
|
|
$compressor = "| gzip";
|
|
|
|
$decompressor = "gunzip |";
|
2007-02-22 17:42:01 +01:00
|
|
|
}
|
2007-03-26 23:05:17 +02:00
|
|
|
elsif ($arg eq "--from") {
|
|
|
|
$toMode = 0;
|
|
|
|
}
|
|
|
|
elsif ($arg eq "--to") {
|
|
|
|
$toMode = 1;
|
|
|
|
}
|
|
|
|
elsif (!defined $sshHost) {
|
2007-03-26 22:49:22 +02:00
|
|
|
$sshHost = $arg;
|
|
|
|
}
|
2007-03-26 23:05:17 +02:00
|
|
|
else {
|
|
|
|
push @storePaths, $arg;
|
|
|
|
}
|
2007-03-26 22:49:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-03 21:35:37 +01:00
|
|
|
openSSHConnection $sshHost or die "$0: unable to start SSH\n";
|
2010-02-03 16:34:52 +01:00
|
|
|
|
|
|
|
|
2007-03-26 22:49:22 +02:00
|
|
|
if ($toMode) { # Copy TO the remote machine.
|
|
|
|
|
|
|
|
my @allStorePaths;
|
|
|
|
|
2009-03-28 22:10:29 +01:00
|
|
|
# Get the closure of this path.
|
2010-12-15 09:39:37 +01:00
|
|
|
my $pid = open(READ, "set -f; $binDir/nix-store --query --requisites @storePaths|") or die;
|
2007-02-22 00:14:53 +01:00
|
|
|
|
2009-03-28 22:10:29 +01:00
|
|
|
while (<READ>) {
|
|
|
|
chomp;
|
|
|
|
die "bad: $_" unless /^\//;
|
|
|
|
push @allStorePaths, $_;
|
2007-02-22 00:14:53 +01:00
|
|
|
}
|
|
|
|
|
2009-03-28 22:10:29 +01:00
|
|
|
close READ or die "nix-store failed: $?";
|
|
|
|
|
2007-02-22 00:14:53 +01:00
|
|
|
|
2007-03-26 22:49:22 +02:00
|
|
|
# Ask the remote host which paths are invalid.
|
2010-12-15 09:39:37 +01:00
|
|
|
open(READ, "set -f; ssh $sshHost @sshOpts nix-store --check-validity --print-invalid @allStorePaths|");
|
2007-03-26 22:49:22 +02:00
|
|
|
my @missing = ();
|
|
|
|
while (<READ>) {
|
|
|
|
chomp;
|
|
|
|
push @missing, $_;
|
|
|
|
}
|
|
|
|
close READ or die;
|
2007-02-22 00:14:53 +01:00
|
|
|
|
|
|
|
|
2007-03-26 22:49:22 +02:00
|
|
|
# Export the store paths and import them on the remote machine.
|
|
|
|
if (scalar @missing > 0) {
|
2010-02-03 16:34:52 +01:00
|
|
|
print STDERR "copying these missing paths:\n";
|
|
|
|
print STDERR " $_\n" foreach @missing;
|
2007-03-26 22:49:22 +02:00
|
|
|
my $extraOpts = "";
|
|
|
|
$extraOpts .= "--sign" if $sign == 1;
|
2010-12-15 09:39:37 +01:00
|
|
|
system("set -f; nix-store --export $extraOpts @missing $compressor | ssh $sshHost @sshOpts '$decompressor nix-store --import'") == 0
|
2007-03-26 23:05:17 +02:00
|
|
|
or die "copying store paths to remote machine `$sshHost' failed: $?";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
else { # Copy FROM the remote machine.
|
|
|
|
|
|
|
|
# Query the closure of the given store paths on the remote
|
|
|
|
# machine. Paths are assumed to be store paths; there is no
|
|
|
|
# resolution (following of symlinks).
|
|
|
|
my $pid = open(READ,
|
2010-12-15 09:39:37 +01:00
|
|
|
"set -f; ssh @sshOpts $sshHost nix-store --query --requisites @storePaths|") or die;
|
2007-03-26 23:05:17 +02:00
|
|
|
|
|
|
|
my @allStorePaths;
|
|
|
|
|
|
|
|
while (<READ>) {
|
|
|
|
chomp;
|
|
|
|
die "bad: $_" unless /^\//;
|
2009-03-28 22:10:29 +01:00
|
|
|
push @allStorePaths, $_;
|
2007-03-26 23:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
close READ or die "nix-store on remote machine `$sshHost' failed: $?";
|
|
|
|
|
|
|
|
|
|
|
|
# What paths are already valid locally?
|
2010-12-15 09:39:37 +01:00
|
|
|
open(READ, "set -f; @bindir@/nix-store --check-validity --print-invalid @allStorePaths|");
|
2007-03-26 23:05:17 +02:00
|
|
|
my @missing = ();
|
|
|
|
while (<READ>) {
|
|
|
|
chomp;
|
|
|
|
push @missing, $_;
|
|
|
|
}
|
|
|
|
close READ or die;
|
|
|
|
|
|
|
|
|
|
|
|
# Export the store paths on the remote machine and import them on locally.
|
|
|
|
if (scalar @missing > 0) {
|
2010-02-03 16:34:52 +01:00
|
|
|
print STDERR "copying these missing paths:\n";
|
|
|
|
print STDERR " $_\n" foreach @missing;
|
2007-03-26 23:05:17 +02:00
|
|
|
my $extraOpts = "";
|
|
|
|
$extraOpts .= "--sign" if $sign == 1;
|
2010-12-15 09:39:37 +01:00
|
|
|
system("set -f; ssh $sshHost @sshOpts 'nix-store --export $extraOpts @missing $compressor' | $decompressor @bindir@/nix-store --import") == 0
|
2010-02-03 16:34:52 +01:00
|
|
|
or die "copying store paths from remote machine `$sshHost' failed: $?";
|
2007-03-26 22:49:22 +02:00
|
|
|
}
|
2007-02-22 00:14:53 +01:00
|
|
|
|
|
|
|
}
|