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 (Optional<Loc> LV = lhs.getAs<Loc>()) { 427 if (Optional<Loc> RV = rhs.getAs<Loc>()) 428 return evalBinOpLL(state, op, *LV, *RV, type); 429 430 return evalBinOpLN(state, op, *LV, rhs.castAs<NonLoc>(), type); 431 } 432 433 if (Optional<Loc> RV = rhs.getAs<Loc>()) { 434 // Support pointer arithmetic where the addend is on the left 435 // and the pointer on the right. 436 assert(op == BO_Add); 437 438 // Commute the operands. 439 return evalBinOpLN(state, op, *RV, lhs.castAs<NonLoc>(), type); 440 } 441 442 return evalBinOpNN(state, op, lhs.castAs<NonLoc>(), rhs.castAs<NonLoc>(), 443 type); 444 } 445 446 ConditionTruthVal SValBuilder::areEqual(ProgramStateRef state, SVal lhs, 447 SVal rhs) { 448 return state->isNonNull(evalEQ(state, lhs, rhs)); 449 } 450 451 SVal SValBuilder::evalEQ(ProgramStateRef state, SVal lhs, SVal rhs) { 452 return evalBinOp(state, BO_EQ, lhs, rhs, getConditionType()); 453 } 454 455 DefinedOrUnknownSVal SValBuilder::evalEQ(ProgramStateRef state, 456 DefinedOrUnknownSVal lhs, 457 DefinedOrUnknownSVal rhs) { 458 return evalEQ(state, static_cast<SVal>(lhs), static_cast<SVal>(rhs)) 459 .castAs<DefinedOrUnknownSVal>(); 460 } 461 462 /// Recursively check if the pointer types are equal modulo const, volatile, 463 /// and restrict qualifiers. Also, assume that all types are similar to 'void'. 464 /// Assumes the input types are canonical. 465 static bool shouldBeModeledWithNoOp(ASTContext &Context, QualType ToTy, 466 QualType FromTy) { 467 while (Context.UnwrapSimilarTypes(ToTy, FromTy)) { 468 Qualifiers Quals1, Quals2; 469 ToTy = Context.getUnqualifiedArrayType(ToTy, Quals1); 470 FromTy = Context.getUnqualifiedArrayType(FromTy, Quals2); 471 472 // Make sure that non-cvr-qualifiers the other qualifiers (e.g., address 473 // spaces) are identical. 474 Quals1.removeCVRQualifiers(); 475 Quals2.removeCVRQualifiers(); 476 if (Quals1 != Quals2) 477 return false; 478 } 479 480 // If we are casting to void, the 'From' value can be used to represent the 481 // 'To' value. 482 // 483 // FIXME: Doing this after unwrapping the types doesn't make any sense. A 484 // cast from 'int**' to 'void**' is not special in the way that a cast from 485 // 'int*' to 'void*' is. 486 if (ToTy->isVoidType()) 487 return true; 488 489 if (ToTy != FromTy) 490 return false; 491 492 return true; 493 } 494 495 // Handles casts of type CK_IntegralCast. 496 // At the moment, this function will redirect to evalCast, except when the range 497 // of the original value is known to be greater than the max of the target type. 498 SVal SValBuilder::evalIntegralCast(ProgramStateRef state, SVal val, 499 QualType castTy, QualType originalTy) { 500 // No truncations if target type is big enough. 501 if (getContext().getTypeSize(castTy) >= getContext().getTypeSize(originalTy)) 502 return evalCast(val, castTy, originalTy); 503 504 SymbolRef se = val.getAsSymbol(); 505 if (!se) // Let evalCast handle non symbolic expressions. 506 return evalCast(val, castTy, originalTy); 507 508 // Find the maximum value of the target type. 509 APSIntType ToType(getContext().getTypeSize(castTy), 510 castTy->isUnsignedIntegerType()); 511 llvm::APSInt ToTypeMax = ToType.getMaxValue(); 512 NonLoc ToTypeMaxVal = 513 makeIntVal(ToTypeMax.isUnsigned() ? ToTypeMax.getZExtValue() 514 : ToTypeMax.getSExtValue(), 515 castTy) 516 .castAs<NonLoc>(); 517 // Check the range of the symbol being casted against the maximum value of the 518 // target type. 519 NonLoc FromVal = val.castAs<NonLoc>(); 520 QualType CmpTy = getConditionType(); 521 NonLoc CompVal = 522 evalBinOpNN(state, BO_LE, FromVal, ToTypeMaxVal, CmpTy).castAs<NonLoc>(); 523 ProgramStateRef IsNotTruncated, IsTruncated; 524 std::tie(IsNotTruncated, IsTruncated) = state->assume(CompVal); 525 if (!IsNotTruncated && IsTruncated) { 526 // Symbol is truncated so we evaluate it as a cast. 527 NonLoc CastVal = makeNonLoc(se, originalTy, castTy); 528 return CastVal; 529 } 530 return evalCast(val, castTy, originalTy); 531 } 532 533 //===----------------------------------------------------------------------===// 534 // Cast methods. 535 // `evalCast` is the main method 536 // `evalCastKind` and `evalCastSubKind` are helpers 537 //===----------------------------------------------------------------------===// 538 539 SVal SValBuilder::evalCast(SVal V, QualType CastTy, QualType OriginalTy) { 540 CastTy = Context.getCanonicalType(CastTy); 541 OriginalTy = Context.getCanonicalType(OriginalTy); 542 if (CastTy == OriginalTy) 543 return V; 544 545 // FIXME: Move this check to the most appropriate evalCastKind/evalCastSubKind 546 // function. 547 // For const casts, casts to void, just propagate the value. 548 if (!CastTy->isVariableArrayType() && !OriginalTy->isVariableArrayType()) 549 if (shouldBeModeledWithNoOp(Context, Context.getPointerType(CastTy), 550 Context.getPointerType(OriginalTy))) 551 return V; 552 553 // Cast SVal according to kinds. 554 switch (V.getBaseKind()) { 555 case SVal::UndefinedValKind: 556 return evalCastKind(V.castAs<UndefinedVal>(), CastTy, OriginalTy); 557 case SVal::UnknownValKind: 558 return evalCastKind(V.castAs<UnknownVal>(), CastTy, OriginalTy); 559 case SVal::LocKind: 560 return evalCastKind(V.castAs<Loc>(), CastTy, OriginalTy); 561 case SVal::NonLocKind: 562 return evalCastKind(V.castAs<NonLoc>(), CastTy, OriginalTy); 563 } 564 565 llvm_unreachable("Unknown SVal kind"); 566 } 567 568 SVal SValBuilder::evalCastKind(UndefinedVal V, QualType CastTy, 569 QualType OriginalTy) { 570 return V; 571 } 572 573 SVal SValBuilder::evalCastKind(UnknownVal V, QualType CastTy, 574 QualType OriginalTy) { 575 return V; 576 } 577 578 SVal SValBuilder::evalCastKind(Loc V, QualType CastTy, QualType OriginalTy) { 579 switch (V.getSubKind()) { 580 case loc::ConcreteIntKind: 581 return evalCastSubKind(V.castAs<loc::ConcreteInt>(), CastTy, OriginalTy); 582 case loc::GotoLabelKind: 583 return evalCastSubKind(V.castAs<loc::GotoLabel>(), CastTy, OriginalTy); 584 case loc::MemRegionValKind: 585 return evalCastSubKind(V.castAs<loc::MemRegionVal>(), CastTy, OriginalTy); 586 default: 587 llvm_unreachable("Unknown SVal kind"); 588 } 589 } 590 591 SVal SValBuilder::evalCastKind(NonLoc V, QualType CastTy, QualType OriginalTy) { 592 switch (V.getSubKind()) { 593 case nonloc::CompoundValKind: 594 return evalCastSubKind(V.castAs<nonloc::CompoundVal>(), CastTy, OriginalTy); 595 case nonloc::ConcreteIntKind: 596 return evalCastSubKind(V.castAs<nonloc::ConcreteInt>(), CastTy, OriginalTy); 597 case nonloc::LazyCompoundValKind: 598 return evalCastSubKind(V.castAs<nonloc::LazyCompoundVal>(), CastTy, 599 OriginalTy); 600 case nonloc::LocAsIntegerKind: 601 return evalCastSubKind(V.castAs<nonloc::LocAsInteger>(), CastTy, 602 OriginalTy); 603 case nonloc::SymbolValKind: 604 return evalCastSubKind(V.castAs<nonloc::SymbolVal>(), CastTy, OriginalTy); 605 case nonloc::PointerToMemberKind: 606 return evalCastSubKind(V.castAs<nonloc::PointerToMember>(), CastTy, 607 OriginalTy); 608 default: 609 llvm_unreachable("Unknown SVal kind"); 610 } 611 } 612 613 SVal SValBuilder::evalCastSubKind(loc::ConcreteInt V, QualType CastTy, 614 QualType OriginalTy) { 615 // Pointer to bool. 616 if (CastTy->isBooleanType()) 617 return makeTruthVal(V.getValue().getBoolValue(), CastTy); 618 619 // Pointer to integer. 620 if (CastTy->isIntegralOrEnumerationType()) { 621 llvm::APSInt Value = V.getValue(); 622 BasicVals.getAPSIntType(CastTy).apply(Value); 623 return makeIntVal(Value); 624 } 625 626 // Pointer to any pointer. 627 if (Loc::isLocType(CastTy)) 628 return V; 629 630 // Pointer to whatever else. 631 return UnknownVal(); 632 } 633 634 SVal SValBuilder::evalCastSubKind(loc::GotoLabel V, QualType CastTy, 635 QualType OriginalTy) { 636 // Pointer to bool. 637 if (CastTy->isBooleanType()) 638 // Labels are always true. 639 return makeTruthVal(true, CastTy); 640 641 // Pointer to integer. 642 if (CastTy->isIntegralOrEnumerationType()) { 643 const unsigned BitWidth = Context.getIntWidth(CastTy); 644 return makeLocAsInteger(V, BitWidth); 645 } 646 647 // Array to pointer. 648 if (isa<ArrayType>(OriginalTy)) 649 if (CastTy->isPointerType() || CastTy->isReferenceType()) 650 return UnknownVal(); 651 652 // Pointer to any pointer. 653 if (Loc::isLocType(CastTy)) 654 return V; 655 656 // Pointer to whatever else. 657 return UnknownVal(); 658 } 659 660 SVal SValBuilder::evalCastSubKind(loc::MemRegionVal V, QualType CastTy, 661 QualType OriginalTy) { 662 // Pointer to bool. 663 if (CastTy->isBooleanType()) { 664 const MemRegion *R = V.getRegion(); 665 if (const FunctionCodeRegion *FTR = dyn_cast<FunctionCodeRegion>(R)) 666 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(FTR->getDecl())) 667 if (FD->isWeak()) 668 // FIXME: Currently we are using an extent symbol here, 669 // because there are no generic region address metadata 670 // symbols to use, only content metadata. 671 return nonloc::SymbolVal(SymMgr.getExtentSymbol(FTR)); 672 673 if (const SymbolicRegion *SymR = R->getSymbolicBase()) 674 return makeNonLoc(SymR->getSymbol(), BO_NE, 675 BasicVals.getZeroWithPtrWidth(), CastTy); 676 // Non-symbolic memory regions are always true. 677 return makeTruthVal(true, CastTy); 678 } 679 680 // Try to cast to array 681 const auto *ArrayTy = dyn_cast<ArrayType>(OriginalTy.getCanonicalType()); 682 683 // Pointer to integer. 684 if (CastTy->isIntegralOrEnumerationType()) { 685 SVal Val = V; 686 // Array to integer. 687 if (ArrayTy) { 688 // We will always decay to a pointer. 689 QualType ElemTy = ArrayTy->getElementType(); 690 Val = StateMgr.ArrayToPointer(V, ElemTy); 691 // FIXME: Keep these here for now in case we decide soon that we 692 // need the original decayed type. 693 // QualType elemTy = cast<ArrayType>(originalTy)->getElementType(); 694 // QualType pointerTy = C.getPointerType(elemTy); 695 } 696 const unsigned BitWidth = Context.getIntWidth(CastTy); 697 return makeLocAsInteger(Val.castAs<Loc>(), BitWidth); 698 } 699 700 // Pointer to pointer. 701 if (Loc::isLocType(CastTy)) { 702 if (OriginalTy->isIntegralOrEnumerationType() || 703 OriginalTy->isBlockPointerType() || OriginalTy->isFunctionPointerType()) 704 return V; 705 706 // Array to pointer. 707 if (ArrayTy) { 708 // Are we casting from an array to a pointer? If so just pass on 709 // the decayed value. 710 if (CastTy->isPointerType() || CastTy->isReferenceType()) { 711 // We will always decay to a pointer. 712 QualType ElemTy = ArrayTy->getElementType(); 713 return StateMgr.ArrayToPointer(V, ElemTy); 714 } 715 // Are we casting from an array to an integer? If so, cast the decayed 716 // pointer value to an integer. 717 assert(CastTy->isIntegralOrEnumerationType()); 718 } 719 720 // Other pointer to pointer. 721 assert(Loc::isLocType(OriginalTy) || OriginalTy->isFunctionType() || 722 CastTy->isReferenceType()); 723 724 // We get a symbolic function pointer for a dereference of a function 725 // pointer, but it is of function type. Example: 726 727 // struct FPRec { 728 // void (*my_func)(int * x); 729 // }; 730 // 731 // int bar(int x); 732 // 733 // int f1_a(struct FPRec* foo) { 734 // int x; 735 // (*foo->my_func)(&x); 736 // return bar(x)+1; // no-warning 737 // } 738 739 // Get the result of casting a region to a different type. 740 const MemRegion *R = V.getRegion(); 741 if ((R = StateMgr.getStoreManager().castRegion(R, CastTy))) 742 return loc::MemRegionVal(R); 743 } 744 745 // Pointer to whatever else. 746 // FIXME: There can be gross cases where one casts the result of a 747 // function (that returns a pointer) to some other value that happens to 748 // fit within that pointer value. We currently have no good way to model 749 // such operations. When this happens, the underlying operation is that 750 // the caller is reasoning about bits. Conceptually we are layering a 751 // "view" of a location on top of those bits. Perhaps we need to be more 752 // lazy about mutual possible views, even on an SVal? This may be 753 // necessary for bit-level reasoning as well. 754 return UnknownVal(); 755 } 756 757 SVal SValBuilder::evalCastSubKind(nonloc::CompoundVal V, QualType CastTy, 758 QualType OriginalTy) { 759 // Compound to whatever. 760 return UnknownVal(); 761 } 762 763 SVal SValBuilder::evalCastSubKind(nonloc::ConcreteInt V, QualType CastTy, 764 QualType OriginalTy) { 765 auto CastedValue = [V, CastTy, this]() { 766 llvm::APSInt Value = V.getValue(); 767 BasicVals.getAPSIntType(CastTy).apply(Value); 768 return Value; 769 }; 770 771 // Integer to bool. 772 if (CastTy->isBooleanType()) 773 return makeTruthVal(V.getValue().getBoolValue(), CastTy); 774 775 // Integer to pointer. 776 if (CastTy->isIntegralOrEnumerationType()) 777 return makeIntVal(CastedValue()); 778 779 // Integer to pointer. 780 if (Loc::isLocType(CastTy)) 781 return makeIntLocVal(CastedValue()); 782 783 // Pointer to whatever else. 784 return UnknownVal(); 785 } 786 787 SVal SValBuilder::evalCastSubKind(nonloc::LazyCompoundVal V, QualType CastTy, 788 QualType OriginalTy) { 789 // Compound to whatever. 790 return UnknownVal(); 791 } 792 793 SVal SValBuilder::evalCastSubKind(nonloc::LocAsInteger V, QualType CastTy, 794 QualType OriginalTy) { 795 Loc L = V.getLoc(); 796 797 // Pointer as integer to bool. 798 if (CastTy->isBooleanType()) 799 // Pass to Loc function. 800 return evalCastKind(L, CastTy, OriginalTy); 801 802 if (Loc::isLocType(CastTy) && OriginalTy->isIntegralOrEnumerationType()) { 803 if (const MemRegion *R = L.getAsRegion()) 804 if ((R = StateMgr.getStoreManager().castRegion(R, CastTy))) 805 return loc::MemRegionVal(R); 806 return L; 807 } 808 809 // Pointer as integer with region to integer/pointer. 810 if (const MemRegion *R = L.getAsRegion()) { 811 if (CastTy->isIntegralOrEnumerationType()) 812 // Pass to MemRegion function. 813 return evalCastSubKind(loc::MemRegionVal(R), CastTy, OriginalTy); 814 815 if (Loc::isLocType(CastTy)) { 816 assert(Loc::isLocType(OriginalTy) || OriginalTy->isFunctionType() || 817 CastTy->isReferenceType()); 818 // Delegate to store manager to get the result of casting a region to a 819 // different type. If the MemRegion* returned is NULL, this expression 820 // Evaluates to UnknownVal. 821 if ((R = StateMgr.getStoreManager().castRegion(R, CastTy))) 822 return loc::MemRegionVal(R); 823 } 824 } else { 825 if (Loc::isLocType(CastTy)) 826 return L; 827 828 // FIXME: Correctly support promotions/truncations. 829 const unsigned CastSize = Context.getIntWidth(CastTy); 830 if (CastSize == V.getNumBits()) 831 return V; 832 833 return makeLocAsInteger(L, CastSize); 834 } 835 836 // Pointer as integer to whatever else. 837 return UnknownVal(); 838 } 839 840 SVal SValBuilder::evalCastSubKind(nonloc::SymbolVal V, QualType CastTy, 841 QualType OriginalTy) { 842 SymbolRef SE = V.getSymbol(); 843 844 // Symbol to bool. 845 if (CastTy->isBooleanType()) { 846 // Non-float to bool. 847 if (Loc::isLocType(OriginalTy) || 848 OriginalTy->isIntegralOrEnumerationType() || 849 OriginalTy->isMemberPointerType()) { 850 SymbolRef SE = V.getSymbol(); 851 BasicValueFactory &BVF = getBasicValueFactory(); 852 return makeNonLoc(SE, BO_NE, BVF.getValue(0, SE->getType()), CastTy); 853 } 854 } else { 855 // Symbol to integer, float. 856 QualType T = Context.getCanonicalType(SE->getType()); 857 // If types are the same or both are integers, ignore the cast. 858 // FIXME: Remove this hack when we support symbolic truncation/extension. 859 // HACK: If both castTy and T are integers, ignore the cast. This is 860 // not a permanent solution. Eventually we want to precisely handle 861 // extension/truncation of symbolic integers. This prevents us from losing 862 // precision when we assign 'x = y' and 'y' is symbolic and x and y are 863 // different integer types. 864 if (haveSameType(T, CastTy)) 865 return V; 866 if (!Loc::isLocType(CastTy)) 867 return makeNonLoc(SE, T, CastTy); 868 } 869 870 // Symbol to pointer and whatever else. 871 return UnknownVal(); 872 } 873 874 SVal SValBuilder::evalCastSubKind(nonloc::PointerToMember V, QualType CastTy, 875 QualType OriginalTy) { 876 // Member pointer to whatever. 877 return V; 878 } 879