Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Unified Diff: components/safe_browsing_db/v4_store.cc

Issue 2384893002: PVer4: Test checksum on startup outside the hotpath of DB load (Closed)
Patch Set: Minor: Formatting Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/safe_browsing_db/v4_store.cc
diff --git a/components/safe_browsing_db/v4_store.cc b/components/safe_browsing_db/v4_store.cc
index d00573156ef46f07962096d7e60f07457a127950..4a60e98b0e2425fcb887dc0c37c069d875d15639 100644
--- a/components/safe_browsing_db/v4_store.cc
+++ b/components/safe_browsing_db/v4_store.cc
@@ -34,8 +34,6 @@ std::string GetUmaSuffixForStore(const base::FilePath& file_path) {
void RecordTimeWithAndWithoutStore(const std::string& metric,
base::TimeDelta time,
const base::FilePath& file_path) {
- std::string suffix = GetUmaSuffixForStore(file_path);
-
// The histograms below are a modified expansion of the
// UMA_HISTOGRAM_LONG_TIMES macro adapted to allow for a dynamically suffixed
// histogram name.
@@ -49,6 +47,7 @@ void RecordTimeWithAndWithoutStore(const std::string& metric,
histogram->AddTime(time);
}
+ std::string suffix = GetUmaSuffixForStore(file_path);
base::HistogramBase* histogram_suffix = base::Histogram::FactoryTimeGet(
metric + suffix, base::TimeDelta::FromMilliseconds(1),
base::TimeDelta::FromMinutes(1), kBucketCount,
@@ -176,10 +175,10 @@ std::string V4Store::DebugString() const {
store_path_.value().c_str(), state_base64.c_str());
}
-bool V4Store::Reset() {
- // TODO(vakh): Implement skeleton.
+void V4Store::Reset() {
+ expected_checksum_.clear();
+ hash_prefix_map_.clear();
state_ = "";
- return true;
}
ApplyUpdateResult V4Store::ProcessPartialUpdateAndWriteToDisk(
@@ -203,8 +202,8 @@ ApplyUpdateResult V4Store::ProcessFullUpdateAndWriteToDisk(
TimeTicks before = TimeTicks::Now();
ApplyUpdateResult result = ProcessFullUpdate(response);
if (result == APPLY_UPDATE_SUCCESS) {
- RecordStoreWriteResult(WriteToDisk(std::move(response)));
RecordProcessFullUpdateTime(TimeTicks::Now() - before, store_path_);
+ RecordStoreWriteResult(WriteToDisk(std::move(response)));
}
return result;
}
@@ -312,7 +311,6 @@ void V4Store::ApplyUpdate(
RecordApplyUpdateResult(apply_update_result);
}
-// static
Scott Hess - ex-Googler 2016/10/06 23:04:10 AFAICT, the only reason it can't be static is stor
vakh (use Gerrit instead) 2016/10/07 00:39:45 It was already non-static but the comment hadn't b
Scott Hess - ex-Googler 2016/10/07 13:31:09 Sure.
ApplyUpdateResult V4Store::UpdateHashPrefixMapFromAdditions(
const RepeatedPtrField<ThreatEntrySet>& additions,
HashPrefixMap* additions_map) {
@@ -450,7 +448,25 @@ ApplyUpdateResult V4Store::MergeUpdate(const HashPrefixMap& old_prefixes_map,
const HashPrefixMap& additions_map,
const RepeatedField<int32>* raw_removals,
const std::string& expected_checksum) {
+ DCHECK(task_runner_->RunsTasksOnCurrentThread());
DCHECK(hash_prefix_map_.empty());
+
+ bool calculate_checksum = !expected_checksum.empty();
+ if (old_prefixes_map.empty()) {
+ // If the old map is empty, which it is at startup, then just copy over the
+ // additions map.
+ DCHECK(!raw_removals);
+ hash_prefix_map_ = additions_map;
+
+ if (calculate_checksum) {
+ // Calculate the checksum asynchronously later and if it doesn't match,
+ // reset the store.
+ expected_checksum_ = expected_checksum;
+ }
+
+ return APPLY_UPDATE_SUCCESS;
+ }
+
hash_prefix_map_.clear();
ReserveSpaceInPrefixMap(old_prefixes_map, &hash_prefix_map_);
ReserveSpaceInPrefixMap(additions_map, &hash_prefix_map_);
@@ -472,7 +488,6 @@ ApplyUpdateResult V4Store::MergeUpdate(const HashPrefixMap& old_prefixes_map,
// At least one of the maps still has elements that need to be merged into the
// new store.
- bool calculate_checksum = !expected_checksum.empty();
std::unique_ptr<crypto::SecureHash> checksum_ctx(
crypto::SecureHash::Create(crypto::SecureHash::SHA256));
@@ -502,7 +517,7 @@ ApplyUpdateResult V4Store::MergeUpdate(const HashPrefixMap& old_prefixes_map,
next_smallest_prefix_size = next_smallest_prefix_old.size();
// Update the iterator map, which means that we have merged one hash
- // prefix of size |next_size_for_old| from the old store.
+ // prefix of size |next_smallest_prefix_size| from the old store.
old_iterator_map[next_smallest_prefix_size] += next_smallest_prefix_size;
if (!raw_removals || removals_iter == raw_removals->end() ||
@@ -561,7 +576,9 @@ ApplyUpdateResult V4Store::MergeUpdate(const HashPrefixMap& old_prefixes_map,
base::Base64Encode(checksum, &checksum_base64);
base::Base64Encode(expected_checksum, &expected_checksum_base64);
DVLOG(1) << "Failure: Checksum mismatch: calculated: " << checksum_base64
- << " expected: " << expected_checksum_base64;
+ << "; expected: " << expected_checksum_base64
+ << "; store: " << *this;
+ ;
Scott Hess - ex-Googler 2016/10/06 23:04:10 Extra semi-colon, and also DCHECK_IS_ON() wrapper
return CHECKSUM_MISMATCH_FAILURE;
}
}
@@ -690,4 +707,55 @@ bool V4Store::HashPrefixMatches(const HashPrefix& hash_prefix,
}
}
+bool V4Store::VerifyChecksum() {
+ DCHECK(task_runner_->RunsTasksOnCurrentThread());
+
+ if (expected_checksum_.empty()) {
+ // If the |expected_checksum_| is empty, the file (or hash_prefix_map_)
+ // should also be empty.
+ return hash_prefix_map_.empty();
+ }
+
+ IteratorMap iterator_map;
+ HashPrefix next_smallest_prefix;
+ InitializeIteratorMap(hash_prefix_map_, &iterator_map);
+ bool has_unmerged = GetNextSmallestUnmergedPrefix(
+ hash_prefix_map_, iterator_map, &next_smallest_prefix);
+
+ std::unique_ptr<crypto::SecureHash> checksum_ctx(
+ crypto::SecureHash::Create(crypto::SecureHash::SHA256));
+ while (has_unmerged) {
+ PrefixSize next_smallest_prefix_size;
+ next_smallest_prefix_size = next_smallest_prefix.size();
+
+ // Update the iterator map, which means that we have read one hash
+ // prefix of size |next_smallest_prefix_size| from hash_prefix_map_.
+ iterator_map[next_smallest_prefix_size] += next_smallest_prefix_size;
+
+ checksum_ctx->Update(base::string_as_array(&next_smallest_prefix),
+ next_smallest_prefix_size);
Scott Hess - ex-Googler 2016/10/06 23:04:10 Why string_as_array rather than data()? Update()
vakh (use Gerrit instead) 2016/10/07 00:39:45 Done.
+
+ // Find the next smallest unmerged element in the map.
+ has_unmerged = GetNextSmallestUnmergedPrefix(hash_prefix_map_, iterator_map,
+ &next_smallest_prefix);
+ }
+
+ std::string checksum(crypto::kSHA256Length, 0);
+ checksum_ctx->Finish(base::string_as_array(&checksum), checksum.size());
Scott Hess - ex-Googler 2016/10/06 23:04:10 This usage of string_as_array() is valid ... but i
vakh (use Gerrit instead) 2016/10/07 00:39:45 Done.
+ if (checksum == expected_checksum_) {
+ expected_checksum_.clear();
+ return true;
+ }
+
+ std::string checksum_base64, expected_checksum_base64;
+ base::Base64Encode(checksum, &checksum_base64);
+ base::Base64Encode(expected_checksum_, &expected_checksum_base64);
+ DVLOG(1) << "Failure: Checksum mismatch: calculated: " << checksum_base64
+ << "; expected: " << expected_checksum_base64
+ << "; store: " << *this;
Scott Hess - ex-Googler 2016/10/06 23:04:10 That said, it might be worth wrapping this in an D
vakh (use Gerrit instead) 2016/10/07 00:39:45 Done.
+ RecordApplyUpdateResultWhenReadingFromDisk(CHECKSUM_MISMATCH_FAILURE);
+
+ return false;
+}
+
} // namespace safe_browsing

Powered by Google App Engine
This is Rietveld 408576698