Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 1 | //=== OSAtomicChecker.cpp - OSAtomic functions evaluator --------*- 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 checker evaluates OSAtomic functions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Argyrios Kyrtzidis | f029366 | 2011-02-28 01:27:02 +0000 | [diff] [blame] | 14 | #include "ClangSACheckers.h" |
Argyrios Kyrtzidis | ec8605f | 2011-03-01 01:16:21 +0000 | [diff] [blame] | 15 | #include "clang/StaticAnalyzer/Core/Checker.h" |
Argyrios Kyrtzidis | f029366 | 2011-02-28 01:27:02 +0000 | [diff] [blame] | 16 | #include "clang/StaticAnalyzer/Core/CheckerManager.h" |
| 17 | #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 18 | #include "clang/Basic/Builtins.h" |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 19 | |
| 20 | using namespace clang; |
Ted Kremenek | 9ef6537 | 2010-12-23 07:20:52 +0000 | [diff] [blame] | 21 | using namespace ento; |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 22 | |
| 23 | namespace { |
| 24 | |
Argyrios Kyrtzidis | ec8605f | 2011-03-01 01:16:21 +0000 | [diff] [blame] | 25 | class OSAtomicChecker : public Checker<eval::Call> { |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 26 | public: |
Argyrios Kyrtzidis | f029366 | 2011-02-28 01:27:02 +0000 | [diff] [blame] | 27 | bool evalCall(const CallExpr *CE, CheckerContext &C) const; |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 28 | |
| 29 | private: |
Argyrios Kyrtzidis | f029366 | 2011-02-28 01:27:02 +0000 | [diff] [blame] | 30 | static bool evalOSAtomicCompareAndSwap(CheckerContext &C, const CallExpr *CE); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | } |
| 34 | |
Argyrios Kyrtzidis | f029366 | 2011-02-28 01:27:02 +0000 | [diff] [blame] | 35 | bool OSAtomicChecker::evalCall(const CallExpr *CE, CheckerContext &C) const { |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 36 | const GRState *state = C.getState(); |
| 37 | const Expr *Callee = CE->getCallee(); |
Ted Kremenek | 1397663 | 2010-02-08 16:18:51 +0000 | [diff] [blame] | 38 | SVal L = state->getSVal(Callee); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 39 | |
| 40 | const FunctionDecl* FD = L.getAsFunctionDecl(); |
| 41 | if (!FD) |
| 42 | return false; |
| 43 | |
Ted Kremenek | a0f7727 | 2009-12-16 06:03:24 +0000 | [diff] [blame] | 44 | const IdentifierInfo *II = FD->getIdentifier(); |
| 45 | if (!II) |
| 46 | return false; |
| 47 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame^] | 48 | StringRef FName(II->getName()); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 49 | |
| 50 | // Check for compare and swap. |
Ted Kremenek | a0f7727 | 2009-12-16 06:03:24 +0000 | [diff] [blame] | 51 | if (FName.startswith("OSAtomicCompareAndSwap") || |
| 52 | FName.startswith("objc_atomicCompareAndSwap")) |
Ted Kremenek | 9c14953 | 2010-12-01 21:57:22 +0000 | [diff] [blame] | 53 | return evalOSAtomicCompareAndSwap(C, CE); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 54 | |
| 55 | // FIXME: Other atomics. |
| 56 | return false; |
| 57 | } |
| 58 | |
Ted Kremenek | 9c14953 | 2010-12-01 21:57:22 +0000 | [diff] [blame] | 59 | bool OSAtomicChecker::evalOSAtomicCompareAndSwap(CheckerContext &C, |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 60 | const CallExpr *CE) { |
| 61 | // Not enough arguments to match OSAtomicCompareAndSwap? |
| 62 | if (CE->getNumArgs() != 3) |
| 63 | return false; |
| 64 | |
| 65 | ASTContext &Ctx = C.getASTContext(); |
| 66 | const Expr *oldValueExpr = CE->getArg(0); |
| 67 | QualType oldValueType = Ctx.getCanonicalType(oldValueExpr->getType()); |
| 68 | |
| 69 | const Expr *newValueExpr = CE->getArg(1); |
| 70 | QualType newValueType = Ctx.getCanonicalType(newValueExpr->getType()); |
| 71 | |
| 72 | // Do the types of 'oldValue' and 'newValue' match? |
| 73 | if (oldValueType != newValueType) |
| 74 | return false; |
| 75 | |
| 76 | const Expr *theValueExpr = CE->getArg(2); |
| 77 | const PointerType *theValueType=theValueExpr->getType()->getAs<PointerType>(); |
| 78 | |
| 79 | // theValueType not a pointer? |
| 80 | if (!theValueType) |
| 81 | return false; |
| 82 | |
| 83 | QualType theValueTypePointee = |
| 84 | Ctx.getCanonicalType(theValueType->getPointeeType()).getUnqualifiedType(); |
| 85 | |
| 86 | // The pointee must match newValueType and oldValueType. |
| 87 | if (theValueTypePointee != newValueType) |
| 88 | return false; |
| 89 | |
| 90 | static unsigned magic_load = 0; |
| 91 | static unsigned magic_store = 0; |
| 92 | |
| 93 | const void *OSAtomicLoadTag = &magic_load; |
| 94 | const void *OSAtomicStoreTag = &magic_store; |
| 95 | |
| 96 | // Load 'theValue'. |
Argyrios Kyrtzidis | d2592a3 | 2010-12-22 18:53:44 +0000 | [diff] [blame] | 97 | ExprEngine &Engine = C.getEngine(); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 98 | const GRState *state = C.getState(); |
| 99 | ExplodedNodeSet Tmp; |
Ted Kremenek | 1397663 | 2010-02-08 16:18:51 +0000 | [diff] [blame] | 100 | SVal location = state->getSVal(theValueExpr); |
Zhongxing Xu | 71f219a | 2010-06-23 02:06:56 +0000 | [diff] [blame] | 101 | // Here we should use the value type of the region as the load type, because |
| 102 | // we are simulating the semantics of the function, not the semantics of |
Zhongxing Xu | 2470446 | 2010-06-23 02:12:00 +0000 | [diff] [blame] | 103 | // passing argument. So the type of theValue expr is not we are loading. |
| 104 | // But usually the type of the varregion is not the type we want either, |
| 105 | // we still need to do a CastRetrievedVal in store manager. So actually this |
| 106 | // LoadTy specifying can be omitted. But we put it here to emphasize the |
| 107 | // semantics. |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 108 | QualType LoadTy; |
Ted Kremenek | c50e6df | 2010-01-11 02:33:26 +0000 | [diff] [blame] | 109 | if (const TypedRegion *TR = |
| 110 | dyn_cast_or_null<TypedRegion>(location.getAsRegion())) { |
Zhongxing Xu | 018220c | 2010-08-11 06:10:55 +0000 | [diff] [blame] | 111 | LoadTy = TR->getValueType(); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 112 | } |
Ted Kremenek | 9c14953 | 2010-12-01 21:57:22 +0000 | [diff] [blame] | 113 | Engine.evalLoad(Tmp, theValueExpr, C.getPredecessor(), |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 114 | state, location, OSAtomicLoadTag, LoadTy); |
| 115 | |
| 116 | if (Tmp.empty()) { |
| 117 | // If no nodes were generated, other checkers must generated sinks. But |
| 118 | // since the builder state was restored, we set it manually to prevent |
| 119 | // auto transition. |
| 120 | // FIXME: there should be a better approach. |
| 121 | C.getNodeBuilder().BuildSinks = true; |
| 122 | return true; |
| 123 | } |
| 124 | |
| 125 | for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); |
| 126 | I != E; ++I) { |
| 127 | |
| 128 | ExplodedNode *N = *I; |
| 129 | const GRState *stateLoad = N->getState(); |
Ted Kremenek | 6b4f567 | 2011-04-27 05:34:09 +0000 | [diff] [blame] | 130 | |
| 131 | // Use direct bindings from the environment since we are forcing a load |
| 132 | // from a location that the Environment would typically not be used |
| 133 | // to bind a value. |
| 134 | SVal theValueVal_untested = stateLoad->getSVal(theValueExpr, true); |
| 135 | |
Ted Kremenek | 1397663 | 2010-02-08 16:18:51 +0000 | [diff] [blame] | 136 | SVal oldValueVal_untested = stateLoad->getSVal(oldValueExpr); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 137 | |
| 138 | // FIXME: Issue an error. |
| 139 | if (theValueVal_untested.isUndef() || oldValueVal_untested.isUndef()) { |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | DefinedOrUnknownSVal theValueVal = |
| 144 | cast<DefinedOrUnknownSVal>(theValueVal_untested); |
| 145 | DefinedOrUnknownSVal oldValueVal = |
| 146 | cast<DefinedOrUnknownSVal>(oldValueVal_untested); |
| 147 | |
Ted Kremenek | 846eabd | 2010-12-01 21:28:31 +0000 | [diff] [blame] | 148 | SValBuilder &svalBuilder = Engine.getSValBuilder(); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 149 | |
| 150 | // Perform the comparison. |
Ted Kremenek | 9c14953 | 2010-12-01 21:57:22 +0000 | [diff] [blame] | 151 | DefinedOrUnknownSVal Cmp = svalBuilder.evalEQ(stateLoad,theValueVal,oldValueVal); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 152 | |
Ted Kremenek | 28f47b9 | 2010-12-01 22:16:56 +0000 | [diff] [blame] | 153 | const GRState *stateEqual = stateLoad->assume(Cmp, true); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 154 | |
| 155 | // Were they equal? |
| 156 | if (stateEqual) { |
| 157 | // Perform the store. |
| 158 | ExplodedNodeSet TmpStore; |
Ted Kremenek | 1397663 | 2010-02-08 16:18:51 +0000 | [diff] [blame] | 159 | SVal val = stateEqual->getSVal(newValueExpr); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 160 | |
| 161 | // Handle implicit value casts. |
| 162 | if (const TypedRegion *R = |
| 163 | dyn_cast_or_null<TypedRegion>(location.getAsRegion())) { |
Ted Kremenek | 9c14953 | 2010-12-01 21:57:22 +0000 | [diff] [blame] | 164 | val = svalBuilder.evalCast(val,R->getValueType(), newValueExpr->getType()); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Ted Kremenek | 9c14953 | 2010-12-01 21:57:22 +0000 | [diff] [blame] | 167 | Engine.evalStore(TmpStore, NULL, theValueExpr, N, |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 168 | stateEqual, location, val, OSAtomicStoreTag); |
| 169 | |
| 170 | if (TmpStore.empty()) { |
| 171 | // If no nodes were generated, other checkers must generated sinks. But |
| 172 | // since the builder state was restored, we set it manually to prevent |
| 173 | // auto transition. |
| 174 | // FIXME: there should be a better approach. |
| 175 | C.getNodeBuilder().BuildSinks = true; |
| 176 | return true; |
| 177 | } |
| 178 | |
| 179 | // Now bind the result of the comparison. |
| 180 | for (ExplodedNodeSet::iterator I2 = TmpStore.begin(), |
| 181 | E2 = TmpStore.end(); I2 != E2; ++I2) { |
| 182 | ExplodedNode *predNew = *I2; |
| 183 | const GRState *stateNew = predNew->getState(); |
Ted Kremenek | c50e6df | 2010-01-11 02:33:26 +0000 | [diff] [blame] | 184 | // Check for 'void' return type if we have a bogus function prototype. |
| 185 | SVal Res = UnknownVal(); |
| 186 | QualType T = CE->getType(); |
| 187 | if (!T->isVoidType()) |
Ted Kremenek | c8413fd | 2010-12-02 07:49:45 +0000 | [diff] [blame] | 188 | Res = Engine.getSValBuilder().makeTruthVal(true, T); |
Ted Kremenek | d048c6e | 2010-12-20 21:19:09 +0000 | [diff] [blame] | 189 | C.generateNode(stateNew->BindExpr(CE, Res), predNew); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
| 193 | // Were they not equal? |
Ted Kremenek | 28f47b9 | 2010-12-01 22:16:56 +0000 | [diff] [blame] | 194 | if (const GRState *stateNotEqual = stateLoad->assume(Cmp, false)) { |
Ted Kremenek | c50e6df | 2010-01-11 02:33:26 +0000 | [diff] [blame] | 195 | // Check for 'void' return type if we have a bogus function prototype. |
| 196 | SVal Res = UnknownVal(); |
| 197 | QualType T = CE->getType(); |
| 198 | if (!T->isVoidType()) |
Ted Kremenek | c8413fd | 2010-12-02 07:49:45 +0000 | [diff] [blame] | 199 | Res = Engine.getSValBuilder().makeTruthVal(false, CE->getType()); |
Ted Kremenek | d048c6e | 2010-12-20 21:19:09 +0000 | [diff] [blame] | 200 | C.generateNode(stateNotEqual->BindExpr(CE, Res), N); |
Zhongxing Xu | 1ec4e97 | 2009-12-09 12:23:28 +0000 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
| 204 | return true; |
| 205 | } |
Argyrios Kyrtzidis | f029366 | 2011-02-28 01:27:02 +0000 | [diff] [blame] | 206 | |
| 207 | void ento::registerOSAtomicChecker(CheckerManager &mgr) { |
| 208 | mgr.registerChecker<OSAtomicChecker>(); |
| 209 | } |