2006-10-04 20:58:11 +02:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
use strict;
|
2006-10-04 20:58:11 +02:00
|
|
|
use File::Temp qw(tempdir);
|
2004-12-29 19:58:15 +01:00
|
|
|
use readmanifest;
|
|
|
|
|
2007-01-08 16:32:15 +01:00
|
|
|
|
2007-03-30 11:01:05 +02:00
|
|
|
# Some patch generations options.
|
|
|
|
|
|
|
|
# Max size of NAR archives to generate patches for.
|
|
|
|
my $maxNarSize = $ENV{"NIX_MAX_NAR_SIZE"};
|
|
|
|
$maxNarSize = 100 * 1024 * 1024 if !defined $maxNarSize;
|
|
|
|
|
|
|
|
# If patch is bigger than this fraction of full archive, reject.
|
|
|
|
my $maxPatchFraction = $ENV{"NIX_PATCH_FRACTION"};
|
|
|
|
$maxPatchFraction = 0.60 if !defined $maxPatchFraction;
|
2007-01-08 16:32:15 +01:00
|
|
|
|
|
|
|
|
2004-12-29 19:58:15 +01:00
|
|
|
die unless scalar @ARGV == 5;
|
|
|
|
|
2005-03-15 12:12:48 +01:00
|
|
|
my $hashAlgo = "sha256";
|
2005-03-14 17:46:19 +01:00
|
|
|
|
2004-12-29 19:58:15 +01:00
|
|
|
my $cacheDir = $ARGV[0];
|
|
|
|
my $patchesDir = $ARGV[1];
|
|
|
|
my $patchesURL = $ARGV[2];
|
|
|
|
my $srcDir = $ARGV[3];
|
|
|
|
my $dstDir = $ARGV[4];
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $tmpDir = tempdir("nix-generate-patches.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
or die "cannot create a temporary directory";
|
2004-12-29 19:58:15 +01:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
print "TEMP = $tmpDir\n";
|
2004-12-29 19:58:15 +01:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
#END { rmdir $tmpDir; }
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
my %srcNarFiles;
|
2007-01-23 17:50:19 +01:00
|
|
|
my %srcLocalPaths;
|
2004-12-29 19:58:15 +01:00
|
|
|
my %srcPatches;
|
|
|
|
|
|
|
|
my %dstNarFiles;
|
2007-01-23 17:50:19 +01:00
|
|
|
my %dstLocalPaths;
|
2004-12-29 19:58:15 +01:00
|
|
|
my %dstPatches;
|
|
|
|
|
|
|
|
readManifest "$srcDir/MANIFEST",
|
2007-01-23 17:50:19 +01:00
|
|
|
\%srcNarFiles, \%srcLocalPaths, \%srcPatches;
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
readManifest "$dstDir/MANIFEST",
|
2007-01-23 17:50:19 +01:00
|
|
|
\%dstNarFiles, \%dstLocalPaths, \%dstPatches;
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
sub findOutputPaths {
|
|
|
|
my $narFiles = shift;
|
|
|
|
|
|
|
|
my %outPaths;
|
|
|
|
|
|
|
|
foreach my $p (keys %{$narFiles}) {
|
|
|
|
|
|
|
|
# Ignore store expressions.
|
|
|
|
next if ($p =~ /\.store$/);
|
2005-02-24 18:36:42 +01:00
|
|
|
next if ($p =~ /\.drv$/);
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
# Ignore builders (too much ambiguity -- they're all called
|
|
|
|
# `builder.sh').
|
|
|
|
next if ($p =~ /\.sh$/);
|
|
|
|
next if ($p =~ /\.patch$/);
|
|
|
|
|
|
|
|
# Don't bother including tar files etc.
|
|
|
|
next if ($p =~ /\.tar\.(gz|bz2)$/ || $p =~ /\.zip$/ || $p =~ /\.bin$/);
|
|
|
|
|
|
|
|
$outPaths{$p} = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return %outPaths;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "finding src output paths...\n";
|
2007-01-23 17:05:59 +01:00
|
|
|
my %srcOutPaths = findOutputPaths \%srcNarFiles;
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
print "finding dst output paths...\n";
|
2007-01-23 17:05:59 +01:00
|
|
|
my %dstOutPaths = findOutputPaths \%dstNarFiles;
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
sub getNameVersion {
|
|
|
|
my $p = shift;
|
2005-02-24 18:36:42 +01:00
|
|
|
$p =~ /\/[0-9a-z]+((?:-[a-zA-Z][^\/-]*)+)([^\/]*)$/;
|
2004-12-29 19:58:15 +01:00
|
|
|
my $name = $1;
|
|
|
|
my $version = $2;
|
|
|
|
$name =~ s/^-//;
|
|
|
|
$version =~ s/^-//;
|
|
|
|
return ($name, $version);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# A quick hack to get a measure of the `distance' between two
|
|
|
|
# versions: it's just the position of the first character that differs
|
|
|
|
# (or 999 if they are the same).
|
|
|
|
sub versionDiff {
|
|
|
|
my $s = shift;
|
|
|
|
my $t = shift;
|
|
|
|
my $i;
|
|
|
|
return 999 if $s eq $t;
|
|
|
|
for ($i = 0; $i < length $s; $i++) {
|
|
|
|
return $i if $i >= length $t or
|
|
|
|
substr($s, $i, 1) ne substr($t, $i, 1);
|
|
|
|
}
|
|
|
|
return $i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub getNarBz2 {
|
|
|
|
my $narFiles = shift;
|
|
|
|
my $storePath = shift;
|
|
|
|
|
|
|
|
my $narFileList = $$narFiles{$storePath};
|
|
|
|
die "missing store expression $storePath" unless defined $narFileList;
|
|
|
|
|
|
|
|
my $narFile = @{$narFileList}[0];
|
|
|
|
die unless defined $narFile;
|
|
|
|
|
|
|
|
$narFile->{url} =~ /\/([^\/]+)$/;
|
|
|
|
die unless defined $1;
|
|
|
|
return "$cacheDir/$1";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-29 23:17:26 +01:00
|
|
|
sub containsPatch {
|
|
|
|
my $patches = shift;
|
|
|
|
my $storePath = shift;
|
|
|
|
my $basePath = shift;
|
|
|
|
my $patchList = $$patches{$storePath};
|
|
|
|
return 0 if !defined $patchList;
|
|
|
|
my $found = 0;
|
|
|
|
foreach my $patch (@{$patchList}) {
|
|
|
|
# !!! baseHash might differ
|
|
|
|
return 1 if $patch->{basePath} eq $basePath;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-01 11:33:55 +01:00
|
|
|
# Compute the "weighted" number of uses of a path in the build graph.
|
|
|
|
sub computeUses {
|
|
|
|
my $narFiles = shift;
|
|
|
|
my $path = shift;
|
|
|
|
|
|
|
|
# Find the deriver of $path.
|
|
|
|
return 1 unless defined $$narFiles{$path};
|
|
|
|
my $deriver = @{$$narFiles{$path}}[0]->{deriver};
|
|
|
|
return 1 unless defined $deriver && $deriver ne "";
|
|
|
|
|
|
|
|
# print " DERIVER $deriver\n";
|
|
|
|
|
2005-12-13 22:04:48 +01:00
|
|
|
# Optimisation: build the referrers graph from the references
|
2005-03-01 11:33:55 +01:00
|
|
|
# graph.
|
2005-12-13 22:04:48 +01:00
|
|
|
my %referrers;
|
2005-03-01 11:33:55 +01:00
|
|
|
foreach my $q (keys %{$narFiles}) {
|
|
|
|
my @refs = split " ", @{$$narFiles{$q}}[0]->{references};
|
|
|
|
foreach my $r (@refs) {
|
2005-12-13 22:04:48 +01:00
|
|
|
$referrers{$r} = [] unless defined $referrers{$r};
|
|
|
|
push @{$referrers{$r}}, $q;
|
2005-03-01 11:33:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Determine the shortest path from $deriver to all other reachable
|
2005-12-13 22:04:48 +01:00
|
|
|
# paths in the `referrers' graph.
|
2005-03-01 11:33:55 +01:00
|
|
|
|
|
|
|
my %dist;
|
|
|
|
$dist{$deriver} = 0;
|
|
|
|
|
|
|
|
my @queue = ($deriver);
|
|
|
|
my $pos = 0;
|
|
|
|
|
|
|
|
while ($pos < scalar @queue) {
|
|
|
|
my $p = $queue[$pos];
|
|
|
|
$pos++;
|
|
|
|
|
2005-12-13 22:04:48 +01:00
|
|
|
foreach my $q (@{$referrers{$p}}) {
|
2005-03-01 11:33:55 +01:00
|
|
|
if (!defined $dist{$q}) {
|
|
|
|
$dist{$q} = $dist{$p} + 1;
|
|
|
|
# print " $q $dist{$q}\n";
|
|
|
|
push @queue, $q;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $wuse = 1.0;
|
|
|
|
foreach my $user (keys %dist) {
|
|
|
|
next if $user eq $deriver;
|
|
|
|
# print " $user $dist{$user}\n";
|
|
|
|
$wuse += 1.0 / 2.0**$dist{$user};
|
|
|
|
}
|
|
|
|
|
|
|
|
# print " XXX $path $wuse\n";
|
|
|
|
|
|
|
|
return $wuse;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-29 19:58:15 +01:00
|
|
|
# For each output path in the destination, see if we need to / can
|
|
|
|
# create a patch.
|
|
|
|
|
|
|
|
print "creating patches...\n";
|
|
|
|
|
|
|
|
foreach my $p (keys %dstOutPaths) {
|
|
|
|
|
|
|
|
# If exactly the same path already exists in the source, skip it.
|
2005-03-01 11:33:55 +01:00
|
|
|
next if defined $srcOutPaths{$p};
|
2004-12-29 19:58:15 +01:00
|
|
|
|
2005-02-28 15:12:06 +01:00
|
|
|
print " $p\n";
|
2004-12-29 19:58:15 +01:00
|
|
|
|
2005-02-28 15:12:06 +01:00
|
|
|
# If not, then we should find the paths in the source that are
|
2004-12-29 19:58:15 +01:00
|
|
|
# `most' likely to be present on a system that wants to install
|
|
|
|
# this path.
|
|
|
|
|
|
|
|
(my $name, my $version) = getNameVersion $p;
|
|
|
|
|
|
|
|
my @closest = ();
|
|
|
|
my $closestVersion;
|
|
|
|
my $minDist = -1; # actually, larger means closer
|
|
|
|
|
|
|
|
# Find all source paths with the same name.
|
|
|
|
|
|
|
|
foreach my $q (keys %srcOutPaths) {
|
|
|
|
(my $name2, my $version2) = getNameVersion $q;
|
|
|
|
if ($name eq $name2) {
|
2005-02-28 15:12:06 +01:00
|
|
|
|
2005-03-01 11:33:55 +01:00
|
|
|
# If the sizes differ too much, then skip. This
|
2005-02-28 15:12:06 +01:00
|
|
|
# disambiguates between, e.g., a real component and a
|
|
|
|
# wrapper component (cf. Firefox in Nixpkgs).
|
|
|
|
my $srcSize = @{$srcNarFiles{$q}}[0]->{size};
|
|
|
|
my $dstSize = @{$dstNarFiles{$p}}[0]->{size};
|
|
|
|
my $ratio = $srcSize / $dstSize;
|
|
|
|
$ratio = 1 / $ratio if $ratio < 1;
|
2005-03-01 11:33:55 +01:00
|
|
|
# print " SIZE $srcSize $dstSize $ratio $q\n";
|
2005-02-28 15:12:06 +01:00
|
|
|
|
|
|
|
if ($ratio >= 3) {
|
2005-03-01 11:33:55 +01:00
|
|
|
print " SKIPPING $q due to size ratio $ratio ($srcSize $dstSize)\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
# If the numbers of weighted uses differ too much, then
|
|
|
|
# skip. This disambiguates between, e.g., the bootstrap
|
|
|
|
# GCC and the final GCC in Nixpkgs.
|
|
|
|
my $srcUses = computeUses \%srcNarFiles, $q;
|
|
|
|
my $dstUses = computeUses \%dstNarFiles, $p;
|
|
|
|
$ratio = $srcUses / $dstUses;
|
|
|
|
$ratio = 1 / $ratio if $ratio < 1;
|
|
|
|
print " USE $srcUses $dstUses $ratio $q\n";
|
|
|
|
|
2005-04-12 12:07:02 +02:00
|
|
|
# if ($ratio >= 2) {
|
|
|
|
# print " SKIPPING $q due to use ratio $ratio ($srcUses $dstUses)\n";
|
|
|
|
# next;
|
|
|
|
# }
|
2005-02-28 15:12:06 +01:00
|
|
|
|
|
|
|
# If there are multiple matching names, include the ones
|
|
|
|
# with the closest version numbers.
|
2004-12-29 19:58:15 +01:00
|
|
|
my $dist = versionDiff $version, $version2;
|
|
|
|
if ($dist > $minDist) {
|
|
|
|
$minDist = $dist;
|
|
|
|
@closest = ($q);
|
|
|
|
$closestVersion = $version2;
|
|
|
|
} elsif ($dist == $minDist) {
|
|
|
|
push @closest, $q;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scalar(@closest) == 0) {
|
|
|
|
print " NO BASE: $p\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $closest (@closest) {
|
|
|
|
|
|
|
|
# Generate a patch between $closest and $p.
|
|
|
|
print " $p <- $closest\n";
|
|
|
|
|
|
|
|
# If the patch already exists, skip it.
|
2004-12-29 23:17:26 +01:00
|
|
|
if (containsPatch(\%srcPatches, $p, $closest) ||
|
|
|
|
containsPatch(\%dstPatches, $p, $closest))
|
|
|
|
{
|
|
|
|
print " skipping, already exists\n";
|
|
|
|
next;
|
2004-12-29 19:58:15 +01:00
|
|
|
}
|
2004-12-29 23:17:26 +01:00
|
|
|
|
|
|
|
# next;
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
my $srcNarBz2 = getNarBz2 \%srcNarFiles, $closest;
|
|
|
|
my $dstNarBz2 = getNarBz2 \%dstNarFiles, $p;
|
2005-06-18 16:20:24 +02:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
system("@bunzip2@ < $srcNarBz2 > $tmpDir/A") == 0
|
2004-12-29 19:58:15 +01:00
|
|
|
or die "cannot unpack $srcNarBz2";
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
if ((stat "$tmpDir/A")[7] >= $maxNarSize) {
|
2005-06-18 16:20:24 +02:00
|
|
|
print " skipping, source is too large\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
system("@bunzip2@ < $dstNarBz2 > $tmpDir/B") == 0
|
2004-12-29 19:58:15 +01:00
|
|
|
or die "cannot unpack $dstNarBz2";
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
if ((stat "$tmpDir/B")[7] >= $maxNarSize) {
|
2005-06-18 16:20:24 +02:00
|
|
|
print " skipping, destination is too large\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
system("@libexecdir@/bsdiff $tmpDir/A $tmpDir/B $tmpDir/DIFF") == 0
|
2004-12-29 19:58:15 +01:00
|
|
|
or die "cannot compute binary diff";
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $baseHash = `@bindir@/nix-hash --flat --type $hashAlgo --base32 $tmpDir/A` or die;
|
2004-12-29 19:58:15 +01:00
|
|
|
chomp $baseHash;
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $narHash = `@bindir@/nix-hash --flat --type $hashAlgo --base32 $tmpDir/B` or die;
|
2004-12-29 19:58:15 +01:00
|
|
|
chomp $narHash;
|
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $narDiffHash = `@bindir@/nix-hash --flat --type $hashAlgo --base32 $tmpDir/DIFF` or die;
|
2004-12-29 20:32:55 +01:00
|
|
|
chomp $narDiffHash;
|
2004-12-29 19:58:15 +01:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $narDiffSize = (stat "$tmpDir/DIFF")[7];
|
2004-12-29 20:32:55 +01:00
|
|
|
my $dstNarBz2Size = (stat $dstNarBz2)[7];
|
|
|
|
|
2007-01-08 16:32:15 +01:00
|
|
|
print " size $narDiffSize; full size $dstNarBz2Size\n";
|
|
|
|
|
2004-12-29 20:32:55 +01:00
|
|
|
if ($narDiffSize >= $dstNarBz2Size) {
|
|
|
|
print " rejecting; patch bigger than full archive\n";
|
|
|
|
next;
|
|
|
|
}
|
2004-12-29 19:58:15 +01:00
|
|
|
|
2007-01-08 16:32:15 +01:00
|
|
|
if ($narDiffSize / $dstNarBz2Size >= $maxPatchFraction) {
|
|
|
|
print " rejecting; patch too large relative to full archive\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2004-12-29 19:58:15 +01:00
|
|
|
my $finalName =
|
2005-03-14 17:46:19 +01:00
|
|
|
"$narDiffHash.nar-bsdiff";
|
2004-12-29 20:04:21 +01:00
|
|
|
|
|
|
|
if (-e "$patchesDir/$finalName") {
|
|
|
|
print " not copying, already exists\n";
|
|
|
|
}
|
2004-12-30 17:34:54 +01:00
|
|
|
|
2004-12-31 12:07:12 +01:00
|
|
|
else {
|
2004-12-29 20:04:21 +01:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
system("cp '$tmpDir/DIFF' '$patchesDir/$finalName.tmp'") == 0
|
2004-12-31 12:07:12 +01:00
|
|
|
or die "cannot copy diff";
|
|
|
|
|
|
|
|
rename("$patchesDir/$finalName.tmp", "$patchesDir/$finalName")
|
|
|
|
or die "cannot rename $patchesDir/$finalName.tmp";
|
|
|
|
|
|
|
|
}
|
2004-12-29 19:58:15 +01:00
|
|
|
|
|
|
|
# Add the patch to the manifest.
|
|
|
|
addPatch \%dstPatches, $p,
|
2005-03-14 17:46:19 +01:00
|
|
|
{ url => "$patchesURL/$finalName", hash => "$hashAlgo:$narDiffHash"
|
|
|
|
, size => $narDiffSize, basePath => $closest, baseHash => "$hashAlgo:$baseHash"
|
|
|
|
, narHash => "$hashAlgo:$narHash", patchType => "nar-bsdiff"
|
2005-03-18 10:43:25 +01:00
|
|
|
}, 0;
|
2004-12-29 19:58:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-29 23:17:26 +01:00
|
|
|
|
|
|
|
# Add in any potentially useful patches in the source (namely, those
|
|
|
|
# patches that produce either paths in the destination or paths that
|
|
|
|
# can be used as the base for other useful patches).
|
|
|
|
|
2007-01-08 16:17:18 +01:00
|
|
|
print "propagating patches...\n";
|
|
|
|
|
2004-12-29 23:17:26 +01:00
|
|
|
my $changed;
|
|
|
|
do {
|
|
|
|
# !!! we repeat this to reach the transitive closure; inefficient
|
|
|
|
$changed = 0;
|
|
|
|
|
2007-01-08 16:17:18 +01:00
|
|
|
print "loop\n";
|
|
|
|
|
|
|
|
my %dstBasePaths;
|
|
|
|
foreach my $q (keys %dstPatches) {
|
|
|
|
foreach my $patch (@{$dstPatches{$q}}) {
|
|
|
|
$dstBasePaths{$patch->{basePath}} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-29 23:17:26 +01:00
|
|
|
foreach my $p (keys %srcPatches) {
|
|
|
|
my $patchList = $srcPatches{$p};
|
|
|
|
|
|
|
|
my $include = 0;
|
|
|
|
|
|
|
|
# Is path $p included in the destination? If so, include
|
|
|
|
# patches that produce it.
|
2007-01-08 16:17:18 +01:00
|
|
|
$include = 1 if defined $dstNarFiles{$p};
|
2004-12-29 23:17:26 +01:00
|
|
|
|
|
|
|
# Is path $p a path that serves as a base for paths in the
|
|
|
|
# destination? If so, include patches that produce it.
|
2007-01-08 16:17:18 +01:00
|
|
|
# !!! check baseHash
|
|
|
|
$include = 1 if defined $dstBasePaths{$p};
|
2004-12-29 23:17:26 +01:00
|
|
|
|
|
|
|
if ($include) {
|
|
|
|
foreach my $patch (@{$patchList}) {
|
|
|
|
$changed = 1 if addPatch \%dstPatches, $p, $patch;
|
|
|
|
}
|
2007-01-08 16:17:18 +01:00
|
|
|
}
|
2004-12-29 23:17:26 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} while $changed;
|
|
|
|
|
|
|
|
|
|
|
|
# Rewrite the manifest of the destination (with the new patches).
|
2004-12-29 19:58:15 +01:00
|
|
|
writeManifest "$dstDir/MANIFEST",
|
2007-01-23 17:05:59 +01:00
|
|
|
\%dstNarFiles, \%dstPatches;
|