Skip to content

Commit

Permalink
Add support for the eval function (#277)
Browse files Browse the repository at this point in the history
Attempt to scope the content of the eval function whenever possible. Leave the expression unchanged otherwise.
  • Loading branch information
theofidry committed Oct 30, 2018
1 parent c508dde commit fecc042
Show file tree
Hide file tree
Showing 5 changed files with 303 additions and 26 deletions.
209 changes: 209 additions & 0 deletions specs/eval.php
@@ -0,0 +1,209 @@
<?php

declare(strict_types=1);

/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Th茅o FIDRY <theo.fidry@gmail.com>,
* P谩draic Brady <padraic.brady@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

return [
'meta' => [
'title' => 'Eval',
// Default values. If not specified will be the one used
'prefix' => 'Humbug',
'whitelist' => [],
'whitelist-global-constants' => false,
'whitelist-global-classes' => false,
'whitelist-global-functions' => false,
'registered-classes' => [],
'registered-functions' => [],
],

'string' => <<<'PHP'
<?php
eval('
<?php
use Acme\Foo;
');
----
<?php
namespace Humbug;
eval('
<?php
namespace Humbug;
use Humbug\\Acme\\Foo;
');
PHP
,

'string with invalid PHP' => <<<'PHP'
<?php
eval('invalid PHP');
----
<?php
namespace Humbug;
eval('invalid PHP');
PHP
,

'concatenated string' => <<<'PHP'
<?php
eval('<?php'.' echo "Hello!";');
----
<?php
namespace Humbug;
eval('<?php' . ' echo "Hello!";');
PHP
,

'Nowdoc' => <<<'PHP'
<?php
eval(<<<'PHP_NOWDOC'
<?php
use Acme\Foo;
PHP_NOWDOC
);
eval(<<<'PHP_NOWDOC'
<?php
use Acme\Foo;
PHP_NOWDOC
);
----
<?php
namespace Humbug;
eval(<<<'PHP_NOWDOC'
<?php
namespace Humbug;
use Humbug\Acme\Foo;
PHP_NOWDOC
);
eval(<<<'PHP_NOWDOC'
<?php
namespace Humbug;
use Humbug\Acme\Foo;
PHP_NOWDOC
);
PHP
,

'Nowdoc with invalid PHP' => <<<'PHP'
<?php
eval(<<<'PHP_NOWDOC'
Not.php
PHP_NOWDOC
);
----
<?php
namespace Humbug;
eval(<<<'PHP_NOWDOC'
Not.php
PHP_NOWDOC
);
PHP
,

'Heredoc' => <<<'PHP'
<?php
eval(<<<PHP_HEREDOC
<?php
use Acme\Foo;
PHP_HEREDOC
);
----
<?php
namespace Humbug;
eval(<<<PHP_HEREDOC
<?php
namespace Humbug;
use Humbug\\Acme\\Foo;
PHP_HEREDOC
);
PHP
,

'string with whitelisted function' => [
'whitelist' => ['Acme\foo'],
'registered-functions' => [
['Acme\foo', 'Humbug\Acme\foo'],
],
'payload' => <<<'PHP'
<?php
eval('<?php
namespace Acme;
function foo() {}
');
----
<?php
namespace Humbug;
eval('<?php
namespace Humbug\\Acme;
function foo()
{
}
');
PHP
],
];
38 changes: 38 additions & 0 deletions src/PhpParser/NodeVisitor/EvalPrefixer.php
@@ -0,0 +1,38 @@
<?php

declare(strict_types=1);

/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Th茅o FIDRY <theo.fidry@gmail.com>,
* P谩draic Brady <padraic.brady@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Humbug\PhpScoper\PhpParser\NodeVisitor;

use Humbug\PhpScoper\PhpParser\StringScoperPrefixer;
use PhpParser\Node;
use PhpParser\Node\Expr\Eval_;
use PhpParser\Node\Scalar\String_;
use PhpParser\NodeVisitorAbstract;

final class EvalPrefixer extends NodeVisitorAbstract
{
use StringScoperPrefixer;

/**
* @inheritdoc
*/
public function enterNode(Node $node): Node
{
if ($node instanceof String_ && ParentNodeAppender::findParent($node) instanceof Eval_) {
$this->scopeStringValue($node);
}

return $node;
}
}
29 changes: 3 additions & 26 deletions src/PhpParser/NodeVisitor/NewdocPrefixer.php
Expand Up @@ -14,9 +14,7 @@

namespace Humbug\PhpScoper\PhpParser\NodeVisitor;

use Humbug\PhpScoper\Scoper\PhpScoper;
use Humbug\PhpScoper\Whitelist;
use PhpParser\Error as PhpParserError;
use Humbug\PhpScoper\PhpParser\StringScoperPrefixer;
use PhpParser\Node;
use PhpParser\Node\Scalar\String_;
use PhpParser\NodeVisitorAbstract;
Expand All @@ -26,36 +24,15 @@

final class NewdocPrefixer extends NodeVisitorAbstract
{
private $scoper;
private $prefix;
private $whitelist;

public function __construct(PhpScoper $scoper, string $prefix, Whitelist $whitelist)
{
$this->scoper = $scoper;
$this->prefix = $prefix;
$this->whitelist = $whitelist;
}
use StringScoperPrefixer;

/**
* @inheritdoc
*/
public function enterNode(Node $node): Node
{
if ($node instanceof String_ && $this->isPhpNowdoc($node)) {
try {
$lastChar = substr($node->value, -1);

$newValue = $this->scoper->scopePhp($node->value, $this->prefix, $this->whitelist);

if ("\n" !== $lastChar) {
$newValue = substr($newValue, 0, -1);
}

$node->value = $newValue;
} catch (PhpParserError $error) {
// Continue without scoping the heredoc which for some reasons contains invalid PHP code
}
$this->scopeStringValue($node);
}

return $node;
Expand Down
52 changes: 52 additions & 0 deletions src/PhpParser/StringScoperPrefixer.php
@@ -0,0 +1,52 @@
<?php

declare(strict_types=1);

/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Th茅o FIDRY <theo.fidry@gmail.com>,
* P谩draic Brady <padraic.brady@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Humbug\PhpScoper\PhpParser;

use Humbug\PhpScoper\Scoper\PhpScoper;
use Humbug\PhpScoper\Whitelist;
use PhpParser\Error as PhpParserError;
use PhpParser\Node\Scalar\String_;
use function substr;

trait StringScoperPrefixer
{
private $scoper;
private $prefix;
private $whitelist;

public function __construct(PhpScoper $scoper, string $prefix, Whitelist $whitelist)
{
$this->scoper = $scoper;
$this->prefix = $prefix;
$this->whitelist = $whitelist;
}

private function scopeStringValue(String_ $node): void
{
try {
$lastChar = substr($node->value, -1);

$newValue = $this->scoper->scopePhp($node->value, $this->prefix, $this->whitelist);

if ("\n" !== $lastChar) {
$newValue = substr($newValue, 0, -1);
}

$node->value = $newValue;
} catch (PhpParserError $error) {
// Continue without scoping the heredoc which for some reasons contains invalid PHP code
}
}
}
1 change: 1 addition & 0 deletions src/PhpParser/TraverserFactory.php
Expand Up @@ -55,6 +55,7 @@ public function create(PhpScoper $scoper, string $prefix, Whitelist $whitelist):
$traverser->addVisitor(new NodeVisitor\NameStmtPrefixer($prefix, $whitelist, $nameResolver, $this->reflector));
$traverser->addVisitor(new NodeVisitor\StringScalarPrefixer($prefix, $whitelist, $this->reflector));
$traverser->addVisitor(new NodeVisitor\NewdocPrefixer($scoper, $prefix, $whitelist));
$traverser->addVisitor(new NodeVisitor\EvalPrefixer($scoper, $prefix, $whitelist));

$traverser->addVisitor(new NodeVisitor\ClassAliasStmtAppender($prefix, $whitelist, $nameResolver));
$traverser->addVisitor(new NodeVisitor\ConstStmtReplacer($whitelist, $nameResolver));
Expand Down

0 comments on commit fecc042

Please sign in to comment.