blob: cc55e9f6ecf0651902246d52165bc06863863750 [file] [log] [blame]
Anna Zaksc800f682011-10-11 16:49:54 +00001//= CStringChecker.cpp - Checks calls to C string functions --------*- C++ -*-//
Jordy Roseccbf7ee2010-07-06 23:11:01 +00002//
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 defines CStringChecker, which is an assortment of checks on calls
11// to functions in <string.h>.
12//
13//===----------------------------------------------------------------------===//
14
Argyrios Kyrtzidisa0decc92011-02-15 21:25:03 +000015#include "ClangSACheckers.h"
Anna Zaksf0dfc9c2012-02-17 22:35:31 +000016#include "InterCheckerAPI.h"
Jordan Rose223f0ff2013-02-09 10:09:43 +000017#include "clang/Basic/CharInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000019#include "clang/StaticAnalyzer/Core/Checker.h"
Argyrios Kyrtzidis695fb502011-02-17 21:39:17 +000020#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000021#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Ted Kremenek18c66fd2011-08-15 22:09:50 +000022#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
Benjamin Kramer00bd44d2012-02-04 12:31:12 +000023#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000024#include "llvm/ADT/SmallString.h"
Jordy Roseccbf7ee2010-07-06 23:11:01 +000025#include "llvm/ADT/StringSwitch.h"
Benjamin Kramera93d0f22012-12-01 17:12:56 +000026#include "llvm/Support/raw_ostream.h"
Jordy Roseccbf7ee2010-07-06 23:11:01 +000027
28using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000029using namespace ento;
Jordy Roseccbf7ee2010-07-06 23:11:01 +000030
31namespace {
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000032class CStringChecker : public Checker< eval::Call,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000033 check::PreStmt<DeclStmt>,
34 check::LiveSymbols,
35 check::DeadSymbols,
36 check::RegionChanges
37 > {
Anna Zaks57300762012-02-07 00:56:14 +000038 mutable OwningPtr<BugType> BT_Null,
39 BT_Bounds,
40 BT_Overlap,
41 BT_NotCString,
42 BT_AdditionOverflow;
43
Jordy Rose9e49d9f2011-06-20 02:06:40 +000044 mutable const char *CurrentFunctionDescription;
45
Jordy Roseccbf7ee2010-07-06 23:11:01 +000046public:
Anna Zaks57300762012-02-07 00:56:14 +000047 /// The filter is used to filter out the diagnostics which are not enabled by
48 /// the user.
49 struct CStringChecksFilter {
50 DefaultBool CheckCStringNullArg;
51 DefaultBool CheckCStringOutOfBounds;
52 DefaultBool CheckCStringBufferOverlap;
53 DefaultBool CheckCStringNotNullTerm;
54 };
55
56 CStringChecksFilter Filter;
57
Jordy Roseccbf7ee2010-07-06 23:11:01 +000058 static void *getTag() { static int tag; return &tag; }
59
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000060 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
61 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const;
Ted Kremenek8bef8232012-01-26 21:29:00 +000062 void checkLiveSymbols(ProgramStateRef state, SymbolReaper &SR) const;
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000063 void checkDeadSymbols(SymbolReaper &SR, CheckerContext &C) const;
Ted Kremenek8bef8232012-01-26 21:29:00 +000064 bool wantsRegionChangeUpdate(ProgramStateRef state) const;
Jordy Rosea5261542010-08-14 21:02:52 +000065
Ted Kremenek8bef8232012-01-26 21:29:00 +000066 ProgramStateRef
67 checkRegionChanges(ProgramStateRef state,
Anna Zaksbf53dfa2012-12-20 00:38:25 +000068 const InvalidatedSymbols *,
Jordy Rose537716a2011-08-27 22:51:26 +000069 ArrayRef<const MemRegion *> ExplicitRegions,
Anna Zaks66c40402012-02-14 21:55:24 +000070 ArrayRef<const MemRegion *> Regions,
Jordan Rose740d4902012-07-02 19:27:35 +000071 const CallEvent *Call) const;
Jordy Roseccbf7ee2010-07-06 23:11:01 +000072
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000073 typedef void (CStringChecker::*FnCheck)(CheckerContext &,
74 const CallExpr *) const;
Jordy Roseccbf7ee2010-07-06 23:11:01 +000075
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000076 void evalMemcpy(CheckerContext &C, const CallExpr *CE) const;
Lenny Maioranib8b875b2011-03-31 21:36:53 +000077 void evalMempcpy(CheckerContext &C, const CallExpr *CE) const;
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000078 void evalMemmove(CheckerContext &C, const CallExpr *CE) const;
79 void evalBcopy(CheckerContext &C, const CallExpr *CE) const;
Lenny Maioranib8b875b2011-03-31 21:36:53 +000080 void evalCopyCommon(CheckerContext &C, const CallExpr *CE,
Ted Kremenek8bef8232012-01-26 21:29:00 +000081 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +000082 const Expr *Size,
83 const Expr *Source,
84 const Expr *Dest,
Lenny Maioranib8b875b2011-03-31 21:36:53 +000085 bool Restricted = false,
86 bool IsMempcpy = false) const;
Jordy Rosed325ffb2010-07-08 23:57:29 +000087
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000088 void evalMemcmp(CheckerContext &C, const CallExpr *CE) const;
Jordy Roseccbf7ee2010-07-06 23:11:01 +000089
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000090 void evalstrLength(CheckerContext &C, const CallExpr *CE) const;
91 void evalstrnLength(CheckerContext &C, const CallExpr *CE) const;
Ted Kremenek18c66fd2011-08-15 22:09:50 +000092 void evalstrLengthCommon(CheckerContext &C,
93 const CallExpr *CE,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000094 bool IsStrnlen = false) const;
Jordy Rose19c5dd12010-07-27 01:37:31 +000095
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +000096 void evalStrcpy(CheckerContext &C, const CallExpr *CE) const;
97 void evalStrncpy(CheckerContext &C, const CallExpr *CE) const;
98 void evalStpcpy(CheckerContext &C, const CallExpr *CE) const;
Ted Kremenek18c66fd2011-08-15 22:09:50 +000099 void evalStrcpyCommon(CheckerContext &C,
100 const CallExpr *CE,
101 bool returnEnd,
102 bool isBounded,
103 bool isAppending) const;
Lenny Maiorani067bbd02011-04-09 15:12:58 +0000104
105 void evalStrcat(CheckerContext &C, const CallExpr *CE) const;
106 void evalStrncat(CheckerContext &C, const CallExpr *CE) const;
Jordy Rosee64f3112010-08-16 07:51:42 +0000107
Lenny Maiorani318dd922011-04-12 17:08:43 +0000108 void evalStrcmp(CheckerContext &C, const CallExpr *CE) const;
Lenny Maiorani357f6ee2011-04-25 22:21:00 +0000109 void evalStrncmp(CheckerContext &C, const CallExpr *CE) const;
Lenny Maioranibd1d16a2011-04-28 15:09:11 +0000110 void evalStrcasecmp(CheckerContext &C, const CallExpr *CE) const;
Lenny Maiorani454fd2d2011-05-02 19:05:49 +0000111 void evalStrncasecmp(CheckerContext &C, const CallExpr *CE) const;
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000112 void evalStrcmpCommon(CheckerContext &C,
113 const CallExpr *CE,
114 bool isBounded = false,
115 bool ignoreCase = false) const;
Lenny Maiorani318dd922011-04-12 17:08:43 +0000116
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000117 // Utility methods
Ted Kremenek8bef8232012-01-26 21:29:00 +0000118 std::pair<ProgramStateRef , ProgramStateRef >
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000119 static assumeZero(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000120 ProgramStateRef state, SVal V, QualType Ty);
Jordy Rosed325ffb2010-07-08 23:57:29 +0000121
Ted Kremenek8bef8232012-01-26 21:29:00 +0000122 static ProgramStateRef setCStringLength(ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000123 const MemRegion *MR,
124 SVal strLength);
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000125 static SVal getCStringLengthForRegion(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000126 ProgramStateRef &state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000127 const Expr *Ex,
128 const MemRegion *MR,
Jordy Rosed5af0e12011-06-15 05:52:56 +0000129 bool hypothetical);
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000130 SVal getCStringLength(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000131 ProgramStateRef &state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000132 const Expr *Ex,
133 SVal Buf,
Jordy Rosed5af0e12011-06-15 05:52:56 +0000134 bool hypothetical = false) const;
Jordy Rose19c5dd12010-07-27 01:37:31 +0000135
Lenny Maiorani318dd922011-04-12 17:08:43 +0000136 const StringLiteral *getCStringLiteral(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000137 ProgramStateRef &state,
Lenny Maiorani318dd922011-04-12 17:08:43 +0000138 const Expr *expr,
139 SVal val) const;
140
Ted Kremenek8bef8232012-01-26 21:29:00 +0000141 static ProgramStateRef InvalidateBuffer(CheckerContext &C,
142 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000143 const Expr *Ex, SVal V);
Jordy Rosee64f3112010-08-16 07:51:42 +0000144
Ted Kremenek9c378f72011-08-12 23:37:29 +0000145 static bool SummarizeRegion(raw_ostream &os, ASTContext &Ctx,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000146 const MemRegion *MR);
Jordy Rose19c5dd12010-07-27 01:37:31 +0000147
148 // Re-usable checks
Ted Kremenek8bef8232012-01-26 21:29:00 +0000149 ProgramStateRef checkNonNull(CheckerContext &C,
150 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000151 const Expr *S,
152 SVal l) const;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000153 ProgramStateRef CheckLocation(CheckerContext &C,
154 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000155 const Expr *S,
156 SVal l,
157 const char *message = NULL) const;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000158 ProgramStateRef CheckBufferAccess(CheckerContext &C,
159 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000160 const Expr *Size,
161 const Expr *FirstBuf,
162 const Expr *SecondBuf,
163 const char *firstMessage = NULL,
164 const char *secondMessage = NULL,
165 bool WarnAboutSize = false) const;
166
Ted Kremenek8bef8232012-01-26 21:29:00 +0000167 ProgramStateRef CheckBufferAccess(CheckerContext &C,
168 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000169 const Expr *Size,
170 const Expr *Buf,
171 const char *message = NULL,
172 bool WarnAboutSize = false) const {
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000173 // This is a convenience override.
Jordy Rose5e5f1502011-06-20 03:49:16 +0000174 return CheckBufferAccess(C, state, Size, Buf, NULL, message, NULL,
175 WarnAboutSize);
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000176 }
Ted Kremenek8bef8232012-01-26 21:29:00 +0000177 ProgramStateRef CheckOverlap(CheckerContext &C,
178 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000179 const Expr *Size,
180 const Expr *First,
181 const Expr *Second) const;
182 void emitOverlapBug(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000183 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000184 const Stmt *First,
185 const Stmt *Second) const;
186
Ted Kremenek8bef8232012-01-26 21:29:00 +0000187 ProgramStateRef checkAdditionOverflow(CheckerContext &C,
188 ProgramStateRef state,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000189 NonLoc left,
190 NonLoc right) const;
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000191};
Jordy Rosea5261542010-08-14 21:02:52 +0000192
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000193} //end anonymous namespace
194
Jordan Rose166d5022012-11-02 01:54:06 +0000195REGISTER_MAP_WITH_PROGRAMSTATE(CStringLength, const MemRegion *, SVal)
Jordy Rosea5261542010-08-14 21:02:52 +0000196
Jordy Rosed325ffb2010-07-08 23:57:29 +0000197//===----------------------------------------------------------------------===//
198// Individual checks and utility methods.
199//===----------------------------------------------------------------------===//
200
Ted Kremenek8bef8232012-01-26 21:29:00 +0000201std::pair<ProgramStateRef , ProgramStateRef >
202CStringChecker::assumeZero(CheckerContext &C, ProgramStateRef state, SVal V,
Jordy Rosed325ffb2010-07-08 23:57:29 +0000203 QualType Ty) {
David Blaikiedc84cd52013-02-20 22:23:23 +0000204 Optional<DefinedSVal> val = V.getAs<DefinedSVal>();
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000205 if (!val)
Ted Kremenek8bef8232012-01-26 21:29:00 +0000206 return std::pair<ProgramStateRef , ProgramStateRef >(state, state);
Jordy Rosea6b808c2010-07-07 07:48:06 +0000207
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000208 SValBuilder &svalBuilder = C.getSValBuilder();
209 DefinedOrUnknownSVal zero = svalBuilder.makeZeroVal(Ty);
210 return state->assume(svalBuilder.evalEQ(state, *val, zero));
Jordy Rosed325ffb2010-07-08 23:57:29 +0000211}
Jordy Rosea6b808c2010-07-07 07:48:06 +0000212
Ted Kremenek8bef8232012-01-26 21:29:00 +0000213ProgramStateRef CStringChecker::checkNonNull(CheckerContext &C,
214 ProgramStateRef state,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000215 const Expr *S, SVal l) const {
Jordy Rosed325ffb2010-07-08 23:57:29 +0000216 // If a previous check has failed, propagate the failure.
217 if (!state)
218 return NULL;
219
Ted Kremenek8bef8232012-01-26 21:29:00 +0000220 ProgramStateRef stateNull, stateNonNull;
Ted Kremenek28f47b92010-12-01 22:16:56 +0000221 llvm::tie(stateNull, stateNonNull) = assumeZero(C, state, l, S->getType());
Jordy Rosed325ffb2010-07-08 23:57:29 +0000222
223 if (stateNull && !stateNonNull) {
Anna Zaks57300762012-02-07 00:56:14 +0000224 if (!Filter.CheckCStringNullArg)
225 return NULL;
226
Ted Kremenekd048c6e2010-12-20 21:19:09 +0000227 ExplodedNode *N = C.generateSink(stateNull);
Jordy Rosea6b808c2010-07-07 07:48:06 +0000228 if (!N)
229 return NULL;
230
Jordy Rosed325ffb2010-07-08 23:57:29 +0000231 if (!BT_Null)
Anna Zaks57300762012-02-07 00:56:14 +0000232 BT_Null.reset(new BuiltinBug("Unix API",
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000233 "Null pointer argument in call to byte string function"));
Jordy Rosea6b808c2010-07-07 07:48:06 +0000234
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000235 SmallString<80> buf;
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000236 llvm::raw_svector_ostream os(buf);
237 assert(CurrentFunctionDescription);
238 os << "Null pointer argument in call to " << CurrentFunctionDescription;
239
Jordy Rosea6b808c2010-07-07 07:48:06 +0000240 // Generate a report for this bug.
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000241 BuiltinBug *BT = static_cast<BuiltinBug*>(BT_Null.get());
Anna Zakse172e8b2011-08-17 23:00:25 +0000242 BugReport *report = new BugReport(*BT, os.str(), N);
Jordy Rosea6b808c2010-07-07 07:48:06 +0000243
244 report->addRange(S->getSourceRange());
Jordan Rosea1f81bb2012-08-28 00:50:51 +0000245 bugreporter::trackNullOrUndefValue(N, S, *report);
Jordan Rose785950e2012-11-02 01:53:40 +0000246 C.emitReport(report);
Jordy Rosea6b808c2010-07-07 07:48:06 +0000247 return NULL;
248 }
249
250 // From here on, assume that the value is non-null.
Jordy Rosed325ffb2010-07-08 23:57:29 +0000251 assert(stateNonNull);
252 return stateNonNull;
Jordy Rosea6b808c2010-07-07 07:48:06 +0000253}
254
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000255// FIXME: This was originally copied from ArrayBoundChecker.cpp. Refactor?
Ted Kremenek8bef8232012-01-26 21:29:00 +0000256ProgramStateRef CStringChecker::CheckLocation(CheckerContext &C,
257 ProgramStateRef state,
Jordy Rosee64f3112010-08-16 07:51:42 +0000258 const Expr *S, SVal l,
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000259 const char *warningMsg) const {
Jordy Rosed325ffb2010-07-08 23:57:29 +0000260 // If a previous check has failed, propagate the failure.
261 if (!state)
262 return NULL;
263
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000264 // Check for out of bound array element access.
265 const MemRegion *R = l.getAsRegion();
266 if (!R)
267 return state;
268
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000269 const ElementRegion *ER = dyn_cast<ElementRegion>(R);
270 if (!ER)
271 return state;
272
Zhongxing Xu018220c2010-08-11 06:10:55 +0000273 assert(ER->getValueType() == C.getASTContext().CharTy &&
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000274 "CheckLocation should only be called with char* ElementRegions");
275
276 // Get the size of the array.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000277 const SubRegion *superReg = cast<SubRegion>(ER->getSuperRegion());
278 SValBuilder &svalBuilder = C.getSValBuilder();
Jordy Rose1e022412011-06-16 05:51:02 +0000279 SVal Extent =
280 svalBuilder.convertToArrayIndex(superReg->getExtent(svalBuilder));
David Blaikie5251abe2013-02-20 05:52:05 +0000281 DefinedOrUnknownSVal Size = Extent.castAs<DefinedOrUnknownSVal>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000282
283 // Get the index of the accessed element.
David Blaikie7a95de62013-02-21 22:23:56 +0000284 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000285
Ted Kremenek8bef8232012-01-26 21:29:00 +0000286 ProgramStateRef StInBound = state->assumeInBound(Idx, Size, true);
287 ProgramStateRef StOutBound = state->assumeInBound(Idx, Size, false);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000288 if (StOutBound && !StInBound) {
Ted Kremenekd048c6e2010-12-20 21:19:09 +0000289 ExplodedNode *N = C.generateSink(StOutBound);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000290 if (!N)
291 return NULL;
292
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000293 if (!BT_Bounds) {
294 BT_Bounds.reset(new BuiltinBug("Out-of-bound array access",
295 "Byte string function accesses out-of-bound array element"));
296 }
297 BuiltinBug *BT = static_cast<BuiltinBug*>(BT_Bounds.get());
298
299 // Generate a report for this bug.
Anna Zakse172e8b2011-08-17 23:00:25 +0000300 BugReport *report;
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000301 if (warningMsg) {
Anna Zakse172e8b2011-08-17 23:00:25 +0000302 report = new BugReport(*BT, warningMsg, N);
Jordy Rosee64f3112010-08-16 07:51:42 +0000303 } else {
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000304 assert(CurrentFunctionDescription);
305 assert(CurrentFunctionDescription[0] != '\0');
306
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000307 SmallString<80> buf;
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000308 llvm::raw_svector_ostream os(buf);
Jordan Rose223f0ff2013-02-09 10:09:43 +0000309 os << toUppercase(CurrentFunctionDescription[0])
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000310 << &CurrentFunctionDescription[1]
311 << " accesses out-of-bound array element";
Anna Zakse172e8b2011-08-17 23:00:25 +0000312 report = new BugReport(*BT, os.str(), N);
Jordy Rosee64f3112010-08-16 07:51:42 +0000313 }
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000314
315 // FIXME: It would be nice to eventually make this diagnostic more clear,
316 // e.g., by referencing the original declaration or by saying *why* this
317 // reference is outside the range.
318
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000319 report->addRange(S->getSourceRange());
Jordan Rose785950e2012-11-02 01:53:40 +0000320 C.emitReport(report);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000321 return NULL;
322 }
323
324 // Array bound check succeeded. From this point forward the array bound
325 // should always succeed.
326 return StInBound;
327}
328
Ted Kremenek8bef8232012-01-26 21:29:00 +0000329ProgramStateRef CStringChecker::CheckBufferAccess(CheckerContext &C,
330 ProgramStateRef state,
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000331 const Expr *Size,
332 const Expr *FirstBuf,
Jordy Rosee64f3112010-08-16 07:51:42 +0000333 const Expr *SecondBuf,
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000334 const char *firstMessage,
Jordy Rose5e5f1502011-06-20 03:49:16 +0000335 const char *secondMessage,
336 bool WarnAboutSize) const {
Jordy Rosed325ffb2010-07-08 23:57:29 +0000337 // If a previous check has failed, propagate the failure.
338 if (!state)
339 return NULL;
340
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000341 SValBuilder &svalBuilder = C.getSValBuilder();
Jordy Rose1e022412011-06-16 05:51:02 +0000342 ASTContext &Ctx = svalBuilder.getContext();
Ted Kremenek5eca4822012-01-06 22:09:28 +0000343 const LocationContext *LCtx = C.getLocationContext();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000344
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000345 QualType sizeTy = Size->getType();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000346 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
347
Jordy Rosea6b808c2010-07-07 07:48:06 +0000348 // Check that the first buffer is non-null.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000349 SVal BufVal = state->getSVal(FirstBuf, LCtx);
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000350 state = checkNonNull(C, state, FirstBuf, BufVal);
Jordy Rosea6b808c2010-07-07 07:48:06 +0000351 if (!state)
352 return NULL;
353
Anna Zaks57300762012-02-07 00:56:14 +0000354 // If out-of-bounds checking is turned off, skip the rest.
355 if (!Filter.CheckCStringOutOfBounds)
356 return state;
357
Jordy Rosed325ffb2010-07-08 23:57:29 +0000358 // Get the access length and make sure it is known.
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000359 // FIXME: This assumes the caller has already checked that the access length
360 // is positive. And that it's unsigned.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000361 SVal LengthVal = state->getSVal(Size, LCtx);
David Blaikiedc84cd52013-02-20 22:23:23 +0000362 Optional<NonLoc> Length = LengthVal.getAs<NonLoc>();
Jordy Rosed325ffb2010-07-08 23:57:29 +0000363 if (!Length)
364 return state;
365
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000366 // Compute the offset of the last element to be accessed: size-1.
David Blaikie5251abe2013-02-20 05:52:05 +0000367 NonLoc One = svalBuilder.makeIntVal(1, sizeTy).castAs<NonLoc>();
368 NonLoc LastOffset = svalBuilder
369 .evalBinOpNN(state, BO_Sub, *Length, One, sizeTy).castAs<NonLoc>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000370
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000371 // Check that the first buffer is sufficiently long.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000372 SVal BufStart = svalBuilder.evalCast(BufVal, PtrTy, FirstBuf->getType());
David Blaikiedc84cd52013-02-20 22:23:23 +0000373 if (Optional<Loc> BufLoc = BufStart.getAs<Loc>()) {
Jordy Rose5e5f1502011-06-20 03:49:16 +0000374 const Expr *warningExpr = (WarnAboutSize ? Size : FirstBuf);
375
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000376 SVal BufEnd = svalBuilder.evalBinOpLN(state, BO_Add, *BufLoc,
377 LastOffset, PtrTy);
Jordy Rose5e5f1502011-06-20 03:49:16 +0000378 state = CheckLocation(C, state, warningExpr, BufEnd, firstMessage);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000379
Jordy Roseb6a40262010-08-05 23:11:30 +0000380 // If the buffer isn't large enough, abort.
381 if (!state)
382 return NULL;
383 }
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000384
385 // If there's a second buffer, check it as well.
386 if (SecondBuf) {
Ted Kremenek5eca4822012-01-06 22:09:28 +0000387 BufVal = state->getSVal(SecondBuf, LCtx);
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000388 state = checkNonNull(C, state, SecondBuf, BufVal);
Jordy Rosea6b808c2010-07-07 07:48:06 +0000389 if (!state)
390 return NULL;
391
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000392 BufStart = svalBuilder.evalCast(BufVal, PtrTy, SecondBuf->getType());
David Blaikiedc84cd52013-02-20 22:23:23 +0000393 if (Optional<Loc> BufLoc = BufStart.getAs<Loc>()) {
Jordy Rose5e5f1502011-06-20 03:49:16 +0000394 const Expr *warningExpr = (WarnAboutSize ? Size : SecondBuf);
395
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000396 SVal BufEnd = svalBuilder.evalBinOpLN(state, BO_Add, *BufLoc,
397 LastOffset, PtrTy);
Jordy Rose5e5f1502011-06-20 03:49:16 +0000398 state = CheckLocation(C, state, warningExpr, BufEnd, secondMessage);
Jordy Roseb6a40262010-08-05 23:11:30 +0000399 }
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000400 }
401
402 // Large enough or not, return this state!
403 return state;
404}
405
Ted Kremenek8bef8232012-01-26 21:29:00 +0000406ProgramStateRef CStringChecker::CheckOverlap(CheckerContext &C,
407 ProgramStateRef state,
Jordy Rosed325ffb2010-07-08 23:57:29 +0000408 const Expr *Size,
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000409 const Expr *First,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000410 const Expr *Second) const {
Anna Zaks57300762012-02-07 00:56:14 +0000411 if (!Filter.CheckCStringBufferOverlap)
412 return state;
413
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000414 // Do a simple check for overlap: if the two arguments are from the same
415 // buffer, see if the end of the first is greater than the start of the second
416 // or vice versa.
417
Jordy Rosed325ffb2010-07-08 23:57:29 +0000418 // If a previous check has failed, propagate the failure.
419 if (!state)
420 return NULL;
421
Ted Kremenek8bef8232012-01-26 21:29:00 +0000422 ProgramStateRef stateTrue, stateFalse;
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000423
424 // Get the buffer values and make sure they're known locations.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000425 const LocationContext *LCtx = C.getLocationContext();
426 SVal firstVal = state->getSVal(First, LCtx);
427 SVal secondVal = state->getSVal(Second, LCtx);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000428
David Blaikiedc84cd52013-02-20 22:23:23 +0000429 Optional<Loc> firstLoc = firstVal.getAs<Loc>();
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000430 if (!firstLoc)
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000431 return state;
432
David Blaikiedc84cd52013-02-20 22:23:23 +0000433 Optional<Loc> secondLoc = secondVal.getAs<Loc>();
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000434 if (!secondLoc)
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000435 return state;
436
437 // Are the two values the same?
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000438 SValBuilder &svalBuilder = C.getSValBuilder();
439 llvm::tie(stateTrue, stateFalse) =
440 state->assume(svalBuilder.evalEQ(state, *firstLoc, *secondLoc));
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000441
442 if (stateTrue && !stateFalse) {
443 // If the values are known to be equal, that's automatically an overlap.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000444 emitOverlapBug(C, stateTrue, First, Second);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000445 return NULL;
446 }
447
Ted Kremenek28f47b92010-12-01 22:16:56 +0000448 // assume the two expressions are not equal.
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000449 assert(stateFalse);
450 state = stateFalse;
451
452 // Which value comes first?
Jordy Roseee2fde12011-06-16 05:56:50 +0000453 QualType cmpTy = svalBuilder.getConditionType();
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000454 SVal reverse = svalBuilder.evalBinOpLL(state, BO_GT,
455 *firstLoc, *secondLoc, cmpTy);
David Blaikiedc84cd52013-02-20 22:23:23 +0000456 Optional<DefinedOrUnknownSVal> reverseTest =
David Blaikie5251abe2013-02-20 05:52:05 +0000457 reverse.getAs<DefinedOrUnknownSVal>();
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000458 if (!reverseTest)
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000459 return state;
460
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000461 llvm::tie(stateTrue, stateFalse) = state->assume(*reverseTest);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000462 if (stateTrue) {
463 if (stateFalse) {
464 // If we don't know which one comes first, we can't perform this test.
465 return state;
466 } else {
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000467 // Switch the values so that firstVal is before secondVal.
David Blaikie5251abe2013-02-20 05:52:05 +0000468 std::swap(firstLoc, secondLoc);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000469
470 // Switch the Exprs as well, so that they still correspond.
David Blaikie5251abe2013-02-20 05:52:05 +0000471 std::swap(First, Second);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000472 }
473 }
474
475 // Get the length, and make sure it too is known.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000476 SVal LengthVal = state->getSVal(Size, LCtx);
David Blaikiedc84cd52013-02-20 22:23:23 +0000477 Optional<NonLoc> Length = LengthVal.getAs<NonLoc>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000478 if (!Length)
479 return state;
480
481 // Convert the first buffer's start address to char*.
482 // Bail out if the cast fails.
Jordy Roseee2fde12011-06-16 05:56:50 +0000483 ASTContext &Ctx = svalBuilder.getContext();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000484 QualType CharPtrTy = Ctx.getPointerType(Ctx.CharTy);
Jordy Rose1e022412011-06-16 05:51:02 +0000485 SVal FirstStart = svalBuilder.evalCast(*firstLoc, CharPtrTy,
486 First->getType());
David Blaikiedc84cd52013-02-20 22:23:23 +0000487 Optional<Loc> FirstStartLoc = FirstStart.getAs<Loc>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000488 if (!FirstStartLoc)
489 return state;
490
491 // Compute the end of the first buffer. Bail out if THAT fails.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000492 SVal FirstEnd = svalBuilder.evalBinOpLN(state, BO_Add,
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000493 *FirstStartLoc, *Length, CharPtrTy);
David Blaikiedc84cd52013-02-20 22:23:23 +0000494 Optional<Loc> FirstEndLoc = FirstEnd.getAs<Loc>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000495 if (!FirstEndLoc)
496 return state;
497
498 // Is the end of the first buffer past the start of the second buffer?
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000499 SVal Overlap = svalBuilder.evalBinOpLL(state, BO_GT,
500 *FirstEndLoc, *secondLoc, cmpTy);
David Blaikiedc84cd52013-02-20 22:23:23 +0000501 Optional<DefinedOrUnknownSVal> OverlapTest =
David Blaikie5251abe2013-02-20 05:52:05 +0000502 Overlap.getAs<DefinedOrUnknownSVal>();
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000503 if (!OverlapTest)
504 return state;
505
Ted Kremenek28f47b92010-12-01 22:16:56 +0000506 llvm::tie(stateTrue, stateFalse) = state->assume(*OverlapTest);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000507
508 if (stateTrue && !stateFalse) {
509 // Overlap!
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000510 emitOverlapBug(C, stateTrue, First, Second);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000511 return NULL;
512 }
513
Ted Kremenek28f47b92010-12-01 22:16:56 +0000514 // assume the two expressions don't overlap.
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000515 assert(stateFalse);
516 return stateFalse;
517}
518
Ted Kremenek8bef8232012-01-26 21:29:00 +0000519void CStringChecker::emitOverlapBug(CheckerContext &C, ProgramStateRef state,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000520 const Stmt *First, const Stmt *Second) const {
Ted Kremenekd048c6e2010-12-20 21:19:09 +0000521 ExplodedNode *N = C.generateSink(state);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000522 if (!N)
523 return;
524
525 if (!BT_Overlap)
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000526 BT_Overlap.reset(new BugType("Unix API", "Improper arguments"));
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000527
528 // Generate a report for this bug.
Anna Zakse172e8b2011-08-17 23:00:25 +0000529 BugReport *report =
530 new BugReport(*BT_Overlap,
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000531 "Arguments must not be overlapping buffers", N);
532 report->addRange(First->getSourceRange());
533 report->addRange(Second->getSourceRange());
534
Jordan Rose785950e2012-11-02 01:53:40 +0000535 C.emitReport(report);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000536}
537
Ted Kremenek8bef8232012-01-26 21:29:00 +0000538ProgramStateRef CStringChecker::checkAdditionOverflow(CheckerContext &C,
539 ProgramStateRef state,
Jordy Rosed5af0e12011-06-15 05:52:56 +0000540 NonLoc left,
541 NonLoc right) const {
Anna Zaks57300762012-02-07 00:56:14 +0000542 // If out-of-bounds checking is turned off, skip the rest.
543 if (!Filter.CheckCStringOutOfBounds)
544 return state;
545
Jordy Rosed5af0e12011-06-15 05:52:56 +0000546 // If a previous check has failed, propagate the failure.
547 if (!state)
548 return NULL;
549
550 SValBuilder &svalBuilder = C.getSValBuilder();
551 BasicValueFactory &BVF = svalBuilder.getBasicValueFactory();
552
553 QualType sizeTy = svalBuilder.getContext().getSizeType();
554 const llvm::APSInt &maxValInt = BVF.getMaxValue(sizeTy);
555 NonLoc maxVal = svalBuilder.makeIntVal(maxValInt);
556
Anna Zakse3d250e2011-12-11 18:43:40 +0000557 SVal maxMinusRight;
David Blaikie5251abe2013-02-20 05:52:05 +0000558 if (right.getAs<nonloc::ConcreteInt>()) {
Anna Zakse3d250e2011-12-11 18:43:40 +0000559 maxMinusRight = svalBuilder.evalBinOpNN(state, BO_Sub, maxVal, right,
560 sizeTy);
561 } else {
Jordy Rosed5af0e12011-06-15 05:52:56 +0000562 // Try switching the operands. (The order of these two assignments is
563 // important!)
564 maxMinusRight = svalBuilder.evalBinOpNN(state, BO_Sub, maxVal, left,
565 sizeTy);
566 left = right;
567 }
568
David Blaikiedc84cd52013-02-20 22:23:23 +0000569 if (Optional<NonLoc> maxMinusRightNL = maxMinusRight.getAs<NonLoc>()) {
Jordy Rosed5af0e12011-06-15 05:52:56 +0000570 QualType cmpTy = svalBuilder.getConditionType();
571 // If left > max - right, we have an overflow.
572 SVal willOverflow = svalBuilder.evalBinOpNN(state, BO_GT, left,
573 *maxMinusRightNL, cmpTy);
574
Ted Kremenek8bef8232012-01-26 21:29:00 +0000575 ProgramStateRef stateOverflow, stateOkay;
Jordy Rosed5af0e12011-06-15 05:52:56 +0000576 llvm::tie(stateOverflow, stateOkay) =
David Blaikie5251abe2013-02-20 05:52:05 +0000577 state->assume(willOverflow.castAs<DefinedOrUnknownSVal>());
Jordy Rosed5af0e12011-06-15 05:52:56 +0000578
579 if (stateOverflow && !stateOkay) {
580 // We have an overflow. Emit a bug report.
581 ExplodedNode *N = C.generateSink(stateOverflow);
582 if (!N)
583 return NULL;
584
585 if (!BT_AdditionOverflow)
586 BT_AdditionOverflow.reset(new BuiltinBug("API",
587 "Sum of expressions causes overflow"));
588
Jordy Rosed5af0e12011-06-15 05:52:56 +0000589 // This isn't a great error message, but this should never occur in real
590 // code anyway -- you'd have to create a buffer longer than a size_t can
591 // represent, which is sort of a contradiction.
Jordy Rose8cc24912011-06-20 03:51:53 +0000592 const char *warning =
593 "This expression will create a string whose length is too big to "
594 "be represented as a size_t";
Jordy Rosed5af0e12011-06-15 05:52:56 +0000595
596 // Generate a report for this bug.
Jordy Rose8cc24912011-06-20 03:51:53 +0000597 BugReport *report = new BugReport(*BT_AdditionOverflow, warning, N);
Jordan Rose785950e2012-11-02 01:53:40 +0000598 C.emitReport(report);
Jordy Rosed5af0e12011-06-15 05:52:56 +0000599
600 return NULL;
601 }
602
603 // From now on, assume an overflow didn't occur.
604 assert(stateOkay);
605 state = stateOkay;
606 }
607
608 return state;
609}
610
Ted Kremenek8bef8232012-01-26 21:29:00 +0000611ProgramStateRef CStringChecker::setCStringLength(ProgramStateRef state,
Jordy Rosee64f3112010-08-16 07:51:42 +0000612 const MemRegion *MR,
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000613 SVal strLength) {
614 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
Jordy Rosee64f3112010-08-16 07:51:42 +0000615
616 MR = MR->StripCasts();
617
618 switch (MR->getKind()) {
619 case MemRegion::StringRegionKind:
620 // FIXME: This can happen if we strcpy() into a string region. This is
621 // undefined [C99 6.4.5p6], but we should still warn about it.
622 return state;
623
624 case MemRegion::SymbolicRegionKind:
625 case MemRegion::AllocaRegionKind:
626 case MemRegion::VarRegionKind:
627 case MemRegion::FieldRegionKind:
628 case MemRegion::ObjCIvarRegionKind:
Jordy Rose210c05b2011-06-15 05:14:03 +0000629 // These are the types we can currently track string lengths for.
630 break;
Jordy Rosee64f3112010-08-16 07:51:42 +0000631
632 case MemRegion::ElementRegionKind:
633 // FIXME: Handle element regions by upper-bounding the parent region's
634 // string length.
635 return state;
636
637 default:
638 // Other regions (mostly non-data) can't have a reliable C string length.
639 // For now, just ignore the change.
640 // FIXME: These are rare but not impossible. We should output some kind of
641 // warning for things like strcpy((char[]){'a', 0}, "b");
642 return state;
643 }
Jordy Rose210c05b2011-06-15 05:14:03 +0000644
645 if (strLength.isUnknown())
646 return state->remove<CStringLength>(MR);
647
648 return state->set<CStringLength>(MR, strLength);
Jordy Rosee64f3112010-08-16 07:51:42 +0000649}
650
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000651SVal CStringChecker::getCStringLengthForRegion(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000652 ProgramStateRef &state,
Jordy Rosea5261542010-08-14 21:02:52 +0000653 const Expr *Ex,
Jordy Rosed5af0e12011-06-15 05:52:56 +0000654 const MemRegion *MR,
655 bool hypothetical) {
656 if (!hypothetical) {
657 // If there's a recorded length, go ahead and return it.
658 const SVal *Recorded = state->get<CStringLength>(MR);
659 if (Recorded)
660 return *Recorded;
661 }
Jordy Rosea5261542010-08-14 21:02:52 +0000662
663 // Otherwise, get a new symbol and update the state.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000664 SValBuilder &svalBuilder = C.getSValBuilder();
665 QualType sizeTy = svalBuilder.getContext().getSizeType();
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000666 SVal strLength = svalBuilder.getMetadataSymbolVal(CStringChecker::getTag(),
Ted Kremenek66c486f2012-08-22 06:26:15 +0000667 MR, Ex, sizeTy,
668 C.blockCount());
Jordy Rosed5af0e12011-06-15 05:52:56 +0000669
670 if (!hypothetical)
671 state = state->set<CStringLength>(MR, strLength);
672
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000673 return strLength;
Jordy Rosea5261542010-08-14 21:02:52 +0000674}
675
Ted Kremenek8bef8232012-01-26 21:29:00 +0000676SVal CStringChecker::getCStringLength(CheckerContext &C, ProgramStateRef &state,
Jordy Rosed5af0e12011-06-15 05:52:56 +0000677 const Expr *Ex, SVal Buf,
678 bool hypothetical) const {
Jordy Rose19c5dd12010-07-27 01:37:31 +0000679 const MemRegion *MR = Buf.getAsRegion();
680 if (!MR) {
681 // If we can't get a region, see if it's something we /know/ isn't a
682 // C string. In the context of locations, the only time we can issue such
683 // a warning is for labels.
David Blaikiedc84cd52013-02-20 22:23:23 +0000684 if (Optional<loc::GotoLabel> Label = Buf.getAs<loc::GotoLabel>()) {
Anna Zaks57300762012-02-07 00:56:14 +0000685 if (!Filter.CheckCStringNotNullTerm)
686 return UndefinedVal();
687
Anna Zaks0bd6b112011-10-26 21:06:34 +0000688 if (ExplodedNode *N = C.addTransition(state)) {
Jordy Rose19c5dd12010-07-27 01:37:31 +0000689 if (!BT_NotCString)
Anna Zaks57300762012-02-07 00:56:14 +0000690 BT_NotCString.reset(new BuiltinBug("Unix API",
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000691 "Argument is not a null-terminated string."));
Jordy Rose19c5dd12010-07-27 01:37:31 +0000692
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000693 SmallString<120> buf;
Jordy Rose19c5dd12010-07-27 01:37:31 +0000694 llvm::raw_svector_ostream os(buf);
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000695 assert(CurrentFunctionDescription);
696 os << "Argument to " << CurrentFunctionDescription
697 << " is the address of the label '" << Label->getLabel()->getName()
Jordy Rose19c5dd12010-07-27 01:37:31 +0000698 << "', which is not a null-terminated string";
699
700 // Generate a report for this bug.
Anna Zakse172e8b2011-08-17 23:00:25 +0000701 BugReport *report = new BugReport(*BT_NotCString,
Jordy Rose19c5dd12010-07-27 01:37:31 +0000702 os.str(), N);
703
704 report->addRange(Ex->getSourceRange());
Jordan Rose785950e2012-11-02 01:53:40 +0000705 C.emitReport(report);
Jordy Rose19c5dd12010-07-27 01:37:31 +0000706 }
Jordy Rose19c5dd12010-07-27 01:37:31 +0000707 return UndefinedVal();
Anna Zaks57300762012-02-07 00:56:14 +0000708
Jordy Rose19c5dd12010-07-27 01:37:31 +0000709 }
710
Jordy Rosea5261542010-08-14 21:02:52 +0000711 // If it's not a region and not a label, give up.
712 return UnknownVal();
Jordy Rose19c5dd12010-07-27 01:37:31 +0000713 }
714
Jordy Rosea5261542010-08-14 21:02:52 +0000715 // If we have a region, strip casts from it and see if we can figure out
716 // its length. For anything we can't figure out, just return UnknownVal.
717 MR = MR->StripCasts();
718
719 switch (MR->getKind()) {
720 case MemRegion::StringRegionKind: {
721 // Modifying the contents of string regions is undefined [C99 6.4.5p6],
722 // so we can assume that the byte length is the correct C string length.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000723 SValBuilder &svalBuilder = C.getSValBuilder();
724 QualType sizeTy = svalBuilder.getContext().getSizeType();
725 const StringLiteral *strLit = cast<StringRegion>(MR)->getStringLiteral();
726 return svalBuilder.makeIntVal(strLit->getByteLength(), sizeTy);
Jordy Rosea5261542010-08-14 21:02:52 +0000727 }
728 case MemRegion::SymbolicRegionKind:
729 case MemRegion::AllocaRegionKind:
730 case MemRegion::VarRegionKind:
731 case MemRegion::FieldRegionKind:
732 case MemRegion::ObjCIvarRegionKind:
Jordy Rosed5af0e12011-06-15 05:52:56 +0000733 return getCStringLengthForRegion(C, state, Ex, MR, hypothetical);
Jordy Rosea5261542010-08-14 21:02:52 +0000734 case MemRegion::CompoundLiteralRegionKind:
735 // FIXME: Can we track this? Is it necessary?
736 return UnknownVal();
737 case MemRegion::ElementRegionKind:
738 // FIXME: How can we handle this? It's not good enough to subtract the
739 // offset from the base string length; consider "123\x00567" and &a[5].
740 return UnknownVal();
741 default:
742 // Other regions (mostly non-data) can't have a reliable C string length.
743 // In this case, an error is emitted and UndefinedVal is returned.
744 // The caller should always be prepared to handle this case.
Anna Zaks57300762012-02-07 00:56:14 +0000745 if (!Filter.CheckCStringNotNullTerm)
746 return UndefinedVal();
747
Anna Zaks0bd6b112011-10-26 21:06:34 +0000748 if (ExplodedNode *N = C.addTransition(state)) {
Jordy Rosea5261542010-08-14 21:02:52 +0000749 if (!BT_NotCString)
Anna Zaks57300762012-02-07 00:56:14 +0000750 BT_NotCString.reset(new BuiltinBug("Unix API",
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000751 "Argument is not a null-terminated string."));
Jordy Rosea5261542010-08-14 21:02:52 +0000752
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000753 SmallString<120> buf;
Jordy Rosea5261542010-08-14 21:02:52 +0000754 llvm::raw_svector_ostream os(buf);
755
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000756 assert(CurrentFunctionDescription);
757 os << "Argument to " << CurrentFunctionDescription << " is ";
Jordy Rosea5261542010-08-14 21:02:52 +0000758
759 if (SummarizeRegion(os, C.getASTContext(), MR))
760 os << ", which is not a null-terminated string";
761 else
762 os << "not a null-terminated string";
763
764 // Generate a report for this bug.
Anna Zakse172e8b2011-08-17 23:00:25 +0000765 BugReport *report = new BugReport(*BT_NotCString,
Jordy Rosea5261542010-08-14 21:02:52 +0000766 os.str(), N);
767
768 report->addRange(Ex->getSourceRange());
Jordan Rose785950e2012-11-02 01:53:40 +0000769 C.emitReport(report);
Jordy Rosea5261542010-08-14 21:02:52 +0000770 }
771
772 return UndefinedVal();
773 }
Jordy Rose19c5dd12010-07-27 01:37:31 +0000774}
775
Lenny Maiorani318dd922011-04-12 17:08:43 +0000776const StringLiteral *CStringChecker::getCStringLiteral(CheckerContext &C,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000777 ProgramStateRef &state, const Expr *expr, SVal val) const {
Lenny Maiorani318dd922011-04-12 17:08:43 +0000778
779 // Get the memory region pointed to by the val.
780 const MemRegion *bufRegion = val.getAsRegion();
781 if (!bufRegion)
782 return NULL;
783
784 // Strip casts off the memory region.
785 bufRegion = bufRegion->StripCasts();
786
787 // Cast the memory region to a string region.
788 const StringRegion *strRegion= dyn_cast<StringRegion>(bufRegion);
789 if (!strRegion)
790 return NULL;
791
792 // Return the actual string in the string region.
793 return strRegion->getStringLiteral();
794}
795
Ted Kremenek8bef8232012-01-26 21:29:00 +0000796ProgramStateRef CStringChecker::InvalidateBuffer(CheckerContext &C,
797 ProgramStateRef state,
Jordy Rosee64f3112010-08-16 07:51:42 +0000798 const Expr *E, SVal V) {
David Blaikiedc84cd52013-02-20 22:23:23 +0000799 Optional<Loc> L = V.getAs<Loc>();
Jordy Rosee64f3112010-08-16 07:51:42 +0000800 if (!L)
801 return state;
802
803 // FIXME: This is a simplified version of what's in CFRefCount.cpp -- it makes
804 // some assumptions about the value that CFRefCount can't. Even so, it should
805 // probably be refactored.
David Blaikiedc84cd52013-02-20 22:23:23 +0000806 if (Optional<loc::MemRegionVal> MR = L->getAs<loc::MemRegionVal>()) {
Jordy Rosee64f3112010-08-16 07:51:42 +0000807 const MemRegion *R = MR->getRegion()->StripCasts();
808
809 // Are we dealing with an ElementRegion? If so, we should be invalidating
810 // the super-region.
811 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
812 R = ER->getSuperRegion();
813 // FIXME: What about layers of ElementRegions?
814 }
815
816 // Invalidate this region.
Ted Kremenek3133f792012-02-17 23:13:45 +0000817 const LocationContext *LCtx = C.getPredecessor()->getLocationContext();
Anna Zaksbf53dfa2012-12-20 00:38:25 +0000818 return state->invalidateRegions(R, E, C.blockCount(), LCtx,
Anna Zaks64eb0702013-01-16 01:35:54 +0000819 /*CausesPointerEscape*/ false);
Jordy Rosee64f3112010-08-16 07:51:42 +0000820 }
821
822 // If we have a non-region value by chance, just remove the binding.
823 // FIXME: is this necessary or correct? This handles the non-Region
824 // cases. Is it ever valid to store to these?
Ted Kremenek56a46b52012-08-22 06:37:46 +0000825 return state->killBinding(*L);
Jordy Rosee64f3112010-08-16 07:51:42 +0000826}
827
Ted Kremenek9c378f72011-08-12 23:37:29 +0000828bool CStringChecker::SummarizeRegion(raw_ostream &os, ASTContext &Ctx,
Jordy Rose19c5dd12010-07-27 01:37:31 +0000829 const MemRegion *MR) {
Ted Kremenek96979342011-08-12 20:02:48 +0000830 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR);
Jordy Rose19c5dd12010-07-27 01:37:31 +0000831
Jordy Rose096aef92011-08-12 21:41:07 +0000832 switch (MR->getKind()) {
Jordy Rose19c5dd12010-07-27 01:37:31 +0000833 case MemRegion::FunctionTextRegionKind: {
Anna Zaks5fc1d0c2012-09-17 19:13:56 +0000834 const NamedDecl *FD = cast<FunctionTextRegion>(MR)->getDecl();
Jordy Rose19c5dd12010-07-27 01:37:31 +0000835 if (FD)
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000836 os << "the address of the function '" << *FD << '\'';
Jordy Rose19c5dd12010-07-27 01:37:31 +0000837 else
838 os << "the address of a function";
839 return true;
840 }
841 case MemRegion::BlockTextRegionKind:
842 os << "block text";
843 return true;
844 case MemRegion::BlockDataRegionKind:
845 os << "a block";
846 return true;
847 case MemRegion::CXXThisRegionKind:
Zhongxing Xu02fe28c2010-11-26 08:52:48 +0000848 case MemRegion::CXXTempObjectRegionKind:
Ted Kremenek96979342011-08-12 20:02:48 +0000849 os << "a C++ temp object of type " << TVR->getValueType().getAsString();
Jordy Rose19c5dd12010-07-27 01:37:31 +0000850 return true;
851 case MemRegion::VarRegionKind:
Ted Kremenek96979342011-08-12 20:02:48 +0000852 os << "a variable of type" << TVR->getValueType().getAsString();
Jordy Rose19c5dd12010-07-27 01:37:31 +0000853 return true;
854 case MemRegion::FieldRegionKind:
Ted Kremenek96979342011-08-12 20:02:48 +0000855 os << "a field of type " << TVR->getValueType().getAsString();
Jordy Rose19c5dd12010-07-27 01:37:31 +0000856 return true;
857 case MemRegion::ObjCIvarRegionKind:
Ted Kremenek96979342011-08-12 20:02:48 +0000858 os << "an instance variable of type " << TVR->getValueType().getAsString();
Jordy Rose19c5dd12010-07-27 01:37:31 +0000859 return true;
860 default:
861 return false;
862 }
863}
864
Jordy Rosed325ffb2010-07-08 23:57:29 +0000865//===----------------------------------------------------------------------===//
Ted Kremenek9c149532010-12-01 21:57:22 +0000866// evaluation of individual function calls.
Jordy Rosed325ffb2010-07-08 23:57:29 +0000867//===----------------------------------------------------------------------===//
868
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000869void CStringChecker::evalCopyCommon(CheckerContext &C,
870 const CallExpr *CE,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000871 ProgramStateRef state,
Jordy Rosed325ffb2010-07-08 23:57:29 +0000872 const Expr *Size, const Expr *Dest,
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000873 const Expr *Source, bool Restricted,
874 bool IsMempcpy) const {
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000875 CurrentFunctionDescription = "memory copy function";
876
Jordy Rosed325ffb2010-07-08 23:57:29 +0000877 // See if the size argument is zero.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000878 const LocationContext *LCtx = C.getLocationContext();
879 SVal sizeVal = state->getSVal(Size, LCtx);
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000880 QualType sizeTy = Size->getType();
Jordy Rosed325ffb2010-07-08 23:57:29 +0000881
Ted Kremenek8bef8232012-01-26 21:29:00 +0000882 ProgramStateRef stateZeroSize, stateNonZeroSize;
Jordy Rose1e022412011-06-16 05:51:02 +0000883 llvm::tie(stateZeroSize, stateNonZeroSize) =
884 assumeZero(C, state, sizeVal, sizeTy);
Jordy Rosed325ffb2010-07-08 23:57:29 +0000885
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000886 // Get the value of the Dest.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000887 SVal destVal = state->getSVal(Dest, LCtx);
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000888
889 // If the size is zero, there won't be any actual memory access, so
890 // just bind the return value to the destination buffer and return.
Anna Zaksdd160f32012-05-03 18:21:28 +0000891 if (stateZeroSize && !stateNonZeroSize) {
Ted Kremenek5eca4822012-01-06 22:09:28 +0000892 stateZeroSize = stateZeroSize->BindExpr(CE, LCtx, destVal);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000893 C.addTransition(stateZeroSize);
Anna Zaksdd160f32012-05-03 18:21:28 +0000894 return;
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000895 }
Jordy Rosed325ffb2010-07-08 23:57:29 +0000896
897 // If the size can be nonzero, we have to check the other arguments.
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000898 if (stateNonZeroSize) {
Jordy Rose22d27172011-06-04 00:04:22 +0000899 state = stateNonZeroSize;
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000900
901 // Ensure the destination is not null. If it is NULL there will be a
902 // NULL pointer dereference.
903 state = checkNonNull(C, state, Dest, destVal);
904 if (!state)
905 return;
906
907 // Get the value of the Src.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000908 SVal srcVal = state->getSVal(Source, LCtx);
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000909
910 // Ensure the source is not null. If it is NULL there will be a
911 // NULL pointer dereference.
912 state = checkNonNull(C, state, Source, srcVal);
913 if (!state)
914 return;
915
Jordy Rose7182b962011-06-04 01:50:25 +0000916 // Ensure the accesses are valid and that the buffers do not overlap.
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000917 const char * const writeWarning =
918 "Memory copy function overflows destination buffer";
Jordy Rosee64f3112010-08-16 07:51:42 +0000919 state = CheckBufferAccess(C, state, Size, Dest, Source,
Jordy Rose9e49d9f2011-06-20 02:06:40 +0000920 writeWarning, /* sourceWarning = */ NULL);
Jordy Rosed325ffb2010-07-08 23:57:29 +0000921 if (Restricted)
922 state = CheckOverlap(C, state, Size, Dest, Source);
Jordy Rosee64f3112010-08-16 07:51:42 +0000923
Jordy Rose7182b962011-06-04 01:50:25 +0000924 if (!state)
925 return;
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000926
Jordy Rose7182b962011-06-04 01:50:25 +0000927 // If this is mempcpy, get the byte after the last byte copied and
928 // bind the expr.
929 if (IsMempcpy) {
David Blaikie5251abe2013-02-20 05:52:05 +0000930 loc::MemRegionVal destRegVal = destVal.castAs<loc::MemRegionVal>();
Jordy Rose7182b962011-06-04 01:50:25 +0000931
932 // Get the length to copy.
David Blaikiedc84cd52013-02-20 22:23:23 +0000933 if (Optional<NonLoc> lenValNonLoc = sizeVal.getAs<NonLoc>()) {
Jordy Rose7182b962011-06-04 01:50:25 +0000934 // Get the byte after the last byte copied.
935 SVal lastElement = C.getSValBuilder().evalBinOpLN(state, BO_Add,
David Blaikie5251abe2013-02-20 05:52:05 +0000936 destRegVal,
Jordy Rose7182b962011-06-04 01:50:25 +0000937 *lenValNonLoc,
938 Dest->getType());
939
940 // The byte after the last byte copied is the return value.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000941 state = state->BindExpr(CE, LCtx, lastElement);
Jordy Rose3f8bb2f2011-06-04 01:47:27 +0000942 } else {
Jordy Rose7182b962011-06-04 01:50:25 +0000943 // If we don't know how much we copied, we can at least
944 // conjure a return value for later.
Ted Kremenek66c486f2012-08-22 06:26:15 +0000945 SVal result = C.getSValBuilder().conjureSymbolVal(0, CE, LCtx,
946 C.blockCount());
Ted Kremenek5eca4822012-01-06 22:09:28 +0000947 state = state->BindExpr(CE, LCtx, result);
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000948 }
949
Jordy Rose7182b962011-06-04 01:50:25 +0000950 } else {
951 // All other copies return the destination buffer.
952 // (Well, bcopy() has a void return type, but this won't hurt.)
Ted Kremenek5eca4822012-01-06 22:09:28 +0000953 state = state->BindExpr(CE, LCtx, destVal);
Jordy Rosee64f3112010-08-16 07:51:42 +0000954 }
Jordy Rose7182b962011-06-04 01:50:25 +0000955
956 // Invalidate the destination.
957 // FIXME: Even if we can't perfectly model the copy, we should see if we
958 // can use LazyCompoundVals to copy the source values into the destination.
959 // This would probably remove any existing bindings past the end of the
960 // copied region, but that's still an improvement over blank invalidation.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000961 state = InvalidateBuffer(C, state, Dest,
962 state->getSVal(Dest, C.getLocationContext()));
Anna Zaks0bd6b112011-10-26 21:06:34 +0000963 C.addTransition(state);
Jordy Rosed325ffb2010-07-08 23:57:29 +0000964 }
965}
966
967
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000968void CStringChecker::evalMemcpy(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +0000969 if (CE->getNumArgs() < 3)
970 return;
971
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000972 // void *memcpy(void *restrict dst, const void *restrict src, size_t n);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000973 // The return value is the address of the destination buffer.
Jordy Rosed325ffb2010-07-08 23:57:29 +0000974 const Expr *Dest = CE->getArg(0);
Ted Kremenek8bef8232012-01-26 21:29:00 +0000975 ProgramStateRef state = C.getState();
Jordy Rose3f8bb2f2011-06-04 01:47:27 +0000976
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000977 evalCopyCommon(C, CE, state, CE->getArg(2), Dest, CE->getArg(1), true);
978}
979
980void CStringChecker::evalMempcpy(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +0000981 if (CE->getNumArgs() < 3)
982 return;
983
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000984 // void *mempcpy(void *restrict dst, const void *restrict src, size_t n);
985 // The return value is a pointer to the byte following the last written byte.
986 const Expr *Dest = CE->getArg(0);
Ted Kremenek8bef8232012-01-26 21:29:00 +0000987 ProgramStateRef state = C.getState();
Lenny Maioranib8b875b2011-03-31 21:36:53 +0000988
989 evalCopyCommon(C, CE, state, CE->getArg(2), Dest, CE->getArg(1), true, true);
Jordy Roseccbf7ee2010-07-06 23:11:01 +0000990}
991
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +0000992void CStringChecker::evalMemmove(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +0000993 if (CE->getNumArgs() < 3)
994 return;
995
Jordy Rosed325ffb2010-07-08 23:57:29 +0000996 // void *memmove(void *dst, const void *src, size_t n);
997 // The return value is the address of the destination buffer.
998 const Expr *Dest = CE->getArg(0);
Ted Kremenek8bef8232012-01-26 21:29:00 +0000999 ProgramStateRef state = C.getState();
Jordy Rose3f8bb2f2011-06-04 01:47:27 +00001000
Lenny Maioranib8b875b2011-03-31 21:36:53 +00001001 evalCopyCommon(C, CE, state, CE->getArg(2), Dest, CE->getArg(1));
Jordy Rosed325ffb2010-07-08 23:57:29 +00001002}
1003
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001004void CStringChecker::evalBcopy(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001005 if (CE->getNumArgs() < 3)
1006 return;
1007
Jordy Rosed325ffb2010-07-08 23:57:29 +00001008 // void bcopy(const void *src, void *dst, size_t n);
Lenny Maioranib8b875b2011-03-31 21:36:53 +00001009 evalCopyCommon(C, CE, C.getState(),
1010 CE->getArg(2), CE->getArg(1), CE->getArg(0));
Jordy Rosed325ffb2010-07-08 23:57:29 +00001011}
1012
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001013void CStringChecker::evalMemcmp(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001014 if (CE->getNumArgs() < 3)
1015 return;
1016
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001017 // int memcmp(const void *s1, const void *s2, size_t n);
Jordy Rose9e49d9f2011-06-20 02:06:40 +00001018 CurrentFunctionDescription = "memory comparison function";
1019
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001020 const Expr *Left = CE->getArg(0);
1021 const Expr *Right = CE->getArg(1);
1022 const Expr *Size = CE->getArg(2);
1023
Ted Kremenek8bef8232012-01-26 21:29:00 +00001024 ProgramStateRef state = C.getState();
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001025 SValBuilder &svalBuilder = C.getSValBuilder();
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001026
Jordy Rosed325ffb2010-07-08 23:57:29 +00001027 // See if the size argument is zero.
Ted Kremenek5eca4822012-01-06 22:09:28 +00001028 const LocationContext *LCtx = C.getLocationContext();
1029 SVal sizeVal = state->getSVal(Size, LCtx);
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001030 QualType sizeTy = Size->getType();
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001031
Ted Kremenek8bef8232012-01-26 21:29:00 +00001032 ProgramStateRef stateZeroSize, stateNonZeroSize;
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001033 llvm::tie(stateZeroSize, stateNonZeroSize) =
1034 assumeZero(C, state, sizeVal, sizeTy);
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001035
Jordy Rosed325ffb2010-07-08 23:57:29 +00001036 // If the size can be zero, the result will be 0 in that case, and we don't
1037 // have to check either of the buffers.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001038 if (stateZeroSize) {
1039 state = stateZeroSize;
Ted Kremenek5eca4822012-01-06 22:09:28 +00001040 state = state->BindExpr(CE, LCtx,
1041 svalBuilder.makeZeroVal(CE->getType()));
Anna Zaks0bd6b112011-10-26 21:06:34 +00001042 C.addTransition(state);
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001043 }
1044
Jordy Rosed325ffb2010-07-08 23:57:29 +00001045 // If the size can be nonzero, we have to check the other arguments.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001046 if (stateNonZeroSize) {
1047 state = stateNonZeroSize;
Jordy Rosed325ffb2010-07-08 23:57:29 +00001048 // If we know the two buffers are the same, we know the result is 0.
1049 // First, get the two buffers' addresses. Another checker will have already
1050 // made sure they're not undefined.
Ted Kremenek5eca4822012-01-06 22:09:28 +00001051 DefinedOrUnknownSVal LV =
David Blaikie5251abe2013-02-20 05:52:05 +00001052 state->getSVal(Left, LCtx).castAs<DefinedOrUnknownSVal>();
Ted Kremenek5eca4822012-01-06 22:09:28 +00001053 DefinedOrUnknownSVal RV =
David Blaikie5251abe2013-02-20 05:52:05 +00001054 state->getSVal(Right, LCtx).castAs<DefinedOrUnknownSVal>();
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001055
Jordy Rosed325ffb2010-07-08 23:57:29 +00001056 // See if they are the same.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001057 DefinedOrUnknownSVal SameBuf = svalBuilder.evalEQ(state, LV, RV);
Ted Kremenek8bef8232012-01-26 21:29:00 +00001058 ProgramStateRef StSameBuf, StNotSameBuf;
Ted Kremenek28f47b92010-12-01 22:16:56 +00001059 llvm::tie(StSameBuf, StNotSameBuf) = state->assume(SameBuf);
Jordy Rosed325ffb2010-07-08 23:57:29 +00001060
Jordy Rose1e022412011-06-16 05:51:02 +00001061 // If the two arguments might be the same buffer, we know the result is 0,
Jordy Rosed325ffb2010-07-08 23:57:29 +00001062 // and we only need to check one size.
1063 if (StSameBuf) {
1064 state = StSameBuf;
1065 state = CheckBufferAccess(C, state, Size, Left);
1066 if (state) {
Ted Kremenek5eca4822012-01-06 22:09:28 +00001067 state = StSameBuf->BindExpr(CE, LCtx,
1068 svalBuilder.makeZeroVal(CE->getType()));
Anna Zaks0bd6b112011-10-26 21:06:34 +00001069 C.addTransition(state);
Jordy Rosed325ffb2010-07-08 23:57:29 +00001070 }
1071 }
1072
1073 // If the two arguments might be different buffers, we have to check the
1074 // size of both of them.
1075 if (StNotSameBuf) {
1076 state = StNotSameBuf;
1077 state = CheckBufferAccess(C, state, Size, Left, Right);
1078 if (state) {
1079 // The return value is the comparison result, which we don't know.
Ted Kremenek66c486f2012-08-22 06:26:15 +00001080 SVal CmpV = svalBuilder.conjureSymbolVal(0, CE, LCtx, C.blockCount());
Ted Kremenek5eca4822012-01-06 22:09:28 +00001081 state = state->BindExpr(CE, LCtx, CmpV);
Anna Zaks0bd6b112011-10-26 21:06:34 +00001082 C.addTransition(state);
Jordy Rosed325ffb2010-07-08 23:57:29 +00001083 }
1084 }
1085 }
Jordy Rosebc56d1f2010-07-07 08:15:01 +00001086}
1087
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001088void CStringChecker::evalstrLength(CheckerContext &C,
1089 const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001090 if (CE->getNumArgs() < 1)
1091 return;
1092
Jordy Rose19c5dd12010-07-27 01:37:31 +00001093 // size_t strlen(const char *s);
Ted Kremenekbe4242c2011-02-22 04:55:05 +00001094 evalstrLengthCommon(C, CE, /* IsStrnlen = */ false);
1095}
1096
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001097void CStringChecker::evalstrnLength(CheckerContext &C,
1098 const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001099 if (CE->getNumArgs() < 2)
1100 return;
1101
Ted Kremenekbe4242c2011-02-22 04:55:05 +00001102 // size_t strnlen(const char *s, size_t maxlen);
1103 evalstrLengthCommon(C, CE, /* IsStrnlen = */ true);
1104}
1105
1106void CStringChecker::evalstrLengthCommon(CheckerContext &C, const CallExpr *CE,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001107 bool IsStrnlen) const {
Jordy Rose9e49d9f2011-06-20 02:06:40 +00001108 CurrentFunctionDescription = "string length function";
Ted Kremenek8bef8232012-01-26 21:29:00 +00001109 ProgramStateRef state = C.getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +00001110 const LocationContext *LCtx = C.getLocationContext();
Jordy Rose793bff32011-06-14 01:15:31 +00001111
1112 if (IsStrnlen) {
1113 const Expr *maxlenExpr = CE->getArg(1);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001114 SVal maxlenVal = state->getSVal(maxlenExpr, LCtx);
Jordy Rose793bff32011-06-14 01:15:31 +00001115
Ted Kremenek8bef8232012-01-26 21:29:00 +00001116 ProgramStateRef stateZeroSize, stateNonZeroSize;
Jordy Rose793bff32011-06-14 01:15:31 +00001117 llvm::tie(stateZeroSize, stateNonZeroSize) =
1118 assumeZero(C, state, maxlenVal, maxlenExpr->getType());
1119
1120 // If the size can be zero, the result will be 0 in that case, and we don't
1121 // have to check the string itself.
1122 if (stateZeroSize) {
1123 SVal zero = C.getSValBuilder().makeZeroVal(CE->getType());
Ted Kremenek5eca4822012-01-06 22:09:28 +00001124 stateZeroSize = stateZeroSize->BindExpr(CE, LCtx, zero);
Anna Zaks0bd6b112011-10-26 21:06:34 +00001125 C.addTransition(stateZeroSize);
Jordy Rose793bff32011-06-14 01:15:31 +00001126 }
1127
1128 // If the size is GUARANTEED to be zero, we're done!
1129 if (!stateNonZeroSize)
1130 return;
1131
1132 // Otherwise, record the assumption that the size is nonzero.
1133 state = stateNonZeroSize;
1134 }
1135
1136 // Check that the string argument is non-null.
Jordy Rose19c5dd12010-07-27 01:37:31 +00001137 const Expr *Arg = CE->getArg(0);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001138 SVal ArgVal = state->getSVal(Arg, LCtx);
Jordy Rose19c5dd12010-07-27 01:37:31 +00001139
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001140 state = checkNonNull(C, state, Arg, ArgVal);
Jordy Rose19c5dd12010-07-27 01:37:31 +00001141
Jordy Rosebd32bee2011-06-14 01:26:48 +00001142 if (!state)
1143 return;
Jordy Rosea5261542010-08-14 21:02:52 +00001144
Jordy Rosebd32bee2011-06-14 01:26:48 +00001145 SVal strLength = getCStringLength(C, state, Arg, ArgVal);
Jordy Rosea5261542010-08-14 21:02:52 +00001146
Jordy Rosebd32bee2011-06-14 01:26:48 +00001147 // If the argument isn't a valid C string, there's no valid state to
1148 // transition to.
1149 if (strLength.isUndef())
1150 return;
Jordy Rose793bff32011-06-14 01:15:31 +00001151
Jordy Rosebd32bee2011-06-14 01:26:48 +00001152 DefinedOrUnknownSVal result = UnknownVal();
Jordy Rose793bff32011-06-14 01:15:31 +00001153
Jordy Rosebd32bee2011-06-14 01:26:48 +00001154 // If the check is for strnlen() then bind the return value to no more than
1155 // the maxlen value.
1156 if (IsStrnlen) {
Jordy Roseee2fde12011-06-16 05:56:50 +00001157 QualType cmpTy = C.getSValBuilder().getConditionType();
Jordy Rose793bff32011-06-14 01:15:31 +00001158
Jordy Rosebd32bee2011-06-14 01:26:48 +00001159 // It's a little unfortunate to be getting this again,
1160 // but it's not that expensive...
1161 const Expr *maxlenExpr = CE->getArg(1);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001162 SVal maxlenVal = state->getSVal(maxlenExpr, LCtx);
Ted Kremenekbe4242c2011-02-22 04:55:05 +00001163
David Blaikiedc84cd52013-02-20 22:23:23 +00001164 Optional<NonLoc> strLengthNL = strLength.getAs<NonLoc>();
1165 Optional<NonLoc> maxlenValNL = maxlenVal.getAs<NonLoc>();
Ted Kremenekbe4242c2011-02-22 04:55:05 +00001166
Jordy Rosebd32bee2011-06-14 01:26:48 +00001167 if (strLengthNL && maxlenValNL) {
Ted Kremenek8bef8232012-01-26 21:29:00 +00001168 ProgramStateRef stateStringTooLong, stateStringNotTooLong;
Jordy Rose793bff32011-06-14 01:15:31 +00001169
Jordy Rosebd32bee2011-06-14 01:26:48 +00001170 // Check if the strLength is greater than the maxlen.
1171 llvm::tie(stateStringTooLong, stateStringNotTooLong) =
David Blaikie5251abe2013-02-20 05:52:05 +00001172 state->assume(C.getSValBuilder().evalBinOpNN(
1173 state, BO_GT, *strLengthNL, *maxlenValNL, cmpTy)
1174 .castAs<DefinedOrUnknownSVal>());
Jordy Rose793bff32011-06-14 01:15:31 +00001175
Jordy Rosebd32bee2011-06-14 01:26:48 +00001176 if (stateStringTooLong && !stateStringNotTooLong) {
1177 // If the string is longer than maxlen, return maxlen.
1178 result = *maxlenValNL;
1179 } else if (stateStringNotTooLong && !stateStringTooLong) {
1180 // If the string is shorter than maxlen, return its length.
1181 result = *strLengthNL;
Ted Kremenekbe4242c2011-02-22 04:55:05 +00001182 }
1183 }
1184
Jordy Rosebd32bee2011-06-14 01:26:48 +00001185 if (result.isUnknown()) {
1186 // If we don't have enough information for a comparison, there's
1187 // no guarantee the full string length will actually be returned.
1188 // All we know is the return value is the min of the string length
1189 // and the limit. This is better than nothing.
Ted Kremenek66c486f2012-08-22 06:26:15 +00001190 result = C.getSValBuilder().conjureSymbolVal(0, CE, LCtx, C.blockCount());
David Blaikie5251abe2013-02-20 05:52:05 +00001191 NonLoc resultNL = result.castAs<NonLoc>();
Jordy Rosebd32bee2011-06-14 01:26:48 +00001192
1193 if (strLengthNL) {
David Blaikie5251abe2013-02-20 05:52:05 +00001194 state = state->assume(C.getSValBuilder().evalBinOpNN(
1195 state, BO_LE, resultNL, *strLengthNL, cmpTy)
1196 .castAs<DefinedOrUnknownSVal>(), true);
Jordy Rosebd32bee2011-06-14 01:26:48 +00001197 }
1198
1199 if (maxlenValNL) {
David Blaikie5251abe2013-02-20 05:52:05 +00001200 state = state->assume(C.getSValBuilder().evalBinOpNN(
1201 state, BO_LE, resultNL, *maxlenValNL, cmpTy)
1202 .castAs<DefinedOrUnknownSVal>(), true);
Jordy Rosebd32bee2011-06-14 01:26:48 +00001203 }
1204 }
1205
1206 } else {
1207 // This is a plain strlen(), not strnlen().
David Blaikie5251abe2013-02-20 05:52:05 +00001208 result = strLength.castAs<DefinedOrUnknownSVal>();
Jordy Rosebd32bee2011-06-14 01:26:48 +00001209
1210 // If we don't know the length of the string, conjure a return
1211 // value, so it can be used in constraints, at least.
1212 if (result.isUnknown()) {
Ted Kremenek66c486f2012-08-22 06:26:15 +00001213 result = C.getSValBuilder().conjureSymbolVal(0, CE, LCtx, C.blockCount());
Jordy Rosebd32bee2011-06-14 01:26:48 +00001214 }
Jordy Rose19c5dd12010-07-27 01:37:31 +00001215 }
Jordy Rosebd32bee2011-06-14 01:26:48 +00001216
1217 // Bind the return value.
1218 assert(!result.isUnknown() && "Should have conjured a value by now");
Ted Kremenek5eca4822012-01-06 22:09:28 +00001219 state = state->BindExpr(CE, LCtx, result);
Anna Zaks0bd6b112011-10-26 21:06:34 +00001220 C.addTransition(state);
Jordy Rose19c5dd12010-07-27 01:37:31 +00001221}
1222
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001223void CStringChecker::evalStrcpy(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001224 if (CE->getNumArgs() < 2)
1225 return;
1226
Jordy Rosee64f3112010-08-16 07:51:42 +00001227 // char *strcpy(char *restrict dst, const char *restrict src);
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001228 evalStrcpyCommon(C, CE,
1229 /* returnEnd = */ false,
1230 /* isBounded = */ false,
1231 /* isAppending = */ false);
Ted Kremenek0ef473f2011-02-22 04:58:34 +00001232}
1233
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001234void CStringChecker::evalStrncpy(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001235 if (CE->getNumArgs() < 3)
1236 return;
1237
Jordy Rosec1525862011-06-04 00:05:23 +00001238 // char *strncpy(char *restrict dst, const char *restrict src, size_t n);
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001239 evalStrcpyCommon(C, CE,
1240 /* returnEnd = */ false,
1241 /* isBounded = */ true,
1242 /* isAppending = */ false);
Jordy Rosee64f3112010-08-16 07:51:42 +00001243}
1244
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001245void CStringChecker::evalStpcpy(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001246 if (CE->getNumArgs() < 2)
1247 return;
1248
Jordy Rosee64f3112010-08-16 07:51:42 +00001249 // char *stpcpy(char *restrict dst, const char *restrict src);
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001250 evalStrcpyCommon(C, CE,
1251 /* returnEnd = */ true,
1252 /* isBounded = */ false,
1253 /* isAppending = */ false);
1254}
1255
1256void CStringChecker::evalStrcat(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001257 if (CE->getNumArgs() < 2)
1258 return;
1259
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001260 //char *strcat(char *restrict s1, const char *restrict s2);
1261 evalStrcpyCommon(C, CE,
1262 /* returnEnd = */ false,
1263 /* isBounded = */ false,
1264 /* isAppending = */ true);
1265}
1266
1267void CStringChecker::evalStrncat(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001268 if (CE->getNumArgs() < 3)
1269 return;
1270
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001271 //char *strncat(char *restrict s1, const char *restrict s2, size_t n);
1272 evalStrcpyCommon(C, CE,
1273 /* returnEnd = */ false,
1274 /* isBounded = */ true,
1275 /* isAppending = */ true);
Jordy Rosee64f3112010-08-16 07:51:42 +00001276}
1277
Ted Kremenek9c149532010-12-01 21:57:22 +00001278void CStringChecker::evalStrcpyCommon(CheckerContext &C, const CallExpr *CE,
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001279 bool returnEnd, bool isBounded,
1280 bool isAppending) const {
Jordy Rose9e49d9f2011-06-20 02:06:40 +00001281 CurrentFunctionDescription = "string copy function";
Ted Kremenek8bef8232012-01-26 21:29:00 +00001282 ProgramStateRef state = C.getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +00001283 const LocationContext *LCtx = C.getLocationContext();
Jordy Rosee64f3112010-08-16 07:51:42 +00001284
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001285 // Check that the destination is non-null.
Jordy Rosee64f3112010-08-16 07:51:42 +00001286 const Expr *Dst = CE->getArg(0);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001287 SVal DstVal = state->getSVal(Dst, LCtx);
Jordy Rosee64f3112010-08-16 07:51:42 +00001288
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001289 state = checkNonNull(C, state, Dst, DstVal);
Jordy Rosee64f3112010-08-16 07:51:42 +00001290 if (!state)
1291 return;
1292
1293 // Check that the source is non-null.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001294 const Expr *srcExpr = CE->getArg(1);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001295 SVal srcVal = state->getSVal(srcExpr, LCtx);
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001296 state = checkNonNull(C, state, srcExpr, srcVal);
Jordy Rosee64f3112010-08-16 07:51:42 +00001297 if (!state)
1298 return;
1299
1300 // Get the string length of the source.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001301 SVal strLength = getCStringLength(C, state, srcExpr, srcVal);
Jordy Rosee64f3112010-08-16 07:51:42 +00001302
1303 // If the source isn't a valid C string, give up.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001304 if (strLength.isUndef())
Jordy Rosee64f3112010-08-16 07:51:42 +00001305 return;
1306
Jordy Rosed5af0e12011-06-15 05:52:56 +00001307 SValBuilder &svalBuilder = C.getSValBuilder();
1308 QualType cmpTy = svalBuilder.getConditionType();
Jordy Rose8912aae2011-06-20 21:55:40 +00001309 QualType sizeTy = svalBuilder.getContext().getSizeType();
Jordy Rosed5af0e12011-06-15 05:52:56 +00001310
Jordy Rose8912aae2011-06-20 21:55:40 +00001311 // These two values allow checking two kinds of errors:
1312 // - actual overflows caused by a source that doesn't fit in the destination
1313 // - potential overflows caused by a bound that could exceed the destination
Jordy Rosed5af0e12011-06-15 05:52:56 +00001314 SVal amountCopied = UnknownVal();
Jordy Rose8912aae2011-06-20 21:55:40 +00001315 SVal maxLastElementIndex = UnknownVal();
1316 const char *boundWarning = NULL;
Jordy Rosed5af0e12011-06-15 05:52:56 +00001317
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001318 // If the function is strncpy, strncat, etc... it is bounded.
1319 if (isBounded) {
1320 // Get the max number of characters to copy.
Ted Kremenek0ef473f2011-02-22 04:58:34 +00001321 const Expr *lenExpr = CE->getArg(2);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001322 SVal lenVal = state->getSVal(lenExpr, LCtx);
Ted Kremenek0ef473f2011-02-22 04:58:34 +00001323
Jordy Rosed5af0e12011-06-15 05:52:56 +00001324 // Protect against misdeclared strncpy().
Jordy Rose8912aae2011-06-20 21:55:40 +00001325 lenVal = svalBuilder.evalCast(lenVal, sizeTy, lenExpr->getType());
Jordy Rosed5af0e12011-06-15 05:52:56 +00001326
David Blaikiedc84cd52013-02-20 22:23:23 +00001327 Optional<NonLoc> strLengthNL = strLength.getAs<NonLoc>();
1328 Optional<NonLoc> lenValNL = lenVal.getAs<NonLoc>();
Ted Kremenek0ef473f2011-02-22 04:58:34 +00001329
Jordy Rosed5af0e12011-06-15 05:52:56 +00001330 // If we know both values, we might be able to figure out how much
1331 // we're copying.
1332 if (strLengthNL && lenValNL) {
Ted Kremenek8bef8232012-01-26 21:29:00 +00001333 ProgramStateRef stateSourceTooLong, stateSourceNotTooLong;
Ted Kremenek0ef473f2011-02-22 04:58:34 +00001334
Jordy Rosed5af0e12011-06-15 05:52:56 +00001335 // Check if the max number to copy is less than the length of the src.
Jordy Rose8912aae2011-06-20 21:55:40 +00001336 // If the bound is equal to the source length, strncpy won't null-
1337 // terminate the result!
David Blaikie5251abe2013-02-20 05:52:05 +00001338 llvm::tie(stateSourceTooLong, stateSourceNotTooLong) = state->assume(
1339 svalBuilder.evalBinOpNN(state, BO_GE, *strLengthNL, *lenValNL, cmpTy)
1340 .castAs<DefinedOrUnknownSVal>());
Jordy Rosed5af0e12011-06-15 05:52:56 +00001341
1342 if (stateSourceTooLong && !stateSourceNotTooLong) {
1343 // Max number to copy is less than the length of the src, so the actual
1344 // strLength copied is the max number arg.
1345 state = stateSourceTooLong;
1346 amountCopied = lenVal;
1347
1348 } else if (!stateSourceTooLong && stateSourceNotTooLong) {
1349 // The source buffer entirely fits in the bound.
1350 state = stateSourceNotTooLong;
1351 amountCopied = strLength;
1352 }
1353 }
1354
Jordy Rose5e5f1502011-06-20 03:49:16 +00001355 // We still want to know if the bound is known to be too large.
Jordy Rose8912aae2011-06-20 21:55:40 +00001356 if (lenValNL) {
1357 if (isAppending) {
1358 // For strncat, the check is strlen(dst) + lenVal < sizeof(dst)
1359
1360 // Get the string length of the destination. If the destination is
1361 // memory that can't have a string length, we shouldn't be copying
1362 // into it anyway.
1363 SVal dstStrLength = getCStringLength(C, state, Dst, DstVal);
1364 if (dstStrLength.isUndef())
1365 return;
1366
David Blaikiedc84cd52013-02-20 22:23:23 +00001367 if (Optional<NonLoc> dstStrLengthNL = dstStrLength.getAs<NonLoc>()) {
Jordy Rose8912aae2011-06-20 21:55:40 +00001368 maxLastElementIndex = svalBuilder.evalBinOpNN(state, BO_Add,
1369 *lenValNL,
1370 *dstStrLengthNL,
1371 sizeTy);
1372 boundWarning = "Size argument is greater than the free space in the "
1373 "destination buffer";
1374 }
1375
1376 } else {
1377 // For strncpy, this is just checking that lenVal <= sizeof(dst)
1378 // (Yes, strncpy and strncat differ in how they treat termination.
1379 // strncat ALWAYS terminates, but strncpy doesn't.)
Jordy Rose6e4244e2012-05-14 17:58:35 +00001380
1381 // We need a special case for when the copy size is zero, in which
1382 // case strncpy will do no work at all. Our bounds check uses n-1
1383 // as the last element accessed, so n == 0 is problematic.
1384 ProgramStateRef StateZeroSize, StateNonZeroSize;
1385 llvm::tie(StateZeroSize, StateNonZeroSize) =
1386 assumeZero(C, state, *lenValNL, sizeTy);
1387
1388 // If the size is known to be zero, we're done.
1389 if (StateZeroSize && !StateNonZeroSize) {
1390 StateZeroSize = StateZeroSize->BindExpr(CE, LCtx, DstVal);
1391 C.addTransition(StateZeroSize);
1392 return;
1393 }
1394
1395 // Otherwise, go ahead and figure out the last element we'll touch.
1396 // We don't record the non-zero assumption here because we can't
1397 // be sure. We won't warn on a possible zero.
David Blaikie5251abe2013-02-20 05:52:05 +00001398 NonLoc one = svalBuilder.makeIntVal(1, sizeTy).castAs<NonLoc>();
Jordy Rose8912aae2011-06-20 21:55:40 +00001399 maxLastElementIndex = svalBuilder.evalBinOpNN(state, BO_Sub, *lenValNL,
1400 one, sizeTy);
1401 boundWarning = "Size argument is greater than the length of the "
1402 "destination buffer";
1403 }
1404 }
Jordy Rose5e5f1502011-06-20 03:49:16 +00001405
Jordy Rosed5af0e12011-06-15 05:52:56 +00001406 // If we couldn't pin down the copy length, at least bound it.
Jordy Rose8912aae2011-06-20 21:55:40 +00001407 // FIXME: We should actually run this code path for append as well, but
1408 // right now it creates problems with constraints (since we can end up
1409 // trying to pass constraints from symbol to symbol).
1410 if (amountCopied.isUnknown() && !isAppending) {
Jordy Rosed5af0e12011-06-15 05:52:56 +00001411 // Try to get a "hypothetical" string length symbol, which we can later
1412 // set as a real value if that turns out to be the case.
1413 amountCopied = getCStringLength(C, state, lenExpr, srcVal, true);
1414 assert(!amountCopied.isUndef());
1415
David Blaikiedc84cd52013-02-20 22:23:23 +00001416 if (Optional<NonLoc> amountCopiedNL = amountCopied.getAs<NonLoc>()) {
Jordy Rosed5af0e12011-06-15 05:52:56 +00001417 if (lenValNL) {
1418 // amountCopied <= lenVal
1419 SVal copiedLessThanBound = svalBuilder.evalBinOpNN(state, BO_LE,
1420 *amountCopiedNL,
1421 *lenValNL,
1422 cmpTy);
David Blaikie5251abe2013-02-20 05:52:05 +00001423 state = state->assume(
1424 copiedLessThanBound.castAs<DefinedOrUnknownSVal>(), true);
Jordy Rosed5af0e12011-06-15 05:52:56 +00001425 if (!state)
1426 return;
1427 }
1428
1429 if (strLengthNL) {
1430 // amountCopied <= strlen(source)
1431 SVal copiedLessThanSrc = svalBuilder.evalBinOpNN(state, BO_LE,
1432 *amountCopiedNL,
1433 *strLengthNL,
1434 cmpTy);
David Blaikie5251abe2013-02-20 05:52:05 +00001435 state = state->assume(
1436 copiedLessThanSrc.castAs<DefinedOrUnknownSVal>(), true);
Jordy Rosed5af0e12011-06-15 05:52:56 +00001437 if (!state)
1438 return;
1439 }
1440 }
1441 }
1442
1443 } else {
1444 // The function isn't bounded. The amount copied should match the length
1445 // of the source buffer.
1446 amountCopied = strLength;
Ted Kremenek0ef473f2011-02-22 04:58:34 +00001447 }
1448
Jordy Rosed5af0e12011-06-15 05:52:56 +00001449 assert(state);
1450
1451 // This represents the number of characters copied into the destination
1452 // buffer. (It may not actually be the strlen if the destination buffer
1453 // is not terminated.)
1454 SVal finalStrLength = UnknownVal();
1455
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001456 // If this is an appending function (strcat, strncat...) then set the
1457 // string length to strlen(src) + strlen(dst) since the buffer will
1458 // ultimately contain both.
1459 if (isAppending) {
Jordy Rose1e022412011-06-16 05:51:02 +00001460 // Get the string length of the destination. If the destination is memory
1461 // that can't have a string length, we shouldn't be copying into it anyway.
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001462 SVal dstStrLength = getCStringLength(C, state, Dst, DstVal);
1463 if (dstStrLength.isUndef())
1464 return;
1465
David Blaikiedc84cd52013-02-20 22:23:23 +00001466 Optional<NonLoc> srcStrLengthNL = amountCopied.getAs<NonLoc>();
1467 Optional<NonLoc> dstStrLengthNL = dstStrLength.getAs<NonLoc>();
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001468
Jordy Rosed5af0e12011-06-15 05:52:56 +00001469 // If we know both string lengths, we might know the final string length.
1470 if (srcStrLengthNL && dstStrLengthNL) {
1471 // Make sure the two lengths together don't overflow a size_t.
1472 state = checkAdditionOverflow(C, state, *srcStrLengthNL, *dstStrLengthNL);
1473 if (!state)
1474 return;
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001475
Jordy Rosed5af0e12011-06-15 05:52:56 +00001476 finalStrLength = svalBuilder.evalBinOpNN(state, BO_Add, *srcStrLengthNL,
1477 *dstStrLengthNL, sizeTy);
1478 }
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001479
Jordy Rosed5af0e12011-06-15 05:52:56 +00001480 // If we couldn't get a single value for the final string length,
1481 // we can at least bound it by the individual lengths.
1482 if (finalStrLength.isUnknown()) {
1483 // Try to get a "hypothetical" string length symbol, which we can later
1484 // set as a real value if that turns out to be the case.
1485 finalStrLength = getCStringLength(C, state, CE, DstVal, true);
1486 assert(!finalStrLength.isUndef());
1487
David Blaikiedc84cd52013-02-20 22:23:23 +00001488 if (Optional<NonLoc> finalStrLengthNL = finalStrLength.getAs<NonLoc>()) {
Jordy Rosed5af0e12011-06-15 05:52:56 +00001489 if (srcStrLengthNL) {
1490 // finalStrLength >= srcStrLength
1491 SVal sourceInResult = svalBuilder.evalBinOpNN(state, BO_GE,
1492 *finalStrLengthNL,
1493 *srcStrLengthNL,
1494 cmpTy);
David Blaikie5251abe2013-02-20 05:52:05 +00001495 state = state->assume(sourceInResult.castAs<DefinedOrUnknownSVal>(),
Jordy Rosed5af0e12011-06-15 05:52:56 +00001496 true);
1497 if (!state)
1498 return;
1499 }
1500
1501 if (dstStrLengthNL) {
1502 // finalStrLength >= dstStrLength
1503 SVal destInResult = svalBuilder.evalBinOpNN(state, BO_GE,
1504 *finalStrLengthNL,
1505 *dstStrLengthNL,
1506 cmpTy);
David Blaikie5251abe2013-02-20 05:52:05 +00001507 state =
1508 state->assume(destInResult.castAs<DefinedOrUnknownSVal>(), true);
Jordy Rosed5af0e12011-06-15 05:52:56 +00001509 if (!state)
1510 return;
1511 }
1512 }
1513 }
1514
1515 } else {
1516 // Otherwise, this is a copy-over function (strcpy, strncpy, ...), and
1517 // the final string length will match the input string length.
1518 finalStrLength = amountCopied;
Lenny Maiorani067bbd02011-04-09 15:12:58 +00001519 }
1520
Jordy Rosed5af0e12011-06-15 05:52:56 +00001521 // The final result of the function will either be a pointer past the last
1522 // copied element, or a pointer to the start of the destination buffer.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001523 SVal Result = (returnEnd ? UnknownVal() : DstVal);
Jordy Rosee64f3112010-08-16 07:51:42 +00001524
Jordy Rosed5af0e12011-06-15 05:52:56 +00001525 assert(state);
1526
Jordy Rosee64f3112010-08-16 07:51:42 +00001527 // If the destination is a MemRegion, try to check for a buffer overflow and
1528 // record the new string length.
David Blaikiedc84cd52013-02-20 22:23:23 +00001529 if (Optional<loc::MemRegionVal> dstRegVal =
David Blaikie5251abe2013-02-20 05:52:05 +00001530 DstVal.getAs<loc::MemRegionVal>()) {
Jordy Rose8912aae2011-06-20 21:55:40 +00001531 QualType ptrTy = Dst->getType();
1532
1533 // If we have an exact value on a bounded copy, use that to check for
1534 // overflows, rather than our estimate about how much is actually copied.
1535 if (boundWarning) {
David Blaikiedc84cd52013-02-20 22:23:23 +00001536 if (Optional<NonLoc> maxLastNL = maxLastElementIndex.getAs<NonLoc>()) {
Jordy Rose8912aae2011-06-20 21:55:40 +00001537 SVal maxLastElement = svalBuilder.evalBinOpLN(state, BO_Add, *dstRegVal,
1538 *maxLastNL, ptrTy);
1539 state = CheckLocation(C, state, CE->getArg(2), maxLastElement,
1540 boundWarning);
1541 if (!state)
1542 return;
1543 }
1544 }
1545
1546 // Then, if the final length is known...
David Blaikiedc84cd52013-02-20 22:23:23 +00001547 if (Optional<NonLoc> knownStrLength = finalStrLength.getAs<NonLoc>()) {
Jordy Rosed5af0e12011-06-15 05:52:56 +00001548 SVal lastElement = svalBuilder.evalBinOpLN(state, BO_Add, *dstRegVal,
Jordy Rose8912aae2011-06-20 21:55:40 +00001549 *knownStrLength, ptrTy);
Jordy Rosee64f3112010-08-16 07:51:42 +00001550
Jordy Rose8912aae2011-06-20 21:55:40 +00001551 // ...and we haven't checked the bound, we'll check the actual copy.
1552 if (!boundWarning) {
1553 const char * const warningMsg =
1554 "String copy function overflows destination buffer";
1555 state = CheckLocation(C, state, Dst, lastElement, warningMsg);
1556 if (!state)
1557 return;
1558 }
Jordy Rosee64f3112010-08-16 07:51:42 +00001559
1560 // If this is a stpcpy-style copy, the last element is the return value.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001561 if (returnEnd)
1562 Result = lastElement;
Jordy Rosee64f3112010-08-16 07:51:42 +00001563 }
1564
1565 // Invalidate the destination. This must happen before we set the C string
1566 // length because invalidation will clear the length.
1567 // FIXME: Even if we can't perfectly model the copy, we should see if we
1568 // can use LazyCompoundVals to copy the source values into the destination.
1569 // This would probably remove any existing bindings past the end of the
1570 // string, but that's still an improvement over blank invalidation.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001571 state = InvalidateBuffer(C, state, Dst, *dstRegVal);
Jordy Rosee64f3112010-08-16 07:51:42 +00001572
Jordy Rose5e5f1502011-06-20 03:49:16 +00001573 // Set the C string length of the destination, if we know it.
Jordy Rose8912aae2011-06-20 21:55:40 +00001574 if (isBounded && !isAppending) {
1575 // strncpy is annoying in that it doesn't guarantee to null-terminate
1576 // the result string. If the original string didn't fit entirely inside
1577 // the bound (including the null-terminator), we don't know how long the
1578 // result is.
1579 if (amountCopied != strLength)
1580 finalStrLength = UnknownVal();
1581 }
1582 state = setCStringLength(state, dstRegVal->getRegion(), finalStrLength);
Jordy Rosee64f3112010-08-16 07:51:42 +00001583 }
1584
Jordy Rosed5af0e12011-06-15 05:52:56 +00001585 assert(state);
1586
Jordy Rosee64f3112010-08-16 07:51:42 +00001587 // If this is a stpcpy-style copy, but we were unable to check for a buffer
1588 // overflow, we still need a result. Conjure a return value.
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001589 if (returnEnd && Result.isUnknown()) {
Ted Kremenek66c486f2012-08-22 06:26:15 +00001590 Result = svalBuilder.conjureSymbolVal(0, CE, LCtx, C.blockCount());
Jordy Rosee64f3112010-08-16 07:51:42 +00001591 }
1592
1593 // Set the return value.
Ted Kremenek5eca4822012-01-06 22:09:28 +00001594 state = state->BindExpr(CE, LCtx, Result);
Anna Zaks0bd6b112011-10-26 21:06:34 +00001595 C.addTransition(state);
Jordy Rosee64f3112010-08-16 07:51:42 +00001596}
1597
Lenny Maiorani318dd922011-04-12 17:08:43 +00001598void CStringChecker::evalStrcmp(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001599 if (CE->getNumArgs() < 2)
1600 return;
1601
Jordy Roseadc42d42011-06-16 07:13:34 +00001602 //int strcmp(const char *s1, const char *s2);
Lenny Maioranibd1d16a2011-04-28 15:09:11 +00001603 evalStrcmpCommon(C, CE, /* isBounded = */ false, /* ignoreCase = */ false);
Lenny Maiorani357f6ee2011-04-25 22:21:00 +00001604}
Lenny Maiorani318dd922011-04-12 17:08:43 +00001605
Lenny Maiorani357f6ee2011-04-25 22:21:00 +00001606void CStringChecker::evalStrncmp(CheckerContext &C, const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001607 if (CE->getNumArgs() < 3)
1608 return;
1609
Jordy Roseadc42d42011-06-16 07:13:34 +00001610 //int strncmp(const char *s1, const char *s2, size_t n);
Lenny Maioranibd1d16a2011-04-28 15:09:11 +00001611 evalStrcmpCommon(C, CE, /* isBounded = */ true, /* ignoreCase = */ false);
1612}
1613
1614void CStringChecker::evalStrcasecmp(CheckerContext &C,
1615 const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001616 if (CE->getNumArgs() < 2)
1617 return;
1618
Jordy Roseadc42d42011-06-16 07:13:34 +00001619 //int strcasecmp(const char *s1, const char *s2);
Lenny Maioranibd1d16a2011-04-28 15:09:11 +00001620 evalStrcmpCommon(C, CE, /* isBounded = */ false, /* ignoreCase = */ true);
Lenny Maiorani357f6ee2011-04-25 22:21:00 +00001621}
1622
Lenny Maiorani454fd2d2011-05-02 19:05:49 +00001623void CStringChecker::evalStrncasecmp(CheckerContext &C,
1624 const CallExpr *CE) const {
Anna Zaks259052d2012-04-10 23:41:11 +00001625 if (CE->getNumArgs() < 3)
1626 return;
1627
Jordy Roseadc42d42011-06-16 07:13:34 +00001628 //int strncasecmp(const char *s1, const char *s2, size_t n);
Lenny Maiorani454fd2d2011-05-02 19:05:49 +00001629 evalStrcmpCommon(C, CE, /* isBounded = */ true, /* ignoreCase = */ true);
1630}
1631
Lenny Maiorani357f6ee2011-04-25 22:21:00 +00001632void CStringChecker::evalStrcmpCommon(CheckerContext &C, const CallExpr *CE,
Lenny Maioranibd1d16a2011-04-28 15:09:11 +00001633 bool isBounded, bool ignoreCase) const {
Jordy Rose9e49d9f2011-06-20 02:06:40 +00001634 CurrentFunctionDescription = "string comparison function";
Ted Kremenek8bef8232012-01-26 21:29:00 +00001635 ProgramStateRef state = C.getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +00001636 const LocationContext *LCtx = C.getLocationContext();
Lenny Maiorani318dd922011-04-12 17:08:43 +00001637
1638 // Check that the first string is non-null
1639 const Expr *s1 = CE->getArg(0);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001640 SVal s1Val = state->getSVal(s1, LCtx);
Lenny Maiorani318dd922011-04-12 17:08:43 +00001641 state = checkNonNull(C, state, s1, s1Val);
1642 if (!state)
1643 return;
1644
1645 // Check that the second string is non-null.
1646 const Expr *s2 = CE->getArg(1);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001647 SVal s2Val = state->getSVal(s2, LCtx);
Lenny Maiorani318dd922011-04-12 17:08:43 +00001648 state = checkNonNull(C, state, s2, s2Val);
1649 if (!state)
1650 return;
1651
1652 // Get the string length of the first string or give up.
1653 SVal s1Length = getCStringLength(C, state, s1, s1Val);
1654 if (s1Length.isUndef())
1655 return;
1656
1657 // Get the string length of the second string or give up.
1658 SVal s2Length = getCStringLength(C, state, s2, s2Val);
1659 if (s2Length.isUndef())
1660 return;
1661
Jordy Roseadc42d42011-06-16 07:13:34 +00001662 // If we know the two buffers are the same, we know the result is 0.
1663 // First, get the two buffers' addresses. Another checker will have already
1664 // made sure they're not undefined.
David Blaikie5251abe2013-02-20 05:52:05 +00001665 DefinedOrUnknownSVal LV = s1Val.castAs<DefinedOrUnknownSVal>();
1666 DefinedOrUnknownSVal RV = s2Val.castAs<DefinedOrUnknownSVal>();
Lenny Maiorani318dd922011-04-12 17:08:43 +00001667
Jordy Roseadc42d42011-06-16 07:13:34 +00001668 // See if they are the same.
Lenny Maiorani318dd922011-04-12 17:08:43 +00001669 SValBuilder &svalBuilder = C.getSValBuilder();
Jordy Roseadc42d42011-06-16 07:13:34 +00001670 DefinedOrUnknownSVal SameBuf = svalBuilder.evalEQ(state, LV, RV);
Ted Kremenek8bef8232012-01-26 21:29:00 +00001671 ProgramStateRef StSameBuf, StNotSameBuf;
Jordy Roseadc42d42011-06-16 07:13:34 +00001672 llvm::tie(StSameBuf, StNotSameBuf) = state->assume(SameBuf);
Lenny Maiorani318dd922011-04-12 17:08:43 +00001673
Jordy Roseadc42d42011-06-16 07:13:34 +00001674 // If the two arguments might be the same buffer, we know the result is 0,
1675 // and we only need to check one size.
1676 if (StSameBuf) {
Ted Kremenek5eca4822012-01-06 22:09:28 +00001677 StSameBuf = StSameBuf->BindExpr(CE, LCtx,
1678 svalBuilder.makeZeroVal(CE->getType()));
Anna Zaks0bd6b112011-10-26 21:06:34 +00001679 C.addTransition(StSameBuf);
Jordy Roseadc42d42011-06-16 07:13:34 +00001680
1681 // If the two arguments are GUARANTEED to be the same, we're done!
1682 if (!StNotSameBuf)
1683 return;
1684 }
1685
1686 assert(StNotSameBuf);
1687 state = StNotSameBuf;
1688
1689 // At this point we can go about comparing the two buffers.
1690 // For now, we only do this if they're both known string literals.
1691
1692 // Attempt to extract string literals from both expressions.
1693 const StringLiteral *s1StrLiteral = getCStringLiteral(C, state, s1, s1Val);
1694 const StringLiteral *s2StrLiteral = getCStringLiteral(C, state, s2, s2Val);
1695 bool canComputeResult = false;
1696
1697 if (s1StrLiteral && s2StrLiteral) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001698 StringRef s1StrRef = s1StrLiteral->getString();
1699 StringRef s2StrRef = s2StrLiteral->getString();
Jordy Roseadc42d42011-06-16 07:13:34 +00001700
1701 if (isBounded) {
1702 // Get the max number of characters to compare.
1703 const Expr *lenExpr = CE->getArg(2);
Ted Kremenek5eca4822012-01-06 22:09:28 +00001704 SVal lenVal = state->getSVal(lenExpr, LCtx);
Jordy Roseadc42d42011-06-16 07:13:34 +00001705
1706 // If the length is known, we can get the right substrings.
1707 if (const llvm::APSInt *len = svalBuilder.getKnownValue(state, lenVal)) {
1708 // Create substrings of each to compare the prefix.
1709 s1StrRef = s1StrRef.substr(0, (size_t)len->getZExtValue());
1710 s2StrRef = s2StrRef.substr(0, (size_t)len->getZExtValue());
1711 canComputeResult = true;
1712 }
1713 } else {
1714 // This is a normal, unbounded strcmp.
1715 canComputeResult = true;
1716 }
1717
1718 if (canComputeResult) {
1719 // Real strcmp stops at null characters.
1720 size_t s1Term = s1StrRef.find('\0');
Chris Lattner5f9e2722011-07-23 10:55:15 +00001721 if (s1Term != StringRef::npos)
Jordy Roseadc42d42011-06-16 07:13:34 +00001722 s1StrRef = s1StrRef.substr(0, s1Term);
1723
1724 size_t s2Term = s2StrRef.find('\0');
Chris Lattner5f9e2722011-07-23 10:55:15 +00001725 if (s2Term != StringRef::npos)
Jordy Roseadc42d42011-06-16 07:13:34 +00001726 s2StrRef = s2StrRef.substr(0, s2Term);
1727
1728 // Use StringRef's comparison methods to compute the actual result.
1729 int result;
1730
1731 if (ignoreCase) {
1732 // Compare string 1 to string 2 the same way strcasecmp() does.
1733 result = s1StrRef.compare_lower(s2StrRef);
1734 } else {
1735 // Compare string 1 to string 2 the same way strcmp() does.
1736 result = s1StrRef.compare(s2StrRef);
1737 }
1738
1739 // Build the SVal of the comparison and bind the return value.
1740 SVal resultVal = svalBuilder.makeIntVal(result, CE->getType());
Ted Kremenek5eca4822012-01-06 22:09:28 +00001741 state = state->BindExpr(CE, LCtx, resultVal);
Jordy Roseadc42d42011-06-16 07:13:34 +00001742 }
1743 }
1744
1745 if (!canComputeResult) {
1746 // Conjure a symbolic value. It's the best we can do.
Ted Kremenek66c486f2012-08-22 06:26:15 +00001747 SVal resultVal = svalBuilder.conjureSymbolVal(0, CE, LCtx, C.blockCount());
Ted Kremenek5eca4822012-01-06 22:09:28 +00001748 state = state->BindExpr(CE, LCtx, resultVal);
Jordy Roseadc42d42011-06-16 07:13:34 +00001749 }
1750
1751 // Record this as a possible path.
Anna Zaks0bd6b112011-10-26 21:06:34 +00001752 C.addTransition(state);
Lenny Maiorani318dd922011-04-12 17:08:43 +00001753}
1754
Jordy Rosed325ffb2010-07-08 23:57:29 +00001755//===----------------------------------------------------------------------===//
Jordy Rosea5261542010-08-14 21:02:52 +00001756// The driver method, and other Checker callbacks.
Jordy Rosed325ffb2010-07-08 23:57:29 +00001757//===----------------------------------------------------------------------===//
Jordy Roseccbf7ee2010-07-06 23:11:01 +00001758
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001759bool CStringChecker::evalCall(const CallExpr *CE, CheckerContext &C) const {
Anna Zaks998e2752012-02-17 22:35:26 +00001760 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
1761
1762 if (!FDecl)
Jordy Roseccbf7ee2010-07-06 23:11:01 +00001763 return false;
Jordy Roseccbf7ee2010-07-06 23:11:01 +00001764
Anna Zaks998e2752012-02-17 22:35:26 +00001765 FnCheck evalFunction = 0;
1766 if (C.isCLibraryFunction(FDecl, "memcpy"))
1767 evalFunction = &CStringChecker::evalMemcpy;
1768 else if (C.isCLibraryFunction(FDecl, "mempcpy"))
1769 evalFunction = &CStringChecker::evalMempcpy;
1770 else if (C.isCLibraryFunction(FDecl, "memcmp"))
1771 evalFunction = &CStringChecker::evalMemcmp;
1772 else if (C.isCLibraryFunction(FDecl, "memmove"))
1773 evalFunction = &CStringChecker::evalMemmove;
1774 else if (C.isCLibraryFunction(FDecl, "strcpy"))
1775 evalFunction = &CStringChecker::evalStrcpy;
1776 else if (C.isCLibraryFunction(FDecl, "strncpy"))
1777 evalFunction = &CStringChecker::evalStrncpy;
1778 else if (C.isCLibraryFunction(FDecl, "stpcpy"))
1779 evalFunction = &CStringChecker::evalStpcpy;
1780 else if (C.isCLibraryFunction(FDecl, "strcat"))
1781 evalFunction = &CStringChecker::evalStrcat;
1782 else if (C.isCLibraryFunction(FDecl, "strncat"))
1783 evalFunction = &CStringChecker::evalStrncat;
1784 else if (C.isCLibraryFunction(FDecl, "strlen"))
1785 evalFunction = &CStringChecker::evalstrLength;
1786 else if (C.isCLibraryFunction(FDecl, "strnlen"))
1787 evalFunction = &CStringChecker::evalstrnLength;
1788 else if (C.isCLibraryFunction(FDecl, "strcmp"))
1789 evalFunction = &CStringChecker::evalStrcmp;
1790 else if (C.isCLibraryFunction(FDecl, "strncmp"))
1791 evalFunction = &CStringChecker::evalStrncmp;
1792 else if (C.isCLibraryFunction(FDecl, "strcasecmp"))
1793 evalFunction = &CStringChecker::evalStrcasecmp;
1794 else if (C.isCLibraryFunction(FDecl, "strncasecmp"))
1795 evalFunction = &CStringChecker::evalStrncasecmp;
1796 else if (C.isCLibraryFunction(FDecl, "bcopy"))
1797 evalFunction = &CStringChecker::evalBcopy;
1798 else if (C.isCLibraryFunction(FDecl, "bcmp"))
1799 evalFunction = &CStringChecker::evalMemcmp;
1800
Jordy Rosed325ffb2010-07-08 23:57:29 +00001801 // If the callee isn't a string function, let another checker handle it.
Ted Kremenek9c149532010-12-01 21:57:22 +00001802 if (!evalFunction)
Jordy Roseccbf7ee2010-07-06 23:11:01 +00001803 return false;
1804
Jordy Rose9e49d9f2011-06-20 02:06:40 +00001805 // Make sure each function sets its own description.
1806 // (But don't bother in a release build.)
1807 assert(!(CurrentFunctionDescription = NULL));
1808
Jordy Rosed325ffb2010-07-08 23:57:29 +00001809 // Check and evaluate the call.
Ted Kremenek9c149532010-12-01 21:57:22 +00001810 (this->*evalFunction)(C, CE);
Anna Zaks57300762012-02-07 00:56:14 +00001811
1812 // If the evaluate call resulted in no change, chain to the next eval call
1813 // handler.
1814 // Note, the custom CString evaluation calls assume that basic safety
1815 // properties are held. However, if the user chooses to turn off some of these
1816 // checks, we ignore the issues and leave the call evaluation to a generic
1817 // handler.
1818 if (!C.isDifferent())
1819 return false;
1820
Jordy Roseccbf7ee2010-07-06 23:11:01 +00001821 return true;
1822}
Jordy Rosea5261542010-08-14 21:02:52 +00001823
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001824void CStringChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const {
Jordy Rosea5261542010-08-14 21:02:52 +00001825 // Record string length for char a[] = "abc";
Ted Kremenek8bef8232012-01-26 21:29:00 +00001826 ProgramStateRef state = C.getState();
Jordy Rosea5261542010-08-14 21:02:52 +00001827
1828 for (DeclStmt::const_decl_iterator I = DS->decl_begin(), E = DS->decl_end();
1829 I != E; ++I) {
1830 const VarDecl *D = dyn_cast<VarDecl>(*I);
1831 if (!D)
1832 continue;
1833
1834 // FIXME: Handle array fields of structs.
1835 if (!D->getType()->isArrayType())
1836 continue;
1837
1838 const Expr *Init = D->getInit();
1839 if (!Init)
1840 continue;
1841 if (!isa<StringLiteral>(Init))
1842 continue;
1843
Anna Zaks39ac1872011-10-26 21:06:44 +00001844 Loc VarLoc = state->getLValue(D, C.getLocationContext());
Jordy Rosea5261542010-08-14 21:02:52 +00001845 const MemRegion *MR = VarLoc.getAsRegion();
1846 if (!MR)
1847 continue;
1848
Ted Kremenek5eca4822012-01-06 22:09:28 +00001849 SVal StrVal = state->getSVal(Init, C.getLocationContext());
Jordy Rosea5261542010-08-14 21:02:52 +00001850 assert(StrVal.isValid() && "Initializer string is unknown or undefined");
David Blaikie5251abe2013-02-20 05:52:05 +00001851 DefinedOrUnknownSVal strLength =
1852 getCStringLength(C, state, Init, StrVal).castAs<DefinedOrUnknownSVal>();
Jordy Rosea5261542010-08-14 21:02:52 +00001853
Ted Kremenekc8413fd2010-12-02 07:49:45 +00001854 state = state->set<CStringLength>(MR, strLength);
Jordy Rosea5261542010-08-14 21:02:52 +00001855 }
1856
Anna Zaks0bd6b112011-10-26 21:06:34 +00001857 C.addTransition(state);
Jordy Rosea5261542010-08-14 21:02:52 +00001858}
1859
Ted Kremenek8bef8232012-01-26 21:29:00 +00001860bool CStringChecker::wantsRegionChangeUpdate(ProgramStateRef state) const {
Jordan Rose166d5022012-11-02 01:54:06 +00001861 CStringLengthTy Entries = state->get<CStringLength>();
Jordy Rosea5261542010-08-14 21:02:52 +00001862 return !Entries.isEmpty();
1863}
1864
Ted Kremenek8bef8232012-01-26 21:29:00 +00001865ProgramStateRef
1866CStringChecker::checkRegionChanges(ProgramStateRef state,
Anna Zaksbf53dfa2012-12-20 00:38:25 +00001867 const InvalidatedSymbols *,
Jordy Rose537716a2011-08-27 22:51:26 +00001868 ArrayRef<const MemRegion *> ExplicitRegions,
Anna Zaks66c40402012-02-14 21:55:24 +00001869 ArrayRef<const MemRegion *> Regions,
Jordan Rose740d4902012-07-02 19:27:35 +00001870 const CallEvent *Call) const {
Jordan Rose166d5022012-11-02 01:54:06 +00001871 CStringLengthTy Entries = state->get<CStringLength>();
Jordy Rosea5261542010-08-14 21:02:52 +00001872 if (Entries.isEmpty())
1873 return state;
1874
1875 llvm::SmallPtrSet<const MemRegion *, 8> Invalidated;
1876 llvm::SmallPtrSet<const MemRegion *, 32> SuperRegions;
1877
1878 // First build sets for the changed regions and their super-regions.
Jordy Rose537716a2011-08-27 22:51:26 +00001879 for (ArrayRef<const MemRegion *>::iterator
1880 I = Regions.begin(), E = Regions.end(); I != E; ++I) {
1881 const MemRegion *MR = *I;
Jordy Rosea5261542010-08-14 21:02:52 +00001882 Invalidated.insert(MR);
1883
1884 SuperRegions.insert(MR);
1885 while (const SubRegion *SR = dyn_cast<SubRegion>(MR)) {
1886 MR = SR->getSuperRegion();
1887 SuperRegions.insert(MR);
1888 }
1889 }
1890
Jordan Rose166d5022012-11-02 01:54:06 +00001891 CStringLengthTy::Factory &F = state->get_context<CStringLength>();
Jordy Rosea5261542010-08-14 21:02:52 +00001892
1893 // Then loop over the entries in the current state.
Jordan Rose166d5022012-11-02 01:54:06 +00001894 for (CStringLengthTy::iterator I = Entries.begin(),
Jordy Rosea5261542010-08-14 21:02:52 +00001895 E = Entries.end(); I != E; ++I) {
1896 const MemRegion *MR = I.getKey();
1897
1898 // Is this entry for a super-region of a changed region?
1899 if (SuperRegions.count(MR)) {
Ted Kremenek3baf6722010-11-24 00:54:37 +00001900 Entries = F.remove(Entries, MR);
Jordy Rosea5261542010-08-14 21:02:52 +00001901 continue;
1902 }
1903
1904 // Is this entry for a sub-region of a changed region?
1905 const MemRegion *Super = MR;
1906 while (const SubRegion *SR = dyn_cast<SubRegion>(Super)) {
1907 Super = SR->getSuperRegion();
1908 if (Invalidated.count(Super)) {
Ted Kremenek3baf6722010-11-24 00:54:37 +00001909 Entries = F.remove(Entries, MR);
Jordy Rosea5261542010-08-14 21:02:52 +00001910 break;
1911 }
1912 }
1913 }
1914
1915 return state->set<CStringLength>(Entries);
1916}
1917
Ted Kremenek8bef8232012-01-26 21:29:00 +00001918void CStringChecker::checkLiveSymbols(ProgramStateRef state,
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001919 SymbolReaper &SR) const {
Jordy Rosea5261542010-08-14 21:02:52 +00001920 // Mark all symbols in our string length map as valid.
Jordan Rose166d5022012-11-02 01:54:06 +00001921 CStringLengthTy Entries = state->get<CStringLength>();
Jordy Rosea5261542010-08-14 21:02:52 +00001922
Jordan Rose166d5022012-11-02 01:54:06 +00001923 for (CStringLengthTy::iterator I = Entries.begin(), E = Entries.end();
Jordy Rosea5261542010-08-14 21:02:52 +00001924 I != E; ++I) {
1925 SVal Len = I.getData();
Jordy Rosed5af0e12011-06-15 05:52:56 +00001926
Anna Zaks1d1d5152011-12-06 23:12:33 +00001927 for (SymExpr::symbol_iterator si = Len.symbol_begin(),
1928 se = Len.symbol_end(); si != se; ++si)
Jordy Rosed5af0e12011-06-15 05:52:56 +00001929 SR.markInUse(*si);
Jordy Rosea5261542010-08-14 21:02:52 +00001930 }
1931}
1932
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001933void CStringChecker::checkDeadSymbols(SymbolReaper &SR,
1934 CheckerContext &C) const {
Jordy Rosea5261542010-08-14 21:02:52 +00001935 if (!SR.hasDeadSymbols())
1936 return;
1937
Ted Kremenek8bef8232012-01-26 21:29:00 +00001938 ProgramStateRef state = C.getState();
Jordan Rose166d5022012-11-02 01:54:06 +00001939 CStringLengthTy Entries = state->get<CStringLength>();
Jordy Rosea5261542010-08-14 21:02:52 +00001940 if (Entries.isEmpty())
1941 return;
1942
Jordan Rose166d5022012-11-02 01:54:06 +00001943 CStringLengthTy::Factory &F = state->get_context<CStringLength>();
1944 for (CStringLengthTy::iterator I = Entries.begin(), E = Entries.end();
Jordy Rosea5261542010-08-14 21:02:52 +00001945 I != E; ++I) {
1946 SVal Len = I.getData();
1947 if (SymbolRef Sym = Len.getAsSymbol()) {
1948 if (SR.isDead(Sym))
Ted Kremenek3baf6722010-11-24 00:54:37 +00001949 Entries = F.remove(Entries, I.getKey());
Jordy Rosea5261542010-08-14 21:02:52 +00001950 }
1951 }
1952
1953 state = state->set<CStringLength>(Entries);
Anna Zaks0bd6b112011-10-26 21:06:34 +00001954 C.addTransition(state);
Jordy Rosea5261542010-08-14 21:02:52 +00001955}
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001956
Anna Zaks57300762012-02-07 00:56:14 +00001957#define REGISTER_CHECKER(name) \
1958void ento::register##name(CheckerManager &mgr) {\
1959 static CStringChecker *TheChecker = 0; \
1960 if (TheChecker == 0) \
1961 TheChecker = mgr.registerChecker<CStringChecker>(); \
1962 TheChecker->Filter.Check##name = true; \
Argyrios Kyrtzidis183ff982011-02-24 01:05:30 +00001963}
Anna Zaks57300762012-02-07 00:56:14 +00001964
1965REGISTER_CHECKER(CStringNullArg)
1966REGISTER_CHECKER(CStringOutOfBounds)
1967REGISTER_CHECKER(CStringBufferOverlap)
1968REGISTER_CHECKER(CStringNotNullTerm)
Anna Zaksf0dfc9c2012-02-17 22:35:31 +00001969
1970void ento::registerCStringCheckerBasic(CheckerManager &Mgr) {
1971 registerCStringNullArg(Mgr);
1972}