2022-10-28 16:26:32 +02:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright © 2022 The Tvix Authors
|
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package tvix.store.v1;
|
|
|
|
|
|
|
|
import "tvix/store/protos/castore.proto";
|
|
|
|
|
2022-11-19 22:20:14 +01:00
|
|
|
option go_package = "code.tvl.fyi/tvix/store/protos;storev1";
|
|
|
|
|
2022-10-28 16:26:32 +02:00
|
|
|
// PathInfo shows information about a Nix Store Path.
|
|
|
|
// That's a single element inside /nix/store.
|
|
|
|
message PathInfo {
|
|
|
|
// The path can be a directory, file or symlink.
|
2022-12-23 18:53:57 +01:00
|
|
|
Node node = 1;
|
2022-10-28 16:26:32 +02:00
|
|
|
|
|
|
|
// List of references (output path hashes)
|
|
|
|
// This really is the raw *bytes*, after decoding nixbase32, and not a
|
|
|
|
// base32-encoded string.
|
2022-12-23 18:53:57 +01:00
|
|
|
repeated bytes references = 2;
|
2022-10-28 16:26:32 +02:00
|
|
|
|
|
|
|
// see below.
|
2022-12-23 18:53:57 +01:00
|
|
|
NARInfo narinfo = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Node {
|
|
|
|
oneof node {
|
|
|
|
DirectoryNode directory = 1;
|
|
|
|
FileNode file = 2;
|
|
|
|
SymlinkNode symlink = 3;
|
|
|
|
}
|
2022-10-28 16:26:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Nix C++ uses NAR (Nix Archive) as a format to transfer store paths,
|
|
|
|
// and stores metadata and signatures in NARInfo files.
|
|
|
|
// Store all these attributes in a separate message.
|
|
|
|
//
|
|
|
|
// This is useful to render .narinfo files to clients, or to preserve/validate
|
|
|
|
// these signatures.
|
|
|
|
// As verifying these signatures requires the whole NAR file to be synthesized,
|
|
|
|
// moving to another signature scheme is desired.
|
|
|
|
// Even then, it still makes sense to hold this data, for old clients.
|
|
|
|
message NARInfo {
|
|
|
|
// This represents a (parsed) signature line in a .narinfo file.
|
|
|
|
message Signature {
|
|
|
|
string name = 1;
|
|
|
|
bytes data = 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
// This size of the NAR file, in bytes.
|
2023-05-18 20:34:22 +02:00
|
|
|
uint64 nar_size = 1;
|
2022-10-28 16:26:32 +02:00
|
|
|
|
2022-12-23 18:57:35 +01:00
|
|
|
// The sha256 of the NAR file representation.
|
|
|
|
bytes nar_sha256 = 2;
|
2022-10-28 16:26:32 +02:00
|
|
|
|
|
|
|
// The signatures in a .narinfo file.
|
|
|
|
repeated Signature signatures = 3;
|
|
|
|
|
|
|
|
// A list of references. To validate .narinfo signatures, a fingerprint
|
|
|
|
// needs to be constructed.
|
|
|
|
// This fingerprint doesn't just contain the hashes of the output paths of
|
|
|
|
// all references (like PathInfo.references), but their whole (base)names,
|
|
|
|
// so we need to keep them somewhere.
|
|
|
|
repeated string reference_names = 4;
|
|
|
|
|
|
|
|
}
|