1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# This is nix-serve (https://github.com/edolstra/nix-serve) using pxz instead of bzip2
use MIME::Base64;
use Nix::Config;
use Nix::Manifest;
use Nix::Store;
use Nix::Utils;
use strict;
sub stripPath {
my ($x) = @_;
$x =~ s/.*\///; $x
}
my $app = sub {
my $env = shift;
my $path = $env->{PATH_INFO};
if ($path eq "/nix-cache-info") {
return [200, ['Content-Type' => 'text/plain'], ["StoreDir: $Nix::Config::storeDir\nWantMassQuery: 1\nPriority: 30\n"]];
}
elsif ($path =~ '/([0-9a-z]+)\.narinfo$') {
my $hashPart = $1;
my $storePath = queryPathFromHashPart($hashPart);
return [404, ['Content-Type' => 'text/plain'], ["No such path.\n"]] unless $storePath;
my ($deriver, $narHash, $time, $narSize, $refs) = queryPathInfo($storePath, 1) or die;
my $compression;
my $ext;
if ($narSize < 1024) {
$compression = 'none';
$ext = '';
} else {
$compression = 'xz';
$ext = '.xz';
}
my $res =
"StorePath: $storePath\n" .
"URL: nar/$hashPart.nar$ext\n" .
"Compression: $compression\n" .
"NarHash: $narHash\n" .
"NarSize: $narSize\n";
$res .= "References: " . join(" ", map { stripPath($_) } @$refs) . "\n"
if scalar @$refs > 0;
$res .= "Deriver: " . stripPath($deriver) . "\n" if defined $deriver;
my $secretKeyFile = $ENV{'NIX_SECRET_KEY_FILE'};
if (defined $secretKeyFile) {
my $s = readFile $secretKeyFile;
chomp $s;
my ($keyName, $secretKey) = split ":", $s;
die "invalid secret key file ‘$secretKeyFile’\n" unless defined $keyName && defined $secretKey;
my $fingerprint = fingerprintPath($storePath, $narHash, $narSize, $refs);
my $sig = encode_base64(signString(decode_base64($secretKey), $fingerprint), "");
$res .= "Sig: $keyName:$sig\n";
}
return [200, ['Content-Type' => 'text/x-nix-narinfo'], [$res]];
}
elsif ($path =~ '/nar/([0-9a-z]+)\.nar.xz$') {
my $hashPart = $1;
my $storePath = queryPathFromHashPart($hashPart);
return [404, ['Content-Type' => 'text/plain'], ["No such path.\n"]] unless $storePath;
my $fh = new IO::Handle;
open $fh, "nix-store --dump '$storePath' | nice -n 19 pxz -0 |";
return [200, ['Content-Type' => 'application/x-xz'], $fh];
}
elsif ($path =~ '/nar/([0-9a-z]+)\.nar$') {
my $hashPart = $1;
my $storePath = queryPathFromHashPart($hashPart);
return [404, ['Content-Type' => 'text/plain'], ["No such path.\n"]] unless $storePath;
my $fh = new IO::Handle;
open $fh, "nix-store --dump '$storePath' |";
return [200, ['Content-Type' => 'application/octet-stream'], $fh];
}
else {
return [404, ['Content-Type' => 'text/plain'], ["File not found.\n"]];
}
}
|