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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/webui/webui_util.h"
#include <string>
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/common/url_constants.h"
#include "services/network/public/mojom/content_security_policy.mojom.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/ui_base_features.h"
#include "ui/base/webui/web_ui_util.h"
#include "ui/webui/resources/grit/webui_resources.h"
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
#include "base/enterprise_util.h"
#endif
namespace webui {
void SetJSModuleDefaults(content::WebUIDataSource* source) {
std::string scheme =
base::StartsWith(source->GetSource(), content::kChromeUIUntrustedScheme)
? content::kChromeUIUntrustedScheme
: content::kChromeUIScheme;
// Set the default src to 'self' only. Generally necessary overrides are set
// below. Additional overrides should generally be added for individual
// data sources only.
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::DefaultSrc, "default-src 'self';");
// Allow connecting to chrome://resources for trusted UIs and images from
// chrome://image, chrome://theme, chrome://favicon2, chrome://resources and
// data URLs.
// TODO: Both of these are needed by only a smaller subset of UIs. Should
// the overrides be moved to those UIs only?
if (scheme == content::kChromeUIScheme) {
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::ConnectSrc,
"connect-src chrome://resources chrome://theme 'self';");
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::ImgSrc,
"img-src chrome://resources chrome://theme chrome://image "
"chrome://favicon2 chrome://app-icon chrome://extension-icon "
"chrome://fileicon "
#if BUILDFLAG(IS_CHROMEOS)
"chrome://chromeos-asset chrome://userimage "
#endif
"blob: data: 'self';");
}
// webui-test is required for tests. Scripts from //resources are allowed
// for all UIs.
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::ScriptSrc,
base::StringPrintf("script-src %s://resources %s://webui-test 'self';",
scheme.c_str(), scheme.c_str()));
// Allow loading fonts from //resources.
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::FontSrc,
base::StringPrintf("font-src %s://resources 'self';", scheme.c_str()));
// unsafe-inline is required for Polymer. Allow styles to be imported from
// //resources and //theme.
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::StyleSrc,
base::StringPrintf(
"style-src %s://resources %s://theme 'self' 'unsafe-inline';",
scheme.c_str(), scheme.c_str()));
source->UseStringsJs();
source->EnableReplaceI18nInJS();
source->AddResourcePath("test_loader.js", IDR_WEBUI_JS_TEST_LOADER_JS);
source->AddResourcePath("test_loader_util.js",
IDR_WEBUI_JS_TEST_LOADER_UTIL_JS);
source->AddResourcePath("test_loader.html", IDR_WEBUI_TEST_LOADER_HTML);
}
void SetupWebUIDataSource(content::WebUIDataSource* source,
base::span<const ResourcePath> resources,
int default_resource) {
SetJSModuleDefaults(source);
EnableTrustedTypesCSP(source);
source->AddResourcePaths(resources);
source->AddResourcePath("", default_resource);
}
// There is another method, ash::EnableTrustedTypesCSP, used by ash-only WebUIs.
// When adding a new policy here, consider whether to add it to that method as
// well, as these methods should remain mostly the same.
void EnableTrustedTypesCSP(content::WebUIDataSource* source) {
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::RequireTrustedTypesFor,
"require-trusted-types-for 'script';");
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::TrustedTypes,
base::StrCat({kDefaultTrustedTypesPolicies, ";"}));
}
void AddLocalizedString(content::WebUIDataSource* source,
const std::string& message,
int id) {
std::u16string str = l10n_util::GetStringUTF16(id);
std::erase(str, '&');
source->AddString(message, str);
}
} // namespace webui
|