1 //=-- ExprEngineC.cpp - ExprEngine support for C expressions ----*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines ExprEngine's support for C expressions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/ExprCXX.h" 15 #include "clang/StaticAnalyzer/Core/CheckerManager.h" 16 #include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h" 17 18 using namespace clang; 19 using namespace ento; 20 using llvm::APSInt; 21 22 void ExprEngine::VisitBinaryOperator(const BinaryOperator* B, 23 ExplodedNode *Pred, 24 ExplodedNodeSet &Dst) { 25 26 Expr *LHS = B->getLHS()->IgnoreParens(); 27 Expr *RHS = B->getRHS()->IgnoreParens(); 28 29 // FIXME: Prechecks eventually go in ::Visit(). 30 ExplodedNodeSet CheckedSet; 31 ExplodedNodeSet Tmp2; 32 getCheckerManager().runCheckersForPreStmt(CheckedSet, Pred, B, *this); 33 34 // With both the LHS and RHS evaluated, process the operation itself. 35 for (ExplodedNodeSet::iterator it=CheckedSet.begin(), ei=CheckedSet.end(); 36 it != ei; ++it) { 37 38 ProgramStateRef state = (*it)->getState(); 39 const LocationContext *LCtx = (*it)->getLocationContext(); 40 SVal LeftV = state->getSVal(LHS, LCtx); 41 SVal RightV = state->getSVal(RHS, LCtx); 42 43 BinaryOperator::Opcode Op = B->getOpcode(); 44 45 if (Op == BO_Assign) { 46 // EXPERIMENTAL: "Conjured" symbols. 47 // FIXME: Handle structs. 48 if (RightV.isUnknown()) { 49 unsigned Count = currBldrCtx->blockCount(); 50 RightV = svalBuilder.conjureSymbolVal(nullptr, B->getRHS(), LCtx, 51 Count); 52 } 53 // Simulate the effects of a "store": bind the value of the RHS 54 // to the L-Value represented by the LHS. 55 SVal ExprVal = B->isGLValue() ? LeftV : RightV; 56 evalStore(Tmp2, B, LHS, *it, state->BindExpr(B, LCtx, ExprVal), 57 LeftV, RightV); 58 continue; 59 } 60 61 if (!B->isAssignmentOp()) { 62 StmtNodeBuilder Bldr(*it, Tmp2, *currBldrCtx); 63 64 if (B->isAdditiveOp()) { 65 // If one of the operands is a location, conjure a symbol for the other 66 // one (offset) if it's unknown so that memory arithmetic always 67 // results in an ElementRegion. 68 // TODO: This can be removed after we enable history tracking with 69 // SymSymExpr. 70 unsigned Count = currBldrCtx->blockCount(); 71 if (LeftV.getAs<Loc>() && 72 RHS->getType()->isIntegralOrEnumerationType() && 73 RightV.isUnknown()) { 74 RightV = svalBuilder.conjureSymbolVal(RHS, LCtx, RHS->getType(), 75 Count); 76 } 77 if (RightV.getAs<Loc>() && 78 LHS->getType()->isIntegralOrEnumerationType() && 79 LeftV.isUnknown()) { 80 LeftV = svalBuilder.conjureSymbolVal(LHS, LCtx, LHS->getType(), 81 Count); 82 } 83 } 84 85 // Although we don't yet model pointers-to-members, we do need to make 86 // sure that the members of temporaries have a valid 'this' pointer for 87 // other checks. 88 if (B->getOpcode() == BO_PtrMemD) 89 state = createTemporaryRegionIfNeeded(state, LCtx, LHS); 90 91 // Process non-assignments except commas or short-circuited 92 // logical expressions (LAnd and LOr). 93 SVal Result = evalBinOp(state, Op, LeftV, RightV, B->getType()); 94 if (Result.isUnknown()) { 95 Bldr.generateNode(B, *it, state); 96 continue; 97 } 98 99 state = state->BindExpr(B, LCtx, Result); 100 Bldr.generateNode(B, *it, state); 101 continue; 102 } 103 104 assert (B->isCompoundAssignmentOp()); 105 106 switch (Op) { 107 default: 108 llvm_unreachable("Invalid opcode for compound assignment."); 109 case BO_MulAssign: Op = BO_Mul; break; 110 case BO_DivAssign: Op = BO_Div; break; 111 case BO_RemAssign: Op = BO_Rem; break; 112 case BO_AddAssign: Op = BO_Add; break; 113 case BO_SubAssign: Op = BO_Sub; break; 114 case BO_ShlAssign: Op = BO_Shl; break; 115 case BO_ShrAssign: Op = BO_Shr; break; 116 case BO_AndAssign: Op = BO_And; break; 117 case BO_XorAssign: Op = BO_Xor; break; 118 case BO_OrAssign: Op = BO_Or; break; 119 } 120 121 // Perform a load (the LHS). This performs the checks for 122 // null dereferences, and so on. 123 ExplodedNodeSet Tmp; 124 SVal location = LeftV; 125 evalLoad(Tmp, B, LHS, *it, state, location); 126 127 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; 128 ++I) { 129 130 state = (*I)->getState(); 131 const LocationContext *LCtx = (*I)->getLocationContext(); 132 SVal V = state->getSVal(LHS, LCtx); 133 134 // Get the computation type. 135 QualType CTy = 136 cast<CompoundAssignOperator>(B)->getComputationResultType(); 137 CTy = getContext().getCanonicalType(CTy); 138 139 QualType CLHSTy = 140 cast<CompoundAssignOperator>(B)->getComputationLHSType(); 141 CLHSTy = getContext().getCanonicalType(CLHSTy); 142 143 QualType LTy = getContext().getCanonicalType(LHS->getType()); 144 145 // Promote LHS. 146 V = svalBuilder.evalCast(V, CLHSTy, LTy); 147 148 // Compute the result of the operation. 149 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy), 150 B->getType(), CTy); 151 152 // EXPERIMENTAL: "Conjured" symbols. 153 // FIXME: Handle structs. 154 155 SVal LHSVal; 156 157 if (Result.isUnknown()) { 158 // The symbolic value is actually for the type of the left-hand side 159 // expression, not the computation type, as this is the value the 160 // LValue on the LHS will bind to. 161 LHSVal = svalBuilder.conjureSymbolVal(nullptr, B->getRHS(), LCtx, LTy, 162 currBldrCtx->blockCount()); 163 // However, we need to convert the symbol to the computation type. 164 Result = svalBuilder.evalCast(LHSVal, CTy, LTy); 165 } 166 else { 167 // The left-hand side may bind to a different value then the 168 // computation type. 169 LHSVal = svalBuilder.evalCast(Result, LTy, CTy); 170 } 171 172 // In C++, assignment and compound assignment operators return an 173 // lvalue. 174 if (B->isGLValue()) 175 state = state->BindExpr(B, LCtx, location); 176 else 177 state = state->BindExpr(B, LCtx, Result); 178 179 evalStore(Tmp2, B, LHS, *I, state, location, LHSVal); 180 } 181 } 182 183 // FIXME: postvisits eventually go in ::Visit() 184 getCheckerManager().runCheckersForPostStmt(Dst, Tmp2, B, *this); 185 } 186 187 void ExprEngine::VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred, 188 ExplodedNodeSet &Dst) { 189 190 CanQualType T = getContext().getCanonicalType(BE->getType()); 191 192 const BlockDecl *BD = BE->getBlockDecl(); 193 // Get the value of the block itself. 194 SVal V = svalBuilder.getBlockPointer(BD, T, 195 Pred->getLocationContext(), 196 currBldrCtx->blockCount()); 197 198 ProgramStateRef State = Pred->getState(); 199 200 // If we created a new MemRegion for the block, we should explicitly bind 201 // the captured variables. 202 if (const BlockDataRegion *BDR = 203 dyn_cast_or_null<BlockDataRegion>(V.getAsRegion())) { 204 205 BlockDataRegion::referenced_vars_iterator I = BDR->referenced_vars_begin(), 206 E = BDR->referenced_vars_end(); 207 208 auto CI = BD->capture_begin(); 209 auto CE = BD->capture_end(); 210 for (; I != E; ++I) { 211 const VarRegion *capturedR = I.getCapturedRegion(); 212 const VarRegion *originalR = I.getOriginalRegion(); 213 214 // If the capture had a copy expression, use the result of evaluating 215 // that expression, otherwise use the original value. 216 // We rely on the invariant that the block declaration's capture variables 217 // are a prefix of the BlockDataRegion's referenced vars (which may include 218 // referenced globals, etc.) to enable fast lookup of the capture for a 219 // given referenced var. 220 const Expr *copyExpr = nullptr; 221 if (CI != CE) { 222 assert(CI->getVariable() == capturedR->getDecl()); 223 copyExpr = CI->getCopyExpr(); 224 CI++; 225 } 226 227 if (capturedR != originalR) { 228 SVal originalV; 229 if (copyExpr) { 230 originalV = State->getSVal(copyExpr, Pred->getLocationContext()); 231 } else { 232 originalV = State->getSVal(loc::MemRegionVal(originalR)); 233 } 234 State = State->bindLoc(loc::MemRegionVal(capturedR), originalV); 235 } 236 } 237 } 238 239 ExplodedNodeSet Tmp; 240 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx); 241 Bldr.generateNode(BE, Pred, 242 State->BindExpr(BE, Pred->getLocationContext(), V), 243 nullptr, ProgramPoint::PostLValueKind); 244 245 // FIXME: Move all post/pre visits to ::Visit(). 246 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this); 247 } 248 249 void ExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex, 250 ExplodedNode *Pred, ExplodedNodeSet &Dst) { 251 252 ExplodedNodeSet dstPreStmt; 253 getCheckerManager().runCheckersForPreStmt(dstPreStmt, Pred, CastE, *this); 254 255 if (CastE->getCastKind() == CK_LValueToRValue) { 256 for (ExplodedNodeSet::iterator I = dstPreStmt.begin(), E = dstPreStmt.end(); 257 I!=E; ++I) { 258 ExplodedNode *subExprNode = *I; 259 ProgramStateRef state = subExprNode->getState(); 260 const LocationContext *LCtx = subExprNode->getLocationContext(); 261 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx)); 262 } 263 return; 264 } 265 266 // All other casts. 267 QualType T = CastE->getType(); 268 QualType ExTy = Ex->getType(); 269 270 if (const ExplicitCastExpr *ExCast=dyn_cast_or_null<ExplicitCastExpr>(CastE)) 271 T = ExCast->getTypeAsWritten(); 272 273 StmtNodeBuilder Bldr(dstPreStmt, Dst, *currBldrCtx); 274 for (ExplodedNodeSet::iterator I = dstPreStmt.begin(), E = dstPreStmt.end(); 275 I != E; ++I) { 276 277 Pred = *I; 278 ProgramStateRef state = Pred->getState(); 279 const LocationContext *LCtx = Pred->getLocationContext(); 280 281 switch (CastE->getCastKind()) { 282 case CK_LValueToRValue: 283 llvm_unreachable("LValueToRValue casts handled earlier."); 284 case CK_ToVoid: 285 continue; 286 // The analyzer doesn't do anything special with these casts, 287 // since it understands retain/release semantics already. 288 case CK_ARCProduceObject: 289 case CK_ARCConsumeObject: 290 case CK_ARCReclaimReturnedObject: 291 case CK_ARCExtendBlockObject: // Fall-through. 292 case CK_CopyAndAutoreleaseBlockObject: 293 // The analyser can ignore atomic casts for now, although some future 294 // checkers may want to make certain that you're not modifying the same 295 // value through atomic and nonatomic pointers. 296 case CK_AtomicToNonAtomic: 297 case CK_NonAtomicToAtomic: 298 // True no-ops. 299 case CK_NoOp: 300 case CK_ConstructorConversion: 301 case CK_UserDefinedConversion: 302 case CK_FunctionToPointerDecay: 303 case CK_BuiltinFnToFnPtr: { 304 // Copy the SVal of Ex to CastE. 305 ProgramStateRef state = Pred->getState(); 306 const LocationContext *LCtx = Pred->getLocationContext(); 307 SVal V = state->getSVal(Ex, LCtx); 308 state = state->BindExpr(CastE, LCtx, V); 309 Bldr.generateNode(CastE, Pred, state); 310 continue; 311 } 312 case CK_MemberPointerToBoolean: 313 // FIXME: For now, member pointers are represented by void *. 314 // FALLTHROUGH 315 case CK_Dependent: 316 case CK_ArrayToPointerDecay: 317 case CK_BitCast: 318 case CK_AddressSpaceConversion: 319 case CK_BooleanToSignedIntegral: 320 case CK_NullToPointer: 321 case CK_IntegralToPointer: 322 case CK_PointerToIntegral: 323 case CK_PointerToBoolean: 324 case CK_IntegralToBoolean: 325 case CK_IntegralToFloating: 326 case CK_FloatingToIntegral: 327 case CK_FloatingToBoolean: 328 case CK_FloatingCast: 329 case CK_FloatingRealToComplex: 330 case CK_FloatingComplexToReal: 331 case CK_FloatingComplexToBoolean: 332 case CK_FloatingComplexCast: 333 case CK_FloatingComplexToIntegralComplex: 334 case CK_IntegralRealToComplex: 335 case CK_IntegralComplexToReal: 336 case CK_IntegralComplexToBoolean: 337 case CK_IntegralComplexCast: 338 case CK_IntegralComplexToFloatingComplex: 339 case CK_CPointerToObjCPointerCast: 340 case CK_BlockPointerToObjCPointerCast: 341 case CK_AnyPointerToBlockPointerCast: 342 case CK_ObjCObjectLValueCast: 343 case CK_ZeroToOCLEvent: 344 case CK_IntToOCLSampler: 345 case CK_LValueBitCast: { 346 // Delegate to SValBuilder to process. 347 SVal V = state->getSVal(Ex, LCtx); 348 V = svalBuilder.evalCast(V, T, ExTy); 349 // Negate the result if we're treating the boolean as a signed i1 350 if (CastE->getCastKind() == CK_BooleanToSignedIntegral) 351 V = evalMinus(V); 352 state = state->BindExpr(CastE, LCtx, V); 353 Bldr.generateNode(CastE, Pred, state); 354 continue; 355 } 356 case CK_IntegralCast: { 357 // Delegate to SValBuilder to process. 358 SVal V = state->getSVal(Ex, LCtx); 359 V = svalBuilder.evalIntegralCast(state, V, T, ExTy); 360 state = state->BindExpr(CastE, LCtx, V); 361 Bldr.generateNode(CastE, Pred, state); 362 continue; 363 } 364 case CK_DerivedToBase: 365 case CK_UncheckedDerivedToBase: { 366 // For DerivedToBase cast, delegate to the store manager. 367 SVal val = state->getSVal(Ex, LCtx); 368 val = getStoreManager().evalDerivedToBase(val, CastE); 369 state = state->BindExpr(CastE, LCtx, val); 370 Bldr.generateNode(CastE, Pred, state); 371 continue; 372 } 373 // Handle C++ dyn_cast. 374 case CK_Dynamic: { 375 SVal val = state->getSVal(Ex, LCtx); 376 377 // Compute the type of the result. 378 QualType resultType = CastE->getType(); 379 if (CastE->isGLValue()) 380 resultType = getContext().getPointerType(resultType); 381 382 bool Failed = false; 383 384 // Check if the value being cast evaluates to 0. 385 if (val.isZeroConstant()) 386 Failed = true; 387 // Else, evaluate the cast. 388 else 389 val = getStoreManager().attemptDownCast(val, T, Failed); 390 391 if (Failed) { 392 if (T->isReferenceType()) { 393 // A bad_cast exception is thrown if input value is a reference. 394 // Currently, we model this, by generating a sink. 395 Bldr.generateSink(CastE, Pred, state); 396 continue; 397 } else { 398 // If the cast fails on a pointer, bind to 0. 399 state = state->BindExpr(CastE, LCtx, svalBuilder.makeNull()); 400 } 401 } else { 402 // If we don't know if the cast succeeded, conjure a new symbol. 403 if (val.isUnknown()) { 404 DefinedOrUnknownSVal NewSym = 405 svalBuilder.conjureSymbolVal(nullptr, CastE, LCtx, resultType, 406 currBldrCtx->blockCount()); 407 state = state->BindExpr(CastE, LCtx, NewSym); 408 } else 409 // Else, bind to the derived region value. 410 state = state->BindExpr(CastE, LCtx, val); 411 } 412 Bldr.generateNode(CastE, Pred, state); 413 continue; 414 } 415 case CK_BaseToDerived: { 416 SVal val = state->getSVal(Ex, LCtx); 417 QualType resultType = CastE->getType(); 418 if (CastE->isGLValue()) 419 resultType = getContext().getPointerType(resultType); 420 421 bool Failed = false; 422 423 if (!val.isConstant()) { 424 val = getStoreManager().attemptDownCast(val, T, Failed); 425 } 426 427 // Failed to cast or the result is unknown, fall back to conservative. 428 if (Failed || val.isUnknown()) { 429 val = 430 svalBuilder.conjureSymbolVal(nullptr, CastE, LCtx, resultType, 431 currBldrCtx->blockCount()); 432 } 433 state = state->BindExpr(CastE, LCtx, val); 434 Bldr.generateNode(CastE, Pred, state); 435 continue; 436 } 437 case CK_NullToMemberPointer: { 438 // FIXME: For now, member pointers are represented by void *. 439 SVal V = svalBuilder.makeNull(); 440 state = state->BindExpr(CastE, LCtx, V); 441 Bldr.generateNode(CastE, Pred, state); 442 continue; 443 } 444 // Various C++ casts that are not handled yet. 445 case CK_ToUnion: 446 case CK_BaseToDerivedMemberPointer: 447 case CK_DerivedToBaseMemberPointer: 448 case CK_ReinterpretMemberPointer: 449 case CK_VectorSplat: { 450 // Recover some path-sensitivty by conjuring a new value. 451 QualType resultType = CastE->getType(); 452 if (CastE->isGLValue()) 453 resultType = getContext().getPointerType(resultType); 454 SVal result = svalBuilder.conjureSymbolVal(nullptr, CastE, LCtx, 455 resultType, 456 currBldrCtx->blockCount()); 457 state = state->BindExpr(CastE, LCtx, result); 458 Bldr.generateNode(CastE, Pred, state); 459 continue; 460 } 461 } 462 } 463 } 464 465 void ExprEngine::VisitCompoundLiteralExpr(const CompoundLiteralExpr *CL, 466 ExplodedNode *Pred, 467 ExplodedNodeSet &Dst) { 468 StmtNodeBuilder B(Pred, Dst, *currBldrCtx); 469 470 ProgramStateRef State = Pred->getState(); 471 const LocationContext *LCtx = Pred->getLocationContext(); 472 473 const Expr *Init = CL->getInitializer(); 474 SVal V = State->getSVal(CL->getInitializer(), LCtx); 475 476 if (isa<CXXConstructExpr>(Init)) { 477 // No work needed. Just pass the value up to this expression. 478 } else { 479 assert(isa<InitListExpr>(Init)); 480 Loc CLLoc = State->getLValue(CL, LCtx); 481 State = State->bindLoc(CLLoc, V); 482 483 if (CL->isGLValue()) 484 V = CLLoc; 485 } 486 487 B.generateNode(CL, Pred, State->BindExpr(CL, LCtx, V)); 488 } 489 490 void ExprEngine::VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, 491 ExplodedNodeSet &Dst) { 492 // Assumption: The CFG has one DeclStmt per Decl. 493 const VarDecl *VD = dyn_cast_or_null<VarDecl>(*DS->decl_begin()); 494 495 if (!VD) { 496 //TODO:AZ: remove explicit insertion after refactoring is done. 497 Dst.insert(Pred); 498 return; 499 } 500 501 // FIXME: all pre/post visits should eventually be handled by ::Visit(). 502 ExplodedNodeSet dstPreVisit; 503 getCheckerManager().runCheckersForPreStmt(dstPreVisit, Pred, DS, *this); 504 505 ExplodedNodeSet dstEvaluated; 506 StmtNodeBuilder B(dstPreVisit, dstEvaluated, *currBldrCtx); 507 for (ExplodedNodeSet::iterator I = dstPreVisit.begin(), E = dstPreVisit.end(); 508 I!=E; ++I) { 509 ExplodedNode *N = *I; 510 ProgramStateRef state = N->getState(); 511 const LocationContext *LC = N->getLocationContext(); 512 513 // Decls without InitExpr are not initialized explicitly. 514 if (const Expr *InitEx = VD->getInit()) { 515 516 // Note in the state that the initialization has occurred. 517 ExplodedNode *UpdatedN = N; 518 SVal InitVal = state->getSVal(InitEx, LC); 519 520 assert(DS->isSingleDecl()); 521 if (auto *CtorExpr = findDirectConstructorForCurrentCFGElement()) { 522 assert(InitEx->IgnoreImplicit() == CtorExpr); 523 (void)CtorExpr; 524 // We constructed the object directly in the variable. 525 // No need to bind anything. 526 B.generateNode(DS, UpdatedN, state); 527 } else { 528 // We bound the temp obj region to the CXXConstructExpr. Now recover 529 // the lazy compound value when the variable is not a reference. 530 if (AMgr.getLangOpts().CPlusPlus && VD->getType()->isRecordType() && 531 !VD->getType()->isReferenceType()) { 532 if (Optional<loc::MemRegionVal> M = 533 InitVal.getAs<loc::MemRegionVal>()) { 534 InitVal = state->getSVal(M->getRegion()); 535 assert(InitVal.getAs<nonloc::LazyCompoundVal>()); 536 } 537 } 538 539 // Recover some path-sensitivity if a scalar value evaluated to 540 // UnknownVal. 541 if (InitVal.isUnknown()) { 542 QualType Ty = InitEx->getType(); 543 if (InitEx->isGLValue()) { 544 Ty = getContext().getPointerType(Ty); 545 } 546 547 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty, 548 currBldrCtx->blockCount()); 549 } 550 551 552 B.takeNodes(UpdatedN); 553 ExplodedNodeSet Dst2; 554 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true); 555 B.addNodes(Dst2); 556 } 557 } 558 else { 559 B.generateNode(DS, N, state); 560 } 561 } 562 563 getCheckerManager().runCheckersForPostStmt(Dst, B.getResults(), DS, *this); 564 } 565 566 void ExprEngine::VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred, 567 ExplodedNodeSet &Dst) { 568 assert(B->getOpcode() == BO_LAnd || 569 B->getOpcode() == BO_LOr); 570 571 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx); 572 ProgramStateRef state = Pred->getState(); 573 574 ExplodedNode *N = Pred; 575 while (!N->getLocation().getAs<BlockEntrance>()) { 576 ProgramPoint P = N->getLocation(); 577 assert(P.getAs<PreStmt>()|| P.getAs<PreStmtPurgeDeadSymbols>()); 578 (void) P; 579 assert(N->pred_size() == 1); 580 N = *N->pred_begin(); 581 } 582 assert(N->pred_size() == 1); 583 N = *N->pred_begin(); 584 BlockEdge BE = N->getLocation().castAs<BlockEdge>(); 585 SVal X; 586 587 // Determine the value of the expression by introspecting how we 588 // got this location in the CFG. This requires looking at the previous 589 // block we were in and what kind of control-flow transfer was involved. 590 const CFGBlock *SrcBlock = BE.getSrc(); 591 // The only terminator (if there is one) that makes sense is a logical op. 592 CFGTerminator T = SrcBlock->getTerminator(); 593 if (const BinaryOperator *Term = cast_or_null<BinaryOperator>(T.getStmt())) { 594 (void) Term; 595 assert(Term->isLogicalOp()); 596 assert(SrcBlock->succ_size() == 2); 597 // Did we take the true or false branch? 598 unsigned constant = (*SrcBlock->succ_begin() == BE.getDst()) ? 1 : 0; 599 X = svalBuilder.makeIntVal(constant, B->getType()); 600 } 601 else { 602 // If there is no terminator, by construction the last statement 603 // in SrcBlock is the value of the enclosing expression. 604 // However, we still need to constrain that value to be 0 or 1. 605 assert(!SrcBlock->empty()); 606 CFGStmt Elem = SrcBlock->rbegin()->castAs<CFGStmt>(); 607 const Expr *RHS = cast<Expr>(Elem.getStmt()); 608 SVal RHSVal = N->getState()->getSVal(RHS, Pred->getLocationContext()); 609 610 if (RHSVal.isUndef()) { 611 X = RHSVal; 612 } else { 613 DefinedOrUnknownSVal DefinedRHS = RHSVal.castAs<DefinedOrUnknownSVal>(); 614 ProgramStateRef StTrue, StFalse; 615 std::tie(StTrue, StFalse) = N->getState()->assume(DefinedRHS); 616 if (StTrue) { 617 if (StFalse) { 618 // We can't constrain the value to 0 or 1. 619 // The best we can do is a cast. 620 X = getSValBuilder().evalCast(RHSVal, B->getType(), RHS->getType()); 621 } else { 622 // The value is known to be true. 623 X = getSValBuilder().makeIntVal(1, B->getType()); 624 } 625 } else { 626 // The value is known to be false. 627 assert(StFalse && "Infeasible path!"); 628 X = getSValBuilder().makeIntVal(0, B->getType()); 629 } 630 } 631 } 632 Bldr.generateNode(B, Pred, state->BindExpr(B, Pred->getLocationContext(), X)); 633 } 634 635 void ExprEngine::VisitInitListExpr(const InitListExpr *IE, 636 ExplodedNode *Pred, 637 ExplodedNodeSet &Dst) { 638 StmtNodeBuilder B(Pred, Dst, *currBldrCtx); 639 640 ProgramStateRef state = Pred->getState(); 641 const LocationContext *LCtx = Pred->getLocationContext(); 642 QualType T = getContext().getCanonicalType(IE->getType()); 643 unsigned NumInitElements = IE->getNumInits(); 644 645 if (!IE->isGLValue() && 646 (T->isArrayType() || T->isRecordType() || T->isVectorType() || 647 T->isAnyComplexType())) { 648 llvm::ImmutableList<SVal> vals = getBasicVals().getEmptySValList(); 649 650 // Handle base case where the initializer has no elements. 651 // e.g: static int* myArray[] = {}; 652 if (NumInitElements == 0) { 653 SVal V = svalBuilder.makeCompoundVal(T, vals); 654 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V)); 655 return; 656 } 657 658 for (InitListExpr::const_reverse_iterator it = IE->rbegin(), 659 ei = IE->rend(); it != ei; ++it) { 660 SVal V = state->getSVal(cast<Expr>(*it), LCtx); 661 vals = getBasicVals().consVals(V, vals); 662 } 663 664 B.generateNode(IE, Pred, 665 state->BindExpr(IE, LCtx, 666 svalBuilder.makeCompoundVal(T, vals))); 667 return; 668 } 669 670 // Handle scalars: int{5} and int{} and GLvalues. 671 // Note, if the InitListExpr is a GLvalue, it means that there is an address 672 // representing it, so it must have a single init element. 673 assert(NumInitElements <= 1); 674 675 SVal V; 676 if (NumInitElements == 0) 677 V = getSValBuilder().makeZeroVal(T); 678 else 679 V = state->getSVal(IE->getInit(0), LCtx); 680 681 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V)); 682 } 683 684 void ExprEngine::VisitGuardedExpr(const Expr *Ex, 685 const Expr *L, 686 const Expr *R, 687 ExplodedNode *Pred, 688 ExplodedNodeSet &Dst) { 689 assert(L && R); 690 691 StmtNodeBuilder B(Pred, Dst, *currBldrCtx); 692 ProgramStateRef state = Pred->getState(); 693 const LocationContext *LCtx = Pred->getLocationContext(); 694 const CFGBlock *SrcBlock = nullptr; 695 696 // Find the predecessor block. 697 ProgramStateRef SrcState = state; 698 for (const ExplodedNode *N = Pred ; N ; N = *N->pred_begin()) { 699 ProgramPoint PP = N->getLocation(); 700 if (PP.getAs<PreStmtPurgeDeadSymbols>() || PP.getAs<BlockEntrance>()) { 701 assert(N->pred_size() == 1); 702 continue; 703 } 704 SrcBlock = PP.castAs<BlockEdge>().getSrc(); 705 SrcState = N->getState(); 706 break; 707 } 708 709 assert(SrcBlock && "missing function entry"); 710 711 // Find the last expression in the predecessor block. That is the 712 // expression that is used for the value of the ternary expression. 713 bool hasValue = false; 714 SVal V; 715 716 for (CFGElement CE : llvm::reverse(*SrcBlock)) { 717 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) { 718 const Expr *ValEx = cast<Expr>(CS->getStmt()); 719 ValEx = ValEx->IgnoreParens(); 720 721 // For GNU extension '?:' operator, the left hand side will be an 722 // OpaqueValueExpr, so get the underlying expression. 723 if (const OpaqueValueExpr *OpaqueEx = dyn_cast<OpaqueValueExpr>(L)) 724 L = OpaqueEx->getSourceExpr(); 725 726 // If the last expression in the predecessor block matches true or false 727 // subexpression, get its the value. 728 if (ValEx == L->IgnoreParens() || ValEx == R->IgnoreParens()) { 729 hasValue = true; 730 V = SrcState->getSVal(ValEx, LCtx); 731 } 732 break; 733 } 734 } 735 736 if (!hasValue) 737 V = svalBuilder.conjureSymbolVal(nullptr, Ex, LCtx, 738 currBldrCtx->blockCount()); 739 740 // Generate a new node with the binding from the appropriate path. 741 B.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, V, true)); 742 } 743 744 void ExprEngine:: 745 VisitOffsetOfExpr(const OffsetOfExpr *OOE, 746 ExplodedNode *Pred, ExplodedNodeSet &Dst) { 747 StmtNodeBuilder B(Pred, Dst, *currBldrCtx); 748 APSInt IV; 749 if (OOE->EvaluateAsInt(IV, getContext())) { 750 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType())); 751 assert(OOE->getType()->isBuiltinType()); 752 assert(OOE->getType()->getAs<BuiltinType>()->isInteger()); 753 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType()); 754 SVal X = svalBuilder.makeIntVal(IV); 755 B.generateNode(OOE, Pred, 756 Pred->getState()->BindExpr(OOE, Pred->getLocationContext(), 757 X)); 758 } 759 // FIXME: Handle the case where __builtin_offsetof is not a constant. 760 } 761 762 763 void ExprEngine:: 764 VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, 765 ExplodedNode *Pred, 766 ExplodedNodeSet &Dst) { 767 // FIXME: Prechecks eventually go in ::Visit(). 768 ExplodedNodeSet CheckedSet; 769 getCheckerManager().runCheckersForPreStmt(CheckedSet, Pred, Ex, *this); 770 771 ExplodedNodeSet EvalSet; 772 StmtNodeBuilder Bldr(CheckedSet, EvalSet, *currBldrCtx); 773 774 QualType T = Ex->getTypeOfArgument(); 775 776 for (ExplodedNodeSet::iterator I = CheckedSet.begin(), E = CheckedSet.end(); 777 I != E; ++I) { 778 if (Ex->getKind() == UETT_SizeOf) { 779 if (!T->isIncompleteType() && !T->isConstantSizeType()) { 780 assert(T->isVariableArrayType() && "Unknown non-constant-sized type."); 781 782 // FIXME: Add support for VLA type arguments and VLA expressions. 783 // When that happens, we should probably refactor VLASizeChecker's code. 784 continue; 785 } else if (T->getAs<ObjCObjectType>()) { 786 // Some code tries to take the sizeof an ObjCObjectType, relying that 787 // the compiler has laid out its representation. Just report Unknown 788 // for these. 789 continue; 790 } 791 } 792 793 APSInt Value = Ex->EvaluateKnownConstInt(getContext()); 794 CharUnits amt = CharUnits::fromQuantity(Value.getZExtValue()); 795 796 ProgramStateRef state = (*I)->getState(); 797 state = state->BindExpr(Ex, (*I)->getLocationContext(), 798 svalBuilder.makeIntVal(amt.getQuantity(), 799 Ex->getType())); 800 Bldr.generateNode(Ex, *I, state); 801 } 802 803 getCheckerManager().runCheckersForPostStmt(Dst, EvalSet, Ex, *this); 804 } 805 806 void ExprEngine::VisitUnaryOperator(const UnaryOperator* U, 807 ExplodedNode *Pred, 808 ExplodedNodeSet &Dst) { 809 // FIXME: Prechecks eventually go in ::Visit(). 810 ExplodedNodeSet CheckedSet; 811 getCheckerManager().runCheckersForPreStmt(CheckedSet, Pred, U, *this); 812 813 ExplodedNodeSet EvalSet; 814 StmtNodeBuilder Bldr(CheckedSet, EvalSet, *currBldrCtx); 815 816 for (ExplodedNodeSet::iterator I = CheckedSet.begin(), E = CheckedSet.end(); 817 I != E; ++I) { 818 switch (U->getOpcode()) { 819 default: { 820 Bldr.takeNodes(*I); 821 ExplodedNodeSet Tmp; 822 VisitIncrementDecrementOperator(U, *I, Tmp); 823 Bldr.addNodes(Tmp); 824 break; 825 } 826 case UO_Real: { 827 const Expr *Ex = U->getSubExpr()->IgnoreParens(); 828 829 // FIXME: We don't have complex SValues yet. 830 if (Ex->getType()->isAnyComplexType()) { 831 // Just report "Unknown." 832 break; 833 } 834 835 // For all other types, UO_Real is an identity operation. 836 assert (U->getType() == Ex->getType()); 837 ProgramStateRef state = (*I)->getState(); 838 const LocationContext *LCtx = (*I)->getLocationContext(); 839 Bldr.generateNode(U, *I, state->BindExpr(U, LCtx, 840 state->getSVal(Ex, LCtx))); 841 break; 842 } 843 844 case UO_Imag: { 845 const Expr *Ex = U->getSubExpr()->IgnoreParens(); 846 // FIXME: We don't have complex SValues yet. 847 if (Ex->getType()->isAnyComplexType()) { 848 // Just report "Unknown." 849 break; 850 } 851 // For all other types, UO_Imag returns 0. 852 ProgramStateRef state = (*I)->getState(); 853 const LocationContext *LCtx = (*I)->getLocationContext(); 854 SVal X = svalBuilder.makeZeroVal(Ex->getType()); 855 Bldr.generateNode(U, *I, state->BindExpr(U, LCtx, X)); 856 break; 857 } 858 859 case UO_Plus: 860 assert(!U->isGLValue()); 861 // FALL-THROUGH. 862 case UO_Deref: 863 case UO_AddrOf: 864 case UO_Extension: { 865 // FIXME: We can probably just have some magic in Environment::getSVal() 866 // that propagates values, instead of creating a new node here. 867 // 868 // Unary "+" is a no-op, similar to a parentheses. We still have places 869 // where it may be a block-level expression, so we need to 870 // generate an extra node that just propagates the value of the 871 // subexpression. 872 const Expr *Ex = U->getSubExpr()->IgnoreParens(); 873 ProgramStateRef state = (*I)->getState(); 874 const LocationContext *LCtx = (*I)->getLocationContext(); 875 Bldr.generateNode(U, *I, state->BindExpr(U, LCtx, 876 state->getSVal(Ex, LCtx))); 877 break; 878 } 879 880 case UO_LNot: 881 case UO_Minus: 882 case UO_Not: { 883 assert (!U->isGLValue()); 884 const Expr *Ex = U->getSubExpr()->IgnoreParens(); 885 ProgramStateRef state = (*I)->getState(); 886 const LocationContext *LCtx = (*I)->getLocationContext(); 887 888 // Get the value of the subexpression. 889 SVal V = state->getSVal(Ex, LCtx); 890 891 if (V.isUnknownOrUndef()) { 892 Bldr.generateNode(U, *I, state->BindExpr(U, LCtx, V)); 893 break; 894 } 895 896 switch (U->getOpcode()) { 897 default: 898 llvm_unreachable("Invalid Opcode."); 899 case UO_Not: 900 // FIXME: Do we need to handle promotions? 901 state = state->BindExpr(U, LCtx, evalComplement(V.castAs<NonLoc>())); 902 break; 903 case UO_Minus: 904 // FIXME: Do we need to handle promotions? 905 state = state->BindExpr(U, LCtx, evalMinus(V.castAs<NonLoc>())); 906 break; 907 case UO_LNot: 908 // C99 6.5.3.3: "The expression !E is equivalent to (0==E)." 909 // 910 // Note: technically we do "E == 0", but this is the same in the 911 // transfer functions as "0 == E". 912 SVal Result; 913 if (Optional<Loc> LV = V.getAs<Loc>()) { 914 Loc X = svalBuilder.makeNull(); 915 Result = evalBinOp(state, BO_EQ, *LV, X, U->getType()); 916 } 917 else if (Ex->getType()->isFloatingType()) { 918 // FIXME: handle floating point types. 919 Result = UnknownVal(); 920 } else { 921 nonloc::ConcreteInt X(getBasicVals().getValue(0, Ex->getType())); 922 Result = evalBinOp(state, BO_EQ, V.castAs<NonLoc>(), X, 923 U->getType()); 924 } 925 926 state = state->BindExpr(U, LCtx, Result); 927 break; 928 } 929 Bldr.generateNode(U, *I, state); 930 break; 931 } 932 } 933 } 934 935 getCheckerManager().runCheckersForPostStmt(Dst, EvalSet, U, *this); 936 } 937 938 void ExprEngine::VisitIncrementDecrementOperator(const UnaryOperator* U, 939 ExplodedNode *Pred, 940 ExplodedNodeSet &Dst) { 941 // Handle ++ and -- (both pre- and post-increment). 942 assert (U->isIncrementDecrementOp()); 943 const Expr *Ex = U->getSubExpr()->IgnoreParens(); 944 945 const LocationContext *LCtx = Pred->getLocationContext(); 946 ProgramStateRef state = Pred->getState(); 947 SVal loc = state->getSVal(Ex, LCtx); 948 949 // Perform a load. 950 ExplodedNodeSet Tmp; 951 evalLoad(Tmp, U, Ex, Pred, state, loc); 952 953 ExplodedNodeSet Dst2; 954 StmtNodeBuilder Bldr(Tmp, Dst2, *currBldrCtx); 955 for (ExplodedNodeSet::iterator I=Tmp.begin(), E=Tmp.end();I!=E;++I) { 956 957 state = (*I)->getState(); 958 assert(LCtx == (*I)->getLocationContext()); 959 SVal V2_untested = state->getSVal(Ex, LCtx); 960 961 // Propagate unknown and undefined values. 962 if (V2_untested.isUnknownOrUndef()) { 963 Bldr.generateNode(U, *I, state->BindExpr(U, LCtx, V2_untested)); 964 continue; 965 } 966 DefinedSVal V2 = V2_untested.castAs<DefinedSVal>(); 967 968 // Handle all other values. 969 BinaryOperator::Opcode Op = U->isIncrementOp() ? BO_Add : BO_Sub; 970 971 // If the UnaryOperator has non-location type, use its type to create the 972 // constant value. If the UnaryOperator has location type, create the 973 // constant with int type and pointer width. 974 SVal RHS; 975 976 if (U->getType()->isAnyPointerType()) 977 RHS = svalBuilder.makeArrayIndex(1); 978 else if (U->getType()->isIntegralOrEnumerationType()) 979 RHS = svalBuilder.makeIntVal(1, U->getType()); 980 else 981 RHS = UnknownVal(); 982 983 SVal Result = evalBinOp(state, Op, V2, RHS, U->getType()); 984 985 // Conjure a new symbol if necessary to recover precision. 986 if (Result.isUnknown()){ 987 DefinedOrUnknownSVal SymVal = 988 svalBuilder.conjureSymbolVal(nullptr, Ex, LCtx, 989 currBldrCtx->blockCount()); 990 Result = SymVal; 991 992 // If the value is a location, ++/-- should always preserve 993 // non-nullness. Check if the original value was non-null, and if so 994 // propagate that constraint. 995 if (Loc::isLocType(U->getType())) { 996 DefinedOrUnknownSVal Constraint = 997 svalBuilder.evalEQ(state, V2,svalBuilder.makeZeroVal(U->getType())); 998 999 if (!state->assume(Constraint, true)) { 1000 // It isn't feasible for the original value to be null. 1001 // Propagate this constraint. 1002 Constraint = svalBuilder.evalEQ(state, SymVal, 1003 svalBuilder.makeZeroVal(U->getType())); 1004 1005 1006 state = state->assume(Constraint, false); 1007 assert(state); 1008 } 1009 } 1010 } 1011 1012 // Since the lvalue-to-rvalue conversion is explicit in the AST, 1013 // we bind an l-value if the operator is prefix and an lvalue (in C++). 1014 if (U->isGLValue()) 1015 state = state->BindExpr(U, LCtx, loc); 1016 else 1017 state = state->BindExpr(U, LCtx, U->isPostfix() ? V2 : Result); 1018 1019 // Perform the store. 1020 Bldr.takeNodes(*I); 1021 ExplodedNodeSet Dst3; 1022 evalStore(Dst3, U, U, *I, state, loc, Result); 1023 Bldr.addNodes(Dst3); 1024 } 1025 Dst.insert(Dst2); 1026 } 1027