blob: 72d064ef816cf832c4a2c1788fd3eb8e60643903 [file] [log] [blame]
Zhongxing Xu1ec4e972009-12-09 12:23:28 +00001//=== 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 Kyrtzidisf0293662011-02-28 01:27:02 +000014#include "ClangSACheckers.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000015#include "clang/StaticAnalyzer/Core/Checker.h"
Argyrios Kyrtzidisf0293662011-02-28 01:27:02 +000016#include "clang/StaticAnalyzer/Core/CheckerManager.h"
17#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000018#include "clang/Basic/Builtins.h"
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000019
20using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000021using namespace ento;
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000022
23namespace {
24
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000025class OSAtomicChecker : public Checker<eval::Call> {
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000026public:
Argyrios Kyrtzidisf0293662011-02-28 01:27:02 +000027 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000028
29private:
Argyrios Kyrtzidisf0293662011-02-28 01:27:02 +000030 static bool evalOSAtomicCompareAndSwap(CheckerContext &C, const CallExpr *CE);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000031};
32
33}
34
Argyrios Kyrtzidisf0293662011-02-28 01:27:02 +000035bool OSAtomicChecker::evalCall(const CallExpr *CE, CheckerContext &C) const {
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000036 const GRState *state = C.getState();
37 const Expr *Callee = CE->getCallee();
Ted Kremenek13976632010-02-08 16:18:51 +000038 SVal L = state->getSVal(Callee);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000039
40 const FunctionDecl* FD = L.getAsFunctionDecl();
41 if (!FD)
42 return false;
43
Ted Kremeneka0f77272009-12-16 06:03:24 +000044 const IdentifierInfo *II = FD->getIdentifier();
45 if (!II)
46 return false;
47
Chris Lattner5f9e2722011-07-23 10:55:15 +000048 StringRef FName(II->getName());
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000049
50 // Check for compare and swap.
Ted Kremeneka0f77272009-12-16 06:03:24 +000051 if (FName.startswith("OSAtomicCompareAndSwap") ||
52 FName.startswith("objc_atomicCompareAndSwap"))
Ted Kremenek9c149532010-12-01 21:57:22 +000053 return evalOSAtomicCompareAndSwap(C, CE);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000054
55 // FIXME: Other atomics.
56 return false;
57}
58
Ted Kremenek9c149532010-12-01 21:57:22 +000059bool OSAtomicChecker::evalOSAtomicCompareAndSwap(CheckerContext &C,
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000060 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
Ted Kremenekca804532011-08-12 23:04:46 +000090 static SimpleProgramPointTag OSAtomicLoadTag("OSAtomicChecker : Load");
91 static SimpleProgramPointTag OSAtomicStoreTag("OSAtomicChecker : Store");
92
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000093 // Load 'theValue'.
Argyrios Kyrtzidisd2592a32010-12-22 18:53:44 +000094 ExprEngine &Engine = C.getEngine();
Zhongxing Xu1ec4e972009-12-09 12:23:28 +000095 const GRState *state = C.getState();
96 ExplodedNodeSet Tmp;
Ted Kremenek13976632010-02-08 16:18:51 +000097 SVal location = state->getSVal(theValueExpr);
Zhongxing Xu71f219a2010-06-23 02:06:56 +000098 // Here we should use the value type of the region as the load type, because
99 // we are simulating the semantics of the function, not the semantics of
Zhongxing Xu24704462010-06-23 02:12:00 +0000100 // passing argument. So the type of theValue expr is not we are loading.
101 // But usually the type of the varregion is not the type we want either,
102 // we still need to do a CastRetrievedVal in store manager. So actually this
103 // LoadTy specifying can be omitted. But we put it here to emphasize the
104 // semantics.
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000105 QualType LoadTy;
Ted Kremenek96979342011-08-12 20:02:48 +0000106 if (const TypedValueRegion *TR =
107 dyn_cast_or_null<TypedValueRegion>(location.getAsRegion())) {
Zhongxing Xu018220c2010-08-11 06:10:55 +0000108 LoadTy = TR->getValueType();
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000109 }
Ted Kremenek9c149532010-12-01 21:57:22 +0000110 Engine.evalLoad(Tmp, theValueExpr, C.getPredecessor(),
Ted Kremenekca804532011-08-12 23:04:46 +0000111 state, location, &OSAtomicLoadTag, LoadTy);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000112
113 if (Tmp.empty()) {
114 // If no nodes were generated, other checkers must generated sinks. But
115 // since the builder state was restored, we set it manually to prevent
116 // auto transition.
117 // FIXME: there should be a better approach.
118 C.getNodeBuilder().BuildSinks = true;
119 return true;
120 }
121
122 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end();
123 I != E; ++I) {
124
125 ExplodedNode *N = *I;
126 const GRState *stateLoad = N->getState();
Ted Kremenek6b4f5672011-04-27 05:34:09 +0000127
128 // Use direct bindings from the environment since we are forcing a load
129 // from a location that the Environment would typically not be used
130 // to bind a value.
131 SVal theValueVal_untested = stateLoad->getSVal(theValueExpr, true);
132
Ted Kremenek13976632010-02-08 16:18:51 +0000133 SVal oldValueVal_untested = stateLoad->getSVal(oldValueExpr);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000134
135 // FIXME: Issue an error.
136 if (theValueVal_untested.isUndef() || oldValueVal_untested.isUndef()) {
137 return false;
138 }
139
140 DefinedOrUnknownSVal theValueVal =
141 cast<DefinedOrUnknownSVal>(theValueVal_untested);
142 DefinedOrUnknownSVal oldValueVal =
143 cast<DefinedOrUnknownSVal>(oldValueVal_untested);
144
Ted Kremenek846eabd2010-12-01 21:28:31 +0000145 SValBuilder &svalBuilder = Engine.getSValBuilder();
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000146
147 // Perform the comparison.
Ted Kremenekca804532011-08-12 23:04:46 +0000148 DefinedOrUnknownSVal Cmp =
149 svalBuilder.evalEQ(stateLoad,theValueVal,oldValueVal);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000150
Ted Kremenek28f47b92010-12-01 22:16:56 +0000151 const GRState *stateEqual = stateLoad->assume(Cmp, true);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000152
153 // Were they equal?
154 if (stateEqual) {
155 // Perform the store.
156 ExplodedNodeSet TmpStore;
Ted Kremenek13976632010-02-08 16:18:51 +0000157 SVal val = stateEqual->getSVal(newValueExpr);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000158
159 // Handle implicit value casts.
Ted Kremenek96979342011-08-12 20:02:48 +0000160 if (const TypedValueRegion *R =
161 dyn_cast_or_null<TypedValueRegion>(location.getAsRegion())) {
Ted Kremenek9c149532010-12-01 21:57:22 +0000162 val = svalBuilder.evalCast(val,R->getValueType(), newValueExpr->getType());
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000163 }
164
Ted Kremenek9c149532010-12-01 21:57:22 +0000165 Engine.evalStore(TmpStore, NULL, theValueExpr, N,
Ted Kremenekca804532011-08-12 23:04:46 +0000166 stateEqual, location, val, &OSAtomicStoreTag);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000167
168 if (TmpStore.empty()) {
169 // If no nodes were generated, other checkers must generated sinks. But
170 // since the builder state was restored, we set it manually to prevent
171 // auto transition.
172 // FIXME: there should be a better approach.
173 C.getNodeBuilder().BuildSinks = true;
174 return true;
175 }
176
177 // Now bind the result of the comparison.
178 for (ExplodedNodeSet::iterator I2 = TmpStore.begin(),
179 E2 = TmpStore.end(); I2 != E2; ++I2) {
180 ExplodedNode *predNew = *I2;
181 const GRState *stateNew = predNew->getState();
Ted Kremenekc50e6df2010-01-11 02:33:26 +0000182 // Check for 'void' return type if we have a bogus function prototype.
183 SVal Res = UnknownVal();
184 QualType T = CE->getType();
185 if (!T->isVoidType())
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000186 Res = Engine.getSValBuilder().makeTruthVal(true, T);
Ted Kremenekd048c6e2010-12-20 21:19:09 +0000187 C.generateNode(stateNew->BindExpr(CE, Res), predNew);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000188 }
189 }
190
191 // Were they not equal?
Ted Kremenek28f47b92010-12-01 22:16:56 +0000192 if (const GRState *stateNotEqual = stateLoad->assume(Cmp, false)) {
Ted Kremenekc50e6df2010-01-11 02:33:26 +0000193 // Check for 'void' return type if we have a bogus function prototype.
194 SVal Res = UnknownVal();
195 QualType T = CE->getType();
196 if (!T->isVoidType())
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000197 Res = Engine.getSValBuilder().makeTruthVal(false, CE->getType());
Ted Kremenekd048c6e2010-12-20 21:19:09 +0000198 C.generateNode(stateNotEqual->BindExpr(CE, Res), N);
Zhongxing Xu1ec4e972009-12-09 12:23:28 +0000199 }
200 }
201
202 return true;
203}
Argyrios Kyrtzidisf0293662011-02-28 01:27:02 +0000204
205void ento::registerOSAtomicChecker(CheckerManager &mgr) {
206 mgr.registerChecker<OSAtomicChecker>();
207}