1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/extension_management_internal.h"
#include <utility>
#include "base/logging.h"
#include "base/values.h"
#include "base/version.h"
#include "chrome/browser/extensions/extension_management_constants.h"
#include "chrome/browser/extensions/managed_installation_mode.h"
#include "chrome/browser/extensions/managed_toolbar_pin_mode.h"
#include "extensions/common/extension_urls.h"
#include "extensions/common/url_pattern_set.h"
#include "url/gurl.h"
namespace extensions {
namespace internal {
namespace {
const char kMalformedPreferenceWarning[] =
"Malformed extension management preference.";
// Maximum number of characters for a 'blocked_install_message' value.
const int kBlockedInstallMessageMaxLength = 1000;
bool GetString(const base::Value::Dict& dict,
const char* key,
std::string* result) {
const std::string* value = dict.FindString(key);
if (!value)
return false;
*result = *value;
return true;
}
} // namespace
IndividualSettings::IndividualSettings() {
Reset();
}
// Initializes from default settings.
IndividualSettings::IndividualSettings(
const IndividualSettings* default_settings) {
installation_mode = default_settings->installation_mode;
update_url = default_settings->update_url;
// We are not initializing `minimum_version_required` from `default_settings`
// here since it's not applicable to default settings.
//
// We also do not inherit `blocked_permissions`, `runtime_allowed_hosts` or
// `runtime_blocked_hosts` from default either. It's likely not a behavior by
// design but fixing these issues may break users that rely on them. For
// now, we will keep it as is until there is a long term plan.
}
IndividualSettings::~IndividualSettings() = default;
bool IndividualSettings::Parse(const base::Value::Dict& dict,
ParsingScope scope) {
std::string installation_mode_str;
if (GetString(dict, schema_constants::kInstallationMode,
&installation_mode_str)) {
if (installation_mode_str == schema_constants::kAllowed) {
installation_mode = ManagedInstallationMode::kAllowed;
} else if (installation_mode_str == schema_constants::kBlocked) {
installation_mode = ManagedInstallationMode::kBlocked;
} else if (installation_mode_str == schema_constants::kForceInstalled) {
installation_mode = ManagedInstallationMode::kForced;
} else if (installation_mode_str == schema_constants::kNormalInstalled) {
installation_mode = ManagedInstallationMode::kRecommended;
} else if (installation_mode_str == schema_constants::kRemoved) {
installation_mode = ManagedInstallationMode::kRemoved;
} else {
// Invalid value for 'installation_mode'.
LOG(WARNING) << kMalformedPreferenceWarning;
return false;
}
// Only proceed to fetch update url if force or recommended install mode
// is set.
if (installation_mode == ManagedInstallationMode::kForced ||
installation_mode == ManagedInstallationMode::kRecommended) {
if (scope != SCOPE_INDIVIDUAL) {
// Only individual extensions are allowed to be automatically
// installed.
LOG(WARNING) << kMalformedPreferenceWarning;
return false;
}
std::string update_url_str;
if (GetString(dict, schema_constants::kUpdateUrl, &update_url_str) &&
GURL(update_url_str).is_valid()) {
update_url = update_url_str;
} else {
// No valid update URL for extension.
LOG(WARNING) << kMalformedPreferenceWarning;
return false;
}
}
}
bool is_policy_installed =
installation_mode == ManagedInstallationMode::kForced ||
installation_mode == ManagedInstallationMode::kRecommended;
// Note: We ignore the override update URL policy when the update URL is from
// the webstore.
if (is_policy_installed &&
!extension_urls::IsWebstoreUpdateUrl(GURL(update_url))) {
const std::optional<bool> is_update_url_overridden =
dict.FindBool(schema_constants::kOverrideUpdateUrl);
if (is_update_url_overridden)
override_update_url = is_update_url_overridden.value();
}
// Parses the blocked permission settings.
std::u16string error;
// Parse the blocked and allowed permissions.
// Note that we currently don't use default permission settings for
// per-update-url or per-id settings at all even though they are not set.
// For example:
// {"*" : {blocked_permissions:["audio"]}, "id1":{}}
// {"*" : {blocked_permissions:["audio"]}}
// Extension id1 is able to get the audio permission with the first config but
// not the second one.
// It's against the intuition but we will NOT change this behavior until we
// find a good way to fix this issue as external users may rely on it anyway.
// This also makes the "allowed_permissions" attribute meaningless. However,
// for the same reason, we keep the code for now.
APIPermissionSet parsed_blocked_permissions;
APIPermissionSet explicitly_allowed_permissions;
const base::Value::List* list_value =
dict.FindList(schema_constants::kAllowedPermissions);
if (list_value) {
if (!APIPermissionSet::ParseFromJSON(
*list_value, APIPermissionSet::kDisallowInternalPermissions,
&explicitly_allowed_permissions, &error, nullptr)) {
LOG(WARNING) << error;
}
}
list_value = dict.FindList(schema_constants::kBlockedPermissions);
if (list_value) {
if (!APIPermissionSet::ParseFromJSON(
*list_value, APIPermissionSet::kDisallowInternalPermissions,
&parsed_blocked_permissions, &error, nullptr)) {
LOG(WARNING) << error;
}
}
APIPermissionSet::Difference(parsed_blocked_permissions,
explicitly_allowed_permissions,
&blocked_permissions);
// Parses list of Match Patterns into a URLPatternSet.
auto parse_url_pattern_set = [](const base::Value::Dict& dict,
const char key[], URLPatternSet* out_value) {
// Get the list of URLPatterns.
const base::Value::List* host_list_value = dict.FindList(key);
if (host_list_value) {
if (host_list_value->size() > schema_constants::kMaxItemsURLPatternSet) {
LOG(WARNING) << "Exceeded maximum number of URL match patterns ("
<< schema_constants::kMaxItemsURLPatternSet
<< ") for attribute '" << key << "'";
}
out_value->ClearPatterns();
const int extension_scheme_mask =
URLPattern::GetValidSchemeMaskForExtensions();
auto num_items = std::min(host_list_value->size(),
schema_constants::kMaxItemsURLPatternSet);
for (size_t i = 0; i < num_items; ++i) {
std::string unparsed_str;
if ((*host_list_value)[i].is_string())
unparsed_str = (*host_list_value)[i].GetString();
URLPattern pattern(extension_scheme_mask);
if (unparsed_str != URLPattern::kAllUrlsPattern)
unparsed_str.append("/*");
URLPattern::ParseResult parse_result = pattern.Parse(unparsed_str);
if (parse_result != URLPattern::ParseResult::kSuccess) {
LOG(WARNING) << kMalformedPreferenceWarning;
LOG(WARNING) << "Invalid URL pattern '" + unparsed_str +
"' for attribute " + key;
return false;
}
out_value->AddPattern(pattern);
}
}
return true;
};
if (!parse_url_pattern_set(dict, schema_constants::kPolicyBlockedHosts,
&policy_blocked_hosts))
return false;
if (!parse_url_pattern_set(dict, schema_constants::kPolicyAllowedHosts,
&policy_allowed_hosts))
return false;
// Parses the minimum version settings.
std::string minimum_version_required_str;
if (scope == SCOPE_INDIVIDUAL &&
GetString(dict, schema_constants::kMinimumVersionRequired,
&minimum_version_required_str)) {
std::unique_ptr<base::Version> version(
new base::Version(minimum_version_required_str));
// We accept a general version string here. Note that count of components in
// version string of extensions is limited to 4.
if (!version->IsValid())
LOG(WARNING) << kMalformedPreferenceWarning;
else
minimum_version_required = std::move(version);
}
if (GetString(dict, schema_constants::kBlockedInstallMessage,
&blocked_install_message)) {
if (blocked_install_message.length() > kBlockedInstallMessageMaxLength) {
LOG(WARNING) << "Truncated blocked install message to 1000 characters";
blocked_install_message.erase(kBlockedInstallMessageMaxLength,
std::string::npos);
}
}
std::string toolbar_pin_str;
if (GetString(dict, schema_constants::kToolbarPin, &toolbar_pin_str)) {
if (toolbar_pin_str == schema_constants::kDefaultUnpinned) {
toolbar_pin = ManagedToolbarPinMode::kDefaultUnpinned;
} else if (toolbar_pin_str == schema_constants::kForcePinned) {
toolbar_pin = ManagedToolbarPinMode::kForcePinned;
} else {
// Invalid value for 'toolbar_pin'.
LOG(WARNING) << kMalformedPreferenceWarning;
return false;
}
}
const std::optional<bool> is_file_url_navigation_allowed =
dict.FindBool(schema_constants::kFileUrlNavigationAllowed);
if (is_file_url_navigation_allowed) {
file_url_navigation_allowed = is_file_url_navigation_allowed.value();
}
return true;
}
void IndividualSettings::Reset() {
installation_mode = ManagedInstallationMode::kAllowed;
update_url.clear();
blocked_permissions.clear();
policy_blocked_hosts.ClearPatterns();
policy_allowed_hosts.ClearPatterns();
blocked_install_message.clear();
}
GlobalSettings::GlobalSettings() = default;
GlobalSettings::~GlobalSettings() = default;
void GlobalSettings::Reset() {
install_sources.reset();
allowed_types.reset();
manifest_v2_setting = ManifestV2Setting::kDefault;
unpublished_availability_setting = UnpublishedAvailability::kAllowUnpublished;
}
} // namespace internal
} // namespace extensions
|