2016-02-09 20:28:29 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "hash.hh"
|
2020-06-02 19:44:58 +00:00
|
|
|
#include "content-address.hh"
|
2016-02-09 20:28:29 +00:00
|
|
|
#include "legacy.hh"
|
|
|
|
#include "shared.hh"
|
2018-03-29 22:56:13 +00:00
|
|
|
#include "references.hh"
|
|
|
|
#include "archive.hh"
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct CmdHash : Command
|
|
|
|
{
|
2020-05-28 03:50:11 +00:00
|
|
|
FileIngestionMethod mode;
|
2020-06-18 22:09:22 +00:00
|
|
|
Base base = SRI;
|
2016-02-09 20:28:29 +00:00
|
|
|
bool truncate = false;
|
2020-06-18 22:09:22 +00:00
|
|
|
HashType ht = htSHA256;
|
2017-10-24 10:45:11 +00:00
|
|
|
std::vector<std::string> paths;
|
2019-10-21 15:49:16 +00:00
|
|
|
std::optional<std::string> modulus;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
2020-05-28 03:50:11 +00:00
|
|
|
CmdHash(FileIngestionMethod mode) : mode(mode)
|
2016-02-09 20:28:29 +00:00
|
|
|
{
|
2020-06-18 22:09:22 +00:00
|
|
|
mkFlag(0, "sri", "print hash in SRI format", &base, SRI);
|
|
|
|
mkFlag(0, "base64", "print hash in base-64", &base, Base64);
|
|
|
|
mkFlag(0, "base32", "print hash in base-32 (Nix-specific)", &base, Base32);
|
|
|
|
mkFlag(0, "base16", "print hash in base-16", &base, Base16);
|
2020-05-04 20:40:19 +00:00
|
|
|
addFlag(Flag::mkHashTypeFlag("type", &ht));
|
2019-10-21 16:05:31 +00:00
|
|
|
#if 0
|
2018-03-29 22:56:13 +00:00
|
|
|
mkFlag()
|
|
|
|
.longName("modulo")
|
|
|
|
.description("compute hash modulo specified string")
|
|
|
|
.labels({"modulus"})
|
|
|
|
.dest(&modulus);
|
2019-10-21 16:05:31 +00:00
|
|
|
#endif
|
2020-05-11 13:46:18 +00:00
|
|
|
expectArgs({
|
|
|
|
.label = "paths",
|
|
|
|
.handler = {&paths},
|
|
|
|
.completer = completePath
|
|
|
|
});
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2020-05-28 03:50:11 +00:00
|
|
|
const char* d;
|
|
|
|
switch (mode) {
|
|
|
|
case FileIngestionMethod::Flat:
|
|
|
|
d = "print cryptographic hash of a regular file";
|
2020-09-24 19:30:03 +00:00
|
|
|
break;
|
2020-05-28 03:50:11 +00:00
|
|
|
case FileIngestionMethod::Recursive:
|
|
|
|
d = "print cryptographic hash of the NAR serialisation of a path";
|
|
|
|
};
|
|
|
|
return d;
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
for (auto path : paths) {
|
2018-03-29 22:56:13 +00:00
|
|
|
|
|
|
|
std::unique_ptr<AbstractHashSink> hashSink;
|
|
|
|
if (modulus)
|
|
|
|
hashSink = std::make_unique<HashModuloSink>(ht, *modulus);
|
|
|
|
else
|
|
|
|
hashSink = std::make_unique<HashSink>(ht);
|
|
|
|
|
2020-05-28 03:50:11 +00:00
|
|
|
switch (mode) {
|
|
|
|
case FileIngestionMethod::Flat:
|
2018-03-29 22:56:13 +00:00
|
|
|
readFile(path, *hashSink);
|
2020-05-28 03:50:11 +00:00
|
|
|
break;
|
|
|
|
case FileIngestionMethod::Recursive:
|
2018-03-29 22:56:13 +00:00
|
|
|
dumpPath(path, *hashSink);
|
2020-05-28 03:50:11 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-03-29 22:56:13 +00:00
|
|
|
|
|
|
|
Hash h = hashSink->finish().first;
|
2016-02-09 20:28:29 +00:00
|
|
|
if (truncate && h.hashSize > 20) h = compressHash(h, 20);
|
2020-06-18 22:09:22 +00:00
|
|
|
logger->stdout(h.to_string(base, base == SRI));
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-05-28 03:50:11 +00:00
|
|
|
static RegisterCommand r1("hash-file", [](){ return make_ref<CmdHash>(FileIngestionMethod::Flat); });
|
|
|
|
static RegisterCommand r2("hash-path", [](){ return make_ref<CmdHash>(FileIngestionMethod::Recursive); });
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
struct CmdToBase : Command
|
|
|
|
{
|
2017-07-04 12:47:59 +00:00
|
|
|
Base base;
|
2020-06-02 18:05:26 +00:00
|
|
|
std::optional<HashType> ht;
|
2017-10-24 10:45:11 +00:00
|
|
|
std::vector<std::string> args;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
2017-07-04 12:47:59 +00:00
|
|
|
CmdToBase(Base base) : base(base)
|
2016-02-09 20:28:29 +00:00
|
|
|
{
|
2020-06-02 18:25:32 +00:00
|
|
|
addFlag(Flag::mkHashTypeOptFlag("type", &ht));
|
2016-02-09 20:28:29 +00:00
|
|
|
expectArgs("strings", &args);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2018-12-13 13:30:52 +00:00
|
|
|
return fmt("convert a hash to %s representation",
|
2020-06-18 22:09:22 +00:00
|
|
|
base == Base16 ? "base-16" :
|
|
|
|
base == Base32 ? "base-32" :
|
|
|
|
base == Base64 ? "base-64" :
|
|
|
|
"SRI");
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
void run() override
|
|
|
|
{
|
2017-07-04 12:47:59 +00:00
|
|
|
for (auto s : args)
|
2020-07-01 22:34:18 +00:00
|
|
|
logger->stdout(Hash::parseAny(s, ht).to_string(base, base == SRI));
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-18 22:09:22 +00:00
|
|
|
static RegisterCommand r3("to-base16", [](){ return make_ref<CmdToBase>(Base16); });
|
|
|
|
static RegisterCommand r4("to-base32", [](){ return make_ref<CmdToBase>(Base32); });
|
|
|
|
static RegisterCommand r5("to-base64", [](){ return make_ref<CmdToBase>(Base64); });
|
|
|
|
static RegisterCommand r6("to-sri", [](){ return make_ref<CmdToBase>(SRI); });
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
/* Legacy nix-hash command. */
|
|
|
|
static int compatNixHash(int argc, char * * argv)
|
|
|
|
{
|
2020-06-18 22:09:22 +00:00
|
|
|
HashType ht = htMD5;
|
2016-02-09 20:28:29 +00:00
|
|
|
bool flat = false;
|
|
|
|
bool base32 = false;
|
|
|
|
bool truncate = false;
|
|
|
|
enum { opHash, opTo32, opTo16 } op = opHash;
|
2017-10-24 10:45:11 +00:00
|
|
|
std::vector<std::string> ss;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
|
|
|
if (*arg == "--help")
|
|
|
|
showManPage("nix-hash");
|
|
|
|
else if (*arg == "--version")
|
|
|
|
printVersion("nix-hash");
|
|
|
|
else if (*arg == "--flat") flat = true;
|
|
|
|
else if (*arg == "--base32") base32 = true;
|
|
|
|
else if (*arg == "--truncate") truncate = true;
|
|
|
|
else if (*arg == "--type") {
|
|
|
|
string s = getArg(*arg, arg, end);
|
|
|
|
ht = parseHashType(s);
|
|
|
|
}
|
|
|
|
else if (*arg == "--to-base16") op = opTo16;
|
|
|
|
else if (*arg == "--to-base32") op = opTo32;
|
|
|
|
else if (*arg != "" && arg->at(0) == '-')
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
ss.push_back(*arg);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (op == opHash) {
|
2020-05-28 03:50:11 +00:00
|
|
|
CmdHash cmd(flat ? FileIngestionMethod::Flat : FileIngestionMethod::Recursive);
|
2016-02-09 20:28:29 +00:00
|
|
|
cmd.ht = ht;
|
2020-06-18 22:09:22 +00:00
|
|
|
cmd.base = base32 ? Base32 : Base16;
|
2016-02-09 20:28:29 +00:00
|
|
|
cmd.truncate = truncate;
|
|
|
|
cmd.paths = ss;
|
|
|
|
cmd.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2020-06-18 22:09:22 +00:00
|
|
|
CmdToBase cmd(op == opTo32 ? Base32 : Base16);
|
2016-02-09 20:28:29 +00:00
|
|
|
cmd.args = ss;
|
|
|
|
cmd.ht = ht;
|
|
|
|
cmd.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static RegisterLegacyCommand s1("nix-hash", compatNixHash);
|