1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-16 03:17:02 +01:00
psalm/src/Psalm/Internal/Analyzer/Statements/Expression/Assignment/PropertyAssignmentAnalyzer.php

1383 lines
57 KiB
PHP
Raw Normal View History

2018-01-14 18:09:40 +01:00
<?php
2018-11-06 03:57:36 +01:00
namespace Psalm\Internal\Analyzer\Statements\Expression\Assignment;
2018-01-14 18:09:40 +01:00
use PhpParser;
use PhpParser\Node\Expr\PropertyFetch;
use PhpParser\Node\Stmt\PropertyProperty;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
use Psalm\Internal\Analyzer\NamespaceAnalyzer;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Analyzer\Statements\ExpressionAnalyzer;
use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\Internal\Analyzer\TypeAnalyzer;
2019-06-04 06:32:19 +02:00
use Psalm\Internal\FileManipulation\FileManipulationBuffer;
2018-01-14 18:09:40 +01:00
use Psalm\CodeLocation;
use Psalm\Context;
use Psalm\Issue\DeprecatedProperty;
use Psalm\Issue\ImplicitToStringCast;
2020-03-14 06:09:12 +01:00
use Psalm\Issue\ImpurePropertyAssignment;
2019-08-11 22:01:37 +02:00
use Psalm\Issue\InaccessibleProperty;
use Psalm\Issue\InternalProperty;
2018-01-14 18:09:40 +01:00
use Psalm\Issue\InvalidPropertyAssignment;
use Psalm\Issue\InvalidPropertyAssignmentValue;
use Psalm\Issue\LoopInvalidation;
use Psalm\Issue\MixedAssignment;
2018-01-14 18:09:40 +01:00
use Psalm\Issue\MixedPropertyAssignment;
use Psalm\Issue\MixedPropertyTypeCoercion;
2018-01-14 18:09:40 +01:00
use Psalm\Issue\NoInterfaceProperties;
use Psalm\Issue\NullPropertyAssignment;
use Psalm\Issue\PossiblyFalsePropertyAssignmentValue;
use Psalm\Issue\PossiblyInvalidPropertyAssignment;
use Psalm\Issue\PossiblyInvalidPropertyAssignmentValue;
use Psalm\Issue\PossiblyNullPropertyAssignment;
use Psalm\Issue\PossiblyNullPropertyAssignmentValue;
use Psalm\Issue\PropertyTypeCoercion;
2018-01-14 18:09:40 +01:00
use Psalm\Issue\UndefinedClass;
use Psalm\Issue\UndefinedPropertyAssignment;
use Psalm\Issue\UndefinedMagicPropertyAssignment;
2018-01-14 18:09:40 +01:00
use Psalm\Issue\UndefinedThisPropertyAssignment;
use Psalm\IssueBuffer;
use Psalm\Type;
use Psalm\Type\Atomic\TNamedObject;
use Psalm\Type\Atomic\TNull;
use Psalm\Type\Atomic\TObject;
use function count;
use function in_array;
use function strtolower;
use function explode;
2019-08-14 06:47:57 +02:00
use Psalm\Internal\Taint\Sink;
use Psalm\Internal\Taint\Source;
2018-01-14 18:09:40 +01:00
/**
* @internal
*/
2018-11-06 03:57:36 +01:00
class PropertyAssignmentAnalyzer
2018-01-14 18:09:40 +01:00
{
/**
2018-11-11 18:01:14 +01:00
* @param StatementsAnalyzer $statements_analyzer
2018-01-14 18:09:40 +01:00
* @param PropertyFetch|PropertyProperty $stmt
* @param string $prop_name
* @param PhpParser\Node\Expr|null $assignment_value
* @param Type\Union $assignment_value_type
* @param Context $context
* @param bool $direct_assignment whether the variable is assigned explicitly
2018-01-14 18:09:40 +01:00
*
* @return false|null
*/
public static function analyzeInstance(
2018-11-11 18:01:14 +01:00
StatementsAnalyzer $statements_analyzer,
2018-01-14 18:09:40 +01:00
$stmt,
$prop_name,
$assignment_value,
Type\Union $assignment_value_type,
Context $context,
$direct_assignment = true
) {
$class_property_types = [];
2018-11-11 18:01:14 +01:00
$codebase = $statements_analyzer->getCodebase();
2018-01-14 18:09:40 +01:00
$property_exists = false;
$property_ids = [];
2018-01-14 18:09:40 +01:00
if ($stmt instanceof PropertyProperty) {
if (!$context->self || !$stmt->default) {
return null;
}
$property_id = $context->self . '::$' . $prop_name;
$property_ids[] = $property_id;
2018-01-14 18:09:40 +01:00
$property_exists = true;
$class_property_type = $codebase->properties->getPropertyType(
$property_id,
true,
$statements_analyzer,
$context
);
2018-01-14 18:09:40 +01:00
if ($class_property_type) {
$class_storage = $codebase->classlike_storage_provider->get($context->self);
$class_property_type = ExpressionAnalyzer::fleshOutType(
$codebase,
$class_property_type,
$class_storage->name,
$class_storage->name,
$class_storage->parent_class
);
}
$class_property_types[] = $class_property_type ?: Type::getMixed();
2018-01-14 18:09:40 +01:00
$var_id = '$this->' . $prop_name;
} else {
2018-11-11 18:01:14 +01:00
if (ExpressionAnalyzer::analyze($statements_analyzer, $stmt->var, $context) === false) {
2018-01-14 18:09:40 +01:00
return false;
}
$lhs_type = $statements_analyzer->node_data->getType($stmt->var);
2018-01-14 18:09:40 +01:00
if ($lhs_type === null) {
return null;
}
2018-11-06 03:57:36 +01:00
$lhs_var_id = ExpressionAnalyzer::getVarId(
2018-01-14 18:09:40 +01:00
$stmt->var,
2018-11-11 18:01:14 +01:00
$statements_analyzer->getFQCLN(),
$statements_analyzer
2018-01-14 18:09:40 +01:00
);
2018-11-06 03:57:36 +01:00
$var_id = ExpressionAnalyzer::getVarId(
2018-01-14 18:09:40 +01:00
$stmt,
2018-11-11 18:01:14 +01:00
$statements_analyzer->getFQCLN(),
$statements_analyzer
2018-01-14 18:09:40 +01:00
);
if ($var_id) {
$context->assigned_var_ids[$var_id] = true;
if ($direct_assignment && isset($context->protected_var_ids[$var_id])) {
if (IssueBuffer::accepts(
new LoopInvalidation(
'Variable ' . $var_id . ' has already been assigned in a for/foreach loop',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt->var)
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
// fall through
}
}
}
if ($lhs_type->hasMixed()) {
if (!$context->collect_initializations
&& !$context->collect_mutations
&& $statements_analyzer->getFilePath() === $statements_analyzer->getRootFilePath()
&& (!(($parent_source = $statements_analyzer->getSource())
instanceof \Psalm\Internal\Analyzer\FunctionLikeAnalyzer)
|| !$parent_source->getSource() instanceof \Psalm\Internal\Analyzer\TraitAnalyzer)
) {
$codebase->analyzer->incrementMixedCount($statements_analyzer->getFilePath());
}
if ($stmt->name instanceof PhpParser\Node\Identifier) {
2019-04-27 23:38:24 +02:00
$codebase->analyzer->addMixedMemberName(
'$' . $stmt->name->name,
$context->calling_function_id ?: $statements_analyzer->getFileName()
2019-04-27 23:38:24 +02:00
);
}
2018-01-14 18:09:40 +01:00
if (IssueBuffer::accepts(
new MixedPropertyAssignment(
$lhs_var_id . ' of type mixed cannot be assigned to',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt->var)
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
return null;
}
if (!$context->collect_initializations
&& !$context->collect_mutations
&& $statements_analyzer->getFilePath() === $statements_analyzer->getRootFilePath()
&& (!(($parent_source = $statements_analyzer->getSource())
instanceof \Psalm\Internal\Analyzer\FunctionLikeAnalyzer)
|| !$parent_source->getSource() instanceof \Psalm\Internal\Analyzer\TraitAnalyzer)
) {
$codebase->analyzer->incrementNonMixedCount($statements_analyzer->getFilePath());
}
2018-01-14 18:09:40 +01:00
if ($lhs_type->isNull()) {
if (IssueBuffer::accepts(
new NullPropertyAssignment(
$lhs_var_id . ' of type null cannot be assigned to',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt->var)
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
return null;
}
if ($lhs_type->isNullable() && !$lhs_type->ignore_nullable_issues) {
if (IssueBuffer::accepts(
new PossiblyNullPropertyAssignment(
$lhs_var_id . ' with possibly null type \'' . $lhs_type . '\' cannot be assigned to',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt->var)
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
}
$has_regular_setter = false;
$invalid_assignment_types = [];
$has_valid_assignment_type = false;
foreach ($lhs_type->getAtomicTypes() as $lhs_type_part) {
2018-01-14 18:09:40 +01:00
if ($lhs_type_part instanceof TNull) {
continue;
}
if ($lhs_type_part instanceof Type\Atomic\TFalse
&& $lhs_type->ignore_falsable_issues
&& count($lhs_type->getAtomicTypes()) > 1
) {
continue;
}
2018-01-14 18:09:40 +01:00
if (!$lhs_type_part instanceof TObject && !$lhs_type_part instanceof TNamedObject) {
$invalid_assignment_types[] = (string)$lhs_type_part;
continue;
}
$has_valid_assignment_type = true;
// stdClass and SimpleXMLElement are special cases where we cannot infer the return types
// but we don't want to throw an error
// Hack has a similar issue: https://github.com/facebook/hhvm/issues/5164
if ($lhs_type_part instanceof TObject ||
(
in_array(
strtolower($lhs_type_part->value),
['stdclass', 'simplexmlelement', 'dateinterval', 'domdocument', 'domnode'],
true
)
)
) {
if ($var_id) {
if ($lhs_type_part instanceof TNamedObject &&
strtolower($lhs_type_part->value) === 'stdclass'
) {
$context->vars_in_scope[$var_id] = $assignment_value_type;
} else {
$context->vars_in_scope[$var_id] = Type::getMixed();
}
}
return null;
}
2018-11-06 03:57:36 +01:00
if (ExpressionAnalyzer::isMock($lhs_type_part->value)) {
2018-01-14 18:09:40 +01:00
if ($var_id) {
$context->vars_in_scope[$var_id] = Type::getMixed();
}
return null;
}
$intersection_types = $lhs_type_part->getIntersectionTypes() ?: [];
$fq_class_name = $lhs_type_part->value;
$override_property_visibility = false;
$class_exists = false;
$interface_exists = false;
if (!$codebase->classExists($lhs_type_part->value)) {
2018-02-01 06:50:01 +01:00
if ($codebase->interfaceExists($lhs_type_part->value)) {
$interface_exists = true;
$interface_storage = $codebase->classlike_storage_provider->get(
strtolower($lhs_type_part->value)
);
$override_property_visibility = $interface_storage->override_property_visibility;
foreach ($intersection_types as $intersection_type) {
if ($intersection_type instanceof TNamedObject
&& $codebase->classExists($intersection_type->value)
) {
$fq_class_name = $intersection_type->value;
$class_exists = true;
break;
}
}
if (!$class_exists) {
if (IssueBuffer::accepts(
new NoInterfaceProperties(
'Interfaces cannot have properties',
new CodeLocation($statements_analyzer->getSource(), $stmt),
$lhs_type_part->value
),
$statements_analyzer->getSuppressedIssues()
)) {
return null;
}
if (!$codebase->methods->methodExists(
new \Psalm\Internal\MethodIdentifier(
$fq_class_name,
'__set'
)
)) {
return null;
}
}
}
if (!$class_exists && !$interface_exists) {
2018-01-14 18:09:40 +01:00
if (IssueBuffer::accepts(
new UndefinedClass(
'Cannot set properties of undefined class ' . $lhs_type_part->value,
new CodeLocation($statements_analyzer->getSource(), $stmt),
$lhs_type_part->value
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
// fall through
2018-01-14 18:09:40 +01:00
}
return null;
}
} else {
$class_exists = true;
2018-01-14 18:09:40 +01:00
}
$property_id = $fq_class_name . '::$' . $prop_name;
$property_ids[] = $property_id;
2020-01-06 03:58:18 +01:00
$has_magic_setter = false;
$set_method_id = new \Psalm\Internal\MethodIdentifier($fq_class_name, '__set');
if ($codebase->methods->methodExists($set_method_id)
&& (!$codebase->properties->propertyExists($property_id, false, $statements_analyzer, $context)
|| ($lhs_var_id !== '$this'
&& $fq_class_name !== $context->self
2018-11-06 03:57:36 +01:00
&& ClassLikeAnalyzer::checkPropertyVisibility(
$property_id,
$context,
2018-11-11 18:01:14 +01:00
$statements_analyzer,
new CodeLocation($statements_analyzer->getSource(), $stmt),
$statements_analyzer->getSuppressedIssues(),
false
) !== true)
)
2018-01-14 18:09:40 +01:00
) {
2020-01-06 03:58:18 +01:00
$has_magic_setter = true;
$class_storage = $codebase->classlike_storage_provider->get($fq_class_name);
2018-01-14 18:09:40 +01:00
if ($var_id) {
if (isset($class_storage->pseudo_property_set_types['$' . $prop_name])) {
$class_property_types[] =
clone $class_storage->pseudo_property_set_types['$' . $prop_name];
2018-01-14 18:09:40 +01:00
$has_regular_setter = true;
$property_exists = true;
self::taintProperty($statements_analyzer, $stmt, $property_id, $assignment_value_type);
2018-01-14 18:09:40 +01:00
continue;
}
}
2019-05-24 08:15:35 +02:00
if ($assignment_value) {
if ($var_id) {
$context->removeVarFromConflictingClauses(
$var_id,
Type::getMixed(),
$statements_analyzer
);
unset($context->vars_in_scope[$var_id]);
}
$old_data_provider = $statements_analyzer->node_data;
$statements_analyzer->node_data = clone $statements_analyzer->node_data;
2019-05-24 08:15:35 +02:00
$fake_method_call = new PhpParser\Node\Expr\MethodCall(
$stmt->var,
new PhpParser\Node\Identifier('__set', $stmt->name->getAttributes()),
[
new PhpParser\Node\Arg(
new PhpParser\Node\Scalar\String_(
$prop_name,
$stmt->name->getAttributes()
)
),
new PhpParser\Node\Arg(
$assignment_value
)
2019-05-24 08:15:35 +02:00
]
);
$suppressed_issues = $statements_analyzer->getSuppressedIssues();
if (!in_array('PossiblyNullReference', $suppressed_issues, true)) {
$statements_analyzer->addSuppressedIssues(['PossiblyNullReference']);
}
2019-05-24 08:15:35 +02:00
\Psalm\Internal\Analyzer\Statements\Expression\Call\MethodCallAnalyzer::analyze(
$statements_analyzer,
$fake_method_call,
$context,
false
2019-05-24 08:15:35 +02:00
);
if (!in_array('PossiblyNullReference', $suppressed_issues, true)) {
$statements_analyzer->removeSuppressedIssues(['PossiblyNullReference']);
}
$statements_analyzer->node_data = $old_data_provider;
2019-05-24 08:15:35 +02:00
}
2018-01-14 18:09:40 +01:00
/*
* If we have an explicit list of all allowed magic properties on the class, and we're
* not in that list, fall through
*/
if (!$var_id || !$class_storage->sealed_properties) {
self::taintProperty($statements_analyzer, $stmt, $property_id, $assignment_value_type);
2018-01-14 18:09:40 +01:00
continue;
}
if (!$class_exists) {
if (IssueBuffer::accepts(
new UndefinedMagicPropertyAssignment(
2020-01-07 07:06:51 +01:00
'Magic instance property ' . $property_id . ' is not defined',
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
}
if (!$class_exists) {
continue;
2018-01-14 18:09:40 +01:00
}
$has_regular_setter = true;
if ($stmt->var instanceof PhpParser\Node\Expr\Variable
&& $stmt->var->name === 'this'
&& $context->self
) {
$self_property_id = $context->self . '::$' . $prop_name;
if ($self_property_id !== $property_id
&& $codebase->properties->propertyExists(
$self_property_id,
false,
$statements_analyzer,
$context
)
) {
$property_id = $self_property_id;
}
}
self::taintProperty($statements_analyzer, $stmt, $property_id, $assignment_value_type);
2019-01-22 17:10:37 +01:00
if (!$codebase->properties->propertyExists(
$property_id,
false,
$statements_analyzer,
$context,
2019-01-22 17:10:37 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt)
)) {
2018-01-14 18:09:40 +01:00
if ($stmt->var instanceof PhpParser\Node\Expr\Variable && $stmt->var->name === 'this') {
// if this is a proper error, we'll see it on the first pass
if ($context->collect_mutations) {
continue;
}
if (IssueBuffer::accepts(
new UndefinedThisPropertyAssignment(
'Instance property ' . $property_id . ' is not defined',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
2019-03-06 00:27:25 +01:00
// fall through
2018-01-14 18:09:40 +01:00
}
} else {
2020-01-06 03:58:18 +01:00
if ($has_magic_setter) {
if (IssueBuffer::accepts(
new UndefinedMagicPropertyAssignment(
'Magic instance property ' . $property_id . ' is not defined',
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
} else {
if (IssueBuffer::accepts(
new UndefinedPropertyAssignment(
'Instance property ' . $property_id . ' is not defined',
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
2018-01-14 18:09:40 +01:00
}
}
continue;
}
2019-02-24 07:33:25 +01:00
if ($codebase->store_node_types
&& !$context->collect_initializations
&& !$context->collect_mutations
) {
$codebase->analyzer->addNodeReference(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getFilePath(),
$stmt->name,
$property_id
);
}
2018-01-14 18:09:40 +01:00
$property_exists = true;
if (!$override_property_visibility) {
if (!$context->collect_mutations) {
if (ClassLikeAnalyzer::checkPropertyVisibility(
$property_id,
$context,
$statements_analyzer,
new CodeLocation($statements_analyzer->getSource(), $stmt),
$statements_analyzer->getSuppressedIssues()
) === false) {
return false;
}
} else {
if (ClassLikeAnalyzer::checkPropertyVisibility(
$property_id,
$context,
$statements_analyzer,
new CodeLocation($statements_analyzer->getSource(), $stmt),
$statements_analyzer->getSuppressedIssues(),
false
) !== true) {
continue;
}
2018-01-14 18:09:40 +01:00
}
}
$declaring_property_class = (string) $codebase->properties->getDeclaringClassForProperty(
$property_id,
false
2018-01-14 18:09:40 +01:00
);
2019-06-04 06:32:19 +02:00
if ($codebase->properties_to_rename) {
$declaring_property_id = strtolower($declaring_property_class) . '::$' . $prop_name;
foreach ($codebase->properties_to_rename as $original_property_id => $new_property_name) {
if ($declaring_property_id === $original_property_id) {
$file_manipulations = [
new \Psalm\FileManipulation(
(int) $stmt->name->getAttribute('startFilePos'),
(int) $stmt->name->getAttribute('endFilePos') + 1,
$new_property_name
)
];
\Psalm\Internal\FileManipulation\FileManipulationBuffer::add(
$statements_analyzer->getFilePath(),
$file_manipulations
);
}
}
}
$class_storage = $codebase->classlike_storage_provider->get($declaring_property_class);
2018-01-14 18:09:40 +01:00
$property_storage = null;
2018-01-14 18:09:40 +01:00
if (isset($class_storage->properties[$prop_name])) {
$property_storage = $class_storage->properties[$prop_name];
if ($property_storage->deprecated) {
if (IssueBuffer::accepts(
new DeprecatedProperty(
$property_id . ' is marked deprecated',
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
if ($property_storage->psalm_internal && $context->self) {
if (! NamespaceAnalyzer::isWithin($context->self, $property_storage->psalm_internal)) {
if (IssueBuffer::accepts(
new InternalProperty(
$property_id . ' is marked internal to ' . $property_storage->psalm_internal,
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
}
if ($property_storage->internal && $context->self) {
if (! NamespaceAnalyzer::nameSpaceRootsMatch($context->self, $declaring_property_class)) {
if (IssueBuffer::accepts(
new InternalProperty(
$property_id . ' is marked internal',
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
}
2019-08-11 22:01:37 +02:00
2020-03-14 06:09:12 +01:00
// prevents writing to readonly properties
2019-08-11 22:01:37 +02:00
if ($property_storage->readonly) {
$appearing_property_class = $codebase->properties->getAppearingClassForProperty(
$property_id,
true
);
$stmt_var_type = $statements_analyzer->node_data->getType($stmt->var);
2020-03-14 06:09:12 +01:00
$property_var_pure_compatible = $stmt_var_type
&& $stmt_var_type->reference_free
&& $stmt_var_type->allow_mutations;
2020-03-14 06:09:12 +01:00
if ($appearing_property_class) {
$can_set_property = $context->self
&& $context->calling_function_id
2019-08-11 22:01:37 +02:00
&& ($appearing_property_class === $context->self
|| $codebase->classExtends($context->self, $appearing_property_class))
2020-03-14 06:09:12 +01:00
&& (\strpos($context->calling_function_id, '::__construct')
|| \strpos($context->calling_function_id, '::unserialize')
|| $property_storage->allow_private_mutation
2020-03-14 06:09:12 +01:00
|| $property_var_pure_compatible);
if (!$can_set_property) {
if (IssueBuffer::accepts(
new InaccessibleProperty(
$property_id . ' is marked readonly',
new CodeLocation($statements_analyzer->getSource(), $stmt)
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
} elseif ($class_storage->mutation_free
&& !$assignment_value_type->reference_free
) {
foreach ($assignment_value_type->getAtomicTypes() as $atomic_arg_type) {
if ($atomic_arg_type instanceof Type\Atomic\TNamedObject) {
$object_storage = $codebase->classlike_storage_provider->get(
$atomic_arg_type->value
);
if (!$object_storage->mutation_free) {
if (IssueBuffer::accepts(
new ImpurePropertyAssignment(
'Cannot store mutable reference inside an immutable object',
new CodeLocation($statements_analyzer->getSource(), $stmt)
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
}
}
2019-08-11 22:01:37 +02:00
}
}
}
}
$class_property_type = $codebase->properties->getPropertyType(
$property_id,
true,
$statements_analyzer,
$context
);
2018-01-14 18:09:40 +01:00
2019-01-11 23:21:50 +01:00
if (!$class_property_type) {
2018-01-14 18:09:40 +01:00
$class_property_type = Type::getMixed();
if (!$assignment_value_type->hasMixed() && $property_storage) {
2018-01-14 18:09:40 +01:00
if ($property_storage->suggested_type) {
$property_storage->suggested_type = Type::combineUnionTypes(
$assignment_value_type,
$property_storage->suggested_type
);
} else {
$property_storage->suggested_type =
$lhs_var_id === '$this' &&
($context->inside_constructor || $context->collect_initializations)
? $assignment_value_type
: Type::combineUnionTypes(Type::getNull(), $assignment_value_type);
}
}
} else {
2018-11-06 03:57:36 +01:00
$class_property_type = ExpressionAnalyzer::fleshOutType(
$codebase,
2018-01-14 18:09:40 +01:00
$class_property_type,
$fq_class_name,
$lhs_type_part,
$class_storage->parent_class
2018-01-14 18:09:40 +01:00
);
$class_property_type = \Psalm\Internal\Codebase\Methods::localizeType(
$codebase,
$class_property_type,
$fq_class_name,
$declaring_property_class
);
$assignment_value_type = \Psalm\Internal\Codebase\Methods::localizeType(
$codebase,
$assignment_value_type,
$fq_class_name,
$declaring_property_class
);
if (!$class_property_type->hasMixed() && $assignment_value_type->hasMixed()) {
if (IssueBuffer::accepts(
new MixedAssignment(
2019-03-16 17:53:54 +01:00
'Cannot assign' . ($var_id ? ' ' . $var_id . ' ' : ' ') . 'to a mixed type',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt)
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
2018-01-14 18:09:40 +01:00
}
$class_property_types[] = $class_property_type;
}
if ($invalid_assignment_types) {
$invalid_assignment_type = $invalid_assignment_types[0];
if (!$has_valid_assignment_type) {
if (IssueBuffer::accepts(
new InvalidPropertyAssignment(
$lhs_var_id . ' with non-object type \'' . $invalid_assignment_type .
'\' cannot treated as an object',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt->var)
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
} else {
if (IssueBuffer::accepts(
new PossiblyInvalidPropertyAssignment(
$lhs_var_id . ' with possible non-object type \'' . $invalid_assignment_type .
'\' cannot treated as an object',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt->var)
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
}
}
if (!$has_regular_setter) {
return null;
}
if ($var_id) {
if ($context->collect_initializations
&& $lhs_var_id === '$this'
) {
$assignment_value_type->initialized_class = $context->self;
}
2018-01-14 18:09:40 +01:00
// because we don't want to be assigning for property declarations
$context->vars_in_scope[$var_id] = $assignment_value_type;
}
}
if (!$property_exists) {
return null;
}
if ($assignment_value_type->hasMixed()) {
2018-01-14 18:09:40 +01:00
return null;
}
$invalid_assignment_value_types = [];
$has_valid_assignment_value_type = false;
2019-02-24 07:33:25 +01:00
if ($codebase->store_node_types
&& !$context->collect_initializations
&& !$context->collect_mutations
&& count($class_property_types) === 1
) {
$codebase->analyzer->addNodeType(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getFilePath(),
$stmt->name,
2020-02-23 23:03:27 +01:00
$class_property_types[0]->getId()
);
}
2018-01-14 18:09:40 +01:00
foreach ($class_property_types as $class_property_type) {
if ($class_property_type->hasMixed()) {
2018-01-14 18:09:40 +01:00
continue;
}
2019-07-10 07:35:57 +02:00
$union_comparison_results = new \Psalm\Internal\Analyzer\TypeComparisonResult();
2018-11-06 03:57:36 +01:00
$type_match_found = TypeAnalyzer::isContainedBy(
$codebase,
2018-01-14 18:09:40 +01:00
$assignment_value_type,
$class_property_type,
true,
true,
2019-07-10 07:35:57 +02:00
$union_comparison_results
2018-01-14 18:09:40 +01:00
);
if ($type_match_found && $union_comparison_results->replacement_union_type) {
if ($var_id) {
$context->vars_in_scope[$var_id] = $union_comparison_results->replacement_union_type;
}
}
2019-07-10 07:35:57 +02:00
if ($union_comparison_results->type_coerced) {
if ($union_comparison_results->type_coerced_from_mixed) {
2018-01-14 18:09:40 +01:00
if (IssueBuffer::accepts(
new MixedPropertyTypeCoercion(
$var_id . ' expects \'' . $class_property_type->getId() . '\', '
. ' parent type `' . $assignment_value_type->getId() . '` provided',
2018-01-14 18:09:40 +01:00
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
2018-01-14 18:09:40 +01:00
$assignment_value ?: $stmt,
$context->include_location
),
$property_ids[0]
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
// keep soldiering on
}
} else {
if (IssueBuffer::accepts(
new PropertyTypeCoercion(
$var_id . ' expects \'' . $class_property_type->getId() . '\', '
. ' parent type \'' . $assignment_value_type->getId() . '\' provided',
2018-01-14 18:09:40 +01:00
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
2018-01-14 18:09:40 +01:00
$assignment_value ?: $stmt,
$context->include_location
),
$property_ids[0]
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
// keep soldiering on
}
}
}
2019-07-10 07:35:57 +02:00
if ($union_comparison_results->to_string_cast) {
2018-01-14 18:09:40 +01:00
if (IssueBuffer::accepts(
new ImplicitToStringCast(
$var_id . ' expects \'' . $class_property_type . '\', '
. '\'' . $assignment_value_type . '\' provided with a __toString method',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
2018-01-14 18:09:40 +01:00
$assignment_value ?: $stmt,
$context->include_location
)
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
// fall through
}
}
2019-07-10 07:35:57 +02:00
if (!$type_match_found && !$union_comparison_results->type_coerced) {
2018-11-06 03:57:36 +01:00
if (TypeAnalyzer::canBeContainedBy(
$codebase,
$assignment_value_type,
$class_property_type,
true,
true
)) {
$has_valid_assignment_value_type = true;
}
$invalid_assignment_value_types[] = $class_property_type->getId();
2018-01-14 18:09:40 +01:00
} else {
$has_valid_assignment_value_type = true;
}
if ($type_match_found) {
if (!$assignment_value_type->ignore_nullable_issues
&& $assignment_value_type->isNullable()
&& !$class_property_type->isNullable()
) {
if (IssueBuffer::accepts(
new PossiblyNullPropertyAssignmentValue(
$var_id . ' with non-nullable declared type \'' . $class_property_type .
'\' cannot be assigned nullable type \'' . $assignment_value_type . '\'',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt,
$context->include_location
),
$property_ids[0]
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
return false;
}
}
if (!$assignment_value_type->ignore_falsable_issues
&& $assignment_value_type->isFalsable()
&& !$class_property_type->hasBool()
&& !$class_property_type->hasScalar()
) {
if (IssueBuffer::accepts(
new PossiblyFalsePropertyAssignmentValue(
$var_id . ' with non-falsable declared type \'' . $class_property_type .
'\' cannot be assigned possibly false type \'' . $assignment_value_type . '\'',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt,
$context->include_location
),
$property_ids[0]
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
return false;
}
}
}
2018-01-14 18:09:40 +01:00
}
if ($invalid_assignment_value_types) {
$invalid_class_property_type = $invalid_assignment_value_types[0];
if (!$has_valid_assignment_value_type) {
if (IssueBuffer::accepts(
new InvalidPropertyAssignmentValue(
$var_id . ' with declared type \'' . $invalid_class_property_type .
'\' cannot be assigned type \'' . $assignment_value_type->getId() . '\'',
2018-01-14 18:09:40 +01:00
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
2018-01-14 18:09:40 +01:00
$assignment_value ?: $stmt,
$context->include_location
),
$property_ids[0]
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
} else {
if (IssueBuffer::accepts(
new PossiblyInvalidPropertyAssignmentValue(
$var_id . ' with declared type \'' . $invalid_class_property_type .
'\' cannot be assigned possibly different type \'' .
$assignment_value_type->getId() . '\'',
2018-01-14 18:09:40 +01:00
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
2018-01-14 18:09:40 +01:00
$assignment_value ?: $stmt,
$context->include_location
),
$property_ids[0]
2018-01-14 18:09:40 +01:00
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
)) {
return false;
}
}
}
return null;
}
private static function taintProperty(
StatementsAnalyzer $statements_analyzer,
PhpParser\Node\Expr\PropertyFetch $stmt,
string $property_id,
Type\Union $assignment_value_type
) : void {
$codebase = $statements_analyzer->getCodebase();
if (!$codebase->taint) {
return;
}
2019-08-14 06:47:57 +02:00
$code_location = new CodeLocation($statements_analyzer->getSource(), $stmt);
$method_sink = new Sink(
$property_id,
$property_id,
2019-08-14 06:47:57 +02:00
$code_location
);
if ($assignment_value_type->tainted) {
2019-08-14 06:47:57 +02:00
$method_sink->taint = $assignment_value_type->tainted;
}
2019-08-14 15:52:59 +02:00
if ($child_sink = $codebase->taint->hasPreviousSink($method_sink)) {
if ($assignment_value_type->sources) {
$codebase->taint->addSinks(
2019-08-14 06:47:57 +02:00
\array_map(
2019-08-14 15:52:59 +02:00
function (Source $assignment_source) use ($child_sink) {
2019-08-14 06:47:57 +02:00
$new_sink = new Sink(
$assignment_source->id,
$assignment_source->label,
2019-08-14 06:47:57 +02:00
$assignment_source->code_location
);
2019-08-14 15:52:59 +02:00
$new_sink->children = [$child_sink];
2019-08-14 06:47:57 +02:00
return $new_sink;
},
$assignment_value_type->sources
)
);
}
}
if ($assignment_value_type->sources) {
foreach ($assignment_value_type->sources as $type_source) {
if (($previous_source = $codebase->taint->hasPreviousSource($type_source))
|| $assignment_value_type->tainted
) {
2019-08-14 06:47:57 +02:00
if (!$previous_source) {
$previous_source = new Source(
$type_source->id,
$type_source->label,
2019-08-14 06:47:57 +02:00
$type_source->code_location
);
$previous_source->taint = $assignment_value_type->tainted;
}
2019-08-14 06:47:57 +02:00
$new_source = new Source(
$property_id,
2019-08-14 06:47:57 +02:00
$property_id,
$code_location
);
$new_source->parents = [$previous_source];
$new_source->taint = $previous_source->taint;
$codebase->taint->addSources(
2019-08-14 06:47:57 +02:00
[$new_source]
);
}
}
} elseif ($assignment_value_type->tainted) {
throw new \UnexpectedValueException(
'sources should exist for tainted var in '
. $statements_analyzer->getFileName() . ':'
. $stmt->getLine()
);
}
}
2018-01-14 18:09:40 +01:00
/**
2018-11-11 18:01:14 +01:00
* @param StatementsAnalyzer $statements_analyzer
2018-01-14 18:09:40 +01:00
* @param PhpParser\Node\Expr\StaticPropertyFetch $stmt
* @param PhpParser\Node\Expr|null $assignment_value
* @param Type\Union $assignment_value_type
* @param Context $context
*
* @return false|null
*/
public static function analyzeStatic(
2018-11-11 18:01:14 +01:00
StatementsAnalyzer $statements_analyzer,
2018-01-14 18:09:40 +01:00
PhpParser\Node\Expr\StaticPropertyFetch $stmt,
$assignment_value,
Type\Union $assignment_value_type,
Context $context
) {
$var_id = ExpressionAnalyzer::getArrayVarId(
2018-01-14 18:09:40 +01:00
$stmt,
$context->self,
2018-11-11 18:01:14 +01:00
$statements_analyzer
2018-01-14 18:09:40 +01:00
);
$fq_class_name = (string) $statements_analyzer->node_data->getType($stmt->class);
2018-01-14 18:09:40 +01:00
2018-11-11 18:01:14 +01:00
$codebase = $statements_analyzer->getCodebase();
2018-01-14 18:09:40 +01:00
$prop_name = $stmt->name;
if (!$prop_name instanceof PhpParser\Node\Identifier) {
if (ExpressionAnalyzer::analyze($statements_analyzer, $prop_name, $context) === false) {
return false;
}
if ($fq_class_name && !$context->ignore_variable_property) {
2019-04-27 23:38:24 +02:00
$codebase->analyzer->addMixedMemberName(
strtolower($fq_class_name) . '::$',
$context->calling_function_id ?: $statements_analyzer->getFileName()
2019-04-27 23:38:24 +02:00
);
}
2018-01-14 18:09:40 +01:00
return;
}
$property_id = $fq_class_name . '::$' . $prop_name;
if (!$codebase->properties->propertyExists($property_id, false, $statements_analyzer, $context)) {
if (IssueBuffer::accepts(
new UndefinedPropertyAssignment(
'Static property ' . $property_id . ' is not defined',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $stmt),
$property_id
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
2019-03-06 00:27:25 +01:00
// fall through
2018-01-14 18:09:40 +01:00
}
return;
}
2018-11-06 03:57:36 +01:00
if (ClassLikeAnalyzer::checkPropertyVisibility(
2018-01-14 18:09:40 +01:00
$property_id,
$context,
2018-11-11 18:01:14 +01:00
$statements_analyzer,
new CodeLocation($statements_analyzer->getSource(), $stmt),
$statements_analyzer->getSuppressedIssues()
2018-01-14 18:09:40 +01:00
) === false) {
return false;
}
$declaring_property_class = (string) $codebase->properties->getDeclaringClassForProperty(
$fq_class_name . '::$' . $prop_name->name,
false
2018-01-14 18:09:40 +01:00
);
2019-06-04 06:32:19 +02:00
$declaring_property_id = strtolower((string) $declaring_property_class) . '::$' . $prop_name;
2019-06-04 22:36:32 +02:00
if ($codebase->alter_code && $stmt->class instanceof PhpParser\Node\Name) {
$moved_class = $codebase->classlikes->handleClassLikeReferenceInMigration(
$codebase,
$statements_analyzer,
$stmt->class,
$fq_class_name,
$context->calling_function_id
2019-06-04 22:36:32 +02:00
);
2019-06-04 06:32:19 +02:00
2019-06-04 22:36:32 +02:00
if (!$moved_class) {
foreach ($codebase->property_transforms as $original_pattern => $transformation) {
if ($declaring_property_id === $original_pattern) {
list($old_declaring_fq_class_name) = explode('::$', $declaring_property_id);
list($new_fq_class_name, $new_property_name) = explode('::$', $transformation);
$file_manipulations = [];
if (strtolower($new_fq_class_name) !== strtolower($old_declaring_fq_class_name)) {
$file_manipulations[] = new \Psalm\FileManipulation(
(int) $stmt->class->getAttribute('startFilePos'),
(int) $stmt->class->getAttribute('endFilePos') + 1,
Type::getStringFromFQCLN(
$new_fq_class_name,
$statements_analyzer->getNamespace(),
$statements_analyzer->getAliasedClassesFlipped(),
null
)
);
}
$file_manipulations[] = new \Psalm\FileManipulation(
(int) $stmt->name->getAttribute('startFilePos'),
(int) $stmt->name->getAttribute('endFilePos') + 1,
'$' . $new_property_name
);
2019-06-04 06:32:19 +02:00
2019-06-04 22:36:32 +02:00
FileManipulationBuffer::add($statements_analyzer->getFilePath(), $file_manipulations);
}
}
2019-06-04 06:32:19 +02:00
}
}
$class_storage = $codebase->classlike_storage_provider->get($declaring_property_class);
2018-01-14 18:09:40 +01:00
$property_storage = $class_storage->properties[$prop_name->name];
2018-01-14 18:09:40 +01:00
if ($var_id) {
$context->vars_in_scope[$var_id] = $assignment_value_type;
}
$class_property_type = $codebase->properties->getPropertyType(
$property_id,
true,
$statements_analyzer,
$context
);
2018-01-14 18:09:40 +01:00
2019-01-11 23:21:50 +01:00
if (!$class_property_type) {
2018-01-14 18:09:40 +01:00
$class_property_type = Type::getMixed();
if (!$assignment_value_type->hasMixed()) {
2018-01-14 18:09:40 +01:00
if ($property_storage->suggested_type) {
$property_storage->suggested_type = Type::combineUnionTypes(
$assignment_value_type,
$property_storage->suggested_type
);
} else {
$property_storage->suggested_type = Type::combineUnionTypes(
Type::getNull(),
$assignment_value_type
);
}
}
} else {
$class_property_type = clone $class_property_type;
}
if ($assignment_value_type->hasMixed()) {
2018-01-14 18:09:40 +01:00
return null;
}
if ($class_property_type->hasMixed()) {
2018-01-14 18:09:40 +01:00
return null;
}
2018-11-06 03:57:36 +01:00
$class_property_type = ExpressionAnalyzer::fleshOutType(
$codebase,
2018-01-14 18:09:40 +01:00
$class_property_type,
2018-01-26 19:51:00 +01:00
$fq_class_name,
$fq_class_name,
$class_storage->parent_class
2018-01-14 18:09:40 +01:00
);
2019-07-10 07:35:57 +02:00
$union_comparison_results = new \Psalm\Internal\Analyzer\TypeComparisonResult();
2018-11-06 03:57:36 +01:00
$type_match_found = TypeAnalyzer::isContainedBy(
$codebase,
2018-01-14 18:09:40 +01:00
$assignment_value_type,
$class_property_type,
true,
true,
2019-07-10 07:35:57 +02:00
$union_comparison_results
);
2019-07-10 07:35:57 +02:00
if ($union_comparison_results->type_coerced) {
if ($union_comparison_results->type_coerced_from_mixed) {
if (IssueBuffer::accepts(
new MixedPropertyTypeCoercion(
$var_id . ' expects \'' . $class_property_type . '\', '
. ' parent type `' . $assignment_value_type . '` provided',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt,
$context->include_location
),
$property_id
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
// keep soldiering on
}
} else {
if (IssueBuffer::accepts(
new PropertyTypeCoercion(
$var_id . ' expects \'' . $class_property_type . '\', '
. ' parent type \'' . $assignment_value_type . '\' provided',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt,
$context->include_location
),
$property_id
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
// keep soldiering on
}
}
}
2019-07-10 07:35:57 +02:00
if ($union_comparison_results->to_string_cast) {
if (IssueBuffer::accepts(
new ImplicitToStringCast(
$var_id . ' expects \'' . $class_property_type . '\', '
. '\'' . $assignment_value_type . '\' provided with a __toString method',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt,
$context->include_location
)
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
2019-07-10 07:35:57 +02:00
if (!$type_match_found && !$union_comparison_results->type_coerced) {
2018-11-06 03:57:36 +01:00
if (TypeAnalyzer::canBeContainedBy($codebase, $assignment_value_type, $class_property_type)) {
if (IssueBuffer::accepts(
new PossiblyInvalidPropertyAssignmentValue(
$var_id . ' with declared type \''
. $class_property_type->getId() . '\' cannot be assigned type \''
. $assignment_value_type->getId() . '\'',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt
),
$property_id
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
return false;
}
} else {
if (IssueBuffer::accepts(
new InvalidPropertyAssignmentValue(
$var_id . ' with declared type \'' . $class_property_type->getId()
. '\' cannot be assigned type \''
. $assignment_value_type->getId() . '\'',
new CodeLocation(
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSource(),
$assignment_value ?: $stmt
),
$property_id
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
return false;
}
2018-01-14 18:09:40 +01:00
}
}
if ($var_id) {
$context->vars_in_scope[$var_id] = $assignment_value_type;
}
return null;
}
}