From 976a36c2e482f416acd79a624e6d96cce2564b5b Mon Sep 17 00:00:00 2001 From: Kane York Date: Mon, 27 Jul 2020 17:07:51 -0700 Subject: chore(3p/nix/hash): eliminate exposed global variable Change-Id: I3b34e3e17a751e225831ae599c6c6bb782a25679 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1486 Tested-by: BuildkiteCI Reviewed-by: tazjin --- third_party/nix/src/libstore/references.cc | 54 ++++++++++-------------------- 1 file changed, 18 insertions(+), 36 deletions(-) (limited to 'third_party/nix/src/libstore') diff --git a/third_party/nix/src/libstore/references.cc b/third_party/nix/src/libstore/references.cc index b70d282e8df8..879f126f63ee 100644 --- a/third_party/nix/src/libstore/references.cc +++ b/third_party/nix/src/libstore/references.cc @@ -13,38 +13,21 @@ namespace nix { static unsigned int refLength = 32; /* characters */ -static void search(const unsigned char* s, size_t len, StringSet& hashes, +static void search(const char* s, size_t len, StringSet& hashes, StringSet& seen) { - static bool initialised = false; - static bool isBase32[256]; - if (!initialised) { - for (bool& i : isBase32) { - i = false; - } - for (char base32Char : base32Chars) { - isBase32[static_cast(base32Char)] = true; - } - initialised = true; - } - for (size_t i = 0; i + refLength <= len;) { - int j = 0; - bool match = true; - for (j = refLength - 1; j >= 0; --j) { - if (!isBase32[s[i + j]]) { - i += j + 1; - match = false; - break; - } - } + absl::string_view ref(s + i, refLength); + bool match = Hash::IsValidBase32(ref); if (!match) { continue; } - std::string ref(reinterpret_cast(s) + i, refLength); - if (hashes.find(ref) != hashes.end()) { + // TODO(kanepyork): convert StringSet to flat_hash_set, delay owned string + // conversion into the 'if' + std::string sref(ref); + if (hashes.find(sref) != hashes.end()) { DLOG(INFO) << "found reference to '" << ref << "' at offset " << i; - seen.insert(ref); - hashes.erase(ref); + seen.insert(sref); + hashes.erase(sref); } ++i; } @@ -65,22 +48,21 @@ struct RefScanSink : Sink { void RefScanSink::operator()(const unsigned char* data, size_t len) { hashSink(data, len); + const char* data_ = reinterpret_cast(data); + /* It's possible that a reference spans the previous and current fragment, so search in the concatenation of the tail of the previous fragment and the start of the current fragment. */ - std::string s = tail + std::string(reinterpret_cast(data), - len > refLength ? refLength : len); - search(reinterpret_cast(s.data()), s.size(), hashes, - seen); + std::string s = tail + std::string(data_, len > refLength ? refLength : len); + search(s.data(), s.size(), hashes, seen); - search(data, len, hashes, seen); + search(data_, len, hashes, seen); size_t tailLen = len <= refLength ? len : refLength; - tail = - std::string(tail, tail.size() < refLength - tailLen - ? 0 - : tail.size() - (refLength - tailLen)) + - std::string(reinterpret_cast(data) + len - tailLen, tailLen); + tail = std::string(tail, tail.size() < refLength - tailLen + ? 0 + : tail.size() - (refLength - tailLen)) + + std::string(data_ + len - tailLen, tailLen); } PathSet scanForReferences(const std::string& path, const PathSet& refs, -- cgit 1.4.1