2019-08-04 16:37:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psalm\Internal\Codebase;
|
|
|
|
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
|
|
|
use Psalm\Internal\Taint\TypeSource;
|
|
|
|
use Psalm\IssueBuffer;
|
|
|
|
use Psalm\Issue\TaintedInput;
|
|
|
|
use function array_merge;
|
|
|
|
use function array_merge_recursive;
|
|
|
|
use function strtolower;
|
|
|
|
use UnexpectedValueException;
|
|
|
|
|
|
|
|
class Taint
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var array<string, ?TypeSource>
|
|
|
|
*/
|
|
|
|
private $new_sinks = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, ?TypeSource>
|
|
|
|
*/
|
|
|
|
private $new_sources = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, ?TypeSource>
|
|
|
|
*/
|
2019-08-06 20:27:21 +02:00
|
|
|
private static $previous_sinks = [];
|
2019-08-04 16:37:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, ?TypeSource>
|
|
|
|
*/
|
2019-08-06 20:27:21 +02:00
|
|
|
private static $previous_sources = [];
|
2019-08-04 16:37:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, ?TypeSource>
|
|
|
|
*/
|
2019-08-06 20:27:21 +02:00
|
|
|
private static $archived_sinks = [];
|
2019-08-04 16:37:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, ?TypeSource>
|
|
|
|
*/
|
2019-08-06 20:27:21 +02:00
|
|
|
private static $archived_sources = [];
|
2019-08-04 16:37:36 +02:00
|
|
|
|
2019-08-06 00:33:33 +02:00
|
|
|
/**
|
|
|
|
* @var array<string, array<string>>
|
|
|
|
*/
|
|
|
|
private $specializations = [];
|
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
self::$previous_sinks = [];
|
|
|
|
self::$previous_sources = [];
|
|
|
|
self::$archived_sinks = [];
|
|
|
|
self::$archived_sources = [];
|
|
|
|
}
|
|
|
|
|
2019-08-04 16:37:36 +02:00
|
|
|
public function hasExistingSink(TypeSource $source) : ?TypeSource
|
|
|
|
{
|
2019-08-06 20:27:21 +02:00
|
|
|
return self::$archived_sinks[$source->id] ?? null;
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 00:33:33 +02:00
|
|
|
public function hasExistingSource(TypeSource $source) : ?TypeSource
|
|
|
|
{
|
2019-08-06 20:27:21 +02:00
|
|
|
return self::$archived_sources[$source->id] ?? null;
|
2019-08-06 00:33:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ?array<string> $suffixes
|
|
|
|
*/
|
|
|
|
public function hasPreviousSink(TypeSource $source, ?array &$suffixes = null) : bool
|
2019-08-04 16:37:36 +02:00
|
|
|
{
|
2019-08-06 00:33:33 +02:00
|
|
|
if (isset($this->specializations[$source->id])) {
|
|
|
|
$suffixes = $this->specializations[$source->id];
|
|
|
|
|
|
|
|
foreach ($suffixes as $suffix) {
|
2019-08-06 20:27:21 +02:00
|
|
|
if (isset(self::$previous_sinks[$source->id . '-' . $suffix])) {
|
2019-08-06 00:33:33 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
return isset(self::$previous_sinks[$source->id]);
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 00:33:33 +02:00
|
|
|
/**
|
|
|
|
* @param ?array<string> $suffixes
|
|
|
|
*/
|
|
|
|
public function hasPreviousSource(TypeSource $source, ?array &$suffixes = null) : bool
|
2019-08-04 16:37:36 +02:00
|
|
|
{
|
2019-08-06 00:33:33 +02:00
|
|
|
if (isset($this->specializations[$source->id])) {
|
|
|
|
$suffixes = $this->specializations[$source->id];
|
|
|
|
|
|
|
|
foreach ($suffixes as $suffix) {
|
2019-08-06 20:27:21 +02:00
|
|
|
if (isset(self::$previous_sources[$source->id . '-' . $suffix])) {
|
2019-08-06 00:33:33 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
return isset(self::$previous_sources[$source->id]);
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 00:33:33 +02:00
|
|
|
public function addSpecialization(string $base_id, string $suffix) : void
|
2019-08-04 16:37:36 +02:00
|
|
|
{
|
2019-08-06 00:33:33 +02:00
|
|
|
if (isset($this->specializations[$base_id])) {
|
|
|
|
if (!\in_array($suffix, $this->specializations)) {
|
|
|
|
$this->specializations[$base_id][] = $suffix;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->specializations[$base_id] = [$suffix];
|
|
|
|
}
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array<TypeSource> $sources
|
|
|
|
*/
|
|
|
|
public function addSources(
|
|
|
|
StatementsAnalyzer $statements_analyzer,
|
|
|
|
array $sources,
|
|
|
|
\Psalm\CodeLocation $code_location,
|
|
|
|
?TypeSource $previous_source
|
|
|
|
) : void {
|
|
|
|
foreach ($sources as $source) {
|
|
|
|
if ($this->hasExistingSource($source)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->hasExistingSink($source)) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new TaintedInput(
|
|
|
|
($previous_source ? 'in path ' . $this->getPredecessorPath($previous_source) : '')
|
|
|
|
. ' out path ' . $this->getSuccessorPath($source),
|
|
|
|
$code_location
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->new_sources[$source->id] = $previous_source;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-06 23:29:44 +02:00
|
|
|
/**
|
|
|
|
* @var array<string, bool> $visited_paths
|
|
|
|
*/
|
|
|
|
public function getPredecessorPath(TypeSource $source, array $visited_paths = []) : string
|
2019-08-04 16:37:36 +02:00
|
|
|
{
|
2019-08-07 00:56:36 +02:00
|
|
|
$location_summary = '';
|
2019-08-06 23:29:44 +02:00
|
|
|
|
2019-08-07 00:56:36 +02:00
|
|
|
if ($source->code_location) {
|
|
|
|
$location_summary = $source->code_location->getQuickSummary();
|
2019-08-06 23:29:44 +02:00
|
|
|
|
2019-08-07 00:56:36 +02:00
|
|
|
if (isset($visited_paths[$location_summary])) {
|
|
|
|
return '';
|
|
|
|
}
|
2019-08-06 23:29:44 +02:00
|
|
|
|
2019-08-07 00:56:36 +02:00
|
|
|
$visited_paths[$location_summary] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$source_descriptor = $source->id . ($location_summary ? ' (' . $location_summary . ')' : '');
|
2019-08-04 16:37:36 +02:00
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
if ($previous_source = $this->new_sources[$source->id] ?? self::$archived_sources[$source->id] ?? null) {
|
2019-08-04 16:37:36 +02:00
|
|
|
if ($previous_source === $source) {
|
2019-08-07 00:56:36 +02:00
|
|
|
return '';
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 23:29:44 +02:00
|
|
|
return $this->getPredecessorPath($previous_source, $visited_paths) . ' -> ' . $source_descriptor;
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $source_descriptor;
|
|
|
|
}
|
|
|
|
|
2019-08-06 23:29:44 +02:00
|
|
|
/**
|
|
|
|
* @var array<string, bool> $visited_paths
|
|
|
|
*/
|
|
|
|
public function getSuccessorPath(TypeSource $source, array $visited_paths = []) : string
|
2019-08-04 16:37:36 +02:00
|
|
|
{
|
2019-08-07 00:56:36 +02:00
|
|
|
$location_summary = '';
|
2019-08-06 23:29:44 +02:00
|
|
|
|
2019-08-07 00:56:36 +02:00
|
|
|
if ($source->code_location) {
|
|
|
|
$location_summary = $source->code_location->getQuickSummary();
|
2019-08-06 23:29:44 +02:00
|
|
|
|
2019-08-07 00:56:36 +02:00
|
|
|
if (isset($visited_paths[$location_summary])) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$visited_paths[$location_summary] = true;
|
|
|
|
}
|
2019-08-06 23:29:44 +02:00
|
|
|
|
2019-08-07 00:56:36 +02:00
|
|
|
$source_descriptor = $source->id . ($location_summary ? ' (' . $location_summary . ')' : '');
|
2019-08-04 16:37:36 +02:00
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
if ($next_source = $this->new_sinks[$source->id] ?? self::$archived_sinks[$source->id] ?? null) {
|
2019-08-07 00:56:36 +02:00
|
|
|
if ($next_source === $source) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-08-06 23:29:44 +02:00
|
|
|
return $source_descriptor . ' -> ' . $this->getSuccessorPath($next_source, $visited_paths);
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $source_descriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array<TypeSource> $sources
|
|
|
|
*/
|
|
|
|
public function addSinks(
|
|
|
|
StatementsAnalyzer $statements_analyzer,
|
|
|
|
array $sources,
|
|
|
|
\Psalm\CodeLocation $code_location,
|
|
|
|
?TypeSource $previous_source
|
|
|
|
) : void {
|
|
|
|
foreach ($sources as $source) {
|
|
|
|
if ($this->hasExistingSink($source)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->hasExistingSource($source)) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new TaintedInput(
|
|
|
|
'in path ' . $this->getPredecessorPath($source)
|
|
|
|
. ($previous_source ? ' out path ' . $this->getSuccessorPath($previous_source) : ''),
|
|
|
|
$code_location
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->new_sinks[$source->id] = $previous_source;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasNewSinksAndSources() : bool
|
|
|
|
{
|
2019-08-06 00:33:33 +02:00
|
|
|
return $this->new_sinks || $this->new_sources;
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function addThreadData(self $taint) : void
|
|
|
|
{
|
|
|
|
$this->new_sinks = array_merge(
|
|
|
|
$this->new_sinks,
|
|
|
|
$taint->new_sinks
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->new_sources = array_merge(
|
|
|
|
$this->new_sources,
|
|
|
|
$taint->new_sources
|
|
|
|
);
|
2019-08-06 00:33:33 +02:00
|
|
|
|
|
|
|
foreach ($taint->specializations as $id => $specializations) {
|
|
|
|
if (!isset($this->specializations[$id])) {
|
|
|
|
$this->specializations[$id] = $specializations;
|
|
|
|
} else {
|
|
|
|
$this->specializations[$id] = \array_unique(
|
|
|
|
array_merge($this->specializations[$id], $specializations)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 16:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function clearNewSinksAndSources() : void
|
|
|
|
{
|
2019-08-06 20:27:21 +02:00
|
|
|
self::$archived_sinks = array_merge(
|
|
|
|
self::$archived_sinks,
|
2019-08-04 16:37:36 +02:00
|
|
|
$this->new_sinks
|
|
|
|
);
|
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
self::$previous_sinks = $this->new_sinks;
|
2019-08-04 16:37:36 +02:00
|
|
|
|
|
|
|
$this->new_sinks = [];
|
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
self::$archived_sources = array_merge(
|
|
|
|
self::$archived_sources,
|
2019-08-04 16:37:36 +02:00
|
|
|
$this->new_sources
|
|
|
|
);
|
|
|
|
|
2019-08-06 20:27:21 +02:00
|
|
|
self::$previous_sources = $this->new_sources;
|
2019-08-04 16:37:36 +02:00
|
|
|
|
|
|
|
$this->new_sources = [];
|
|
|
|
}
|
|
|
|
}
|