2005-01-19 22:55:02 +01:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2003-10-16 15:13:39 +02:00
|
|
|
use strict;
|
2006-10-04 20:58:11 +02:00
|
|
|
use File::Temp qw(tempdir);
|
2004-12-28 22:11:28 +01:00
|
|
|
use readmanifest;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-03-15 12:12:48 +01:00
|
|
|
my $hashAlgo = "sha256";
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $tmpDir = tempdir("nix-push.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
or die "cannot create a temporary directory";
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $nixExpr = "$tmpDir/create-nars.nix";
|
|
|
|
my $manifest = "$tmpDir/MANIFEST";
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2004-04-21 16:54:05 +02:00
|
|
|
my $curl = "@curl@ --fail --silent";
|
|
|
|
my $extraCurlFlags = ${ENV{'CURL_FLAGS'}};
|
|
|
|
$curl = "$curl $extraCurlFlags" if defined $extraCurlFlags;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"};
|
|
|
|
$binDir = "@bindir@" unless defined $binDir;
|
|
|
|
|
|
|
|
my $dataDir = $ENV{"NIX_DATA_DIR"};
|
|
|
|
$dataDir = "@datadir@" unless defined $dataDir;
|
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
# Parse the command line.
|
2005-01-25 18:08:52 +01:00
|
|
|
my $localCopy;
|
|
|
|
my $localArchivesDir;
|
|
|
|
my $localManifestFile;
|
|
|
|
|
2006-08-08 17:42:33 +02:00
|
|
|
my $targetArchivesUrl;
|
2006-08-01 15:15:55 +02:00
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my $archivesPutURL;
|
|
|
|
my $archivesGetURL;
|
|
|
|
my $manifestPutURL;
|
2005-01-25 18:08:52 +01:00
|
|
|
|
2006-09-20 17:04:04 +02:00
|
|
|
sub showSyntax {
|
|
|
|
print STDERR <<EOF
|
|
|
|
Usage: nix-push --copy ARCHIVES_DIR MANIFEST_FILE PATHS...
|
|
|
|
or: nix-push ARCHIVES_PUT_URL ARCHIVES_GET_URL MANIFEST_PUT_URL PATHS...
|
|
|
|
|
|
|
|
`nix-push' copies or uploads the closure of PATHS to the given
|
|
|
|
destination.
|
|
|
|
EOF
|
|
|
|
; # `
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
showSyntax if scalar @ARGV < 1;
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
if ($ARGV[0] eq "--copy") {
|
2006-09-20 17:04:04 +02:00
|
|
|
showSyntax if scalar @ARGV < 3;
|
2005-01-25 18:08:52 +01:00
|
|
|
$localCopy = 1;
|
|
|
|
shift @ARGV;
|
|
|
|
$localArchivesDir = shift @ARGV;
|
|
|
|
$localManifestFile = shift @ARGV;
|
2006-08-01 15:15:55 +02:00
|
|
|
if ($ARGV[0] eq "--target") {
|
|
|
|
shift @ARGV;
|
2006-08-08 17:42:33 +02:00
|
|
|
$targetArchivesUrl = shift @ARGV;
|
2006-08-01 15:15:55 +02:00
|
|
|
}
|
|
|
|
else {
|
2006-08-09 21:37:23 +02:00
|
|
|
$targetArchivesUrl = "file://$localArchivesDir";
|
2006-08-01 15:15:55 +02:00
|
|
|
}
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
|
|
|
else {
|
2006-09-20 17:04:04 +02:00
|
|
|
showSyntax if scalar @ARGV < 3;
|
2005-01-25 18:08:52 +01:00
|
|
|
$localCopy = 0;
|
2005-02-24 15:06:18 +01:00
|
|
|
$archivesPutURL = shift @ARGV;
|
|
|
|
$archivesGetURL = shift @ARGV;
|
|
|
|
$manifestPutURL = shift @ARGV;
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
# From the given store paths, determine the set of requisite store
|
|
|
|
# paths, i.e, the paths required to realise them.
|
2004-12-28 22:11:28 +01:00
|
|
|
my %storePaths;
|
2004-01-14 12:13:08 +01:00
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
foreach my $path (@ARGV) {
|
|
|
|
die unless $path =~ /^\//;
|
2003-07-10 15:41:28 +02:00
|
|
|
|
|
|
|
# Get all paths referenced by the normalisation of the given
|
2003-10-07 14:27:49 +02:00
|
|
|
# Nix expression.
|
2005-09-21 19:14:52 +02:00
|
|
|
my $pid = open(READ,
|
2005-01-25 18:08:52 +01:00
|
|
|
"$binDir/nix-store --query --requisites --force-realise " .
|
2005-09-21 19:14:52 +02:00
|
|
|
"--include-outputs '$path'|") or die;
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
while (<READ>) {
|
2003-07-10 21:27:46 +02:00
|
|
|
chomp;
|
2003-07-21 23:34:56 +02:00
|
|
|
die "bad: $_" unless /^\//;
|
2004-12-28 22:11:28 +01:00
|
|
|
$storePaths{$_} = "";
|
2003-07-10 15:41:28 +02:00
|
|
|
}
|
2005-09-21 19:14:52 +02:00
|
|
|
|
|
|
|
close READ or die "nix-store failed: $?";
|
2003-12-01 17:34:35 +01:00
|
|
|
}
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
my @storePaths = keys %storePaths;
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
|
2003-12-01 17:34:35 +01:00
|
|
|
# For each path, create a Nix expression that turns the path into
|
|
|
|
# a Nix archive.
|
2006-10-04 20:58:11 +02:00
|
|
|
open NIX, ">$nixExpr";
|
2003-12-01 17:34:35 +01:00
|
|
|
print NIX "[";
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
foreach my $storePath (@storePaths) {
|
2006-09-25 12:29:25 +02:00
|
|
|
die unless ($storePath =~ /\/[0-9a-z]{32}[^\"\\\$]*$/);
|
2003-12-01 17:34:35 +01:00
|
|
|
|
|
|
|
# Construct a Nix expression that creates a Nix archive.
|
|
|
|
my $nixexpr =
|
2005-01-25 18:08:52 +01:00
|
|
|
"((import $dataDir/nix/corepkgs/nar/nar.nix) " .
|
2006-09-25 12:29:25 +02:00
|
|
|
"{storePath = builtins.toPath \"$storePath\"; system = \"@system@\"; hashAlgo = \"$hashAlgo\";}) ";
|
2003-12-01 17:34:35 +01:00
|
|
|
|
|
|
|
print NIX $nixexpr;
|
2003-08-05 14:30:06 +02:00
|
|
|
}
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2003-11-22 21:39:51 +01:00
|
|
|
print NIX "]";
|
|
|
|
close NIX;
|
2003-08-05 14:30:06 +02:00
|
|
|
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
# Instantiate store expressions from the Nix expression.
|
2005-02-24 15:06:18 +01:00
|
|
|
my @storeExprs;
|
2004-01-14 12:13:08 +01:00
|
|
|
print STDERR "instantiating store expressions...\n";
|
2006-10-04 20:58:11 +02:00
|
|
|
my $pid = open(READ, "$binDir/nix-instantiate $nixExpr|")
|
2005-03-15 12:12:48 +01:00
|
|
|
or die "cannot run nix-instantiate";
|
|
|
|
while (<READ>) {
|
2003-08-05 14:30:06 +02:00
|
|
|
chomp;
|
2003-10-16 15:13:39 +02:00
|
|
|
die unless /^\//;
|
2005-02-24 15:06:18 +01:00
|
|
|
push @storeExprs, $_;
|
2003-08-05 14:30:06 +02:00
|
|
|
}
|
2005-09-21 19:14:52 +02:00
|
|
|
close READ or die "nix-instantiate failed: $?";
|
2003-07-10 15:41:28 +02:00
|
|
|
|
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
# Realise the store expressions.
|
2003-08-05 14:30:06 +02:00
|
|
|
print STDERR "creating archives...\n";
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my @narPaths;
|
2004-01-14 12:13:08 +01:00
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my @tmp = @storeExprs;
|
2004-01-14 12:13:08 +01:00
|
|
|
while (scalar @tmp > 0) {
|
|
|
|
my $n = scalar @tmp;
|
|
|
|
if ($n > 256) { $n = 256 };
|
|
|
|
my @tmp2 = @tmp[0..$n - 1];
|
|
|
|
@tmp = @tmp[$n..scalar @tmp - 1];
|
|
|
|
|
2005-10-29 20:17:45 +02:00
|
|
|
# Note: we disable build hooks because of the impure path
|
|
|
|
# reference (see above). Even if that is fixed, using a hook
|
|
|
|
# probably wouldn't make that much sense; pumping lots of data
|
|
|
|
# around just to compress them won't gain that much.
|
2005-11-17 14:58:23 +01:00
|
|
|
$ENV{"NIX_BUILD_HOOK"} = "";
|
|
|
|
my $pid = open(READ, "$binDir/nix-store --realise @tmp2|")
|
2005-03-15 12:12:48 +01:00
|
|
|
or die "cannot run nix-store";
|
|
|
|
while (<READ>) {
|
2004-01-14 12:13:08 +01:00
|
|
|
chomp;
|
|
|
|
die unless (/^\//);
|
2005-02-24 15:06:18 +01:00
|
|
|
push @narPaths, "$_";
|
2004-01-14 12:13:08 +01:00
|
|
|
}
|
2005-09-21 19:14:52 +02:00
|
|
|
close READ or die "nix-store failed: $?";
|
2003-07-10 15:41:28 +02:00
|
|
|
}
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
|
2003-10-16 15:13:39 +02:00
|
|
|
# Create the manifest.
|
|
|
|
print STDERR "creating manifest...\n";
|
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
my %narFiles;
|
|
|
|
my %patches;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my @narArchives;
|
2004-12-28 22:11:28 +01:00
|
|
|
for (my $n = 0; $n < scalar @storePaths; $n++) {
|
|
|
|
my $storePath = $storePaths[$n];
|
2005-02-24 15:06:18 +01:00
|
|
|
my $narDir = $narPaths[$n];
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
$storePath =~ /\/([^\/]*)$/;
|
2003-10-16 15:13:39 +02:00
|
|
|
my $basename = $1;
|
|
|
|
defined $basename or die;
|
|
|
|
|
2005-03-15 12:12:48 +01:00
|
|
|
open HASH, "$narDir/narbz2-hash" or die "cannot open narbz2-hash";
|
|
|
|
my $narbz2Hash = <HASH>;
|
2004-12-13 17:56:18 +01:00
|
|
|
chomp $narbz2Hash;
|
2005-03-15 12:12:48 +01:00
|
|
|
$narbz2Hash =~ /^[0-9a-z]+$/ or die "invalid hash";
|
|
|
|
close HASH;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-03-15 12:12:48 +01:00
|
|
|
open HASH, "$narDir/nar-hash" or die "cannot open nar-hash";
|
|
|
|
my $narHash = <HASH>;
|
2004-12-13 17:56:18 +01:00
|
|
|
chomp $narHash;
|
2005-03-15 12:12:48 +01:00
|
|
|
$narHash =~ /^[0-9a-z]+$/ or die "invalid hash";
|
|
|
|
close HASH;
|
2004-12-13 17:56:18 +01:00
|
|
|
|
2005-03-14 16:09:53 +01:00
|
|
|
my $narName = "$narbz2Hash.nar.bz2";
|
|
|
|
|
|
|
|
my $narFile = "$narDir/$narName";
|
|
|
|
(-f $narFile) or die "narfile for $storePath not found";
|
|
|
|
push @narArchives, $narFile;
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my $narbz2Size = (stat $narFile)[7];
|
2004-12-13 17:56:18 +01:00
|
|
|
|
2005-02-09 13:57:13 +01:00
|
|
|
my $references = `$binDir/nix-store --query --references '$storePath'`;
|
|
|
|
die "cannot query references for `$storePath'" if $? != 0;
|
|
|
|
$references = join(" ", split(" ", $references));
|
|
|
|
|
|
|
|
my $deriver = `$binDir/nix-store --query --deriver '$storePath'`;
|
|
|
|
die "cannot query deriver for `$storePath'" if $? != 0;
|
|
|
|
chomp $deriver;
|
|
|
|
$deriver = "" if $deriver eq "unknown-deriver";
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
my $url;
|
|
|
|
if ($localCopy) {
|
2006-08-08 17:42:33 +02:00
|
|
|
$url = "$targetArchivesUrl/$narName";
|
2005-01-25 18:08:52 +01:00
|
|
|
} else {
|
2005-03-14 16:09:53 +01:00
|
|
|
$url = "$archivesGetURL/$narName";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
2004-12-28 22:11:28 +01:00
|
|
|
$narFiles{$storePath} = [
|
2005-01-25 18:08:52 +01:00
|
|
|
{ url => $url
|
2005-03-15 12:12:48 +01:00
|
|
|
, hash => "$hashAlgo:$narbz2Hash"
|
2004-12-28 22:11:28 +01:00
|
|
|
, size => $narbz2Size
|
2005-03-15 12:12:48 +01:00
|
|
|
, narHash => "$hashAlgo:$narHash"
|
2005-01-25 18:08:52 +01:00
|
|
|
, references => $references
|
2005-02-09 13:57:13 +01:00
|
|
|
, deriver => $deriver
|
2004-12-28 22:11:28 +01:00
|
|
|
}
|
|
|
|
];
|
2003-10-16 15:13:39 +02:00
|
|
|
}
|
|
|
|
|
2005-02-09 13:57:13 +01:00
|
|
|
writeManifest $manifest, \%narFiles, \%patches;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
sub copyFile {
|
|
|
|
my $src = shift;
|
|
|
|
my $dst = shift;
|
2006-09-25 12:44:27 +02:00
|
|
|
system("@coreutils@/cp", $src, "$dst.tmp") == 0 or die "cannot copy file";
|
2005-01-25 18:08:52 +01:00
|
|
|
rename("$dst.tmp", "$dst") or die "cannot rename file";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
# Upload the archives.
|
|
|
|
print STDERR "uploading archives...\n";
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
sub archiveExists {
|
|
|
|
my $name = shift;
|
|
|
|
print STDERR " HEAD on $archivesGetURL/$name\n";
|
|
|
|
return system("$curl --head $archivesGetURL/$name > /dev/null") == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $narArchive (@narArchives) {
|
|
|
|
|
|
|
|
$narArchive =~ /\/([^\/]*)$/;
|
2004-01-14 12:13:08 +01:00
|
|
|
my $basename = $1;
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
if ($localCopy) {
|
|
|
|
if (! -f "$localArchivesDir/$basename") {
|
2005-02-24 15:06:18 +01:00
|
|
|
print STDERR " $narArchive\n";
|
|
|
|
copyFile $narArchive, "$localArchivesDir/$basename";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2005-02-24 15:06:18 +01:00
|
|
|
if (!archiveExists("$basename")) {
|
|
|
|
print STDERR " $narArchive\n";
|
2005-01-25 18:08:52 +01:00
|
|
|
system("$curl --show-error --upload-file " .
|
2005-02-24 15:06:18 +01:00
|
|
|
"'$narArchive' '$archivesPutURL/$basename' > /dev/null") == 0 or
|
|
|
|
die "curl failed on $narArchive: $?";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
}
|
2003-07-10 22:34:29 +02:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Upload the manifest.
|
|
|
|
print STDERR "uploading manifest...\n";
|
2005-01-25 18:08:52 +01:00
|
|
|
if ($localCopy) {
|
|
|
|
copyFile $manifest, $localManifestFile;
|
2007-09-04 17:38:09 +02:00
|
|
|
copyFile "$manifest.bz2", "$localManifestFile.bz2";
|
2005-01-25 18:08:52 +01:00
|
|
|
} else {
|
2007-08-15 11:24:06 +02:00
|
|
|
system("$curl --show-error --upload-file " .
|
2005-02-24 15:06:18 +01:00
|
|
|
"'$manifest' '$manifestPutURL' > /dev/null") == 0 or
|
2005-01-25 18:08:52 +01:00
|
|
|
die "curl failed on $manifest: $?";
|
2007-09-04 17:38:09 +02:00
|
|
|
system("$curl --show-error --upload-file " .
|
|
|
|
"'$manifest'.bz2 '$manifestPutURL'.bz2 > /dev/null") == 0 or
|
|
|
|
die "curl failed on $manifest: $?";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|