1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 18:36:58 +01:00
psalm/src/Psalm/Internal/Codebase/Taint.php

230 lines
7.2 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Internal\Codebase;
use Psalm\CodeLocation;
use Psalm\Internal\Analyzer\StatementsAnalyzer;
2019-10-13 18:34:40 +02:00
use Psalm\Internal\Provider\ClassLikeStorageProvider;
use Psalm\Internal\Provider\FileReferenceProvider;
use Psalm\Internal\Provider\FileStorageProvider;
2020-05-22 04:47:58 +02:00
use Psalm\Internal\Taint\Path;
2019-08-14 06:47:57 +02:00
use Psalm\Internal\Taint\Sink;
use Psalm\Internal\Taint\Source;
2020-05-22 04:47:58 +02:00
use Psalm\Internal\Taint\TaintNode;
2019-08-14 06:47:57 +02:00
use Psalm\Internal\Taint\Taintable;
use Psalm\IssueBuffer;
use Psalm\Issue\TaintedInput;
use function array_merge;
use function array_merge_recursive;
use function strtolower;
use UnexpectedValueException;
2020-05-22 04:47:58 +02:00
use function count;
use function implode;
use function substr;
use function strlen;
use function array_intersect;
class Taint
{
2020-05-22 04:47:58 +02:00
/** @var array<string, Source> */
2020-05-22 05:43:13 +02:00
private $sources = [];
2020-05-22 04:47:58 +02:00
/** @var array<string, TaintNode> */
2020-05-22 05:43:13 +02:00
private $nodes = [];
2020-05-22 04:47:58 +02:00
/** @var array<string, Sink> */
2020-05-22 05:43:13 +02:00
private $sinks = [];
2020-05-22 04:47:58 +02:00
/** @var array<string, array<string, array{array<string>, array<string>}>> */
2020-05-22 05:43:13 +02:00
private $forward_edges = [];
2020-05-22 04:47:58 +02:00
/** @var array<string, array<string, true>> */
2020-05-22 05:43:13 +02:00
private $specialized_calls = [];
2020-05-22 04:47:58 +02:00
public function addSource(Source $node) : void
{
2020-05-22 05:43:13 +02:00
$this->sources[$node->id] = $node;
}
2020-05-22 04:47:58 +02:00
public function addSink(Sink $node) : void
{
2020-05-22 05:43:13 +02:00
$this->sinks[$node->id] = $node;
}
2020-05-22 04:47:58 +02:00
public function addTaintNode(TaintNode $node) : void
{
2020-05-22 05:43:13 +02:00
$this->nodes[$node->id] = $node;
2020-05-22 04:47:58 +02:00
if ($node->unspecialized_id && $node->specialization_key) {
2020-05-22 05:43:13 +02:00
$this->specialized_calls[$node->specialization_key][$node->unspecialized_id] = true;
2019-08-14 06:47:57 +02:00
}
}
/**
2020-05-22 04:47:58 +02:00
* @param array<string> $added_taints
* @param array<string> $removed_taints
2019-08-14 06:47:57 +02:00
*/
2020-05-22 04:47:58 +02:00
public function addPath(
Taintable $from,
Taintable $to,
array $added_taints = [],
array $removed_taints = []
2019-08-14 06:47:57 +02:00
) : void {
2020-05-22 04:47:58 +02:00
$from_id = $from->id;
$to_id = $to->id;
2019-08-14 06:47:57 +02:00
2020-05-22 05:43:13 +02:00
$this->forward_edges[$from_id][$to_id] = [$added_taints, $removed_taints];
}
2020-05-22 04:47:58 +02:00
public function getPredecessorPath(Taintable $source) : string
{
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->getShortSummary();
2019-08-14 15:52:59 +02:00
}
2019-08-06 23:29:44 +02:00
$source_descriptor = $source->label . ($location_summary ? ' (' . $location_summary . ')' : '');
2020-05-22 04:47:58 +02:00
$previous_source = $source->previous;
2019-08-14 06:47:57 +02:00
if ($previous_source) {
if ($previous_source === $source) {
2019-08-07 00:56:36 +02:00
return '';
}
2020-05-22 04:47:58 +02:00
return $this->getPredecessorPath($previous_source) . ' -> ' . $source_descriptor;
}
return $source_descriptor;
}
2020-05-22 04:47:58 +02:00
public function getSuccessorPath(Taintable $sink) : string
{
2019-08-07 00:56:36 +02:00
$location_summary = '';
2019-08-06 23:29:44 +02:00
2019-08-14 06:47:57 +02:00
if ($sink->code_location) {
$location_summary = $sink->code_location->getShortSummary();
2019-08-14 15:52:59 +02:00
}
2019-08-06 23:29:44 +02:00
$sink_descriptor = $sink->label . ($location_summary ? ' (' . $location_summary . ')' : '');
2020-05-22 04:47:58 +02:00
$next_sink = $sink->previous;
2019-08-14 06:47:57 +02:00
if ($next_sink) {
if ($next_sink === $sink) {
2019-08-07 00:56:36 +02:00
return '';
}
2020-05-22 04:47:58 +02:00
return $sink_descriptor . ' -> ' . $this->getSuccessorPath($next_sink);
}
2019-08-14 06:47:57 +02:00
return $sink_descriptor;
}
2020-05-22 04:47:58 +02:00
public function addThreadData(self $taint) : void
{
2020-05-22 04:47:58 +02:00
$this->sources += $taint->sources;
$this->sinks += $taint->sinks;
$this->nodes += $taint->nodes;
$this->specialized_calls += $taint->specialized_calls;
foreach ($taint->forward_edges as $key => $map) {
if (!isset($this->forward_edges[$key])) {
$this->forward_edges[$key] = $map;
} else {
$this->forward_edges[$key] += $map;
2019-10-14 02:10:31 +02:00
}
}
2020-05-22 04:47:58 +02:00
}
public function connectSinksAndSources() : void
{
$visited_source_ids = [];
2020-05-22 05:43:13 +02:00
$sources = $this->sources;
$sinks = $this->sinks;
2020-05-22 04:47:58 +02:00
for ($i = 0; count($sinks) && count($sources) && $i < 20; $i++) {
2020-05-22 04:47:58 +02:00
$new_sources = [];
foreach ($sources as $source) {
$source_taints = $source->taints;
\sort($source_taints);
$visited_source_ids[$source->id][implode(',', $source_taints)] = true;
2020-05-22 05:43:13 +02:00
if (!isset($this->forward_edges[$source->id])) {
2020-05-22 04:47:58 +02:00
$source = clone $source;
2019-10-14 02:10:31 +02:00
2020-05-22 05:43:13 +02:00
if ($source->specialization_key && isset($this->specialized_calls[$source->specialization_key])) {
2020-05-22 04:47:58 +02:00
$source->specialized_calls[$source->specialization_key]
2020-05-22 05:43:13 +02:00
= $this->specialized_calls[$source->specialization_key];
2019-10-14 02:10:31 +02:00
2020-05-22 04:47:58 +02:00
$source->id = substr($source->id, 0, -strlen($source->specialization_key) - 1);
} else {
foreach ($source->specialized_calls as $key => $map) {
2020-05-22 05:43:13 +02:00
if (isset($map[$source->id]) && isset($this->forward_edges[$source->id . '-' . $key])) {
2020-05-22 04:47:58 +02:00
$source->id = $source->id . '-' . $key;
}
}
2019-10-14 02:10:31 +02:00
}
2020-05-22 05:43:13 +02:00
if (!isset($this->forward_edges[$source->id])) {
2020-05-22 04:47:58 +02:00
continue;
}
2019-10-14 02:10:31 +02:00
}
2020-05-22 05:43:13 +02:00
foreach ($this->forward_edges[$source->id] as $to_id => [$added_taints, $removed_taints]) {
if (!isset($this->nodes[$to_id])) {
2020-05-22 04:47:58 +02:00
continue;
}
2019-10-14 02:10:31 +02:00
2020-05-22 04:47:58 +02:00
$new_taints = \array_unique(
\array_diff(
\array_merge($source_taints, $added_taints),
$removed_taints
)
);
2019-10-13 18:34:40 +02:00
2020-05-22 04:47:58 +02:00
\sort($new_taints);
2020-05-22 05:43:13 +02:00
$destination_node = $this->nodes[$to_id];
2020-05-22 04:47:58 +02:00
if (isset($visited_source_ids[$to_id][implode(',', $new_taints)])) {
continue;
}
2019-10-14 04:05:16 +02:00
2020-05-22 04:47:58 +02:00
if (isset($sinks[$to_id])) {
$matching_taints = array_intersect($sinks[$to_id]->taints, $new_taints);
if ($matching_taints && $source->code_location) {
if (IssueBuffer::accepts(
new TaintedInput(
'Detected tainted ' . implode(', ', $matching_taints)
. ' in path: ' . $this->getPredecessorPath($source)
. ' -> ' . $this->getSuccessorPath($sinks[$to_id]),
2020-05-22 05:43:13 +02:00
$sinks[$to_id]->code_location ?: $source->code_location
2020-05-22 04:47:58 +02:00
)
)) {
// fall through
}
continue;
}
}
2019-10-14 04:05:16 +02:00
2020-05-22 04:47:58 +02:00
$new_destination = clone $destination_node;
$new_destination->previous = $source;
$new_destination->taints = $new_taints;
$new_destination->specialized_calls = $source->specialized_calls;
2019-10-14 04:05:16 +02:00
2020-05-22 04:47:58 +02:00
$new_sources[$to_id] = $new_destination;
}
2019-10-14 04:05:16 +02:00
}
2019-10-13 18:34:40 +02:00
2020-05-22 04:47:58 +02:00
$sources = $new_sources;
}
}
}