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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/common/manifest_handlers/csp_info.h"
#include <memory>
#include <string_view>
#include <utility>
#include "base/feature_list.h"
#include "base/no_destructor.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "extensions/common/csp_validator.h"
#include "extensions/common/error_utils.h"
#include "extensions/common/extension_features.h"
#include "extensions/common/install_warning.h"
#include "extensions/common/manifest_constants.h"
#include "extensions/common/manifest_handlers/sandboxed_page_info.h"
namespace extensions {
namespace keys = manifest_keys;
namespace errors = manifest_errors;
using csp_validator::ContentSecurityPolicyIsLegal;
using csp_validator::SanitizeContentSecurityPolicy;
namespace {
const char kDefaultContentSecurityPolicy[] =
"script-src 'self' blob: filesystem:; "
"object-src 'self' blob: filesystem:;";
const char kDefaultSandboxedPageContentSecurityPolicy[] =
"sandbox allow-scripts allow-forms allow-popups allow-modals; "
"script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';";
// The default CSP to be used if no CSP provided.
static const char kDefaultMV3CSP[] = "script-src 'self';";
// The minimum CSP to be used in order to prevent remote scripts.
static const char kMinimumMV3CSP[] =
"script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules'; "
"object-src 'self';";
// The minimum CSP to be used in isolated worlds. The placeholder is for the
// extension's dynamic URL.
constexpr char kMinimumMV3IsolatedWorldCSPTemplate[] =
"script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules' %s; "
"object-src 'self';";
// For unpacked extensions, we additionally allow the use of localhost files to
// aid in rapid local development.
static const char kMinimumUnpackedMV3CSP[] =
"script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules' "
"http://localhost:* http://127.0.0.1:*; object-src 'self';";
// The minimum CSP to be used in isolated worlds for unpacked extensions. The
// placeholder is for the extension's dynamic URL.
constexpr char kMinimumUnpackedMV3IsolatedWorldCSPTemplate[] =
"script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules' "
"http://localhost:* http://127.0.0.1:* %s; object-src 'self';";
#define PLATFORM_APP_LOCAL_CSP_SOURCES "'self' blob: filesystem: data:"
// clang-format off
const char kDefaultPlatformAppContentSecurityPolicy[] =
// Platform apps can only use local resources by default.
"default-src 'self' blob: filesystem:;"
// For remote resources, they can fetch them via XMLHttpRequest.
" connect-src * data: blob: filesystem:;"
// And serve them via data: or same-origin (blob:, filesystem:) URLs
" style-src " PLATFORM_APP_LOCAL_CSP_SOURCES " 'unsafe-inline';"
" img-src " PLATFORM_APP_LOCAL_CSP_SOURCES ";"
" frame-src " PLATFORM_APP_LOCAL_CSP_SOURCES ";"
" font-src " PLATFORM_APP_LOCAL_CSP_SOURCES ";"
// Media can be loaded from remote resources since:
// 1. <video> and <audio> have good fallback behavior when offline or under
// spotty connectivity.
// 2. Fetching via XHR and serving via blob: URLs currently does not allow
// streaming or partial buffering.
" media-src * data: blob: filesystem:;"
// Scripts are allowed to use WebAssembly
" script-src 'self' blob: filesystem: 'wasm-unsafe-eval';";
// clang-format on
int GetValidatorOptions(Extension* extension) {
int options = csp_validator::OPTIONS_NONE;
// crbug.com/146487
if (extension->GetType() == Manifest::TYPE_EXTENSION ||
extension->GetType() == Manifest::TYPE_LEGACY_PACKAGED_APP) {
options |= csp_validator::OPTIONS_ALLOW_UNSAFE_EVAL;
}
// Component extensions can specify an insecure object-src directive. This
// should be safe because non-NPAPI plugins should load in a sandboxed process
// and only allow communication via postMessage.
// Manifest V3 extensions don't need to specify an object-src, which for the
// CSPValidator is considered "insecure". The provided values are later
// checked in DoesCSPDisallowRemoteCode() for MV3 extensions.
if (extensions::Manifest::IsComponentLocation(extension->location()) ||
extension->manifest_version() >= 3) {
options |= csp_validator::OPTIONS_ALLOW_INSECURE_OBJECT_SRC;
}
return options;
}
std::u16string GetInvalidManifestKeyError(std::string_view key) {
return ErrorUtils::FormatErrorMessageUTF16(errors::kInvalidManifestKey, key);
}
// Returns null if the manifest type can't access the path. Else returns the
// corresponding Value.
const base::Value* GetManifestPath(const Extension* extension,
const char* path) {
return extension->manifest()->FindPath(path);
}
const char* GetDefaultExtensionPagesCSP(Extension* extension) {
if (extension->manifest_version() >= 3) {
return kDefaultMV3CSP;
}
if (extension->GetType() == Manifest::TYPE_PLATFORM_APP) {
return kDefaultPlatformAppContentSecurityPolicy;
}
return kDefaultContentSecurityPolicy;
}
// Returns the minimum CSP to apply for the given MV3 extension.
const std::string* GetMinimumMV3CSPForExtension(const Extension& extension) {
DCHECK_GE(extension.manifest_version(), 3);
static const base::NoDestructor<std::string> default_csp(kMinimumMV3CSP);
static const base::NoDestructor<std::string> default_unpacked_csp(
kMinimumUnpackedMV3CSP);
return Manifest::IsUnpackedLocation(extension.location())
? default_unpacked_csp.get()
: default_csp.get();
}
} // namespace
CSPInfo::CSPInfo(std::string extension_pages_csp)
: extension_pages_csp(std::move(extension_pages_csp)) {}
CSPInfo::~CSPInfo() = default;
// static
const std::string& CSPInfo::GetExtensionPagesCSP(const Extension* extension) {
CSPInfo* csp_info = static_cast<CSPInfo*>(
extension->GetManifestData(keys::kContentSecurityPolicy));
return csp_info ? csp_info->extension_pages_csp : base::EmptyString();
}
// static
const std::string* CSPInfo::GetMinimumCSPToAppend(
const Extension& extension,
const std::string& relative_path) {
if (!extension.is_extension()) {
return nullptr;
}
// For sandboxed pages and manifest V2 extensions, append the parsed CSP. This
// helps ensure that extension's can't get around our parsing rules by CSP
// modifications through, say service workers.
if (SandboxedPageInfo::IsSandboxedPage(&extension, relative_path)) {
return &GetSandboxContentSecurityPolicy(&extension);
}
if (extension.manifest_version() <= 2) {
return &GetExtensionPagesCSP(&extension);
}
// For manifest V3 extensions, append the minimum secure CSP. This
// additionally helps protect against bugs in our CSP parsing code which may
// cause the parsed CSP to not be as strong as the default one. For example,
// see crbug.com/1042963.
return GetMinimumMV3CSPForExtension(extension);
}
// static
std::optional<std::string> CSPInfo::GetIsolatedWorldCSP(
const Extension& extension) {
if (extension.manifest_version() >= 3) {
std::string isolated_world_csp;
// Note: base::StringPrintf() requires the template string to be constexpr,
// so we can't put the template in a temporary const char* with a ternary
// to avoid the repeated StringPrintf() calls.
if (Manifest::IsUnpackedLocation(extension.location())) {
isolated_world_csp =
base::StringPrintf(kMinimumUnpackedMV3IsolatedWorldCSPTemplate,
extension.dynamic_url().spec().c_str());
} else {
isolated_world_csp =
base::StringPrintf(kMinimumMV3IsolatedWorldCSPTemplate,
extension.dynamic_url().spec().c_str());
}
return isolated_world_csp;
}
Manifest::Type type = extension.GetType();
bool bypass_main_world_csp = type == Manifest::TYPE_PLATFORM_APP ||
type == Manifest::TYPE_EXTENSION ||
type == Manifest::TYPE_LEGACY_PACKAGED_APP;
if (!bypass_main_world_csp) {
// The isolated world will use the main world CSP.
return std::nullopt;
}
// The isolated world will bypass the main world CSP.
return std::string();
}
// static
const std::string& CSPInfo::GetSandboxContentSecurityPolicy(
const Extension* extension) {
CSPInfo* csp_info = static_cast<CSPInfo*>(
extension->GetManifestData(keys::kContentSecurityPolicy));
return csp_info ? csp_info->sandbox_csp : base::EmptyString();
}
// static
const std::string& CSPInfo::GetResourceContentSecurityPolicy(
const Extension* extension,
const std::string& relative_path) {
return SandboxedPageInfo::IsSandboxedPage(extension, relative_path)
? GetSandboxContentSecurityPolicy(extension)
: GetExtensionPagesCSP(extension);
}
CSPHandler::CSPHandler() = default;
CSPHandler::~CSPHandler() = default;
// static
const char* CSPHandler::GetMinimumMV3CSPForTesting() {
return kMinimumMV3CSP;
}
// static
const char* CSPHandler::GetMinimumUnpackedMV3CSPForTesting() {
return kMinimumUnpackedMV3CSP;
}
bool CSPHandler::Parse(Extension* extension, std::u16string* error) {
const char* key = extension->GetType() == Manifest::TYPE_PLATFORM_APP
? keys::kPlatformAppContentSecurityPolicy
: keys::kContentSecurityPolicy;
// The "content_security_policy" manifest key can either be a string or a
// dictionary of the format.
// "content_security_policy" : {
// "extension_pages": "",
// "sandbox": "",
// }
// The dictionary is supported (and mandated) for manifest v3 (and above)
// extensions.
const base::Value* csp = GetManifestPath(extension, key);
bool parse_as_dictionary = extension->manifest_version() >= 3;
if (parse_as_dictionary) {
if (csp && !csp->is_dict()) {
*error = GetInvalidManifestKeyError(key);
return false;
}
return ParseCSPDictionary(extension, error);
}
if (!ParseExtensionPagesCSP(extension, error, key, csp)) {
return false;
}
// Since this is a MV2 extension / app, we don't allow remote sources in
// the CSP.
constexpr bool kAllowRemoteSources = false;
if (!ParseSandboxCSP(extension, error, keys::kSandboxedPagesCSP,
GetManifestPath(extension, keys::kSandboxedPagesCSP),
kAllowRemoteSources)) {
return false;
}
return true;
}
bool CSPHandler::ParseCSPDictionary(Extension* extension,
std::u16string* error) {
// keys::kSandboxedPagesCSP shouldn't be used when using
// keys::kContentSecurityPolicy as a dictionary.
if (extension->manifest()->FindPath(keys::kSandboxedPagesCSP)) {
*error = errors::kSandboxPagesCSPKeyNotAllowed;
return false;
}
// Since this is an MV3 extension, we allow remote sources in the
// sandboxed page CSP.
constexpr bool kAllowRemoteSources = true;
return ParseExtensionPagesCSP(
extension, error, keys::kContentSecurityPolicy_ExtensionPagesPath,
GetManifestPath(
extension, keys::kContentSecurityPolicy_ExtensionPagesPath)) &&
ParseSandboxCSP(
extension, error, keys::kContentSecurityPolicy_SandboxedPagesPath,
GetManifestPath(extension,
keys::kContentSecurityPolicy_SandboxedPagesPath),
kAllowRemoteSources);
}
bool CSPHandler::ParseExtensionPagesCSP(
Extension* extension,
std::u16string* error,
std::string_view manifest_key,
const base::Value* content_security_policy) {
if (!content_security_policy) {
return SetExtensionPagesCSP(extension, manifest_key,
GetDefaultExtensionPagesCSP(extension));
}
if (!content_security_policy->is_string()) {
*error = GetInvalidManifestKeyError(manifest_key);
return false;
}
const std::string& content_security_policy_str =
content_security_policy->GetString();
if (!ContentSecurityPolicyIsLegal(content_security_policy_str)) {
*error = GetInvalidManifestKeyError(manifest_key);
return false;
}
if (extension->manifest_version() >= 3) {
if (!csp_validator::DoesCSPDisallowRemoteCode(content_security_policy_str,
manifest_key, error)) {
return false;
}
SetExtensionPagesCSP(extension, manifest_key, content_security_policy_str);
return true;
}
std::vector<InstallWarning> warnings;
std::string sanitized_content_security_policy = SanitizeContentSecurityPolicy(
content_security_policy_str, std::string(manifest_key),
GetValidatorOptions(extension), &warnings);
extension->AddInstallWarnings(std::move(warnings));
SetExtensionPagesCSP(extension, manifest_key,
std::move(sanitized_content_security_policy));
return true;
}
bool CSPHandler::ParseSandboxCSP(Extension* extension,
std::u16string* error,
std::string_view manifest_key,
const base::Value* sandbox_csp,
bool allow_remote_sources) {
if (!sandbox_csp) {
SetSandboxCSP(extension, kDefaultSandboxedPageContentSecurityPolicy);
return true;
}
if (!sandbox_csp->is_string()) {
*error = GetInvalidManifestKeyError(manifest_key);
return false;
}
const std::string& sandbox_csp_str = sandbox_csp->GetString();
if (!ContentSecurityPolicyIsLegal(sandbox_csp_str) ||
!csp_validator::ContentSecurityPolicyIsSandboxed(sandbox_csp_str,
extension->GetType())) {
*error = GetInvalidManifestKeyError(manifest_key);
return false;
}
std::vector<InstallWarning> warnings;
std::string effective_sandbox_csp = sandbox_csp_str;
if (!allow_remote_sources) {
effective_sandbox_csp =
csp_validator::GetSandboxedPageCSPDisallowingRemoteSources(
sandbox_csp_str, std::string(manifest_key), &warnings);
}
SetSandboxCSP(extension, std::move(effective_sandbox_csp));
extension->AddInstallWarnings(std::move(warnings));
return true;
}
bool CSPHandler::SetExtensionPagesCSP(Extension* extension,
std::string_view manifest_key,
std::string content_security_policy) {
if (extension->manifest_version() >= 3) {
std::u16string error;
DCHECK(csp_validator::DoesCSPDisallowRemoteCode(content_security_policy,
manifest_key, &error));
} else {
DCHECK_EQ(content_security_policy,
SanitizeContentSecurityPolicy(
content_security_policy, std::string(manifest_key),
GetValidatorOptions(extension), nullptr));
}
extension->SetManifestData(
keys::kContentSecurityPolicy,
std::make_unique<CSPInfo>(std::move(content_security_policy)));
return true;
}
void CSPHandler::SetSandboxCSP(Extension* extension, std::string sandbox_csp) {
CHECK(csp_validator::ContentSecurityPolicyIsSandboxed(sandbox_csp,
extension->GetType()));
// By now we must have parsed the extension page CSP.
CSPInfo* csp_info = static_cast<CSPInfo*>(
extension->GetManifestData(keys::kContentSecurityPolicy));
DCHECK(csp_info);
csp_info->sandbox_csp = std::move(sandbox_csp);
}
bool CSPHandler::AlwaysParseForType(Manifest::Type type) const {
// TODO(crbug.com/40099692): Check if TYPE_USER_SCRIPT needs to be included
// here.
return type == Manifest::TYPE_PLATFORM_APP ||
type == Manifest::TYPE_EXTENSION ||
type == Manifest::TYPE_LEGACY_PACKAGED_APP;
}
base::span<const char* const> CSPHandler::Keys() const {
static constexpr const char* kKeys[] = {
keys::kContentSecurityPolicy, keys::kPlatformAppContentSecurityPolicy,
keys::kSandboxedPagesCSP};
return kKeys;
}
} // namespace extensions
|