Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[Filesystem] Safeguard (sym)link calls #46407

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

Merged
merged 1 commit into from
May 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Filesystem] Safeguard (sym)link calls
  • Loading branch information
derrabus authored and nicolas-grekas committed May 20, 2022
commit c15028f2d354d0bdc0f34f2d565da3323e6555a5
15 changes: 14 additions & 1 deletion 15 src/Symfony/Component/Filesystem/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,8 @@ private function isReadable(string $filename): bool
*/
public function symlink($originDir, $targetDir, $copyOnWindows = false)
{
self::assertFunctionExists('symlink');

if ('\\' === \DIRECTORY_SEPARATOR) {
$originDir = strtr($originDir, '/', '\\');
$targetDir = strtr($targetDir, '/', '\\');
Expand Down Expand Up @@ -354,6 +356,8 @@ public function symlink($originDir, $targetDir, $copyOnWindows = false)
*/
public function hardlink($originFile, $targetFiles)
{
self::assertFunctionExists('link');

if (!$this->exists($originFile)) {
throw new FileNotFoundException(null, 0, null, $originFile);
}
Expand Down Expand Up @@ -737,13 +741,22 @@ private function getSchemeAndHierarchy(string $filename): array
return 2 === \count($components) ? [$components[0], $components[1]] : [null, $components[0]];
}

private static function assertFunctionExists(string $func): void
{
if (!\function_exists($func)) {
throw new IOException(sprintf('Unable to perform filesystem operation because the "%s()" function has been disabled.', $func));
}
}

/**
* @param mixed ...$args
*
* @return mixed
*/
private static function box(callable $func, ...$args)
private static function box(string $func, ...$args)
{
self::assertFunctionExists($func);

self::$lastError = null;
set_error_handler(__CLASS__.'::handleError');
try {
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.