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

Unified Diff: chrome/browser/extensions/external_registry_extension_loader_win.cc

Issue 6053008: Improve validation of external extension ids. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Retest on win. Created 9 years, 11 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
« no previous file with comments | « chrome/browser/extensions/external_extension_provider_interface.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/external_registry_extension_loader_win.cc
diff --git a/chrome/browser/extensions/external_registry_extension_loader_win.cc b/chrome/browser/extensions/external_registry_extension_loader_win.cc
index 7f2df55b57f15aac25a8b9c640c7ea6586165366..11c35f18e071246b99357012513a228288149bd4 100644
--- a/chrome/browser/extensions/external_registry_extension_loader_win.cc
+++ b/chrome/browser/extensions/external_registry_extension_loader_win.cc
@@ -57,6 +57,23 @@ void ExternalRegistryExtensionLoader::LoadOnFileThread() {
std::string id = WideToASCII(iterator.Name());
StringToLowerASCII(&id);
+ if (!Extension::IdIsValid(id)) {
+ LOG(ERROR) << "Invalid id value " << id
+ << " for key " << key_path << " .";
+ ++iterator;
+ continue;
+ }
+
+ scoped_ptr<Version> version;
+ version.reset(Version::GetVersionFromString(
+ WideToASCII(extension_version)));
+ if (!version.get()) {
+ LOG(ERROR) << "Invalid version value " << extension_version
+ << " for key " << key_path << " .";
+ ++iterator;
+ continue;
+ }
+
prefs->SetString(
id + "." + ExternalExtensionProviderImpl::kExternalVersion,
WideToASCII(extension_version));
@@ -66,12 +83,12 @@ void ExternalRegistryExtensionLoader::LoadOnFileThread() {
} else {
// TODO(erikkay): find a way to get this into about:extensions
LOG(ERROR) << "Missing value " << kRegistryExtensionVersion
- << " for key " << key_path;
+ << " for key " << key_path << " .";
}
} else {
// TODO(erikkay): find a way to get this into about:extensions
LOG(ERROR) << "Missing value " << kRegistryExtensionPath
- << " for key " << key_path;
+ << " for key " << key_path << " .";
}
}
++iterator;
« no previous file with comments | « chrome/browser/extensions/external_extension_provider_interface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698