1 //===- SValBuilder.cpp - Basic class for all SValBuilder implementations --===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file defines SValBuilder, the base class for all (complete) SValBuilder 10 // implementations. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Decl.h" 17 #include "clang/AST/DeclCXX.h" 18 #include "clang/AST/ExprCXX.h" 19 #include "clang/AST/ExprObjC.h" 20 #include "clang/AST/Stmt.h" 21 #include "clang/AST/Type.h" 22 #include "clang/Basic/LLVM.h" 23 #include "clang/Analysis/AnalysisDeclContext.h" 24 #include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h" 25 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h" 26 #include "clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h" 27 #include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h" 28 #include "clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h" 29 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h" 30 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h" 31 #include "clang/StaticAnalyzer/Core/PathSensitive/SVals.h" 32 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h" 33 #include "clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h" 34 #include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h" 35 #include "llvm/ADT/APSInt.h" 36 #include "llvm/ADT/None.h" 37 #include "llvm/ADT/Optional.h" 38 #include "llvm/Support/Casting.h" 39 #include "llvm/Support/Compiler.h" 40 #include <cassert> 41 #include <tuple> 42 43 using namespace clang; 44 using namespace ento; 45 46 //===----------------------------------------------------------------------===// 47 // Basic SVal creation. 48 //===----------------------------------------------------------------------===// 49 50 void SValBuilder::anchor() {} 51 52 DefinedOrUnknownSVal SValBuilder::makeZeroVal(QualType type) { 53 if (Loc::isLocType(type)) 54 return makeNull(); 55 56 if (type->isIntegralOrEnumerationType()) 57 return makeIntVal(0, type); 58 59 if (type->isArrayType() || type->isRecordType() || type->isVectorType() || 60 type->isAnyComplexType()) 61 return makeCompoundVal(type, BasicVals.getEmptySValList()); 62 63 // FIXME: Handle floats. 64 return UnknownVal(); 65 } 66 67 NonLoc SValBuilder::makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op, 68 const llvm::APSInt& rhs, QualType type) { 69 // The Environment ensures we always get a persistent APSInt in 70 // BasicValueFactory, so we don't need to get the APSInt from 71 // BasicValueFactory again. 72 assert(lhs); 73 assert(!Loc::isLocType(type)); 74 return nonloc::SymbolVal(SymMgr.getSymIntExpr(lhs, op, rhs, type)); 75 } 76 77 NonLoc SValBuilder::makeNonLoc(const llvm::APSInt& lhs, 78 BinaryOperator::Opcode op, const SymExpr *rhs, 79 QualType type) { 80 assert(rhs); 81 assert(!Loc::isLocType(type)); 82 return nonloc::SymbolVal(SymMgr.getIntSymExpr(lhs, op, rhs, type)); 83 } 84 85 NonLoc SValBuilder::makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op, 86 const SymExpr *rhs, QualType type) { 87 assert(lhs && rhs); 88 assert(!Loc::isLocType(type)); 89 return nonloc::SymbolVal(SymMgr.getSymSymExpr(lhs, op, rhs, type)); 90 } 91 92 NonLoc SValBuilder::makeNonLoc(const SymExpr *operand, 93 QualType fromTy, QualType toTy) { 94 assert(operand); 95 assert(!Loc::isLocType(toTy)); 96 return nonloc::SymbolVal(SymMgr.getCastSymbol(operand, fromTy, toTy)); 97 } 98 99 SVal SValBuilder::convertToArrayIndex(SVal val) { 100 if (val.isUnknownOrUndef()) 101 return val; 102 103 // Common case: we have an appropriately sized integer. 104 if (Optional<nonloc::ConcreteInt> CI = val.getAs<nonloc::ConcreteInt>()) { 105 const llvm::APSInt& I = CI->getValue(); 106 if (I.getBitWidth() == ArrayIndexWidth && I.isSigned()) 107 return val; 108 } 109 110 return evalCastFromNonLoc(val.castAs<NonLoc>(), ArrayIndexTy); 111 } 112 113 nonloc::ConcreteInt SValBuilder::makeBoolVal(const CXXBoolLiteralExpr *boolean){ 114 return makeTruthVal(boolean->getValue()); 115 } 116 117 DefinedOrUnknownSVal 118 SValBuilder::getRegionValueSymbolVal(const TypedValueRegion *region) { 119 QualType T = region->getValueType(); 120 121 if (T->isNullPtrType()) 122 return makeZeroVal(T); 123 124 if (!SymbolManager::canSymbolicate(T)) 125 return UnknownVal(); 126 127 SymbolRef sym = SymMgr.getRegionValueSymbol(region); 128 129 if (Loc::isLocType(T)) 130 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym)); 131 132 return nonloc::SymbolVal(sym); 133 } 134 135 DefinedOrUnknownSVal SValBuilder::conjureSymbolVal(const void *SymbolTag, 136 const Expr *Ex, 137 const LocationContext *LCtx, 138 unsigned Count) { 139 QualType T = Ex->getType(); 140 141 if (T->isNullPtrType()) 142 return makeZeroVal(T); 143 144 // Compute the type of the result. If the expression is not an R-value, the 145 // result should be a location. 146 QualType ExType = Ex->getType(); 147 if (Ex->isGLValue()) 148 T = LCtx->getAnalysisDeclContext()->getASTContext().getPointerType(ExType); 149 150 return conjureSymbolVal(SymbolTag, Ex, LCtx, T, Count); 151 } 152 153 DefinedOrUnknownSVal SValBuilder::conjureSymbolVal(const void *symbolTag, 154 const Expr *expr, 155 const LocationContext *LCtx, 156 QualType type, 157 unsigned count) { 158 if (type->isNullPtrType()) 159 return makeZeroVal(type); 160 161 if (!SymbolManager::canSymbolicate(type)) 162 return UnknownVal(); 163 164 SymbolRef sym = SymMgr.conjureSymbol(expr, LCtx, type, count, symbolTag); 165 166 if (Loc::isLocType(type)) 167 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym)); 168 169 return nonloc::SymbolVal(sym); 170 } 171 172 DefinedOrUnknownSVal SValBuilder::conjureSymbolVal(const Stmt *stmt, 173 const LocationContext *LCtx, 174 QualType type, 175 unsigned visitCount) { 176 if (type->isNullPtrType()) 177 return makeZeroVal(type); 178 179 if (!SymbolManager::canSymbolicate(type)) 180 return UnknownVal(); 181 182 SymbolRef sym = SymMgr.conjureSymbol(stmt, LCtx, type, visitCount); 183 184 if (Loc::isLocType(type)) 185 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym)); 186 187 return nonloc::SymbolVal(sym); 188 } 189 190 DefinedOrUnknownSVal 191 SValBuilder::getConjuredHeapSymbolVal(const Expr *E, 192 const LocationContext *LCtx, 193 unsigned VisitCount) { 194 QualType T = E->getType(); 195 assert(Loc::isLocType(T)); 196 assert(SymbolManager::canSymbolicate(T)); 197 if (T->isNullPtrType()) 198 return makeZeroVal(T); 199 200 SymbolRef sym = SymMgr.conjureSymbol(E, LCtx, T, VisitCount); 201 return loc::MemRegionVal(MemMgr.getSymbolicHeapRegion(sym)); 202 } 203 204 DefinedSVal SValBuilder::getMetadataSymbolVal(const void *symbolTag, 205 const MemRegion *region, 206 const Expr *expr, QualType type, 207 const LocationContext *LCtx, 208 unsigned count) { 209 assert(SymbolManager::canSymbolicate(type) && "Invalid metadata symbol type"); 210 211 SymbolRef sym = 212 SymMgr.getMetadataSymbol(region, expr, type, LCtx, count, symbolTag); 213 214 if (Loc::isLocType(type)) 215 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym)); 216 217 return nonloc::SymbolVal(sym); 218 } 219 220 DefinedOrUnknownSVal 221 SValBuilder::getDerivedRegionValueSymbolVal(SymbolRef parentSymbol, 222 const TypedValueRegion *region) { 223 QualType T = region->getValueType(); 224 225 if (T->isNullPtrType()) 226 return makeZeroVal(T); 227 228 if (!SymbolManager::canSymbolicate(T)) 229 return UnknownVal(); 230 231 SymbolRef sym = SymMgr.getDerivedSymbol(parentSymbol, region); 232 233 if (Loc::isLocType(T)) 234 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym)); 235 236 return nonloc::SymbolVal(sym); 237 } 238 239 DefinedSVal SValBuilder::getMemberPointer(const NamedDecl *ND) { 240 assert(!ND || isa<CXXMethodDecl>(ND) || isa<FieldDecl>(ND) || 241 isa<IndirectFieldDecl>(ND)); 242 243 if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(ND)) { 244 // Sema treats pointers to static member functions as have function pointer 245 // type, so return a function pointer for the method. 246 // We don't need to play a similar trick for static member fields 247 // because these are represented as plain VarDecls and not FieldDecls 248 // in the AST. 249 if (MD->isStatic()) 250 return getFunctionPointer(MD); 251 } 252 253 return nonloc::PointerToMember(ND); 254 } 255 256 DefinedSVal SValBuilder::getFunctionPointer(const FunctionDecl *func) { 257 return loc::MemRegionVal(MemMgr.getFunctionCodeRegion(func)); 258 } 259 260 DefinedSVal SValBuilder::getBlockPointer(const BlockDecl *block, 261 CanQualType locTy, 262 const LocationContext *locContext, 263 unsigned blockCount) { 264 const BlockCodeRegion *BC = 265 MemMgr.getBlockCodeRegion(block, locTy, locContext->getAnalysisDeclContext()); 266 const BlockDataRegion *BD = MemMgr.getBlockDataRegion(BC, locContext, 267 blockCount); 268 return loc::MemRegionVal(BD); 269 } 270 271 /// Return a memory region for the 'this' object reference. 272 loc::MemRegionVal SValBuilder::getCXXThis(const CXXMethodDecl *D, 273 const StackFrameContext *SFC) { 274 return loc::MemRegionVal( 275 getRegionManager().getCXXThisRegion(D->getThisType(), SFC)); 276 } 277 278 /// Return a memory region for the 'this' object reference. 279 loc::MemRegionVal SValBuilder::getCXXThis(const CXXRecordDecl *D, 280 const StackFrameContext *SFC) { 281 const Type *T = D->getTypeForDecl(); 282 QualType PT = getContext().getPointerType(QualType(T, 0)); 283 return loc::MemRegionVal(getRegionManager().getCXXThisRegion(PT, SFC)); 284 } 285 286 Optional<SVal> SValBuilder::getConstantVal(const Expr *E) { 287 E = E->IgnoreParens(); 288 289 switch (E->getStmtClass()) { 290 // Handle expressions that we treat differently from the AST's constant 291 // evaluator. 292 case Stmt::AddrLabelExprClass: 293 return makeLoc(cast<AddrLabelExpr>(E)); 294 295 case Stmt::CXXScalarValueInitExprClass: 296 case Stmt::ImplicitValueInitExprClass: 297 return makeZeroVal(E->getType()); 298 299 case Stmt::ObjCStringLiteralClass: { 300 const auto *SL = cast<ObjCStringLiteral>(E); 301 return makeLoc(getRegionManager().getObjCStringRegion(SL)); 302 } 303 304 case Stmt::StringLiteralClass: { 305 const auto *SL = cast<StringLiteral>(E); 306 return makeLoc(getRegionManager().getStringRegion(SL)); 307 } 308 309 case Stmt::PredefinedExprClass: { 310 const auto *PE = cast<PredefinedExpr>(E); 311 assert(PE->getFunctionName() && 312 "Since we analyze only instantiated functions, PredefinedExpr " 313 "should have a function name."); 314 return makeLoc(getRegionManager().getStringRegion(PE->getFunctionName())); 315 } 316 317 // Fast-path some expressions to avoid the overhead of going through the AST's 318 // constant evaluator 319 case Stmt::CharacterLiteralClass: { 320 const auto *C = cast<CharacterLiteral>(E); 321 return makeIntVal(C->getValue(), C->getType()); 322 } 323 324 case Stmt::CXXBoolLiteralExprClass: 325 return makeBoolVal(cast<CXXBoolLiteralExpr>(E)); 326 327 case Stmt::TypeTraitExprClass: { 328 const auto *TE = cast<TypeTraitExpr>(E); 329 return makeTruthVal(TE->getValue(), TE->getType()); 330 } 331 332 case Stmt::IntegerLiteralClass: 333 return makeIntVal(cast<IntegerLiteral>(E)); 334 335 case Stmt::ObjCBoolLiteralExprClass: 336 return makeBoolVal(cast<ObjCBoolLiteralExpr>(E)); 337 338 case Stmt::CXXNullPtrLiteralExprClass: 339 return makeNull(); 340 341 case Stmt::CStyleCastExprClass: 342 case Stmt::CXXFunctionalCastExprClass: 343 case Stmt::CXXConstCastExprClass: 344 case Stmt::CXXReinterpretCastExprClass: 345 case Stmt::CXXStaticCastExprClass: 346 case Stmt::ImplicitCastExprClass: { 347 const auto *CE = cast<CastExpr>(E); 348 switch (CE->getCastKind()) { 349 default: 350 break; 351 case CK_ArrayToPointerDecay: 352 case CK_IntegralToPointer: 353 case CK_NoOp: 354 case CK_BitCast: { 355 const Expr *SE = CE->getSubExpr(); 356 Optional<SVal> Val = getConstantVal(SE); 357 if (!Val) 358 return None; 359 return evalCast(*Val, CE->getType(), SE->getType()); 360 } 361 } 362 // FALLTHROUGH 363 LLVM_FALLTHROUGH; 364 } 365 366 // If we don't have a special case, fall back to the AST's constant evaluator. 367 default: { 368 // Don't try to come up with a value for materialized temporaries. 369 if (E->isGLValue()) 370 return None; 371 372 ASTContext &Ctx = getContext(); 373 Expr::EvalResult Result; 374 if (E->EvaluateAsInt(Result, Ctx)) 375 return makeIntVal(Result.Val.getInt()); 376 377 if (Loc::isLocType(E->getType())) 378 if (E->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull)) 379 return makeNull(); 380 381 return None; 382 } 383 } 384 } 385 386 SVal SValBuilder::makeSymExprValNN(BinaryOperator::Opcode Op, 387 NonLoc LHS, NonLoc RHS, 388 QualType ResultTy) { 389 SymbolRef symLHS = LHS.getAsSymbol(); 390 SymbolRef symRHS = RHS.getAsSymbol(); 391 392 // TODO: When the Max Complexity is reached, we should conjure a symbol 393 // instead of generating an Unknown value and propagate the taint info to it. 394 const unsigned MaxComp = StateMgr.getOwningEngine() 395 .getAnalysisManager() 396 .options.MaxSymbolComplexity; 397 398 if (symLHS && symRHS && 399 (symLHS->computeComplexity() + symRHS->computeComplexity()) < MaxComp) 400 return makeNonLoc(symLHS, Op, symRHS, ResultTy); 401 402 if (symLHS && symLHS->computeComplexity() < MaxComp) 403 if (Optional<nonloc::ConcreteInt> rInt = RHS.getAs<nonloc::ConcreteInt>()) 404 return makeNonLoc(symLHS, Op, rInt->getValue(), ResultTy); 405 406 if (symRHS && symRHS->computeComplexity() < MaxComp) 407 if (Optional<nonloc::ConcreteInt> lInt = LHS.getAs<nonloc::ConcreteInt>()) 408 return makeNonLoc(lInt->getValue(), Op, symRHS, ResultTy); 409 410 return UnknownVal(); 411 } 412 413 SVal SValBuilder::evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op, 414 SVal lhs, SVal rhs, QualType type) { 415 if (lhs.isUndef() || rhs.isUndef()) 416 return UndefinedVal(); 417 418 if (lhs.isUnknown() || rhs.isUnknown()) 419 return UnknownVal(); 420 421 if (lhs.getAs<nonloc::LazyCompoundVal>() || 422 rhs.getAs<nonloc::LazyCompoundVal>()) { 423 return UnknownVal(); 424 } 425 426 if (op == BinaryOperatorKind::BO_Cmp) { 427 // We can't reason about C++20 spaceship operator yet. 428 // 429 // FIXME: Support C++20 spaceship operator. 430 // The main problem here is that the result is not integer. 431 return UnknownVal(); 432 } 433 434 if (Optional<Loc> LV = lhs.getAs<Loc>()) { 435 if (Optional<Loc> RV = rhs.getAs<Loc>()) 436 return evalBinOpLL(state, op, *LV, *RV, type); 437 438 return evalBinOpLN(state, op, *LV, rhs.castAs<NonLoc>(), type); 439 } 440 441 if (Optional<Loc> RV = rhs.getAs<Loc>()) { 442 // Support pointer arithmetic where the addend is on the left 443 // and the pointer on the right. 444 assert(op == BO_Add); 445 446 // Commute the operands. 447 return evalBinOpLN(state, op, *RV, lhs.castAs<NonLoc>(), type); 448 } 449 450 return evalBinOpNN(state, op, lhs.castAs<NonLoc>(), rhs.castAs<NonLoc>(), 451 type); 452 } 453 454 ConditionTruthVal SValBuilder::areEqual(ProgramStateRef state, SVal lhs, 455 SVal rhs) { 456 return state->isNonNull(evalEQ(state, lhs, rhs)); 457 } 458 459 SVal SValBuilder::evalEQ(ProgramStateRef state, SVal lhs, SVal rhs) { 460 return evalBinOp(state, BO_EQ, lhs, rhs, getConditionType()); 461 } 462 463 DefinedOrUnknownSVal SValBuilder::evalEQ(ProgramStateRef state, 464 DefinedOrUnknownSVal lhs, 465 DefinedOrUnknownSVal rhs) { 466 return evalEQ(state, static_cast<SVal>(lhs), static_cast<SVal>(rhs)) 467 .castAs<DefinedOrUnknownSVal>(); 468 } 469 470 /// Recursively check if the pointer types are equal modulo const, volatile, 471 /// and restrict qualifiers. Also, assume that all types are similar to 'void'. 472 /// Assumes the input types are canonical. 473 static bool shouldBeModeledWithNoOp(ASTContext &Context, QualType ToTy, 474 QualType FromTy) { 475 while (Context.UnwrapSimilarTypes(ToTy, FromTy)) { 476 Qualifiers Quals1, Quals2; 477 ToTy = Context.getUnqualifiedArrayType(ToTy, Quals1); 478 FromTy = Context.getUnqualifiedArrayType(FromTy, Quals2); 479 480 // Make sure that non-cvr-qualifiers the other qualifiers (e.g., address 481 // spaces) are identical. 482 Quals1.removeCVRQualifiers(); 483 Quals2.removeCVRQualifiers(); 484 if (Quals1 != Quals2) 485 return false; 486 } 487 488 // If we are casting to void, the 'From' value can be used to represent the 489 // 'To' value. 490 // 491 // FIXME: Doing this after unwrapping the types doesn't make any sense. A 492 // cast from 'int**' to 'void**' is not special in the way that a cast from 493 // 'int*' to 'void*' is. 494 if (ToTy->isVoidType()) 495 return true; 496 497 if (ToTy != FromTy) 498 return false; 499 500 return true; 501 } 502 503 // Handles casts of type CK_IntegralCast. 504 // At the moment, this function will redirect to evalCast, except when the range 505 // of the original value is known to be greater than the max of the target type. 506 SVal SValBuilder::evalIntegralCast(ProgramStateRef state, SVal val, 507 QualType castTy, QualType originalTy) { 508 // No truncations if target type is big enough. 509 if (getContext().getTypeSize(castTy) >= getContext().getTypeSize(originalTy)) 510 return evalCast(val, castTy, originalTy); 511 512 SymbolRef se = val.getAsSymbol(); 513 if (!se) // Let evalCast handle non symbolic expressions. 514 return evalCast(val, castTy, originalTy); 515 516 // Find the maximum value of the target type. 517 APSIntType ToType(getContext().getTypeSize(castTy), 518 castTy->isUnsignedIntegerType()); 519 llvm::APSInt ToTypeMax = ToType.getMaxValue(); 520 NonLoc ToTypeMaxVal = 521 makeIntVal(ToTypeMax.isUnsigned() ? ToTypeMax.getZExtValue() 522 : ToTypeMax.getSExtValue(), 523 castTy) 524 .castAs<NonLoc>(); 525 // Check the range of the symbol being casted against the maximum value of the 526 // target type. 527 NonLoc FromVal = val.castAs<NonLoc>(); 528 QualType CmpTy = getConditionType(); 529 NonLoc CompVal = 530 evalBinOpNN(state, BO_LE, FromVal, ToTypeMaxVal, CmpTy).castAs<NonLoc>(); 531 ProgramStateRef IsNotTruncated, IsTruncated; 532 std::tie(IsNotTruncated, IsTruncated) = state->assume(CompVal); 533 if (!IsNotTruncated && IsTruncated) { 534 // Symbol is truncated so we evaluate it as a cast. 535 NonLoc CastVal = makeNonLoc(se, originalTy, castTy); 536 return CastVal; 537 } 538 return evalCast(val, castTy, originalTy); 539 } 540 541 //===----------------------------------------------------------------------===// 542 // Cast methods. 543 // `evalCast` is the main method 544 // `evalCastKind` and `evalCastSubKind` are helpers 545 //===----------------------------------------------------------------------===// 546 547 SVal SValBuilder::evalCast(SVal V, QualType CastTy, QualType OriginalTy) { 548 CastTy = Context.getCanonicalType(CastTy); 549 OriginalTy = Context.getCanonicalType(OriginalTy); 550 if (CastTy == OriginalTy) 551 return V; 552 553 // FIXME: Move this check to the most appropriate evalCastKind/evalCastSubKind 554 // function. 555 // For const casts, casts to void, just propagate the value. 556 if (!CastTy->isVariableArrayType() && !OriginalTy->isVariableArrayType()) 557 if (shouldBeModeledWithNoOp(Context, Context.getPointerType(CastTy), 558 Context.getPointerType(OriginalTy))) 559 return V; 560 561 // Cast SVal according to kinds. 562 switch (V.getBaseKind()) { 563 case SVal::UndefinedValKind: 564 return evalCastKind(V.castAs<UndefinedVal>(), CastTy, OriginalTy); 565 case SVal::UnknownValKind: 566 return evalCastKind(V.castAs<UnknownVal>(), CastTy, OriginalTy); 567 case SVal::LocKind: 568 return evalCastKind(V.castAs<Loc>(), CastTy, OriginalTy); 569 case SVal::NonLocKind: 570 return evalCastKind(V.castAs<NonLoc>(), CastTy, OriginalTy); 571 } 572 573 llvm_unreachable("Unknown SVal kind"); 574 } 575 576 SVal SValBuilder::evalCastKind(UndefinedVal V, QualType CastTy, 577 QualType OriginalTy) { 578 return V; 579 } 580 581 SVal SValBuilder::evalCastKind(UnknownVal V, QualType CastTy, 582 QualType OriginalTy) { 583 return V; 584 } 585 586 SVal SValBuilder::evalCastKind(Loc V, QualType CastTy, QualType OriginalTy) { 587 switch (V.getSubKind()) { 588 case loc::ConcreteIntKind: 589 return evalCastSubKind(V.castAs<loc::ConcreteInt>(), CastTy, OriginalTy); 590 case loc::GotoLabelKind: 591 return evalCastSubKind(V.castAs<loc::GotoLabel>(), CastTy, OriginalTy); 592 case loc::MemRegionValKind: 593 return evalCastSubKind(V.castAs<loc::MemRegionVal>(), CastTy, OriginalTy); 594 default: 595 llvm_unreachable("Unknown SVal kind"); 596 } 597 } 598 599 SVal SValBuilder::evalCastKind(NonLoc V, QualType CastTy, QualType OriginalTy) { 600 switch (V.getSubKind()) { 601 case nonloc::CompoundValKind: 602 return evalCastSubKind(V.castAs<nonloc::CompoundVal>(), CastTy, OriginalTy); 603 case nonloc::ConcreteIntKind: 604 return evalCastSubKind(V.castAs<nonloc::ConcreteInt>(), CastTy, OriginalTy); 605 case nonloc::LazyCompoundValKind: 606 return evalCastSubKind(V.castAs<nonloc::LazyCompoundVal>(), CastTy, 607 OriginalTy); 608 case nonloc::LocAsIntegerKind: 609 return evalCastSubKind(V.castAs<nonloc::LocAsInteger>(), CastTy, 610 OriginalTy); 611 case nonloc::SymbolValKind: 612 return evalCastSubKind(V.castAs<nonloc::SymbolVal>(), CastTy, OriginalTy); 613 case nonloc::PointerToMemberKind: 614 return evalCastSubKind(V.castAs<nonloc::PointerToMember>(), CastTy, 615 OriginalTy); 616 default: 617 llvm_unreachable("Unknown SVal kind"); 618 } 619 } 620 621 SVal SValBuilder::evalCastSubKind(loc::ConcreteInt V, QualType CastTy, 622 QualType OriginalTy) { 623 // Pointer to bool. 624 if (CastTy->isBooleanType()) 625 return makeTruthVal(V.getValue().getBoolValue(), CastTy); 626 627 // Pointer to integer. 628 if (CastTy->isIntegralOrEnumerationType()) { 629 llvm::APSInt Value = V.getValue(); 630 BasicVals.getAPSIntType(CastTy).apply(Value); 631 return makeIntVal(Value); 632 } 633 634 // Pointer to any pointer. 635 if (Loc::isLocType(CastTy)) 636 return V; 637 638 // Pointer to whatever else. 639 return UnknownVal(); 640 } 641 642 SVal SValBuilder::evalCastSubKind(loc::GotoLabel V, QualType CastTy, 643 QualType OriginalTy) { 644 // Pointer to bool. 645 if (CastTy->isBooleanType()) 646 // Labels are always true. 647 return makeTruthVal(true, CastTy); 648 649 // Pointer to integer. 650 if (CastTy->isIntegralOrEnumerationType()) { 651 const unsigned BitWidth = Context.getIntWidth(CastTy); 652 return makeLocAsInteger(V, BitWidth); 653 } 654 655 // Array to pointer. 656 if (isa<ArrayType>(OriginalTy)) 657 if (CastTy->isPointerType() || CastTy->isReferenceType()) 658 return UnknownVal(); 659 660 // Pointer to any pointer. 661 if (Loc::isLocType(CastTy)) 662 return V; 663 664 // Pointer to whatever else. 665 return UnknownVal(); 666 } 667 668 SVal SValBuilder::evalCastSubKind(loc::MemRegionVal V, QualType CastTy, 669 QualType OriginalTy) { 670 // Pointer to bool. 671 if (CastTy->isBooleanType()) { 672 const MemRegion *R = V.getRegion(); 673 if (const FunctionCodeRegion *FTR = dyn_cast<FunctionCodeRegion>(R)) 674 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(FTR->getDecl())) 675 if (FD->isWeak()) 676 // FIXME: Currently we are using an extent symbol here, 677 // because there are no generic region address metadata 678 // symbols to use, only content metadata. 679 return nonloc::SymbolVal(SymMgr.getExtentSymbol(FTR)); 680 681 if (const SymbolicRegion *SymR = R->getSymbolicBase()) 682 return makeNonLoc(SymR->getSymbol(), BO_NE, 683 BasicVals.getZeroWithPtrWidth(), CastTy); 684 // Non-symbolic memory regions are always true. 685 return makeTruthVal(true, CastTy); 686 } 687 688 // Try to cast to array 689 const auto *ArrayTy = dyn_cast<ArrayType>(OriginalTy.getCanonicalType()); 690 691 // Pointer to integer. 692 if (CastTy->isIntegralOrEnumerationType()) { 693 SVal Val = V; 694 // Array to integer. 695 if (ArrayTy) { 696 // We will always decay to a pointer. 697 QualType ElemTy = ArrayTy->getElementType(); 698 Val = StateMgr.ArrayToPointer(V, ElemTy); 699 // FIXME: Keep these here for now in case we decide soon that we 700 // need the original decayed type. 701 // QualType elemTy = cast<ArrayType>(originalTy)->getElementType(); 702 // QualType pointerTy = C.getPointerType(elemTy); 703 } 704 const unsigned BitWidth = Context.getIntWidth(CastTy); 705 return makeLocAsInteger(Val.castAs<Loc>(), BitWidth); 706 } 707 708 // Pointer to pointer. 709 if (Loc::isLocType(CastTy)) { 710 if (OriginalTy->isIntegralOrEnumerationType() || 711 OriginalTy->isBlockPointerType() || OriginalTy->isFunctionPointerType()) 712 return V; 713 714 // Array to pointer. 715 if (ArrayTy) { 716 // Are we casting from an array to a pointer? If so just pass on 717 // the decayed value. 718 if (CastTy->isPointerType() || CastTy->isReferenceType()) { 719 // We will always decay to a pointer. 720 QualType ElemTy = ArrayTy->getElementType(); 721 return StateMgr.ArrayToPointer(V, ElemTy); 722 } 723 // Are we casting from an array to an integer? If so, cast the decayed 724 // pointer value to an integer. 725 assert(CastTy->isIntegralOrEnumerationType()); 726 } 727 728 // Other pointer to pointer. 729 assert(Loc::isLocType(OriginalTy) || OriginalTy->isFunctionType() || 730 CastTy->isReferenceType()); 731 732 // We get a symbolic function pointer for a dereference of a function 733 // pointer, but it is of function type. Example: 734 735 // struct FPRec { 736 // void (*my_func)(int * x); 737 // }; 738 // 739 // int bar(int x); 740 // 741 // int f1_a(struct FPRec* foo) { 742 // int x; 743 // (*foo->my_func)(&x); 744 // return bar(x)+1; // no-warning 745 // } 746 747 // Get the result of casting a region to a different type. 748 const MemRegion *R = V.getRegion(); 749 if ((R = StateMgr.getStoreManager().castRegion(R, CastTy))) 750 return loc::MemRegionVal(R); 751 } 752 753 // Pointer to whatever else. 754 // FIXME: There can be gross cases where one casts the result of a 755 // function (that returns a pointer) to some other value that happens to 756 // fit within that pointer value. We currently have no good way to model 757 // such operations. When this happens, the underlying operation is that 758 // the caller is reasoning about bits. Conceptually we are layering a 759 // "view" of a location on top of those bits. Perhaps we need to be more 760 // lazy about mutual possible views, even on an SVal? This may be 761 // necessary for bit-level reasoning as well. 762 return UnknownVal(); 763 } 764 765 SVal SValBuilder::evalCastSubKind(nonloc::CompoundVal V, QualType CastTy, 766 QualType OriginalTy) { 767 // Compound to whatever. 768 return UnknownVal(); 769 } 770 771 SVal SValBuilder::evalCastSubKind(nonloc::ConcreteInt V, QualType CastTy, 772 QualType OriginalTy) { 773 auto CastedValue = [V, CastTy, this]() { 774 llvm::APSInt Value = V.getValue(); 775 BasicVals.getAPSIntType(CastTy).apply(Value); 776 return Value; 777 }; 778 779 // Integer to bool. 780 if (CastTy->isBooleanType()) 781 return makeTruthVal(V.getValue().getBoolValue(), CastTy); 782 783 // Integer to pointer. 784 if (CastTy->isIntegralOrEnumerationType()) 785 return makeIntVal(CastedValue()); 786 787 // Integer to pointer. 788 if (Loc::isLocType(CastTy)) 789 return makeIntLocVal(CastedValue()); 790 791 // Pointer to whatever else. 792 return UnknownVal(); 793 } 794 795 SVal SValBuilder::evalCastSubKind(nonloc::LazyCompoundVal V, QualType CastTy, 796 QualType OriginalTy) { 797 // Compound to whatever. 798 return UnknownVal(); 799 } 800 801 SVal SValBuilder::evalCastSubKind(nonloc::LocAsInteger V, QualType CastTy, 802 QualType OriginalTy) { 803 Loc L = V.getLoc(); 804 805 // Pointer as integer to bool. 806 if (CastTy->isBooleanType()) 807 // Pass to Loc function. 808 return evalCastKind(L, CastTy, OriginalTy); 809 810 if (Loc::isLocType(CastTy) && OriginalTy->isIntegralOrEnumerationType()) { 811 if (const MemRegion *R = L.getAsRegion()) 812 if ((R = StateMgr.getStoreManager().castRegion(R, CastTy))) 813 return loc::MemRegionVal(R); 814 return L; 815 } 816 817 // Pointer as integer with region to integer/pointer. 818 if (const MemRegion *R = L.getAsRegion()) { 819 if (CastTy->isIntegralOrEnumerationType()) 820 // Pass to MemRegion function. 821 return evalCastSubKind(loc::MemRegionVal(R), CastTy, OriginalTy); 822 823 if (Loc::isLocType(CastTy)) { 824 assert(Loc::isLocType(OriginalTy) || OriginalTy->isFunctionType() || 825 CastTy->isReferenceType()); 826 // Delegate to store manager to get the result of casting a region to a 827 // different type. If the MemRegion* returned is NULL, this expression 828 // Evaluates to UnknownVal. 829 if ((R = StateMgr.getStoreManager().castRegion(R, CastTy))) 830 return loc::MemRegionVal(R); 831 } 832 } else { 833 if (Loc::isLocType(CastTy)) 834 return L; 835 836 // FIXME: Correctly support promotions/truncations. 837 const unsigned CastSize = Context.getIntWidth(CastTy); 838 if (CastSize == V.getNumBits()) 839 return V; 840 841 return makeLocAsInteger(L, CastSize); 842 } 843 844 // Pointer as integer to whatever else. 845 return UnknownVal(); 846 } 847 848 SVal SValBuilder::evalCastSubKind(nonloc::SymbolVal V, QualType CastTy, 849 QualType OriginalTy) { 850 SymbolRef SE = V.getSymbol(); 851 852 // Symbol to bool. 853 if (CastTy->isBooleanType()) { 854 // Non-float to bool. 855 if (Loc::isLocType(OriginalTy) || 856 OriginalTy->isIntegralOrEnumerationType() || 857 OriginalTy->isMemberPointerType()) { 858 SymbolRef SE = V.getSymbol(); 859 BasicValueFactory &BVF = getBasicValueFactory(); 860 return makeNonLoc(SE, BO_NE, BVF.getValue(0, SE->getType()), CastTy); 861 } 862 } else { 863 // Symbol to integer, float. 864 QualType T = Context.getCanonicalType(SE->getType()); 865 // If types are the same or both are integers, ignore the cast. 866 // FIXME: Remove this hack when we support symbolic truncation/extension. 867 // HACK: If both castTy and T are integers, ignore the cast. This is 868 // not a permanent solution. Eventually we want to precisely handle 869 // extension/truncation of symbolic integers. This prevents us from losing 870 // precision when we assign 'x = y' and 'y' is symbolic and x and y are 871 // different integer types. 872 if (haveSameType(T, CastTy)) 873 return V; 874 if (!Loc::isLocType(CastTy)) 875 return makeNonLoc(SE, T, CastTy); 876 } 877 878 // Symbol to pointer and whatever else. 879 return UnknownVal(); 880 } 881 882 SVal SValBuilder::evalCastSubKind(nonloc::PointerToMember V, QualType CastTy, 883 QualType OriginalTy) { 884 // Member pointer to whatever. 885 return V; 886 } 887