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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "AddonContentPolicy.h"
#include "mozilla/dom/nsCSPContext.h"
#include "nsCOMPtr.h"
#include "nsComponentManagerUtils.h"
#include "nsIContent.h"
#include "mozilla/BasePrincipal.h"
#include "mozilla/Components.h"
#include "mozilla/dom/Document.h"
#include "mozilla/intl/Localization.h"
#include "nsIEffectiveTLDService.h"
#include "nsIUUIDGenerator.h"
#include "nsIURI.h"
#include "nsNetCID.h"
#include "nsNetUtil.h"
using namespace mozilla;
using namespace mozilla::intl;
/* Enforces content policies for WebExtension scopes. Currently:
*
* - Checks custom content security policies for sufficiently stringent
* script-src and other script-related directives.
* - We also used to validate object-src similarly to script-src, but that was
* dropped because NPAPI plugins are no longer supported (see bug 1766881).
*/
AddonContentPolicy::AddonContentPolicy() = default;
AddonContentPolicy::~AddonContentPolicy() = default;
NS_IMPL_ISUPPORTS(AddonContentPolicy, nsIAddonContentPolicy)
// CSP Validation:
static const char* allowedSchemes[] = {"blob", "filesystem", nullptr};
static const char* allowedHostSchemes[] = {"http", "https", "moz-extension",
nullptr};
/**
* Validates a CSP directive to ensure that it is sufficiently stringent.
* In particular, ensures that:
*
* - No remote sources are allowed other than from https: schemes
*
* - No remote sources specify host wildcards for generic domains
* (*.blogspot.com, *.com, *)
*
* - All remote sources and local extension sources specify a host
*
* - No scheme sources are allowed other than blob:, filesystem:,
* moz-extension:, and https:
*
* - No keyword sources are allowed other than 'none', 'self', 'unsafe-eval',
* and hash sources.
*
* Manifest V3 limits CSP for extension_pages, the script-src and
* worker-src directives may only be the following:
* - self
* - none
*/
class CSPValidator final : public nsCSPSrcVisitor {
public:
CSPValidator(nsAString& aURL, CSPDirective aDirective,
bool aDirectiveRequired = true, uint32_t aPermittedPolicy = 0)
: mURL(aURL),
mDirective(CSP_CSPDirectiveToString(aDirective)),
mPermittedPolicy(aPermittedPolicy),
mDirectiveRequired(aDirectiveRequired),
mFoundSelf(false) {
// Start with the default error message for a missing directive, since no
// visitors will be called if the directive isn't present.
mError.SetIsVoid(true);
}
// Visitors
bool visitSchemeSrc(const nsCSPSchemeSrc& src) override {
nsAutoString scheme;
src.getScheme(scheme);
if (SchemeInList(scheme, allowedHostSchemes)) {
FormatError("csp-error-missing-host"_ns, "scheme"_ns, scheme);
return false;
}
if (!SchemeInList(scheme, allowedSchemes)) {
FormatError("csp-error-illegal-protocol"_ns, "scheme"_ns, scheme);
return false;
}
return true;
};
bool visitHostSrc(const nsCSPHostSrc& src) override {
nsAutoString scheme, host;
src.getScheme(scheme);
src.getHost(host);
if (scheme.LowerCaseEqualsLiteral("http")) {
// Allow localhost on http
if (mPermittedPolicy & nsIAddonContentPolicy::CSP_ALLOW_LOCALHOST &&
HostIsLocal(host)) {
return true;
}
FormatError("csp-error-illegal-protocol"_ns, "scheme"_ns, scheme);
return false;
}
if (scheme.LowerCaseEqualsLiteral("https")) {
if (mPermittedPolicy & nsIAddonContentPolicy::CSP_ALLOW_LOCALHOST &&
HostIsLocal(host)) {
return true;
}
if (!(mPermittedPolicy & nsIAddonContentPolicy::CSP_ALLOW_REMOTE)) {
FormatError("csp-error-illegal-protocol"_ns, "scheme"_ns, scheme);
return false;
}
if (!HostIsAllowed(host)) {
FormatError("csp-error-illegal-host-wildcard"_ns, "scheme"_ns, scheme);
return false;
}
} else if (scheme.LowerCaseEqualsLiteral("moz-extension")) {
// The CSP parser silently converts 'self' keywords to the origin
// URL, so we need to reconstruct the URL to see if it was present.
if (!mFoundSelf) {
nsAutoString url(u"moz-extension://");
url.Append(host);
mFoundSelf = url.Equals(mURL);
}
if (host.IsEmpty() || host.EqualsLiteral("*")) {
FormatError("csp-error-missing-host"_ns, "scheme"_ns, scheme);
return false;
}
} else if (!SchemeInList(scheme, allowedSchemes)) {
FormatError("csp-error-illegal-protocol"_ns, "scheme"_ns, scheme);
return false;
}
return true;
};
bool visitKeywordSrc(const nsCSPKeywordSrc& src) override {
switch (src.getKeyword()) {
case CSP_NONE:
case CSP_SELF:
return true;
case CSP_WASM_UNSAFE_EVAL:
if (mPermittedPolicy & nsIAddonContentPolicy::CSP_ALLOW_WASM) {
return true;
}
// fall through to also check CSP_ALLOW_EVAL
[[fallthrough]];
case CSP_UNSAFE_EVAL:
if (mPermittedPolicy & nsIAddonContentPolicy::CSP_ALLOW_EVAL) {
return true;
}
// fall through and produce an illegal-keyword error.
[[fallthrough]];
default:
FormatError(
"csp-error-illegal-keyword"_ns, "keyword"_ns,
nsDependentString(CSP_EnumToUTF16Keyword(src.getKeyword())));
return false;
}
};
bool visitNonceSrc(const nsCSPNonceSrc& src) override {
FormatError("csp-error-illegal-keyword"_ns, "keyword"_ns, u"'nonce-*'"_ns);
return false;
};
bool visitHashSrc(const nsCSPHashSrc& src) override { return true; };
// Accessors
inline nsAString& GetError() {
if (mError.IsVoid() && mDirectiveRequired) {
FormatError("csp-error-missing-directive"_ns);
}
return mError;
};
inline bool FoundSelf() { return mFoundSelf; };
// Formatters
inline void FormatError(const nsACString& l10nId,
const nsACString& aKey = ""_ns,
const nsAString& aValue = u""_ns) {
nsTArray<nsCString> resIds = {"toolkit/global/cspErrors.ftl"_ns};
RefPtr<intl::Localization> l10n = intl::Localization::Create(resIds, true);
auto l10nArgs = dom::Optional<intl::L10nArgs>();
l10nArgs.Construct();
auto dirArg = l10nArgs.Value().Entries().AppendElement();
dirArg->mKey = "directive";
dirArg->mValue.SetValue().SetAsUTF8String().Assign(
NS_ConvertUTF16toUTF8(mDirective));
if (!aKey.IsEmpty()) {
auto optArg = l10nArgs.Value().Entries().AppendElement();
optArg->mKey = aKey;
optArg->mValue.SetValue().SetAsUTF8String().Assign(
NS_ConvertUTF16toUTF8(aValue));
}
nsAutoCString translation;
IgnoredErrorResult rv;
l10n->FormatValueSync(l10nId, l10nArgs, translation, rv);
if (rv.Failed()) {
mError.AssignLiteral("An unexpected error occurred");
} else {
mError = NS_ConvertUTF8toUTF16(translation);
}
};
private:
// Validators
bool HostIsLocal(nsAString& host) {
return host.EqualsLiteral("localhost") || host.EqualsLiteral("127.0.0.1");
}
bool HostIsAllowed(nsAString& host) {
if (host.First() == '*') {
if (host.EqualsLiteral("*") || host[1] != '.') {
return false;
}
host.Cut(0, 2);
nsCOMPtr<nsIEffectiveTLDService> tldService =
do_GetService(NS_EFFECTIVETLDSERVICE_CONTRACTID);
if (!tldService) {
return false;
}
NS_ConvertUTF16toUTF8 cHost(host);
nsAutoCString publicSuffix;
nsresult rv = tldService->GetPublicSuffixFromHost(cHost, publicSuffix);
return NS_SUCCEEDED(rv) && !cHost.Equals(publicSuffix);
}
return true;
};
bool SchemeInList(nsAString& scheme, const char** schemes) {
for (; *schemes; schemes++) {
if (scheme.LowerCaseEqualsASCII(*schemes)) {
return true;
}
}
return false;
};
// Data members
nsAutoString mURL;
NS_ConvertASCIItoUTF16 mDirective;
nsString mError;
uint32_t mPermittedPolicy;
bool mDirectiveRequired;
bool mFoundSelf;
};
/**
* Validates a custom content security policy string for use by an add-on.
* In particular, ensures that:
*
* - That script-src (or default-src) directive is present, and meets
* the policies required by the CSPValidator class
*
* - The script-src directive includes the source 'self'
*/
NS_IMETHODIMP
AddonContentPolicy::ValidateAddonCSP(const nsAString& aPolicyString,
uint32_t aPermittedPolicy,
nsAString& aResult) {
nsresult rv;
// Validate against a randomly-generated extension origin.
// There is no add-on-specific behavior in the CSP code, beyond the ability
// for add-ons to specify a custom policy, but the parser requires a valid
// origin in order to operate correctly.
nsAutoString url(u"moz-extension://");
{
nsCOMPtr<nsIUUIDGenerator> uuidgen = components::UUIDGenerator::Service();
NS_ENSURE_TRUE(uuidgen, NS_ERROR_FAILURE);
nsID id;
rv = uuidgen->GenerateUUIDInPlace(&id);
NS_ENSURE_SUCCESS(rv, rv);
char idString[NSID_LENGTH];
id.ToProvidedString(idString);
MOZ_RELEASE_ASSERT(idString[0] == '{' && idString[NSID_LENGTH - 2] == '}',
"UUID generator did not return a valid UUID");
url.AppendASCII(idString + 1, NSID_LENGTH - 3);
}
RefPtr<BasePrincipal> principal =
BasePrincipal::CreateContentPrincipal(NS_ConvertUTF16toUTF8(url));
nsCOMPtr<nsIURI> selfURI;
principal->GetURI(getter_AddRefs(selfURI));
RefPtr<nsCSPContext> csp = new nsCSPContext();
rv = csp->SetRequestContextWithPrincipal(principal, selfURI, ""_ns, 0);
NS_ENSURE_SUCCESS(rv, rv);
csp->AppendPolicy(aPolicyString, false, false);
const nsCSPPolicy* policy = csp->GetPolicy(0);
if (!policy) {
CSPValidator validator(url, nsIContentSecurityPolicy::SCRIPT_SRC_DIRECTIVE,
true, aPermittedPolicy);
aResult.Assign(validator.GetError());
return NS_OK;
}
bool haveValidDefaultSrc = false;
bool hasValidScriptSrc = false;
{
CSPDirective directive = nsIContentSecurityPolicy::DEFAULT_SRC_DIRECTIVE;
CSPValidator validator(url, directive);
haveValidDefaultSrc = policy->visitDirectiveSrcs(directive, &validator);
}
aResult.SetIsVoid(true);
{
CSPDirective directive = nsIContentSecurityPolicy::SCRIPT_SRC_DIRECTIVE;
CSPValidator validator(url, directive, !haveValidDefaultSrc,
aPermittedPolicy);
if (!policy->visitDirectiveSrcs(directive, &validator)) {
aResult.Assign(validator.GetError());
} else if (!validator.FoundSelf()) {
validator.FormatError("csp-error-missing-source"_ns, "source"_ns,
u"'self'"_ns);
aResult.Assign(validator.GetError());
}
hasValidScriptSrc = true;
}
if (aResult.IsVoid()) {
CSPDirective directive = nsIContentSecurityPolicy::WORKER_SRC_DIRECTIVE;
CSPValidator validator(url, directive,
!haveValidDefaultSrc && !hasValidScriptSrc,
aPermittedPolicy);
if (!policy->visitDirectiveSrcs(directive, &validator)) {
aResult.Assign(validator.GetError());
}
}
return NS_OK;
}
|