@@ -393,7 +393,7 @@ protected function initializeContainer(): void
393
393
$ class = $ this ->getContainerClass ();
394
394
$ buildDir = $ this ->warmupDir ?: $ this ->getBuildDir ();
395
395
$ skip = $ _SERVER ['SYMFONY_DISABLE_RESOURCE_TRACKING ' ] ?? '' ;
396
- $ skip = filter_var ($ skip , \FILTER_VALIDATE_BOOLEAN , \FILTER_NULL_ON_FAILURE ) ?? explode (', ' , $ skip );
396
+ $ skip = filter_var ($ skip , \FILTER_VALIDATE_BOOLEAN , \FILTER_NULL_ON_FAILURE ) ?? explode (', ' , $ skip );
397
397
$ cache = new ConfigCache ($ buildDir .'/ ' .$ class .'.php ' , $ this ->debug , null , \is_array ($ skip ) && ['* ' ] !== $ skip ? $ skip : ($ skip ? [] : null ));
398
398
399
399
$ cachePath = $ cache ->getPath ();
@@ -745,11 +745,30 @@ private function preBoot(): ContainerInterface
745
745
$ container = $ this ->container ;
746
746
747
747
if ($ container ->hasParameter ('kernel.trusted_hosts ' ) && $ trustedHosts = $ container ->getParameter ('kernel.trusted_hosts ' )) {
748
- Request::setTrustedHosts ($ trustedHosts );
748
+ Request::setTrustedHosts (\is_array ( $ trustedHosts) ? $ trustedHosts : preg_split ( ' /\s*+,\s*+(?![^{]*})/ ' , $ trustedHosts ) );
749
749
}
750
750
751
751
if ($ container ->hasParameter ('kernel.trusted_proxies ' ) && $ container ->hasParameter ('kernel.trusted_headers ' ) && $ trustedProxies = $ container ->getParameter ('kernel.trusted_proxies ' )) {
752
- Request::setTrustedProxies (\is_array ($ trustedProxies ) ? $ trustedProxies : array_map ('trim ' , explode (', ' , $ trustedProxies )), $ container ->getParameter ('kernel.trusted_headers ' ));
752
+ $ trustedHeaders = $ container ->getParameter ('kernel.trusted_headers ' );
753
+
754
+ if (\is_string ($ trustedHeaders )) {
755
+ $ trustedHeaders = array_map ('trim ' , explode (', ' , $ trustedHeaders ));
756
+ }
757
+
758
+ if (\is_array ($ trustedHeaders )) {
759
+ $ trustedHeaderSet = 0 ;
760
+
761
+ foreach ($ trustedHeaders as $ header ) {
762
+ if (!\defined ($ const = Request::class.'::HEADER_ ' .strtr (strtoupper ($ header ), '- ' , '_ ' ))) {
763
+ throw new \InvalidArgumentException (\sprintf ('The trusted header "%s" is not supported. ' , $ header ));
764
+ }
765
+ $ trustedHeaderSet |= \constant ($ const );
766
+ }
767
+ } else {
768
+ $ trustedHeaderSet = $ trustedHeaders ?? (Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO );
769
+ }
770
+
771
+ Request::setTrustedProxies (\is_array ($ trustedProxies ) ? $ trustedProxies : array_map ('trim ' , explode (', ' , $ trustedProxies )), $ trustedHeaderSet );
753
772
}
754
773
755
774
return $ container ;
0 commit comments