2003-06-16 15:59:23 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2003-06-15 13:41:32 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "md5.h"
|
2005-01-13 17:39:26 +00:00
|
|
|
#include "sha1.h"
|
2005-01-14 12:03:04 +00:00
|
|
|
#include "sha256.h"
|
2003-06-15 13:41:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "hash.hh"
|
2003-06-20 10:40:25 +00:00
|
|
|
#include "archive.hh"
|
2003-06-15 13:41:32 +00:00
|
|
|
|
2005-01-13 17:39:26 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
2003-06-15 13:41:32 +00:00
|
|
|
|
2005-01-14 16:04:03 +00:00
|
|
|
Hash::Hash()
|
|
|
|
{
|
|
|
|
type = htUnknown;
|
|
|
|
hashSize = 0;
|
|
|
|
memset(hash, 0, maxHashSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-13 15:44:44 +00:00
|
|
|
Hash::Hash(HashType type)
|
2003-06-15 13:41:32 +00:00
|
|
|
{
|
2005-01-13 15:44:44 +00:00
|
|
|
this->type = type;
|
|
|
|
if (type == htMD5) hashSize = md5HashSize;
|
|
|
|
else if (type == htSHA1) hashSize = sha1HashSize;
|
2005-01-14 12:03:04 +00:00
|
|
|
else if (type == htSHA256) hashSize = sha256HashSize;
|
2005-01-13 17:39:26 +00:00
|
|
|
else throw Error("unknown hash type");
|
2005-01-14 13:51:38 +00:00
|
|
|
assert(hashSize <= maxHashSize);
|
2005-01-14 16:04:03 +00:00
|
|
|
memset(hash, 0, maxHashSize);
|
2003-06-15 13:41:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-15 22:28:27 +00:00
|
|
|
bool Hash::operator == (const Hash & h2) const
|
2003-06-15 13:41:32 +00:00
|
|
|
{
|
2005-01-13 15:44:44 +00:00
|
|
|
if (hashSize != h2.hashSize) return false;
|
2003-06-15 13:41:32 +00:00
|
|
|
for (unsigned int i = 0; i < hashSize; i++)
|
|
|
|
if (hash[i] != h2.hash[i]) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-15 22:28:27 +00:00
|
|
|
bool Hash::operator != (const Hash & h2) const
|
2003-06-15 13:41:32 +00:00
|
|
|
{
|
|
|
|
return !(*this == h2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-15 21:24:05 +00:00
|
|
|
bool Hash::operator < (const Hash & h) const
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < hashSize; i++) {
|
|
|
|
if (hash[i] < h.hash[i]) return true;
|
|
|
|
if (hash[i] > h.hash[i]) return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-14 16:04:03 +00:00
|
|
|
string printHash(const Hash & hash)
|
2003-06-15 13:41:32 +00:00
|
|
|
{
|
|
|
|
ostringstream str;
|
2005-01-14 16:04:03 +00:00
|
|
|
for (unsigned int i = 0; i < hash.hashSize; i++) {
|
2003-06-15 13:41:32 +00:00
|
|
|
str.fill('0');
|
|
|
|
str.width(2);
|
2005-01-14 16:04:03 +00:00
|
|
|
str << hex << (int) hash.hash[i];
|
2003-06-15 13:41:32 +00:00
|
|
|
}
|
|
|
|
return str.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-14 16:04:03 +00:00
|
|
|
Hash parseHash(HashType ht, const string & s)
|
2003-06-15 13:41:32 +00:00
|
|
|
{
|
2005-01-14 16:04:03 +00:00
|
|
|
Hash hash(ht);
|
2005-01-13 15:44:44 +00:00
|
|
|
if (s.length() != hash.hashSize * 2)
|
2003-10-08 15:06:59 +00:00
|
|
|
throw Error(format("invalid hash `%1%'") % s);
|
2005-01-13 15:44:44 +00:00
|
|
|
for (unsigned int i = 0; i < hash.hashSize; i++) {
|
2003-06-15 13:41:32 +00:00
|
|
|
string s2(s, i * 2, 2);
|
|
|
|
if (!isxdigit(s2[0]) || !isxdigit(s2[1]))
|
2003-10-08 15:06:59 +00:00
|
|
|
throw Error(format("invalid hash `%1%'") % s);
|
2003-06-15 13:41:32 +00:00
|
|
|
istringstream str(s2);
|
|
|
|
int n;
|
|
|
|
str >> hex >> n;
|
|
|
|
hash.hash[i] = n;
|
|
|
|
}
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-14 16:04:03 +00:00
|
|
|
static unsigned short divMod(uint16_t * words, unsigned short y)
|
|
|
|
{
|
|
|
|
unsigned int borrow = 0;
|
|
|
|
|
|
|
|
int pos = (Hash::maxHashSize / 2) - 1;
|
|
|
|
while (pos >= 0 && !words[pos]) --pos;
|
|
|
|
|
|
|
|
for ( ; pos >= 0; --pos) {
|
|
|
|
unsigned int s = words[pos] + (borrow << 16);
|
|
|
|
unsigned int d = s / y;
|
|
|
|
borrow = s % y;
|
|
|
|
words[pos] = d;
|
|
|
|
}
|
|
|
|
|
|
|
|
return borrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// omitted: E O U T
|
|
|
|
char chars[] = "0123456789abcdfghijklmnpqrsvwxyz";
|
|
|
|
|
|
|
|
|
|
|
|
string printHash32(const Hash & hash)
|
|
|
|
{
|
|
|
|
Hash hash2(hash);
|
|
|
|
unsigned int len = (hash.hashSize * 8 - 1) / 5 + 1;
|
|
|
|
|
|
|
|
string s(len, '0');
|
|
|
|
|
|
|
|
int pos = len - 1;
|
|
|
|
while (pos >= 0) {
|
|
|
|
unsigned short digit = divMod((uint16_t *) hash2.hash, 32);
|
|
|
|
s[pos--] = chars[digit];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < hash2.maxHashSize; ++i)
|
|
|
|
assert(hash2.hash[i] == 0);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-15 13:41:32 +00:00
|
|
|
bool isHash(const string & s)
|
|
|
|
{
|
|
|
|
if (s.length() != 32) return false;
|
|
|
|
for (int i = 0; i < 32; i++) {
|
|
|
|
char c = s[i];
|
|
|
|
if (!((c >= '0' && c <= '9') ||
|
|
|
|
(c >= 'a' && c <= 'f')))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-13 17:39:26 +00:00
|
|
|
struct Ctx
|
2003-06-16 13:33:38 +00:00
|
|
|
{
|
2005-01-13 17:39:26 +00:00
|
|
|
md5_ctx md5;
|
|
|
|
sha_ctx sha1;
|
2005-01-14 12:03:04 +00:00
|
|
|
SHA256_CTX sha256;
|
2005-01-13 17:39:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void start(HashType ht, Ctx & ctx)
|
|
|
|
{
|
|
|
|
if (ht == htMD5) md5_init_ctx(&ctx.md5);
|
|
|
|
else if (ht == htSHA1) sha_init(&ctx.sha1);
|
2005-01-14 12:03:04 +00:00
|
|
|
else if (ht == htSHA256) SHA256_Init(&ctx.sha256);
|
2005-01-13 17:39:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void update(HashType ht, Ctx & ctx,
|
|
|
|
const unsigned char * bytes, unsigned int len)
|
|
|
|
{
|
|
|
|
if (ht == htMD5) md5_process_bytes(bytes, len, &ctx.md5);
|
|
|
|
else if (ht == htSHA1) sha_update(&ctx.sha1, bytes, len);
|
2005-01-14 12:03:04 +00:00
|
|
|
else if (ht == htSHA256) SHA256_Update(&ctx.sha256, bytes, len);
|
2005-01-13 17:39:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void finish(HashType ht, Ctx & ctx, unsigned char * hash)
|
|
|
|
{
|
|
|
|
if (ht == htMD5) md5_finish_ctx(&ctx.md5, hash);
|
|
|
|
else if (ht == htSHA1) {
|
|
|
|
sha_final(&ctx.sha1);
|
|
|
|
sha_digest(&ctx.sha1, hash);
|
|
|
|
}
|
2005-01-14 12:03:04 +00:00
|
|
|
else if (ht == htSHA256) SHA256_Final(hash, &ctx.sha256);
|
2005-01-13 17:39:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hash hashString(const string & s, HashType ht)
|
|
|
|
{
|
|
|
|
Ctx ctx;
|
|
|
|
Hash hash(ht);
|
|
|
|
start(ht, ctx);
|
|
|
|
update(ht, ctx, (const unsigned char *) s.c_str(), s.length());
|
|
|
|
finish(ht, ctx, hash.hash);
|
2003-06-16 13:33:38 +00:00
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-13 17:39:26 +00:00
|
|
|
Hash hashFile(const Path & path, HashType ht)
|
2003-06-15 13:41:32 +00:00
|
|
|
{
|
2005-01-13 17:39:26 +00:00
|
|
|
Ctx ctx;
|
|
|
|
Hash hash(ht);
|
|
|
|
start(ht, ctx);
|
|
|
|
|
|
|
|
AutoCloseFD fd = open(path.c_str(), O_RDONLY);
|
|
|
|
if (fd == -1) throw SysError(format("opening file `%1%'") % path);
|
|
|
|
|
|
|
|
unsigned char buf[8192];
|
|
|
|
ssize_t n;
|
|
|
|
while ((n = read(fd, buf, sizeof(buf)))) {
|
|
|
|
checkInterrupt();
|
|
|
|
if (n == -1) throw SysError(format("reading file `%1%'") % path);
|
|
|
|
update(ht, ctx, buf, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
finish(ht, ctx, hash.hash);
|
2003-06-15 13:41:32 +00:00
|
|
|
return hash;
|
|
|
|
}
|
2003-06-16 15:59:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct HashSink : DumpSink
|
|
|
|
{
|
2005-01-13 17:39:26 +00:00
|
|
|
HashType ht;
|
|
|
|
Ctx ctx;
|
2003-06-16 15:59:23 +00:00
|
|
|
virtual void operator ()
|
|
|
|
(const unsigned char * data, unsigned int len)
|
|
|
|
{
|
2005-01-13 17:39:26 +00:00
|
|
|
update(ht, ctx, data, len);
|
2003-06-16 15:59:23 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-13 17:39:26 +00:00
|
|
|
Hash hashPath(const Path & path, HashType ht)
|
2003-06-16 15:59:23 +00:00
|
|
|
{
|
|
|
|
HashSink sink;
|
2005-01-13 17:39:26 +00:00
|
|
|
sink.ht = ht;
|
|
|
|
Hash hash(ht);
|
|
|
|
start(ht, sink.ctx);
|
2003-06-16 15:59:23 +00:00
|
|
|
dumpPath(path, sink);
|
2005-01-13 17:39:26 +00:00
|
|
|
finish(ht, sink.ctx, hash.hash);
|
2003-06-16 15:59:23 +00:00
|
|
|
return hash;
|
|
|
|
}
|
2005-01-14 16:04:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
Hash compressHash(const Hash & hash, unsigned int newSize)
|
|
|
|
{
|
|
|
|
Hash h;
|
|
|
|
h.hashSize = newSize;
|
|
|
|
for (unsigned int i = 0; i < hash.hashSize; ++i)
|
|
|
|
h.hash[i % newSize] ^= hash.hash[i];
|
|
|
|
return h;
|
|
|
|
}
|