2004-12-20 16:38:50 +00:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use readmanifest;
|
2006-10-04 18:58:11 +00:00
|
|
|
use POSIX qw(strftime);
|
|
|
|
use File::Temp qw(tempdir);
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2008-11-20 15:44:59 +00:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
STDOUT->autoflush(1);
|
|
|
|
|
2009-02-27 14:06:38 +00:00
|
|
|
my $manifestDir = ($ENV{"NIX_MANIFESTS_DIR"} or "@localstatedir@/nix/manifests");
|
2004-12-30 16:34:54 +00:00
|
|
|
my $logFile = "@localstatedir@/log/nix/downloads";
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
# Load all manifests.
|
|
|
|
my %narFiles;
|
2007-01-23 16:50:19 +00:00
|
|
|
my %localPaths;
|
2004-12-13 13:47:38 +00:00
|
|
|
my %patches;
|
|
|
|
|
|
|
|
for my $manifest (glob "$manifestDir/*.nixmanifest") {
|
2009-03-19 10:02:02 +00:00
|
|
|
my $version = readManifest($manifest, \%narFiles, \%localPaths, \%patches);
|
|
|
|
if ($version < 3) {
|
2005-02-25 16:12:52 +00:00
|
|
|
print STDERR "you have an old-style manifest `$manifest'; please delete it\n";
|
|
|
|
exit 1;
|
|
|
|
}
|
2009-03-19 10:02:02 +00:00
|
|
|
if ($version >= 10) {
|
|
|
|
print STDERR "manifest `$manifest' is too new; please delete it or upgrade Nix\n";
|
|
|
|
exit 1;
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
# Parse the arguments.
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
if ($ARGV[0] eq "--query") {
|
2007-08-12 00:29:28 +00:00
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
while (<STDIN>) {
|
|
|
|
my $cmd = $_; chomp $cmd;
|
|
|
|
|
|
|
|
if ($cmd eq "have") {
|
|
|
|
my $storePath = <STDIN>; chomp $storePath;
|
|
|
|
print STDOUT ((defined $narFiles{$storePath} or defined $localPaths{$storePath})
|
|
|
|
? "1\n" : "0\n");
|
2007-08-12 00:29:28 +00:00
|
|
|
}
|
2008-08-02 12:54:35 +00:00
|
|
|
|
|
|
|
elsif ($cmd eq "info") {
|
|
|
|
my $storePath = <STDIN>; chomp $storePath;
|
|
|
|
my $info;
|
|
|
|
if (defined $narFiles{$storePath}) {
|
|
|
|
$info = @{$narFiles{$storePath}}[0];
|
|
|
|
}
|
|
|
|
elsif (defined $localPaths{$storePath}) {
|
|
|
|
$info = @{$localPaths{$storePath}}[0];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print "0\n";
|
|
|
|
next; # not an error
|
|
|
|
}
|
|
|
|
print "1\n";
|
|
|
|
print "$info->{deriver}\n";
|
|
|
|
my @references = split " ", $info->{references};
|
|
|
|
print scalar @references, "\n";
|
|
|
|
print "$_\n" foreach @references;
|
2008-09-08 11:02:15 +00:00
|
|
|
my $size = $info->{size} || 0;
|
2008-08-04 13:15:47 +00:00
|
|
|
print "$size\n";
|
2007-08-12 00:29:28 +00:00
|
|
|
}
|
2008-08-02 12:54:35 +00:00
|
|
|
|
|
|
|
else { die "unknown command `$cmd'"; }
|
2007-08-12 00:29:28 +00:00
|
|
|
}
|
2008-08-02 12:54:35 +00:00
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($ARGV[0] ne "--substitute") {
|
2010-02-04 09:38:09 +00:00
|
|
|
die;
|
2007-08-12 00:29:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
die unless scalar @ARGV == 2;
|
|
|
|
my $targetPath = $ARGV[1];
|
|
|
|
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
# Create a temporary directory.
|
|
|
|
my $tmpDir = tempdir("nix-download.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
or die "cannot create a temporary directory";
|
|
|
|
|
|
|
|
my $tmpNar = "$tmpDir/nar";
|
|
|
|
my $tmpNar2 = "$tmpDir/nar2";
|
|
|
|
|
|
|
|
|
2008-07-18 15:34:46 +00:00
|
|
|
open LOGFILE, ">>$logFile" or die "cannot open log file $logFile";
|
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
my $date = strftime ("%F %H:%M:%S UTC", gmtime (time));
|
|
|
|
print LOGFILE "$$ get $targetPath $date\n";
|
|
|
|
|
|
|
|
print "\n*** Trying to download/patch `$targetPath'\n";
|
|
|
|
|
|
|
|
|
2007-01-23 16:50:19 +00:00
|
|
|
# If we can copy from a local path, do that.
|
|
|
|
my $localPathList = $localPaths{$targetPath};
|
|
|
|
foreach my $localPath (@{$localPathList}) {
|
|
|
|
my $sourcePath = $localPath->{copyFrom};
|
|
|
|
if (-e $sourcePath) {
|
|
|
|
print "\n*** Step 1/1: copying from $sourcePath\n";
|
2008-11-20 15:44:59 +00:00
|
|
|
system("$binDir/nix-store --dump $sourcePath | $binDir/nix-store --restore $targetPath") == 0
|
2007-01-23 16:50:19 +00:00
|
|
|
or die "cannot copy `$sourcePath' to `$targetPath'";
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
# Build a graph of all store paths that might contribute to the
|
|
|
|
# construction of $targetPath, and the special node "start". The
|
|
|
|
# edges are either patch operations, or downloads of full NAR files.
|
|
|
|
# The latter edges only occur between "start" and a store path.
|
|
|
|
|
|
|
|
my %graph;
|
|
|
|
|
|
|
|
$graph{"start"} = {d => 0, pred => undef, edges => []};
|
|
|
|
|
|
|
|
my @queue = ();
|
|
|
|
my $queueFront = 0;
|
|
|
|
my %done;
|
|
|
|
|
|
|
|
sub addToQueue {
|
|
|
|
my $v = shift;
|
|
|
|
return if defined $done{$v};
|
|
|
|
$done{$v} = 1;
|
|
|
|
push @queue, $v;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub addNode {
|
|
|
|
my $u = shift;
|
|
|
|
$graph{$u} = {d => 999999999999, pred => undef, edges => []}
|
|
|
|
unless defined $graph{$u};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub addEdge {
|
|
|
|
my $u = shift;
|
|
|
|
my $v = shift;
|
|
|
|
my $w = shift;
|
|
|
|
my $type = shift;
|
|
|
|
my $info = shift;
|
|
|
|
addNode $u;
|
|
|
|
push @{$graph{$u}->{edges}},
|
|
|
|
{weight => $w, start => $u, end => $v, type => $type, info => $info};
|
|
|
|
my $n = scalar @{$graph{$u}->{edges}};
|
|
|
|
}
|
|
|
|
|
|
|
|
addToQueue $targetPath;
|
|
|
|
|
2004-12-30 17:09:57 +00:00
|
|
|
sub isValidPath {
|
|
|
|
my $p = shift;
|
2008-11-20 15:44:59 +00:00
|
|
|
return system("$binDir/nix-store --check-validity '$p' 2> /dev/null") == 0;
|
2004-12-30 17:09:57 +00:00
|
|
|
}
|
|
|
|
|
2005-03-14 17:05:42 +00:00
|
|
|
sub parseHash {
|
|
|
|
my $hash = shift;
|
|
|
|
if ($hash =~ /^(.+):(.+)$/) {
|
|
|
|
return ($1, $2);
|
|
|
|
} else {
|
|
|
|
return ("md5", $hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
while ($queueFront < scalar @queue) {
|
|
|
|
my $u = $queue[$queueFront++];
|
2005-01-12 10:37:18 +00:00
|
|
|
# print "$u\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
addNode $u;
|
|
|
|
|
|
|
|
# If the path already exists, it has distance 0 from the "start"
|
|
|
|
# node.
|
2004-12-30 17:09:57 +00:00
|
|
|
if (isValidPath($u)) {
|
2004-12-13 13:47:38 +00:00
|
|
|
addEdge "start", $u, 0, "present", undef;
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
# Add patch edges.
|
|
|
|
my $patchList = $patches{$u};
|
|
|
|
foreach my $patch (@{$patchList}) {
|
2004-12-30 17:09:57 +00:00
|
|
|
if (isValidPath($patch->{basePath})) {
|
|
|
|
# !!! this should be cached
|
2005-03-14 17:05:42 +00:00
|
|
|
my ($baseHashAlgo, $baseHash) = parseHash $patch->{baseHash};
|
2005-03-14 18:55:29 +00:00
|
|
|
my $format = "--base32";
|
|
|
|
$format = "" if $baseHashAlgo eq "md5";
|
2008-11-20 15:44:59 +00:00
|
|
|
my $hash = `$binDir/nix-hash --type '$baseHashAlgo' $format "$patch->{basePath}"`;
|
2004-12-30 17:09:57 +00:00
|
|
|
chomp $hash;
|
2005-03-14 17:05:42 +00:00
|
|
|
if ($hash ne $baseHash) {
|
2005-01-12 10:37:18 +00:00
|
|
|
print LOGFILE "$$ rejecting $patch->{basePath}\n";
|
2004-12-30 17:09:57 +00:00
|
|
|
next;
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
addToQueue $patch->{basePath};
|
|
|
|
addEdge $patch->{basePath}, $u, $patch->{size}, "patch", $patch;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Add NAR file edges to the start node.
|
|
|
|
my $narFileList = $narFiles{$u};
|
|
|
|
foreach my $narFile (@{$narFileList}) {
|
2009-02-19 23:46:37 +00:00
|
|
|
# !!! how to handle files whose size is not known in advance?
|
|
|
|
# For now, assume some arbitrary size (1 MB).
|
|
|
|
addEdge "start", $u, ($narFile->{size} || 1000000), "narfile", $narFile;
|
2004-12-30 17:19:47 +00:00
|
|
|
if ($u eq $targetPath) {
|
2009-02-19 23:46:37 +00:00
|
|
|
my $size = $narFile->{size} || -1;
|
|
|
|
print LOGFILE "$$ full-download-would-be $size\n";
|
2004-12-30 17:19:47 +00:00
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Run Dijkstra's shortest path algorithm to determine the shortest
|
|
|
|
# sequence of download and/or patch actions that will produce
|
|
|
|
# $targetPath.
|
|
|
|
|
|
|
|
sub byDistance { # sort by distance, reversed
|
|
|
|
return -($graph{$a}->{d} <=> $graph{$b}->{d});
|
|
|
|
}
|
|
|
|
|
|
|
|
my @todo = keys %graph;
|
|
|
|
|
|
|
|
while (scalar @todo > 0) {
|
|
|
|
|
|
|
|
# Remove the closest element from the todo list.
|
|
|
|
@todo = sort byDistance @todo;
|
|
|
|
my $u = pop @todo;
|
|
|
|
|
|
|
|
my $u_ = $graph{$u};
|
|
|
|
|
|
|
|
foreach my $edge (@{$u_->{edges}}) {
|
|
|
|
my $v_ = $graph{$edge->{end}};
|
|
|
|
if ($v_->{d} > $u_->{d} + $edge->{weight}) {
|
|
|
|
$v_->{d} = $u_->{d} + $edge->{weight};
|
|
|
|
# Store the edge; to edge->start is actually the
|
|
|
|
# predecessor.
|
|
|
|
$v_->{pred} = $edge;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Retrieve the shortest path from "start" to $targetPath.
|
|
|
|
my @path = ();
|
|
|
|
my $cur = $targetPath;
|
|
|
|
die "don't know how to produce $targetPath\n"
|
|
|
|
unless defined $graph{$targetPath}->{pred};
|
|
|
|
while ($cur ne "start") {
|
|
|
|
push @path, $graph{$cur}->{pred};
|
|
|
|
$cur = $graph{$cur}->{pred}->{start};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Traverse the shortest path, perform the actions described by the
|
|
|
|
# edges.
|
|
|
|
my $curStep = 1;
|
|
|
|
my $maxStep = scalar @path;
|
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
sub downloadFile {
|
|
|
|
my $url = shift;
|
2004-12-13 13:47:38 +00:00
|
|
|
$ENV{"PRINT_PATH"} = 1;
|
|
|
|
$ENV{"QUIET"} = 1;
|
2009-02-19 23:46:37 +00:00
|
|
|
my ($hash, $path) = `$binDir/nix-prefetch-url '$url'`;
|
2005-03-25 14:30:01 +00:00
|
|
|
die "download of `$url' failed" unless $? == 0;
|
2004-12-13 13:47:38 +00:00
|
|
|
chomp $path;
|
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
my $finalNarHash;
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
while (scalar @path > 0) {
|
|
|
|
my $edge = pop @path;
|
|
|
|
my $u = $edge->{start};
|
|
|
|
my $v = $edge->{end};
|
|
|
|
|
|
|
|
print "\n*** Step $curStep/$maxStep: ";
|
|
|
|
|
|
|
|
if ($edge->{type} eq "present") {
|
|
|
|
print "using already present path `$v'\n";
|
2004-12-30 16:34:54 +00:00
|
|
|
print LOGFILE "$$ present $v\n";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
|
|
|
if ($curStep < $maxStep) {
|
|
|
|
# Since this is not the last step, the path will be used
|
|
|
|
# as a base to one or more patches. So turn the base path
|
|
|
|
# into a NAR archive, to which we can apply the patch.
|
|
|
|
print " packing base path...\n";
|
2008-11-20 15:44:59 +00:00
|
|
|
system("$binDir/nix-store --dump $v > $tmpNar") == 0
|
2006-09-25 10:44:27 +00:00
|
|
|
or die "cannot dump `$v'";
|
2005-05-10 14:22:36 +00:00
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($edge->{type} eq "patch") {
|
|
|
|
my $patch = $edge->{info};
|
|
|
|
print "applying patch `$patch->{url}' to `$u' to create `$v'\n";
|
|
|
|
|
2004-12-30 16:34:54 +00:00
|
|
|
print LOGFILE "$$ patch $patch->{url} $patch->{size} $patch->{baseHash} $u $v\n";
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
# Download the patch.
|
|
|
|
print " downloading patch...\n";
|
2009-02-19 23:46:37 +00:00
|
|
|
my $patchPath = downloadFile "$patch->{url}";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2005-05-10 14:22:36 +00:00
|
|
|
# Apply the patch to the NAR archive produced in step 1 (for
|
|
|
|
# the already present path) or a later step (for patch sequences).
|
2004-12-13 13:47:38 +00:00
|
|
|
print " applying patch...\n";
|
2006-09-25 10:44:27 +00:00
|
|
|
system("@libexecdir@/bspatch $tmpNar $tmpNar2 $patchPath") == 0
|
|
|
|
or die "cannot apply patch `$patchPath' to $tmpNar";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2005-05-10 14:22:36 +00:00
|
|
|
if ($curStep < $maxStep) {
|
|
|
|
# The archive will be used as the base of the next patch.
|
2005-09-15 15:21:35 +00:00
|
|
|
rename "$tmpNar2", "$tmpNar" or die "cannot rename NAR archive: $!";
|
2005-05-10 14:22:36 +00:00
|
|
|
} else {
|
|
|
|
# This was the last patch. Unpack the final NAR archive
|
|
|
|
# into the target path.
|
|
|
|
print " unpacking patched archive...\n";
|
2008-11-20 15:44:59 +00:00
|
|
|
system("$binDir/nix-store --restore $v < $tmpNar2") == 0
|
2006-09-25 10:44:27 +00:00
|
|
|
or die "cannot unpack $tmpNar2 into `$v'";
|
2005-05-10 14:22:36 +00:00
|
|
|
}
|
2009-02-19 23:46:37 +00:00
|
|
|
|
|
|
|
$finalNarHash = $patch->{narHash};
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($edge->{type} eq "narfile") {
|
|
|
|
my $narFile = $edge->{info};
|
|
|
|
print "downloading `$narFile->{url}' into `$v'\n";
|
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
my $size = $narFile->{size} || -1;
|
|
|
|
print LOGFILE "$$ narfile $narFile->{url} $size $v\n";
|
2004-12-30 16:34:54 +00:00
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
# Download the archive.
|
|
|
|
print " downloading archive...\n";
|
2009-02-19 23:46:37 +00:00
|
|
|
my $narFilePath = downloadFile "$narFile->{url}";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2005-05-10 14:22:36 +00:00
|
|
|
if ($curStep < $maxStep) {
|
|
|
|
# The archive will be used a base to a patch.
|
2006-09-25 10:44:27 +00:00
|
|
|
system("@bunzip2@ < '$narFilePath' > $tmpNar") == 0
|
|
|
|
or die "cannot unpack `$narFilePath' into `$v'";
|
2005-05-10 14:22:36 +00:00
|
|
|
} else {
|
|
|
|
# Unpack the archive into the target path.
|
|
|
|
print " unpacking archive...\n";
|
2008-11-20 15:44:59 +00:00
|
|
|
system("@bunzip2@ < '$narFilePath' | $binDir/nix-store --restore '$v'") == 0
|
2006-09-25 10:44:27 +00:00
|
|
|
or die "cannot unpack `$narFilePath' into `$v'";
|
2005-05-10 14:22:36 +00:00
|
|
|
}
|
2009-02-19 23:46:37 +00:00
|
|
|
|
|
|
|
$finalNarHash = $narFile->{narHash};
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
2005-05-10 14:22:36 +00:00
|
|
|
|
|
|
|
$curStep++;
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
2004-12-30 16:34:54 +00:00
|
|
|
|
|
|
|
|
2009-02-26 21:12:35 +00:00
|
|
|
# Make sure that the hash declared in the manifest matches what we
|
|
|
|
# downloaded and unpacked.
|
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
if (defined $finalNarHash) {
|
|
|
|
my ($hashAlgo, $hash) = parseHash $finalNarHash;
|
2009-02-26 21:12:35 +00:00
|
|
|
|
|
|
|
# The hash in the manifest can be either in base-16 or base-32.
|
|
|
|
# Handle both.
|
|
|
|
my $extraFlag =
|
|
|
|
($hashAlgo eq "sha256" && length($hash) != 64)
|
|
|
|
? "--base32" : "";
|
|
|
|
|
|
|
|
my $hash2 = `@bindir@/nix-hash --type $hashAlgo $extraFlag $targetPath`
|
2009-02-19 23:46:37 +00:00
|
|
|
or die "cannot compute hash of path `$targetPath'";
|
|
|
|
chomp $hash2;
|
2009-02-26 21:12:35 +00:00
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
die "hash mismatch in downloaded path $targetPath; expected $hash, got $hash2"
|
|
|
|
if $hash ne $hash2;
|
|
|
|
} else {
|
|
|
|
die "cannot check integrity of the downloaded path since its hash is not known";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-30 16:34:54 +00:00
|
|
|
print LOGFILE "$$ success\n";
|
|
|
|
close LOGFILE;
|