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

Unified Diff: extensions/browser/computed_hashes.cc

Issue 436563004: Fix for 0-length file problem in content verification (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready for review Created 6 years, 4 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: extensions/browser/computed_hashes.cc
diff --git a/extensions/browser/computed_hashes.cc b/extensions/browser/computed_hashes.cc
index a4eb9565c8ec517c3e3cb47b628646bf1b9778c3..95f04ac812cd985434974d96bceacd6d95ebe419 100644
--- a/extensions/browser/computed_hashes.cc
+++ b/extensions/browser/computed_hashes.cc
@@ -9,11 +9,18 @@
#include "base/files/file_path.h"
#include "base/json/json_reader.h"
#include "base/json/json_writer.h"
+#include "base/stl_util.h"
+#include "base/values.h"
+#include "crypto/secure_hash.h"
+#include "crypto/sha2.h"
namespace {
-const char kPathKey[] = "path";
-const char kBlockSizeKey[] = "block_size";
const char kBlockHashesKey[] = "block_hashes";
+const char kBlockSizeKey[] = "block_size";
+const char kFileHashesKey[] = "file_hashes";
+const char kPathKey[] = "path";
+const char kVersionKey[] = "version";
+const int kVersion = 2;
}
Ken Rockot(use gerrit already) 2014/08/05 23:10:32 nit: It's still a pretty small block, but perhaps
asargent_no_longer_on_chrome 2014/08/06 04:47:32 Done.
namespace extensions {
@@ -28,9 +35,19 @@ bool ComputedHashes::Reader::InitFromFile(const base::FilePath& path) {
if (!base::ReadFileToString(path, &contents))
return false;
- base::ListValue* all_hashes = NULL;
+ base::DictionaryValue* top_dictionary = NULL;
scoped_ptr<base::Value> value(base::JSONReader::Read(contents));
- if (!value.get() || !value->GetAsList(&all_hashes))
+ if (!value.get() || !value->GetAsDictionary(&top_dictionary))
+ return false;
+
+ // For now we don't support forwards or backwards compatability in the
+ // format, so we return false on version mismatch.
+ int version = 0;
+ if (!top_dictionary->GetInteger(kVersionKey, &version) || version != kVersion)
+ return false;
+
+ base::ListValue* all_hashes = NULL;
+ if (!top_dictionary->GetList(kFileHashesKey, &all_hashes))
return false;
for (size_t i = 0; i < all_hashes->GetSize(); i++) {
@@ -91,7 +108,7 @@ bool ComputedHashes::Reader::GetHashes(const base::FilePath& relative_path,
return true;
}
-ComputedHashes::Writer::Writer() {
+ComputedHashes::Writer::Writer() : file_list_(new base::ListValue) {
}
Ken Rockot(use gerrit already) 2014/08/05 23:10:32 nit on existing code: Missing blank line.
asargent_no_longer_on_chrome 2014/08/06 04:47:32 Done.
ComputedHashes::Writer::~Writer() {
}
@@ -101,7 +118,7 @@ void ComputedHashes::Writer::AddHashes(const base::FilePath& relative_path,
const std::vector<std::string>& hashes) {
base::DictionaryValue* dict = new base::DictionaryValue();
base::ListValue* block_hashes = new base::ListValue();
- file_list_.Append(dict);
+ file_list_->Append(dict);
dict->SetString(kPathKey,
relative_path.NormalizePathSeparatorsTo('/').AsUTF8Unsafe());
dict->SetInteger(kBlockSizeKey, block_size);
@@ -118,15 +135,43 @@ void ComputedHashes::Writer::AddHashes(const base::FilePath& relative_path,
bool ComputedHashes::Writer::WriteToFile(const base::FilePath& path) {
std::string json;
- if (!base::JSONWriter::Write(&file_list_, &json))
+ base::DictionaryValue top_dictionary;
+ top_dictionary.SetInteger(kVersionKey, kVersion);
+ top_dictionary.Set(kFileHashesKey, file_list_.release());
+
+ if (!base::JSONWriter::Write(&top_dictionary, &json))
return false;
int written = base::WriteFile(path, json.data(), json.size());
if (static_cast<unsigned>(written) != json.size()) {
- LOG(ERROR) << "Error writing " << path.MaybeAsASCII()
+ LOG(ERROR) << "Error writing " << path.AsUTF8Unsafe()
<< " ; write result:" << written << " expected:" << json.size();
return false;
}
return true;
}
+void ComputedHashes::ComputeHashesForContent(const std::string& contents,
+ size_t block_size,
+ std::vector<std::string>* hashes) {
+ size_t offset = 0;
+ do {
+ const char* block_start = contents.data() + offset;
+ size_t bytes_to_read = std::min(contents.size() - offset, block_size);
+ DCHECK(bytes_to_read >= 0);
Ken Rockot(use gerrit already) 2014/08/05 23:10:32 Sort of an invalid DCHECK because a size_t is alwa
asargent_no_longer_on_chrome 2014/08/06 04:47:32 Ah, good catch. Done.
+ scoped_ptr<crypto::SecureHash> hash(
+ crypto::SecureHash::Create(crypto::SecureHash::SHA256));
+ hash->Update(block_start, bytes_to_read);
+
+ hashes->push_back(std::string());
+ std::string* buffer = &(hashes->back());
Ken Rockot(use gerrit already) 2014/08/05 23:10:32 Can you not use a reference here instead? Or is th
asargent_no_longer_on_chrome 2014/08/06 04:47:32 I don't think there's a rule about it one way or a
+ buffer->resize(crypto::kSHA256Length);
+ hash->Finish(string_as_array(buffer), buffer->size());
+
+ if (bytes_to_read == 0)
Ken Rockot(use gerrit already) 2014/08/05 23:10:32 nit: Might want to comment to make this escape mor
asargent_no_longer_on_chrome 2014/08/06 04:47:32 Done.
+ break;
+ else
Ken Rockot(use gerrit already) 2014/08/05 23:10:32 nit: no need for the else
asargent_no_longer_on_chrome 2014/08/06 04:47:32 Done.
+ offset += bytes_to_read;
+ } while (offset < contents.size());
+}
+
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698