-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[DI][FrameworkBundle] add EnvVarLoaderInterface - remove SecretEnvVarProcessor #34295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,16 @@ | |
|
||
namespace Symfony\Bundle\FrameworkBundle\Secrets; | ||
|
||
use Symfony\Component\DependencyInjection\EnvVarLoaderInterface; | ||
|
||
/** | ||
* @author Tobias Schultze <http://tobion.de> | ||
* @author Jérémy Derussé <jeremy@derusse.com> | ||
* @author Nicolas Grekas <p@tchwork.com> | ||
* | ||
* @internal | ||
*/ | ||
class SodiumVault extends AbstractVault | ||
class SodiumVault extends AbstractVault implements EnvVarLoaderInterface | ||
{ | ||
private $encryptionKey; | ||
private $decryptionKey; | ||
|
@@ -56,8 +58,8 @@ public function generateKeys(bool $override = false): bool | |
// ignore failures to load keys | ||
} | ||
|
||
if ('' !== $this->decryptionKey && !file_exists($this->pathPrefix.'sodium.encrypt.public')) { | ||
$this->export('sodium.encrypt.public', $this->encryptionKey); | ||
if ('' !== $this->decryptionKey && !file_exists($this->pathPrefix.'encrypt.public.php')) { | ||
$this->export('encrypt.public', $this->encryptionKey); | ||
} | ||
|
||
if (!$override && null !== $this->encryptionKey) { | ||
|
@@ -69,10 +71,10 @@ public function generateKeys(bool $override = false): bool | |
$this->decryptionKey = sodium_crypto_box_keypair(); | ||
$this->encryptionKey = sodium_crypto_box_publickey($this->decryptionKey); | ||
|
||
$this->export('sodium.encrypt.public', $this->encryptionKey); | ||
$this->export('sodium.decrypt.private', $this->decryptionKey); | ||
$this->export('encrypt.public', $this->encryptionKey); | ||
$this->export('decrypt.private', $this->decryptionKey); | ||
|
||
$this->lastMessage = sprintf('Sodium keys have been generated at "%s*.{public,private}".', $this->getPrettyPath($this->pathPrefix)); | ||
$this->lastMessage = sprintf('Sodium keys have been generated at "%s*.public/private.php".', $this->getPrettyPath($this->pathPrefix)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this change looks weird to me, as |
||
|
||
return true; | ||
} | ||
|
@@ -82,12 +84,12 @@ public function seal(string $name, string $value): void | |
$this->lastMessage = null; | ||
$this->validateName($name); | ||
$this->loadKeys(); | ||
$this->export($name.'.'.substr_replace(md5($name), '.sodium', -26), sodium_crypto_box_seal($value, $this->encryptionKey ?? sodium_crypto_box_publickey($this->decryptionKey))); | ||
$this->export($name.'.'.substr(md5($name), 0, 6), sodium_crypto_box_seal($value, $this->encryptionKey ?? sodium_crypto_box_publickey($this->decryptionKey))); | ||
|
||
$list = $this->list(); | ||
nicolas-grekas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
$list[$name] = null; | ||
uksort($list, 'strnatcmp'); | ||
file_put_contents($this->pathPrefix.'sodium.list', sprintf("<?php\n\nreturn %s;\n", var_export($list, true), LOCK_EX)); | ||
file_put_contents($this->pathPrefix.'list.php', sprintf("<?php\n\nreturn %s;\n", var_export($list, true), LOCK_EX)); | ||
|
||
$this->lastMessage = sprintf('Secret "%s" encrypted in "%s"; you can commit it.', $name, $this->getPrettyPath(\dirname($this->pathPrefix).\DIRECTORY_SEPARATOR)); | ||
} | ||
|
@@ -97,7 +99,7 @@ public function reveal(string $name): ?string | |
$this->lastMessage = null; | ||
$this->validateName($name); | ||
|
||
if (!file_exists($file = $this->pathPrefix.$name.'.'.substr_replace(md5($name), '.sodium', -26))) { | ||
if (!file_exists($file = $this->pathPrefix.$name.'.'.substr_replace(md5($name), '.php', -26))) { | ||
$this->lastMessage = sprintf('Secret "%s" not found in "%s".', $name, $this->getPrettyPath(\dirname($this->pathPrefix).\DIRECTORY_SEPARATOR)); | ||
|
||
return null; | ||
|
@@ -131,15 +133,15 @@ public function remove(string $name): bool | |
$this->lastMessage = null; | ||
$this->validateName($name); | ||
|
||
if (!file_exists($file = $this->pathPrefix.$name.'.'.substr_replace(md5($name), '.sodium', -26))) { | ||
if (!file_exists($file = $this->pathPrefix.$name.'.'.substr_replace(md5($name), '.php', -26))) { | ||
$this->lastMessage = sprintf('Secret "%s" not found in "%s".', $name, $this->getPrettyPath(\dirname($this->pathPrefix).\DIRECTORY_SEPARATOR)); | ||
|
||
return false; | ||
} | ||
|
||
$list = $this->list(); | ||
unset($list[$name]); | ||
file_put_contents($this->pathPrefix.'sodium.list', sprintf("<?php\n\nreturn %s;\n", var_export($list, true), LOCK_EX)); | ||
file_put_contents($this->pathPrefix.'list.php', sprintf("<?php\n\nreturn %s;\n", var_export($list, true), LOCK_EX)); | ||
|
||
$this->lastMessage = sprintf('Secret "%s" removed from "%s".', $name, $this->getPrettyPath(\dirname($this->pathPrefix).\DIRECTORY_SEPARATOR)); | ||
|
||
|
@@ -150,7 +152,7 @@ public function list(bool $reveal = false): array | |
{ | ||
$this->lastMessage = null; | ||
|
||
if (!file_exists($file = $this->pathPrefix.'sodium.list')) { | ||
if (!file_exists($file = $this->pathPrefix.'list.php')) { | ||
return []; | ||
} | ||
|
||
|
@@ -167,6 +169,11 @@ public function list(bool $reveal = false): array | |
return $secrets; | ||
} | ||
|
||
public function loadEnvVars(): array | ||
{ | ||
return $this->list(true); | ||
} | ||
|
||
private function loadKeys(): void | ||
{ | ||
if (!\function_exists('sodium_crypto_box_seal')) { | ||
|
@@ -177,12 +184,12 @@ private function loadKeys(): void | |
return; | ||
} | ||
|
||
if (file_exists($this->pathPrefix.'sodium.decrypt.private')) { | ||
$this->decryptionKey = (string) include $this->pathPrefix.'sodium.decrypt.private'; | ||
if (file_exists($this->pathPrefix.'decrypt.private.php')) { | ||
$this->decryptionKey = (string) include $this->pathPrefix.'decrypt.private.php'; | ||
} | ||
|
||
if (file_exists($this->pathPrefix.'sodium.encrypt.public')) { | ||
$this->encryptionKey = (string) include $this->pathPrefix.'sodium.encrypt.public'; | ||
if (file_exists($this->pathPrefix.'encrypt.public.php')) { | ||
$this->encryptionKey = (string) include $this->pathPrefix.'encrypt.public.php'; | ||
} elseif ('' !== $this->decryptionKey) { | ||
$this->encryptionKey = sodium_crypto_box_publickey($this->decryptionKey); | ||
} else { | ||
|
@@ -196,7 +203,7 @@ private function export(string $file, string $data): void | |
$data = str_replace('%', '\x', rawurlencode($data)); | ||
$data = sprintf("<?php // %s on %s\n\nreturn \"%s\";\n", $name, date('r'), $data); | ||
|
||
if (false === file_put_contents($this->pathPrefix.$file, $data, LOCK_EX)) { | ||
if (false === file_put_contents($this->pathPrefix.$file.'.php', $data, LOCK_EX)) { | ||
$e = error_get_last(); | ||
throw new \ErrorException($e['message'] ?? 'Failed to write secrets data.', 0, $e['type'] ?? E_USER_WARNING); | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <fabien@symfony.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Symfony\Component\DependencyInjection; | ||
|
||
/** | ||
* EnvVarLoaderInterface objects return key/value pairs that are added to the list of available env vars. | ||
* | ||
* @author Nicolas Grekas <p@tchwork.com> | ||
*/ | ||
interface EnvVarLoaderInterface | ||
{ | ||
/** | ||
* @return string[] Key/value pairs that can be accessed using the regular "%env()%" syntax | ||
*/ | ||
public function loadEnvVars(): array; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
namespace Symfony\Component\DependencyInjection; | ||
|
||
use Symfony\Component\DependencyInjection\Exception\EnvNotFoundException; | ||
use Symfony\Component\DependencyInjection\Exception\ParameterCircularReferenceException; | ||
use Symfony\Component\DependencyInjection\Exception\RuntimeException; | ||
|
||
/** | ||
|
@@ -20,10 +21,17 @@ | |
class EnvVarProcessor implements EnvVarProcessorInterface | ||
{ | ||
private $container; | ||
private $loaders; | ||
private $loadedVars = []; | ||
|
||
public function __construct(ContainerInterface $container) | ||
/** | ||
* @param EnvVarLoaderInterface[] $loaders | ||
*/ | ||
public function __construct(ContainerInterface $container, \Traversable $loaders = null) | ||
{ | ||
$this->container = $container; | ||
$this->loaders = new \IteratorIterator($loaders ?? new \ArrayIterator()); | ||
$this->loaders = $this->loaders->getInnerIterator(); | ||
} | ||
|
||
/** | ||
|
@@ -127,12 +135,31 @@ public function getEnv($prefix, $name, \Closure $getEnv) | |
} elseif (isset($_SERVER[$name]) && 0 !== strpos($name, 'HTTP_')) { | ||
$env = $_SERVER[$name]; | ||
} elseif (false === ($env = getenv($name)) || null === $env) { // null is a possible value because of thread safety issues | ||
if (!$this->container->hasParameter("env($name)")) { | ||
throw new EnvNotFoundException(sprintf('Environment variable not found: "%s".', $name)); | ||
foreach ($this->loadedVars as $vars) { | ||
if (false !== $env = ($vars[$name] ?? false)) { | ||
break; | ||
} | ||
} | ||
|
||
if (null === $env = $this->container->getParameter("env($name)")) { | ||
return null; | ||
try { | ||
while ((false === $env || null === $env) && $this->loaders->valid()) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. actually, it does trigger an exception
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed in #34301 |
||
$loader = $this->loaders->current(); | ||
$this->loaders->next(); | ||
$this->loadedVars[] = $vars = $loader->loadEnvVars(); | ||
$env = $vars[$name] ?? false; | ||
} | ||
} catch (ParameterCircularReferenceException $e) { | ||
// skip loaders that need an env var that is not defined | ||
} | ||
|
||
if (false === $env || null === $env) { | ||
if (!$this->container->hasParameter("env($name)")) { | ||
throw new EnvNotFoundException(sprintf('Environment variable not found: "%s".', $name)); | ||
} | ||
|
||
if (null === $env = $this->container->getParameter("env($name)")) { | ||
return null; | ||
} | ||
} | ||
} | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.