TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,183 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Security\ContentSecurityPolicy;
use Psr\EventDispatcher\EventDispatcherInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\UriInterface;
use Symfony\Component\DependencyInjection\Attribute\Autoconfigure;
use TYPO3\CMS\Core\Core\RequestId;
use TYPO3\CMS\Core\Crypto\HashService;
use TYPO3\CMS\Core\Http\NormalizedParams;
use TYPO3\CMS\Core\Http\Uri;
use TYPO3\CMS\Core\Middleware\AbstractContentSecurityPolicyReporter;
use TYPO3\CMS\Core\Routing\BackendEntryPointResolver;
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Configuration\DispositionConfiguration;
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Event\PolicyMutatedEvent;
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Event\PolicyPreparedEvent;
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Middleware\PolicyBag;
use TYPO3\CMS\Core\Site\Entity\Site;
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
use TYPO3\CMS\Core\Site\SiteFinder;
/**
* Provide a Content-Security-Policy representation for a given scope (e.g. backend, frontend, frontend.my-site).
*
* @internal
*/
#[Autoconfigure(public: true)]
final readonly class PolicyProvider
{
private const string REPORTING_URI = '@http-reporting';
public function __construct(
private RequestId $requestId,
private SiteFinder $siteFinder,
private PolicyRegistry $policyRegistry,
private EventDispatcherInterface $eventDispatcher,
private MutationRepository $mutationRepository,
private BackendEntryPointResolver $backendEntryPointResolver,
private HashService $hashService,
) {}
public function prepare(
PolicyBag $policyBag,
ServerRequestInterface $request,
string|ResponseInterface|null $response,
): void {
foreach ($policyBag->dispositionMap as $disposition => $configuration) {
if ($policyBag->hasPolicy($disposition)) {
continue;
}
$policy = $this->provideFor($policyBag->scope, $disposition, $request);
if (!$policy->isEmpty()) {
$reportingUrl = $this->getReportingUrlFor(
$policyBag->scope,
$request,
$policyBag->dispositionMap[$disposition]
);
if ($reportingUrl !== null) {
$policy = $policy->report(UriValue::fromUri($reportingUrl));
}
}
$policyBag->setPolicy($disposition, $policy);
}
$this->eventDispatcher->dispatch(
new PolicyPreparedEvent($policyBag, $request, $response)
);
}
/**
* Provides the complete, dynamically mutated policy to be used in HTTP responses.
*/
public function provideFor(
Scope $scope,
Disposition $disposition = Disposition::enforce,
?ServerRequestInterface $request = null,
): Policy {
// @todo add policy cache per scope
$defaultPolicy = new Policy();
$mutationCollections = iterator_to_array(
$this->mutationRepository->findByScope($scope, $disposition),
false
);
// add temporary(!) mutations that were collected during processing this request
if ($this->policyRegistry->hasMutationCollections()) {
$mutationCollections = array_merge(
$mutationCollections,
$this->policyRegistry->getMutationCollections()
);
}
// apply all mutations to current policy
$currentPolicy = $defaultPolicy->mutate(...$mutationCollections);
// allow other components to modify the current policy individually via PSR-14 event
$event = new PolicyMutatedEvent($scope, $request, $defaultPolicy, $currentPolicy, ...$mutationCollections);
$this->eventDispatcher->dispatch($event);
return $event->getCurrentPolicy();
}
public function getReportingUrlFor(
Scope $scope,
ServerRequestInterface $request,
?DispositionConfiguration $dispositionConfiguration = null,
): ?UriInterface {
$value = $dispositionConfiguration->reportingUrl
?? DispositionConfiguration::normalizeReportingUrl(
$GLOBALS['TYPO3_CONF_VARS'][$scope->type->abbreviate()]['contentSecurityPolicyReportingUrl'] ?? null
);
// using the local reporting URI is explicitly disabled
if ($value === false) {
return null;
}
if (is_string($value) && $value !== '') {
try {
return new Uri($value);
} catch (\InvalidArgumentException) {
return null;
}
}
$requestTime = (string)$this->requestId->microtime;
$requestHash = $this->hashService->hmac($requestTime, AbstractContentSecurityPolicyReporter::class);
$uriBase = $this->getDefaultReportingUriBase($scope, $request);
return $uriBase->withQuery(
$uriBase->getQuery() . '&requestTime=' . $requestTime . '&requestHash=' . $requestHash
);
}
/**
* Returns the URI base, for better partitioning it should be extended by `&requestTime=...`
*/
public function getDefaultReportingUriBase(Scope $scope, ServerRequestInterface $request, bool $absolute = true): UriInterface
{
$normalizedParams = $request->getAttribute('normalizedParams') ?? NormalizedParams::createFromRequest($request);
// resolve URI from current site language or site default language in frontend scope
if ($scope->isFrontendSite()) {
$site = $this->resolveSite($scope);
$siteLanguage = $request->getAttribute('siteLanguage');
$siteLanguage = $siteLanguage instanceof SiteLanguage ? $siteLanguage : $site->getDefaultLanguage();
$uri = $siteLanguage->getBase();
$uri = $uri->withPath(rtrim($uri->getPath(), '/') . '/');
// otherwise fall back to current request URI
} else {
$uri = new Uri($normalizedParams->getSitePath());
}
// add backend entryPoint route prefix in backend scope
if ($scope->type->isBackend()) {
$uri = $this->backendEntryPointResolver->getUriFromRequest($request);
}
// prefix current require scheme, host, port in case it's not given
if ($absolute && ($uri->getScheme() === '' || $uri->getHost() === '')) {
$current = new Uri($normalizedParams->getSiteUrl());
$uri = $uri
->withScheme($current->getScheme())
->withHost($current->getHost())
->withPort($current->getPort());
} elseif (!$absolute && ($uri->getScheme() !== '' || $uri->getHost() !== '')) {
$uri = $uri->withScheme('')->withHost('')->withPort(null);
}
// `/en/@http-reporting?csp=report` (relative)
// `https://ip12.anyhost.it:8443/en/@http-reporting?csp=report` (absolute)
return $uri->withPath($uri->getPath() . self::REPORTING_URI)->withQuery('csp=report');
}
private function resolveSite(Scope $scope): Site
{
return $scope->site ?? $this->siteFinder->getSiteByIdentifier($scope->siteIdentifier);
}
}