blob: dde90713ce18241da3c16cfce25eec70ae8fdb34 [file] [log] [blame]
Ted Kremenekdbfb5f82009-07-23 01:07:19 +00001//==- CheckSecuritySyntaxOnly.cpp - Basic security checks --------*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a set of flow-insensitive security checks.
11//
12//===----------------------------------------------------------------------===//
13
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +000014#include "ClangSACheckers.h"
Anna Zaks590dd8e2011-09-20 21:38:35 +000015#include "clang/Analysis/AnalysisContext.h"
16#include "clang/AST/StmtVisitor.h"
17#include "clang/Basic/TargetInfo.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000018#include "clang/StaticAnalyzer/Core/Checker.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000019#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
Anna Zaks590dd8e2011-09-20 21:38:35 +000020#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000021#include "llvm/ADT/SmallString.h"
Lenny Maioranic2dace12011-04-03 05:07:11 +000022#include "llvm/ADT/StringSwitch.h"
Anna Zaks590dd8e2011-09-20 21:38:35 +000023#include "llvm/Support/raw_ostream.h"
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000024
25using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000026using namespace ento;
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000027
Ted Kremenek88c8bc82010-01-15 08:20:31 +000028static bool isArc4RandomAvailable(const ASTContext &Ctx) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000029 const llvm::Triple &T = Ctx.getTargetInfo().getTriple();
Ted Kremenek88c8bc82010-01-15 08:20:31 +000030 return T.getVendor() == llvm::Triple::Apple ||
Douglas Gregor0f565592011-01-17 19:16:24 +000031 T.getOS() == llvm::Triple::FreeBSD ||
32 T.getOS() == llvm::Triple::NetBSD ||
33 T.getOS() == llvm::Triple::OpenBSD ||
34 T.getOS() == llvm::Triple::DragonFly;
Ted Kremenek88c8bc82010-01-15 08:20:31 +000035}
36
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000037namespace {
Ted Kremenek76a54242012-01-20 01:44:29 +000038struct DefaultBool {
39 bool val;
40 DefaultBool() : val(false) {}
41 operator bool() const { return val; }
42 DefaultBool &operator=(bool b) { val = b; return *this; }
43};
44
45struct ChecksFilter {
46 DefaultBool check_gets;
47 DefaultBool check_getpw;
48 DefaultBool check_mktemp;
Ted Kremenekb63d8d82012-01-20 05:35:06 +000049 DefaultBool check_mkstemp;
Ted Kremenek76a54242012-01-20 01:44:29 +000050 DefaultBool check_strcpy;
51 DefaultBool check_rand;
52 DefaultBool check_vfork;
53 DefaultBool check_FloatLoopCounter;
Ted Kremenekb63d8d82012-01-20 05:35:06 +000054 DefaultBool check_UncheckedReturn;
Ted Kremenek76a54242012-01-20 01:44:29 +000055};
56
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +000057class WalkAST : public StmtVisitor<WalkAST> {
Mike Stump1eb44332009-09-09 15:08:12 +000058 BugReporter &BR;
Ted Kremenek1d26f482011-10-24 01:32:45 +000059 AnalysisDeclContext* AC;
Ted Kremenek24650472009-09-02 02:47:41 +000060 enum { num_setids = 6 };
61 IdentifierInfo *II_setid[num_setids];
Ted Kremenek2c016762010-03-24 22:39:47 +000062
Ted Kremenek88c8bc82010-01-15 08:20:31 +000063 const bool CheckRand;
Ted Kremenek76a54242012-01-20 01:44:29 +000064 const ChecksFilter &filter;
Mike Stump1eb44332009-09-09 15:08:12 +000065
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000066public:
Ted Kremenek76a54242012-01-20 01:44:29 +000067 WalkAST(BugReporter &br, AnalysisDeclContext* ac,
68 const ChecksFilter &f)
Anna Zaks590dd8e2011-09-20 21:38:35 +000069 : BR(br), AC(ac), II_setid(),
Ted Kremenek76a54242012-01-20 01:44:29 +000070 CheckRand(isArc4RandomAvailable(BR.getContext())),
71 filter(f) {}
Mike Stump1eb44332009-09-09 15:08:12 +000072
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000073 // Statement visitor methods.
Ted Kremenekefcbb152009-07-23 22:29:41 +000074 void VisitCallExpr(CallExpr *CE);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000075 void VisitForStmt(ForStmt *S);
Ted Kremenek65a81a92009-08-28 00:08:09 +000076 void VisitCompoundStmt (CompoundStmt *S);
Ted Kremenek8baf86d2009-07-23 21:34:35 +000077 void VisitStmt(Stmt *S) { VisitChildren(S); }
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000078
79 void VisitChildren(Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +000080
Ted Kremenekefcbb152009-07-23 22:29:41 +000081 // Helpers.
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000082 bool checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD);
Mike Stump1eb44332009-09-09 15:08:12 +000083
Lenny Maioranic2dace12011-04-03 05:07:11 +000084 typedef void (WalkAST::*FnCheck)(const CallExpr *,
85 const FunctionDecl *);
86
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000087 // Checker-specific methods.
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000088 void checkLoopConditionForFloat(const ForStmt *FS);
89 void checkCall_gets(const CallExpr *CE, const FunctionDecl *FD);
90 void checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD);
91 void checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD);
Ted Kremenekb63d8d82012-01-20 05:35:06 +000092 void checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD);
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000093 void checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD);
94 void checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD);
95 void checkCall_rand(const CallExpr *CE, const FunctionDecl *FD);
96 void checkCall_random(const CallExpr *CE, const FunctionDecl *FD);
Anna Zaksa7957ff2011-10-11 04:34:54 +000097 void checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD);
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000098 void checkUncheckedReturnValue(CallExpr *CE);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000099};
100} // end anonymous namespace
101
102//===----------------------------------------------------------------------===//
103// AST walking.
104//===----------------------------------------------------------------------===//
105
106void WalkAST::VisitChildren(Stmt *S) {
107 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
108 if (Stmt *child = *I)
109 Visit(child);
110}
111
Ted Kremenekefcbb152009-07-23 22:29:41 +0000112void WalkAST::VisitCallExpr(CallExpr *CE) {
Lenny Maioranic2dace12011-04-03 05:07:11 +0000113 // Get the callee.
114 const FunctionDecl *FD = CE->getDirectCallee();
115
116 if (!FD)
117 return;
118
119 // Get the name of the callee. If it's a builtin, strip off the prefix.
120 IdentifierInfo *II = FD->getIdentifier();
121 if (!II) // if no identifier, not a simple C function
122 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000123 StringRef Name = II->getName();
Lenny Maioranic2dace12011-04-03 05:07:11 +0000124 if (Name.startswith("__builtin_"))
125 Name = Name.substr(10);
126
127 // Set the evaluation function by switching on the callee name.
128 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000129 .Case("gets", &WalkAST::checkCall_gets)
130 .Case("getpw", &WalkAST::checkCall_getpw)
131 .Case("mktemp", &WalkAST::checkCall_mktemp)
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000132 .Case("mkstemp", &WalkAST::checkCall_mkstemp)
133 .Case("mkdtemp", &WalkAST::checkCall_mkstemp)
134 .Case("mkstemps", &WalkAST::checkCall_mkstemp)
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000135 .Cases("strcpy", "__strcpy_chk", &WalkAST::checkCall_strcpy)
136 .Cases("strcat", "__strcat_chk", &WalkAST::checkCall_strcat)
137 .Case("drand48", &WalkAST::checkCall_rand)
138 .Case("erand48", &WalkAST::checkCall_rand)
139 .Case("jrand48", &WalkAST::checkCall_rand)
140 .Case("lrand48", &WalkAST::checkCall_rand)
141 .Case("mrand48", &WalkAST::checkCall_rand)
142 .Case("nrand48", &WalkAST::checkCall_rand)
143 .Case("lcong48", &WalkAST::checkCall_rand)
144 .Case("rand", &WalkAST::checkCall_rand)
145 .Case("rand_r", &WalkAST::checkCall_rand)
146 .Case("random", &WalkAST::checkCall_random)
Anna Zaksa7957ff2011-10-11 04:34:54 +0000147 .Case("vfork", &WalkAST::checkCall_vfork)
Lenny Maioranic2dace12011-04-03 05:07:11 +0000148 .Default(NULL);
149
150 // If the callee isn't defined, it is not of security concern.
151 // Check and evaluate the call.
152 if (evalFunction)
153 (this->*evalFunction)(CE, FD);
Mike Stump1eb44332009-09-09 15:08:12 +0000154
Ted Kremenekefcbb152009-07-23 22:29:41 +0000155 // Recurse and check children.
156 VisitChildren(CE);
157}
158
Ted Kremenek65a81a92009-08-28 00:08:09 +0000159void WalkAST::VisitCompoundStmt(CompoundStmt *S) {
160 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
Mike Stump1eb44332009-09-09 15:08:12 +0000161 if (Stmt *child = *I) {
162 if (CallExpr *CE = dyn_cast<CallExpr>(child))
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000163 checkUncheckedReturnValue(CE);
Mike Stump1eb44332009-09-09 15:08:12 +0000164 Visit(child);
165 }
Ted Kremenek65a81a92009-08-28 00:08:09 +0000166}
167
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000168void WalkAST::VisitForStmt(ForStmt *FS) {
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000169 checkLoopConditionForFloat(FS);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000170
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000171 // Recurse and check children.
172 VisitChildren(FS);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000173}
174
175//===----------------------------------------------------------------------===//
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000176// Check: floating poing variable used as loop counter.
Ted Kremenek5abeb522009-07-23 21:44:18 +0000177// Originally: <rdar://problem/6336718>
178// Implements: CERT security coding advisory FLP-30.
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000179//===----------------------------------------------------------------------===//
180
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000181static const DeclRefExpr*
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000182getIncrementedVar(const Expr *expr, const VarDecl *x, const VarDecl *y) {
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000183 expr = expr->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000184
185 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(expr)) {
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000186 if (!(B->isAssignmentOp() || B->isCompoundAssignmentOp() ||
John McCall2de56d12010-08-25 11:45:40 +0000187 B->getOpcode() == BO_Comma))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000188 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000189
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000190 if (const DeclRefExpr *lhs = getIncrementedVar(B->getLHS(), x, y))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000191 return lhs;
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000193 if (const DeclRefExpr *rhs = getIncrementedVar(B->getRHS(), x, y))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000194 return rhs;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000196 return NULL;
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000197 }
Mike Stump1eb44332009-09-09 15:08:12 +0000198
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000199 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
200 const NamedDecl *ND = DR->getDecl();
201 return ND == x || ND == y ? DR : NULL;
202 }
Mike Stump1eb44332009-09-09 15:08:12 +0000203
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000204 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(expr))
205 return U->isIncrementDecrementOp()
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000206 ? getIncrementedVar(U->getSubExpr(), x, y) : NULL;
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000207
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000208 return NULL;
209}
210
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000211/// CheckLoopConditionForFloat - This check looks for 'for' statements that
212/// use a floating point variable as a loop counter.
213/// CERT: FLP30-C, FLP30-CPP.
214///
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000215void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000216 if (!filter.check_FloatLoopCounter)
217 return;
218
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000219 // Does the loop have a condition?
220 const Expr *condition = FS->getCond();
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000222 if (!condition)
223 return;
224
225 // Does the loop have an increment?
226 const Expr *increment = FS->getInc();
Mike Stump1eb44332009-09-09 15:08:12 +0000227
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000228 if (!increment)
229 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000230
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000231 // Strip away '()' and casts.
232 condition = condition->IgnoreParenCasts();
233 increment = increment->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000234
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000235 // Is the loop condition a comparison?
236 const BinaryOperator *B = dyn_cast<BinaryOperator>(condition);
237
238 if (!B)
239 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000240
Ted Kremenekcad9f412009-07-24 20:26:31 +0000241 // Is this a comparison?
242 if (!(B->isRelationalOp() || B->isEqualityOp()))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000243 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000245 // Are we comparing variables?
John McCallf6a16482010-12-04 03:47:34 +0000246 const DeclRefExpr *drLHS =
247 dyn_cast<DeclRefExpr>(B->getLHS()->IgnoreParenLValueCasts());
248 const DeclRefExpr *drRHS =
249 dyn_cast<DeclRefExpr>(B->getRHS()->IgnoreParenLValueCasts());
Mike Stump1eb44332009-09-09 15:08:12 +0000250
Ted Kremenekcad9f412009-07-24 20:26:31 +0000251 // Does at least one of the variables have a floating point type?
Douglas Gregor0c293ea2010-06-22 23:07:26 +0000252 drLHS = drLHS && drLHS->getType()->isRealFloatingType() ? drLHS : NULL;
253 drRHS = drRHS && drRHS->getType()->isRealFloatingType() ? drRHS : NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000255 if (!drLHS && !drRHS)
256 return;
257
258 const VarDecl *vdLHS = drLHS ? dyn_cast<VarDecl>(drLHS->getDecl()) : NULL;
259 const VarDecl *vdRHS = drRHS ? dyn_cast<VarDecl>(drRHS->getDecl()) : NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000261 if (!vdLHS && !vdRHS)
Mike Stump1eb44332009-09-09 15:08:12 +0000262 return;
263
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000264 // Does either variable appear in increment?
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000265 const DeclRefExpr *drInc = getIncrementedVar(increment, vdLHS, vdRHS);
Mike Stump1eb44332009-09-09 15:08:12 +0000266
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000267 if (!drInc)
268 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000269
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000270 // Emit the error. First figure out which DeclRefExpr in the condition
271 // referenced the compared variable.
272 const DeclRefExpr *drCond = vdLHS == drInc->getDecl() ? drLHS : drRHS;
273
Chris Lattner5f9e2722011-07-23 10:55:15 +0000274 SmallVector<SourceRange, 2> ranges;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000275 SmallString<256> sbuf;
Ted Kremenek2c016762010-03-24 22:39:47 +0000276 llvm::raw_svector_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Daniel Dunbar4087f272010-08-17 22:39:59 +0000278 os << "Variable '" << drCond->getDecl()->getName()
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000279 << "' with floating point type '" << drCond->getType().getAsString()
280 << "' should not be used as a loop counter";
281
282 ranges.push_back(drCond->getSourceRange());
283 ranges.push_back(drInc->getSourceRange());
Mike Stump1eb44332009-09-09 15:08:12 +0000284
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000285 const char *bugType = "Floating point variable used as loop counter";
Anna Zaks590dd8e2011-09-20 21:38:35 +0000286
287 PathDiagnosticLocation FSLoc =
288 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000289 BR.EmitBasicReport(AC->getDecl(),
290 bugType, "Security", os.str(),
Anna Zaks590dd8e2011-09-20 21:38:35 +0000291 FSLoc, ranges.data(), ranges.size());
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000292}
293
294//===----------------------------------------------------------------------===//
Ted Kremenekefcbb152009-07-23 22:29:41 +0000295// Check: Any use of 'gets' is insecure.
296// Originally: <rdar://problem/6335715>
297// Implements (part of): 300-BSI (buildsecurityin.us-cert.gov)
Zhongxing Xuaa30b3b2009-11-09 08:13:04 +0000298// CWE-242: Use of Inherently Dangerous Function
Ted Kremenekefcbb152009-07-23 22:29:41 +0000299//===----------------------------------------------------------------------===//
300
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000301void WalkAST::checkCall_gets(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000302 if (!filter.check_gets)
303 return;
304
Abramo Bagnara723df242010-12-14 22:11:44 +0000305 const FunctionProtoType *FPT
306 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Zhongxing Xubd842e32009-11-09 12:19:26 +0000307 if (!FPT)
Ted Kremenekefcbb152009-07-23 22:29:41 +0000308 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Ted Kremenekefcbb152009-07-23 22:29:41 +0000310 // Verify that the function takes a single argument.
Zhongxing Xubd842e32009-11-09 12:19:26 +0000311 if (FPT->getNumArgs() != 1)
Ted Kremenekefcbb152009-07-23 22:29:41 +0000312 return;
313
314 // Is the argument a 'char*'?
Zhongxing Xubd842e32009-11-09 12:19:26 +0000315 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
Ted Kremenekefcbb152009-07-23 22:29:41 +0000316 if (!PT)
317 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000318
Ted Kremenekefcbb152009-07-23 22:29:41 +0000319 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
320 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Ted Kremenekefcbb152009-07-23 22:29:41 +0000322 // Issue a warning.
323 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000324 PathDiagnosticLocation CELoc =
325 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000326 BR.EmitBasicReport(AC->getDecl(),
327 "Potential buffer overflow in call to 'gets'",
Ted Kremenekefcbb152009-07-23 22:29:41 +0000328 "Security",
329 "Call to function 'gets' is extremely insecure as it can "
330 "always result in a buffer overflow",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000331 CELoc, &R, 1);
Ted Kremenekefcbb152009-07-23 22:29:41 +0000332}
333
334//===----------------------------------------------------------------------===//
Zhongxing Xubd842e32009-11-09 12:19:26 +0000335// Check: Any use of 'getpwd' is insecure.
336// CWE-477: Use of Obsolete Functions
337//===----------------------------------------------------------------------===//
338
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000339void WalkAST::checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000340 if (!filter.check_getpw)
341 return;
342
Abramo Bagnara723df242010-12-14 22:11:44 +0000343 const FunctionProtoType *FPT
344 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Zhongxing Xubd842e32009-11-09 12:19:26 +0000345 if (!FPT)
346 return;
347
348 // Verify that the function takes two arguments.
349 if (FPT->getNumArgs() != 2)
350 return;
351
352 // Verify the first argument type is integer.
353 if (!FPT->getArgType(0)->isIntegerType())
354 return;
355
356 // Verify the second argument type is char*.
357 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
358 if (!PT)
359 return;
360
361 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
362 return;
363
364 // Issue a warning.
365 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000366 PathDiagnosticLocation CELoc =
367 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000368 BR.EmitBasicReport(AC->getDecl(),
369 "Potential buffer overflow in call to 'getpw'",
Zhongxing Xubd842e32009-11-09 12:19:26 +0000370 "Security",
371 "The getpw() function is dangerous as it may overflow the "
372 "provided buffer. It is obsoleted by getpwuid().",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000373 CELoc, &R, 1);
Zhongxing Xubd842e32009-11-09 12:19:26 +0000374}
375
376//===----------------------------------------------------------------------===//
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000377// Check: Any use of 'mktemp' is insecure. It is obsoleted by mkstemp().
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000378// CWE-377: Insecure Temporary File
379//===----------------------------------------------------------------------===//
380
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000381void WalkAST::checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000382 if (!filter.check_mktemp) {
383 // Fall back to the security check of looking for enough 'X's in the
384 // format string, since that is a less severe warning.
385 checkCall_mkstemp(CE, FD);
Ted Kremenek76a54242012-01-20 01:44:29 +0000386 return;
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000387 }
Ted Kremenek76a54242012-01-20 01:44:29 +0000388
Abramo Bagnara723df242010-12-14 22:11:44 +0000389 const FunctionProtoType *FPT
390 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000391 if(!FPT)
392 return;
Ted Kremenek2c016762010-03-24 22:39:47 +0000393
Lenny Maioraniea4411e2011-03-31 21:26:55 +0000394 // Verify that the function takes a single argument.
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000395 if (FPT->getNumArgs() != 1)
396 return;
397
398 // Verify that the argument is Pointer Type.
399 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
400 if (!PT)
401 return;
402
403 // Verify that the argument is a 'char*'.
404 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
405 return;
Ted Kremenek431a2cb2010-03-24 22:39:45 +0000406
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000407 // Issue a waring.
408 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000409 PathDiagnosticLocation CELoc =
410 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000411 BR.EmitBasicReport(AC->getDecl(),
412 "Potential insecure temporary file in call 'mktemp'",
Eli Friedmana7e68452010-08-22 01:00:03 +0000413 "Security",
414 "Call to function 'mktemp' is insecure as it always "
Ted Kremenek07189522012-04-04 18:11:35 +0000415 "creates or uses insecure temporary file. Use 'mkstemp' "
416 "instead",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000417 CELoc, &R, 1);
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000418}
419
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000420
421//===----------------------------------------------------------------------===//
422// Check: Use of 'mkstemp', 'mktemp', 'mkdtemp' should contain at least 6 X's.
423//===----------------------------------------------------------------------===//
424
425void WalkAST::checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD) {
426 if (!filter.check_mkstemp)
427 return;
428
429 StringRef Name = FD->getIdentifier()->getName();
430 std::pair<signed, signed> ArgSuffix =
431 llvm::StringSwitch<std::pair<signed, signed> >(Name)
432 .Case("mktemp", std::make_pair(0,-1))
433 .Case("mkstemp", std::make_pair(0,-1))
434 .Case("mkdtemp", std::make_pair(0,-1))
435 .Case("mkstemps", std::make_pair(0,1))
436 .Default(std::make_pair(-1, -1));
437
438 assert(ArgSuffix.first >= 0 && "Unsupported function");
439
440 // Check if the number of arguments is consistent with out expectations.
441 unsigned numArgs = CE->getNumArgs();
442 if ((signed) numArgs <= ArgSuffix.first)
443 return;
444
445 const StringLiteral *strArg =
446 dyn_cast<StringLiteral>(CE->getArg((unsigned)ArgSuffix.first)
447 ->IgnoreParenImpCasts());
448
449 // Currently we only handle string literals. It is possible to do better,
450 // either by looking at references to const variables, or by doing real
451 // flow analysis.
452 if (!strArg || strArg->getCharByteWidth() != 1)
453 return;
454
455 // Count the number of X's, taking into account a possible cutoff suffix.
456 StringRef str = strArg->getString();
457 unsigned numX = 0;
458 unsigned n = str.size();
459
460 // Take into account the suffix.
461 unsigned suffix = 0;
462 if (ArgSuffix.second >= 0) {
463 const Expr *suffixEx = CE->getArg((unsigned)ArgSuffix.second);
464 llvm::APSInt Result;
465 if (!suffixEx->EvaluateAsInt(Result, BR.getContext()))
466 return;
467 // FIXME: Issue a warning.
468 if (Result.isNegative())
469 return;
470 suffix = (unsigned) Result.getZExtValue();
471 n = (n > suffix) ? n - suffix : 0;
472 }
473
474 for (unsigned i = 0; i < n; ++i)
475 if (str[i] == 'X') ++numX;
476
477 if (numX >= 6)
478 return;
479
480 // Issue a warning.
481 SourceRange R = strArg->getSourceRange();
482 PathDiagnosticLocation CELoc =
483 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000484 SmallString<512> buf;
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000485 llvm::raw_svector_ostream out(buf);
486 out << "Call to '" << Name << "' should have at least 6 'X's in the"
487 " format string to be secure (" << numX << " 'X'";
488 if (numX != 1)
489 out << 's';
490 out << " seen";
491 if (suffix) {
492 out << ", " << suffix << " character";
493 if (suffix > 1)
494 out << 's';
495 out << " used as a suffix";
496 }
497 out << ')';
Ted Kremenek07189522012-04-04 18:11:35 +0000498 BR.EmitBasicReport(AC->getDecl(),
499 "Insecure temporary file creation", "Security",
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000500 out.str(), CELoc, &R, 1);
501}
502
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000503//===----------------------------------------------------------------------===//
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000504// Check: Any use of 'strcpy' is insecure.
505//
506// CWE-119: Improper Restriction of Operations within
507// the Bounds of a Memory Buffer
508//===----------------------------------------------------------------------===//
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000509void WalkAST::checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000510 if (!filter.check_strcpy)
511 return;
512
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000513 if (!checkCall_strCommon(CE, FD))
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000514 return;
515
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000516 // Issue a warning.
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000517 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000518 PathDiagnosticLocation CELoc =
519 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000520 BR.EmitBasicReport(AC->getDecl(),
521 "Potential insecure memory buffer bounds restriction in "
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000522 "call 'strcpy'",
523 "Security",
524 "Call to function 'strcpy' is insecure as it does not "
Ted Kremenek07189522012-04-04 18:11:35 +0000525 "provide bounding of the memory buffer. Replace "
526 "unbounded copy functions with analogous functions that "
527 "support length arguments such as 'strlcpy'. CWE-119.",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000528 CELoc, &R, 1);
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000529}
530
531//===----------------------------------------------------------------------===//
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000532// Check: Any use of 'strcat' is insecure.
533//
534// CWE-119: Improper Restriction of Operations within
535// the Bounds of a Memory Buffer
536//===----------------------------------------------------------------------===//
537void WalkAST::checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000538 if (!filter.check_strcpy)
539 return;
540
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000541 if (!checkCall_strCommon(CE, FD))
542 return;
543
544 // Issue a warning.
545 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000546 PathDiagnosticLocation CELoc =
547 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000548 BR.EmitBasicReport(AC->getDecl(),
549 "Potential insecure memory buffer bounds restriction in "
550 "call 'strcat'",
551 "Security",
552 "Call to function 'strcat' is insecure as it does not "
553 "provide bounding of the memory buffer. Replace "
554 "unbounded copy functions with analogous functions that "
555 "support length arguments such as 'strlcat'. CWE-119.",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000556 CELoc, &R, 1);
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000557}
558
559//===----------------------------------------------------------------------===//
560// Common check for str* functions with no bounds parameters.
561//===----------------------------------------------------------------------===//
562bool WalkAST::checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD) {
563 const FunctionProtoType *FPT
564 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
565 if (!FPT)
566 return false;
567
568 // Verify the function takes two arguments, three in the _chk version.
569 int numArgs = FPT->getNumArgs();
570 if (numArgs != 2 && numArgs != 3)
571 return false;
572
573 // Verify the type for both arguments.
574 for (int i = 0; i < 2; i++) {
575 // Verify that the arguments are pointers.
576 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i));
577 if (!PT)
578 return false;
579
580 // Verify that the argument is a 'char*'.
581 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
582 return false;
583 }
584
585 return true;
586}
587
588//===----------------------------------------------------------------------===//
Ted Kremenek24650472009-09-02 02:47:41 +0000589// Check: Linear congruent random number generators should not be used
590// Originally: <rdar://problem/63371000>
591// CWE-338: Use of cryptographically weak prng
592//===----------------------------------------------------------------------===//
593
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000594void WalkAST::checkCall_rand(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000595 if (!filter.check_rand || !CheckRand)
Ted Kremenek24650472009-09-02 02:47:41 +0000596 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Abramo Bagnara723df242010-12-14 22:11:44 +0000598 const FunctionProtoType *FTP
599 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Ted Kremenek24650472009-09-02 02:47:41 +0000600 if (!FTP)
601 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Ted Kremenek24650472009-09-02 02:47:41 +0000603 if (FTP->getNumArgs() == 1) {
604 // Is the argument an 'unsigned short *'?
605 // (Actually any integer type is allowed.)
606 const PointerType *PT = dyn_cast<PointerType>(FTP->getArgType(0));
607 if (!PT)
608 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Ted Kremenek24650472009-09-02 02:47:41 +0000610 if (! PT->getPointeeType()->isIntegerType())
611 return;
612 }
Mike Stump1eb44332009-09-09 15:08:12 +0000613 else if (FTP->getNumArgs() != 0)
Ted Kremenek24650472009-09-02 02:47:41 +0000614 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000615
Ted Kremenek24650472009-09-02 02:47:41 +0000616 // Issue a warning.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000617 SmallString<256> buf1;
Ted Kremenek2c016762010-03-24 22:39:47 +0000618 llvm::raw_svector_ostream os1(buf1);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000619 os1 << '\'' << *FD << "' is a poor random number generator";
Ted Kremenek24650472009-09-02 02:47:41 +0000620
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000621 SmallString<256> buf2;
Ted Kremenek2c016762010-03-24 22:39:47 +0000622 llvm::raw_svector_ostream os2(buf2);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000623 os2 << "Function '" << *FD
Ted Kremenek24650472009-09-02 02:47:41 +0000624 << "' is obsolete because it implements a poor random number generator."
625 << " Use 'arc4random' instead";
626
627 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000628 PathDiagnosticLocation CELoc =
629 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000630 BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(),
631 CELoc, &R, 1);
Ted Kremenek24650472009-09-02 02:47:41 +0000632}
633
634//===----------------------------------------------------------------------===//
635// Check: 'random' should not be used
636// Originally: <rdar://problem/63371000>
637//===----------------------------------------------------------------------===//
638
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000639void WalkAST::checkCall_random(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000640 if (!CheckRand || !filter.check_rand)
Ted Kremenek24650472009-09-02 02:47:41 +0000641 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Abramo Bagnara723df242010-12-14 22:11:44 +0000643 const FunctionProtoType *FTP
644 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Ted Kremenek24650472009-09-02 02:47:41 +0000645 if (!FTP)
646 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Ted Kremenek24650472009-09-02 02:47:41 +0000648 // Verify that the function takes no argument.
649 if (FTP->getNumArgs() != 0)
650 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000651
Ted Kremenek24650472009-09-02 02:47:41 +0000652 // Issue a warning.
653 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000654 PathDiagnosticLocation CELoc =
655 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000656 BR.EmitBasicReport(AC->getDecl(),
657 "'random' is not a secure random number generator",
Ted Kremenek24650472009-09-02 02:47:41 +0000658 "Security",
659 "The 'random' function produces a sequence of values that "
660 "an adversary may be able to predict. Use 'arc4random' "
Anna Zaks590dd8e2011-09-20 21:38:35 +0000661 "instead", CELoc, &R, 1);
Ted Kremenek24650472009-09-02 02:47:41 +0000662}
663
664//===----------------------------------------------------------------------===//
Anna Zaksa7957ff2011-10-11 04:34:54 +0000665// Check: 'vfork' should not be used.
666// POS33-C: Do not use vfork().
667//===----------------------------------------------------------------------===//
668
669void WalkAST::checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000670 if (!filter.check_vfork)
671 return;
672
Anna Zaksa7957ff2011-10-11 04:34:54 +0000673 // All calls to vfork() are insecure, issue a warning.
674 SourceRange R = CE->getCallee()->getSourceRange();
675 PathDiagnosticLocation CELoc =
676 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000677 BR.EmitBasicReport(AC->getDecl(),
678 "Potential insecure implementation-specific behavior in "
Anna Zaksa7957ff2011-10-11 04:34:54 +0000679 "call 'vfork'",
680 "Security",
681 "Call to function 'vfork' is insecure as it can lead to "
682 "denial of service situations in the parent process. "
683 "Replace calls to vfork with calls to the safer "
684 "'posix_spawn' function",
685 CELoc, &R, 1);
686}
687
688//===----------------------------------------------------------------------===//
Ted Kremenek65a81a92009-08-28 00:08:09 +0000689// Check: Should check whether privileges are dropped successfully.
690// Originally: <rdar://problem/6337132>
691//===----------------------------------------------------------------------===//
692
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000693void WalkAST::checkUncheckedReturnValue(CallExpr *CE) {
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000694 if (!filter.check_UncheckedReturn)
695 return;
696
Ted Kremenek65a81a92009-08-28 00:08:09 +0000697 const FunctionDecl *FD = CE->getDirectCallee();
698 if (!FD)
699 return;
700
701 if (II_setid[0] == NULL) {
Ted Kremenek24650472009-09-02 02:47:41 +0000702 static const char * const identifiers[num_setids] = {
Ted Kremenek65a81a92009-08-28 00:08:09 +0000703 "setuid", "setgid", "seteuid", "setegid",
704 "setreuid", "setregid"
705 };
Mike Stump1eb44332009-09-09 15:08:12 +0000706
Ted Kremenek24650472009-09-02 02:47:41 +0000707 for (size_t i = 0; i < num_setids; i++)
Mike Stump1eb44332009-09-09 15:08:12 +0000708 II_setid[i] = &BR.getContext().Idents.get(identifiers[i]);
Ted Kremenek65a81a92009-08-28 00:08:09 +0000709 }
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Ted Kremenek65a81a92009-08-28 00:08:09 +0000711 const IdentifierInfo *id = FD->getIdentifier();
712 size_t identifierid;
713
Ted Kremenek24650472009-09-02 02:47:41 +0000714 for (identifierid = 0; identifierid < num_setids; identifierid++)
Ted Kremenek65a81a92009-08-28 00:08:09 +0000715 if (id == II_setid[identifierid])
716 break;
717
Ted Kremenek24650472009-09-02 02:47:41 +0000718 if (identifierid >= num_setids)
Ted Kremenek65a81a92009-08-28 00:08:09 +0000719 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Abramo Bagnara723df242010-12-14 22:11:44 +0000721 const FunctionProtoType *FTP
722 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Ted Kremenek65a81a92009-08-28 00:08:09 +0000723 if (!FTP)
724 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000725
Ted Kremeneka8187832009-08-28 00:24:55 +0000726 // Verify that the function takes one or two arguments (depending on
727 // the function).
Ted Kremenek65a81a92009-08-28 00:08:09 +0000728 if (FTP->getNumArgs() != (identifierid < 4 ? 1 : 2))
729 return;
730
731 // The arguments must be integers.
732 for (unsigned i = 0; i < FTP->getNumArgs(); i++)
733 if (! FTP->getArgType(i)->isIntegerType())
734 return;
735
736 // Issue a warning.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000737 SmallString<256> buf1;
Ted Kremenek2c016762010-03-24 22:39:47 +0000738 llvm::raw_svector_ostream os1(buf1);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000739 os1 << "Return value is not checked in call to '" << *FD << '\'';
Ted Kremenek65a81a92009-08-28 00:08:09 +0000740
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000741 SmallString<256> buf2;
Ted Kremenek2c016762010-03-24 22:39:47 +0000742 llvm::raw_svector_ostream os2(buf2);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000743 os2 << "The return value from the call to '" << *FD
744 << "' is not checked. If an error occurs in '" << *FD
Ted Kremenek65a81a92009-08-28 00:08:09 +0000745 << "', the following code may execute with unexpected privileges";
746
747 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000748 PathDiagnosticLocation CELoc =
749 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000750 BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(),
751 CELoc, &R, 1);
Ted Kremenek65a81a92009-08-28 00:08:09 +0000752}
753
754//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000755// SecuritySyntaxChecker
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000756//===----------------------------------------------------------------------===//
757
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000758namespace {
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +0000759class SecuritySyntaxChecker : public Checker<check::ASTCodeBody> {
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000760public:
Ted Kremenek76a54242012-01-20 01:44:29 +0000761 ChecksFilter filter;
762
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000763 void checkASTCodeBody(const Decl *D, AnalysisManager& mgr,
764 BugReporter &BR) const {
Ted Kremenek76a54242012-01-20 01:44:29 +0000765 WalkAST walker(BR, mgr.getAnalysisDeclContext(D), filter);
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000766 walker.Visit(D->getBody());
767 }
768};
769}
770
Ted Kremenek76a54242012-01-20 01:44:29 +0000771#define REGISTER_CHECKER(name) \
772void ento::register##name(CheckerManager &mgr) {\
773 mgr.registerChecker<SecuritySyntaxChecker>()->filter.check_##name = true;\
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000774}
Ted Kremenek76a54242012-01-20 01:44:29 +0000775
776REGISTER_CHECKER(gets)
777REGISTER_CHECKER(getpw)
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000778REGISTER_CHECKER(mkstemp)
Ted Kremenek76a54242012-01-20 01:44:29 +0000779REGISTER_CHECKER(mktemp)
780REGISTER_CHECKER(strcpy)
781REGISTER_CHECKER(rand)
782REGISTER_CHECKER(vfork)
783REGISTER_CHECKER(FloatLoopCounter)
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000784REGISTER_CHECKER(UncheckedReturn)
785
Ted Kremenek76a54242012-01-20 01:44:29 +0000786