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

Unified Diff: chrome/browser/extensions/external_extension_provider_impl.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
Index: chrome/browser/extensions/external_extension_provider_impl.cc
diff --git a/chrome/browser/extensions/external_extension_provider_impl.cc b/chrome/browser/extensions/external_extension_provider_impl.cc
index 9856cee4f0a16b593fd026651347b499fae16daf..b6a8b463d51a72dbf5643e16046fff1c829d15c0 100644
--- a/chrome/browser/extensions/external_extension_provider_impl.cc
+++ b/chrome/browser/extensions/external_extension_provider_impl.cc
@@ -69,8 +69,19 @@ void ExternalExtensionProviderImpl::SetPrefs(DictionaryValue* prefs) {
i != prefs_->end_keys(); ++i) {
const std::string& extension_id = *i;
DictionaryValue* extension;
- if (!prefs_->GetDictionaryWithoutPathExpansion(extension_id, &extension))
+
+ if (!Extension::IdIsValid(extension_id)) {
+ LOG(WARNING) << "Malformed extension dictionary: key "
+ << extension_id.c_str() << " is not a valid id.";
continue;
+ }
+
+ if (!prefs_->GetDictionaryWithoutPathExpansion(extension_id, &extension)) {
+ LOG(WARNING) << "Malformed extension dictionary: key "
+ << extension_id.c_str()
+ << " has a value that is not a dictionary.";
+ continue;
+ }
FilePath::StringType external_crx;
std::string external_version;
@@ -138,9 +149,9 @@ void ExternalExtensionProviderImpl::SetPrefs(DictionaryValue* prefs) {
GURL update_url(external_update_url);
if (!update_url.is_valid()) {
LOG(WARNING) << "Malformed extension dictionary for extension: "
- << extension_id.c_str() << ". " << kExternalUpdateUrl
- << " must be a valid URL. Saw \"" << external_update_url
- << "\".";
+ << extension_id.c_str() << ". Key " << kExternalUpdateUrl
+ << " has value \"" << external_update_url
+ << "\", which is not a valid URL.";
continue;
}
service_->OnExternalExtensionUpdateUrlFound(
« no previous file with comments | « chrome/browser/extensions/extension_updater.cc ('k') | chrome/browser/extensions/external_extension_provider_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698