ladybird/Libraries/LibWeb/ContentSecurityPolicy/PolicyList.cpp

141 lines
4.9 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2025, Luke Wilde <luke@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGC/RootVector.h>
#include <LibJS/Runtime/Realm.h>
#include <LibWeb/ContentSecurityPolicy/Directives/Names.h>
#include <LibWeb/ContentSecurityPolicy/PolicyList.h>
#include <LibWeb/ContentSecurityPolicy/SerializedPolicy.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/HTML/Scripting/Environments.h>
#include <LibWeb/HTML/ShadowRealmGlobalScope.h>
#include <LibWeb/HTML/Window.h>
#include <LibWeb/HTML/WorkerGlobalScope.h>
namespace Web::ContentSecurityPolicy {
GC_DEFINE_ALLOCATOR(PolicyList);
GC::Ref<PolicyList> PolicyList::create(GC::Heap& heap, GC::RootVector<GC::Ref<Policy>> const& policies)
{
auto policy_list = heap.allocate<PolicyList>();
for (auto policy : policies)
policy_list->m_policies.append(policy);
return policy_list;
}
GC::Ref<PolicyList> PolicyList::create(GC::Heap& heap, Vector<SerializedPolicy> const& serialized_policies)
{
auto policy_list = heap.allocate<PolicyList>();
for (auto const& serialized_policy : serialized_policies) {
auto policy = Policy::create_from_serialized_policy(heap, serialized_policy);
policy_list->m_policies.append(policy);
}
return policy_list;
}
// https://w3c.github.io/webappsec-csp/#get-csp-of-object
GC::Ptr<PolicyList> PolicyList::from_object(JS::Object& object)
{
// 1. If object is a Document return objects policy container's CSP list.
if (is<DOM::Document>(object)) {
auto& document = static_cast<DOM::Document&>(object);
return document.policy_container()->csp_list;
}
// 2. If object is a Window or a WorkerGlobalScope or a WorkletGlobalScope, return environment settings objects
// policy container's CSP list.
// FIXME: File a spec issue to make this look at ShadowRealmGlobalScope to support ShadowRealm.
if (is<HTML::Window>(object) || is<HTML::WorkerGlobalScope>(object) || is<HTML::ShadowRealmGlobalScope>(object)) {
auto& settings = HTML::relevant_principal_settings_object(object);
return settings.policy_container()->csp_list;
}
// 3. Return null.
return nullptr;
}
void PolicyList::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_policies);
}
// https://w3c.github.io/webappsec-csp/#contains-a-header-delivered-content-security-policy
bool PolicyList::contains_header_delivered_policy() const
{
// A CSP list contains a header-delivered Content Security Policy if it contains a policy whose source is "header".
auto header_delivered_entry = m_policies.find_if([](auto const& policy) {
return policy->source() == Policy::Source::Header;
});
return !header_delivered_entry.is_end();
}
// https://html.spec.whatwg.org/multipage/browsers.html#csp-derived-sandboxing-flags
HTML::SandboxingFlagSet PolicyList::csp_derived_sandboxing_flags() const
{
// 1. Let directives be an empty ordered set.
// NOTE: Since the algorithm only uses the last entry, we instead use a pointer to the last entry.
GC::Ptr<Directives::Directive> sandbox_directive = nullptr;
// 2. For each policy in cspList:
for (auto const policy : m_policies) {
// 1. If policy's disposition is not "enforce", then continue.
if (policy->disposition() != Policy::Disposition::Enforce)
continue;
// 2. If policy's directive set contains a directive whose name is "sandbox", then append that directive to
// directives.
auto maybe_sandbox_directive = policy->directives().find_if([](auto const& directive) {
return directive->name() == Directives::Names::Sandbox;
});
if (!maybe_sandbox_directive.is_end())
sandbox_directive = *maybe_sandbox_directive;
}
// 3. If directives is empty, then return an empty sandboxing flag set.
if (!sandbox_directive)
return HTML::SandboxingFlagSet {};
// 4. Let directive be directives[directives's size 1].
// NOTE: Already done.
// 5. Return the result of parsing the sandboxing directive directive.
return HTML::parse_a_sandboxing_directive(sandbox_directive->value());
}
// https://w3c.github.io/webappsec-csp/#enforced
void PolicyList::enforce_policy(GC::Ref<Policy> policy)
{
// A policy is enforced or monitored for a global object by inserting it into the global objects CSP list.
m_policies.append(policy);
}
GC::Ref<PolicyList> PolicyList::clone(GC::Heap& heap) const
{
auto policy_list = heap.allocate<PolicyList>();
for (auto policy : m_policies) {
auto cloned_policy = policy->clone(heap);
policy_list->m_policies.append(cloned_policy);
}
return policy_list;
}
Vector<SerializedPolicy> PolicyList::serialize() const
{
Vector<SerializedPolicy> serialized_policies;
for (auto policy : m_policies) {
serialized_policies.append(policy->serialize());
}
return serialized_policies;
}
}