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

301 lines
9.1 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-23 06:08:16 +02:00
/** @var array<string, Taintable> */
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-25 23:10:53 +02:00
/** @var array<string, array<string, true>> */
private $specializations = [];
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-23 05:53:37 +02:00
// in the rare case the sink is the _next_ node, this is necessary
$this->nodes[$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;
2020-05-25 23:10:53 +02:00
$this->specializations[$node->unspecialized_id][$node->specialization_key] = 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-25 23:10:53 +02:00
foreach ($taint->specializations as $key => $map) {
if (!isset($this->specializations[$key])) {
$this->specializations[$key] = $map;
} else {
$this->specializations[$key] += $map;
}
}
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-06-16 00:34:56 +02:00
$generated_sources = $this->getSpecializedSources($source);
foreach ($generated_sources as $generated_source) {
$new_sources = array_merge(
$new_sources,
$this->getChildNodes(
$generated_source,
$source_taints,
$sinks,
$visited_source_ids
)
);
}
}
$sources = $new_sources;
}
}
/**
* @param array<string> $source_taints
* @param array<Taintable> $sinks
* @return array<Taintable>
*/
private function getChildNodes(
Taintable $generated_source,
array $source_taints,
array $sinks,
array $visited_source_ids
) : array {
$new_sources = [];
foreach ($this->forward_edges[$generated_source->id] as $to_id => [$added_taints, $removed_taints]) {
if (!isset($this->nodes[$to_id])) {
continue;
}
$new_taints = \array_unique(
\array_diff(
\array_merge($source_taints, $added_taints),
$removed_taints
)
);
\sort($new_taints);
2019-10-14 02:10:31 +02:00
2020-06-16 00:34:56 +02:00
$destination_node = $this->nodes[$to_id];
if (isset($visited_source_ids[$to_id][implode(',', $new_taints)])) {
continue;
}
if (isset($sinks[$to_id])) {
$matching_taints = array_intersect($sinks[$to_id]->taints, $new_taints);
if ($matching_taints && $generated_source->code_location) {
if (IssueBuffer::accepts(
new TaintedInput(
'Detected tainted ' . implode(', ', $matching_taints)
. ' in path: ' . $this->getPredecessorPath($generated_source)
. ' -> ' . $this->getSuccessorPath($sinks[$to_id]),
$sinks[$to_id]->code_location ?: $generated_source->code_location
)
)) {
// fall through
2020-05-22 04:47:58 +02:00
}
2020-06-16 00:34:56 +02:00
continue;
2019-10-14 02:10:31 +02:00
}
2020-06-16 00:34:56 +02:00
}
2019-10-14 02:10:31 +02:00
2020-06-16 00:34:56 +02:00
$new_destination = clone $destination_node;
$new_destination->previous = $generated_source;
$new_destination->taints = $new_taints;
$new_destination->specialized_calls = $generated_source->specialized_calls;
2019-10-14 02:10:31 +02:00
2020-06-16 00:34:56 +02:00
$new_sources[$to_id] = $new_destination;
}
2019-10-13 18:34:40 +02:00
2020-06-16 00:34:56 +02:00
return $new_sources;
}
2020-06-16 00:34:56 +02:00
/** @return array<Taintable> */
private function getSpecializedSources(Taintable $source) : array
{
$generated_sources = [];
2020-06-16 00:34:56 +02:00
if (isset($this->forward_edges[$source->id])) {
return [$source];
}
2019-10-14 04:05:16 +02:00
2020-06-16 00:34:56 +02:00
if ($source->specialization_key && isset($this->specialized_calls[$source->specialization_key])) {
$generated_source = clone $source;
$generated_source->specialized_calls[$source->specialization_key]
= $this->specialized_calls[$source->specialization_key];
$generated_source->id = substr($source->id, 0, -strlen($source->specialization_key) - 1);
2019-10-14 04:05:16 +02:00
2020-06-16 00:34:56 +02:00
$generated_sources[] = $generated_source;
} elseif (isset($this->specializations[$source->id])) {
foreach ($this->specializations[$source->id] as $specialization => $_) {
if (isset($source->specialized_calls[$specialization])) {
$new_source = clone $source;
2019-10-14 04:05:16 +02:00
2020-06-16 00:34:56 +02:00
$new_source->id = $source->id . '-' . $specialization;
$generated_sources[] = $new_source;
2020-05-22 04:47:58 +02:00
}
2019-10-14 04:05:16 +02:00
}
2020-06-16 00:34:56 +02:00
} else {
foreach ($source->specialized_calls as $key => $map) {
if (isset($map[$source->id]) && isset($this->forward_edges[$source->id . '-' . $key])) {
$new_source = clone $source;
2019-10-13 18:34:40 +02:00
2020-06-16 00:34:56 +02:00
$new_source->id = $source->id . '-' . $key;
$generated_sources[] = $new_source;
}
}
2020-05-22 04:47:58 +02:00
}
2020-06-16 00:34:56 +02:00
return \array_filter(
$generated_sources,
function ($new_source) {
return isset($this->forward_edges[$new_source->id]);
}
);
}
}