blob: 7ef13ab5386594d7d355b47593d50572739ce19e [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/AST/StmtVisitor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "clang/Analysis/AnalysisContext.h"
Anna Zaks590dd8e2011-09-20 21:38:35 +000017#include "clang/Basic/TargetInfo.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000018#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/StaticAnalyzer/Core/Checker.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 ||
Eli Friedman42f74f22012-08-08 23:57:20 +000034 T.getOS() == llvm::Triple::Bitrig ||
Douglas Gregor0f565592011-01-17 19:16:24 +000035 T.getOS() == llvm::Triple::DragonFly;
Ted Kremenek88c8bc82010-01-15 08:20:31 +000036}
37
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000038namespace {
Ted Kremenek76a54242012-01-20 01:44:29 +000039struct ChecksFilter {
40 DefaultBool check_gets;
41 DefaultBool check_getpw;
42 DefaultBool check_mktemp;
Ted Kremenekb63d8d82012-01-20 05:35:06 +000043 DefaultBool check_mkstemp;
Ted Kremenek76a54242012-01-20 01:44:29 +000044 DefaultBool check_strcpy;
45 DefaultBool check_rand;
46 DefaultBool check_vfork;
47 DefaultBool check_FloatLoopCounter;
Ted Kremenekb63d8d82012-01-20 05:35:06 +000048 DefaultBool check_UncheckedReturn;
Ted Kremenek76a54242012-01-20 01:44:29 +000049};
50
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +000051class WalkAST : public StmtVisitor<WalkAST> {
Mike Stump1eb44332009-09-09 15:08:12 +000052 BugReporter &BR;
Ted Kremenek1d26f482011-10-24 01:32:45 +000053 AnalysisDeclContext* AC;
Ted Kremenek24650472009-09-02 02:47:41 +000054 enum { num_setids = 6 };
55 IdentifierInfo *II_setid[num_setids];
Ted Kremenek2c016762010-03-24 22:39:47 +000056
Ted Kremenek88c8bc82010-01-15 08:20:31 +000057 const bool CheckRand;
Ted Kremenek76a54242012-01-20 01:44:29 +000058 const ChecksFilter &filter;
Mike Stump1eb44332009-09-09 15:08:12 +000059
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000060public:
Ted Kremenek76a54242012-01-20 01:44:29 +000061 WalkAST(BugReporter &br, AnalysisDeclContext* ac,
62 const ChecksFilter &f)
Anna Zaks590dd8e2011-09-20 21:38:35 +000063 : BR(br), AC(ac), II_setid(),
Ted Kremenek76a54242012-01-20 01:44:29 +000064 CheckRand(isArc4RandomAvailable(BR.getContext())),
65 filter(f) {}
Mike Stump1eb44332009-09-09 15:08:12 +000066
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000067 // Statement visitor methods.
Ted Kremenekefcbb152009-07-23 22:29:41 +000068 void VisitCallExpr(CallExpr *CE);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000069 void VisitForStmt(ForStmt *S);
Ted Kremenek65a81a92009-08-28 00:08:09 +000070 void VisitCompoundStmt (CompoundStmt *S);
Ted Kremenek8baf86d2009-07-23 21:34:35 +000071 void VisitStmt(Stmt *S) { VisitChildren(S); }
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000072
73 void VisitChildren(Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +000074
Ted Kremenekefcbb152009-07-23 22:29:41 +000075 // Helpers.
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000076 bool checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD);
Mike Stump1eb44332009-09-09 15:08:12 +000077
Lenny Maioranic2dace12011-04-03 05:07:11 +000078 typedef void (WalkAST::*FnCheck)(const CallExpr *,
79 const FunctionDecl *);
80
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000081 // Checker-specific methods.
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000082 void checkLoopConditionForFloat(const ForStmt *FS);
83 void checkCall_gets(const CallExpr *CE, const FunctionDecl *FD);
84 void checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD);
85 void checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD);
Ted Kremenekb63d8d82012-01-20 05:35:06 +000086 void checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD);
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000087 void checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD);
88 void checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD);
89 void checkCall_rand(const CallExpr *CE, const FunctionDecl *FD);
90 void checkCall_random(const CallExpr *CE, const FunctionDecl *FD);
Anna Zaksa7957ff2011-10-11 04:34:54 +000091 void checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD);
Lenny Maiorani9cb677e2011-04-05 20:18:46 +000092 void checkUncheckedReturnValue(CallExpr *CE);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +000093};
94} // end anonymous namespace
95
96//===----------------------------------------------------------------------===//
97// AST walking.
98//===----------------------------------------------------------------------===//
99
100void WalkAST::VisitChildren(Stmt *S) {
101 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
102 if (Stmt *child = *I)
103 Visit(child);
104}
105
Ted Kremenekefcbb152009-07-23 22:29:41 +0000106void WalkAST::VisitCallExpr(CallExpr *CE) {
Lenny Maioranic2dace12011-04-03 05:07:11 +0000107 // Get the callee.
108 const FunctionDecl *FD = CE->getDirectCallee();
109
110 if (!FD)
111 return;
112
113 // Get the name of the callee. If it's a builtin, strip off the prefix.
114 IdentifierInfo *II = FD->getIdentifier();
115 if (!II) // if no identifier, not a simple C function
116 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000117 StringRef Name = II->getName();
Lenny Maioranic2dace12011-04-03 05:07:11 +0000118 if (Name.startswith("__builtin_"))
119 Name = Name.substr(10);
120
121 // Set the evaluation function by switching on the callee name.
122 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000123 .Case("gets", &WalkAST::checkCall_gets)
124 .Case("getpw", &WalkAST::checkCall_getpw)
125 .Case("mktemp", &WalkAST::checkCall_mktemp)
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000126 .Case("mkstemp", &WalkAST::checkCall_mkstemp)
127 .Case("mkdtemp", &WalkAST::checkCall_mkstemp)
128 .Case("mkstemps", &WalkAST::checkCall_mkstemp)
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000129 .Cases("strcpy", "__strcpy_chk", &WalkAST::checkCall_strcpy)
130 .Cases("strcat", "__strcat_chk", &WalkAST::checkCall_strcat)
131 .Case("drand48", &WalkAST::checkCall_rand)
132 .Case("erand48", &WalkAST::checkCall_rand)
133 .Case("jrand48", &WalkAST::checkCall_rand)
134 .Case("lrand48", &WalkAST::checkCall_rand)
135 .Case("mrand48", &WalkAST::checkCall_rand)
136 .Case("nrand48", &WalkAST::checkCall_rand)
137 .Case("lcong48", &WalkAST::checkCall_rand)
138 .Case("rand", &WalkAST::checkCall_rand)
139 .Case("rand_r", &WalkAST::checkCall_rand)
140 .Case("random", &WalkAST::checkCall_random)
Anna Zaksa7957ff2011-10-11 04:34:54 +0000141 .Case("vfork", &WalkAST::checkCall_vfork)
Lenny Maioranic2dace12011-04-03 05:07:11 +0000142 .Default(NULL);
143
144 // If the callee isn't defined, it is not of security concern.
145 // Check and evaluate the call.
146 if (evalFunction)
147 (this->*evalFunction)(CE, FD);
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Ted Kremenekefcbb152009-07-23 22:29:41 +0000149 // Recurse and check children.
150 VisitChildren(CE);
151}
152
Ted Kremenek65a81a92009-08-28 00:08:09 +0000153void WalkAST::VisitCompoundStmt(CompoundStmt *S) {
154 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
Mike Stump1eb44332009-09-09 15:08:12 +0000155 if (Stmt *child = *I) {
156 if (CallExpr *CE = dyn_cast<CallExpr>(child))
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000157 checkUncheckedReturnValue(CE);
Mike Stump1eb44332009-09-09 15:08:12 +0000158 Visit(child);
159 }
Ted Kremenek65a81a92009-08-28 00:08:09 +0000160}
161
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000162void WalkAST::VisitForStmt(ForStmt *FS) {
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000163 checkLoopConditionForFloat(FS);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000164
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000165 // Recurse and check children.
166 VisitChildren(FS);
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000167}
168
169//===----------------------------------------------------------------------===//
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000170// Check: floating poing variable used as loop counter.
Ted Kremenek5abeb522009-07-23 21:44:18 +0000171// Originally: <rdar://problem/6336718>
172// Implements: CERT security coding advisory FLP-30.
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000173//===----------------------------------------------------------------------===//
174
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000175static const DeclRefExpr*
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000176getIncrementedVar(const Expr *expr, const VarDecl *x, const VarDecl *y) {
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000177 expr = expr->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000178
179 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(expr)) {
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000180 if (!(B->isAssignmentOp() || B->isCompoundAssignmentOp() ||
John McCall2de56d12010-08-25 11:45:40 +0000181 B->getOpcode() == BO_Comma))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000182 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000184 if (const DeclRefExpr *lhs = getIncrementedVar(B->getLHS(), x, y))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000185 return lhs;
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000187 if (const DeclRefExpr *rhs = getIncrementedVar(B->getRHS(), x, y))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000188 return rhs;
Mike Stump1eb44332009-09-09 15:08:12 +0000189
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000190 return NULL;
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000191 }
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000193 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
194 const NamedDecl *ND = DR->getDecl();
195 return ND == x || ND == y ? DR : NULL;
196 }
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000198 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(expr))
199 return U->isIncrementDecrementOp()
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000200 ? getIncrementedVar(U->getSubExpr(), x, y) : NULL;
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000201
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000202 return NULL;
203}
204
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000205/// CheckLoopConditionForFloat - This check looks for 'for' statements that
206/// use a floating point variable as a loop counter.
207/// CERT: FLP30-C, FLP30-CPP.
208///
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000209void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000210 if (!filter.check_FloatLoopCounter)
211 return;
212
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000213 // Does the loop have a condition?
214 const Expr *condition = FS->getCond();
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000216 if (!condition)
217 return;
218
219 // Does the loop have an increment?
220 const Expr *increment = FS->getInc();
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000222 if (!increment)
223 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000225 // Strip away '()' and casts.
226 condition = condition->IgnoreParenCasts();
227 increment = increment->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000228
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000229 // Is the loop condition a comparison?
230 const BinaryOperator *B = dyn_cast<BinaryOperator>(condition);
231
232 if (!B)
233 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000234
Ted Kremenekcad9f412009-07-24 20:26:31 +0000235 // Is this a comparison?
236 if (!(B->isRelationalOp() || B->isEqualityOp()))
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000237 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000238
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000239 // Are we comparing variables?
John McCallf6a16482010-12-04 03:47:34 +0000240 const DeclRefExpr *drLHS =
241 dyn_cast<DeclRefExpr>(B->getLHS()->IgnoreParenLValueCasts());
242 const DeclRefExpr *drRHS =
243 dyn_cast<DeclRefExpr>(B->getRHS()->IgnoreParenLValueCasts());
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Ted Kremenekcad9f412009-07-24 20:26:31 +0000245 // Does at least one of the variables have a floating point type?
Douglas Gregor0c293ea2010-06-22 23:07:26 +0000246 drLHS = drLHS && drLHS->getType()->isRealFloatingType() ? drLHS : NULL;
247 drRHS = drRHS && drRHS->getType()->isRealFloatingType() ? drRHS : NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000249 if (!drLHS && !drRHS)
250 return;
251
252 const VarDecl *vdLHS = drLHS ? dyn_cast<VarDecl>(drLHS->getDecl()) : NULL;
253 const VarDecl *vdRHS = drRHS ? dyn_cast<VarDecl>(drRHS->getDecl()) : NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000255 if (!vdLHS && !vdRHS)
Mike Stump1eb44332009-09-09 15:08:12 +0000256 return;
257
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000258 // Does either variable appear in increment?
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000259 const DeclRefExpr *drInc = getIncrementedVar(increment, vdLHS, vdRHS);
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000261 if (!drInc)
262 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000263
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000264 // Emit the error. First figure out which DeclRefExpr in the condition
265 // referenced the compared variable.
Ted Kremenekd0f3d712012-10-12 22:56:42 +0000266 assert(drInc->getDecl());
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000267 const DeclRefExpr *drCond = vdLHS == drInc->getDecl() ? drLHS : drRHS;
268
Chris Lattner5f9e2722011-07-23 10:55:15 +0000269 SmallVector<SourceRange, 2> ranges;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000270 SmallString<256> sbuf;
Ted Kremenek2c016762010-03-24 22:39:47 +0000271 llvm::raw_svector_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Daniel Dunbar4087f272010-08-17 22:39:59 +0000273 os << "Variable '" << drCond->getDecl()->getName()
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000274 << "' with floating point type '" << drCond->getType().getAsString()
275 << "' should not be used as a loop counter";
276
277 ranges.push_back(drCond->getSourceRange());
278 ranges.push_back(drInc->getSourceRange());
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Ted Kremenek8baf86d2009-07-23 21:34:35 +0000280 const char *bugType = "Floating point variable used as loop counter";
Anna Zaks590dd8e2011-09-20 21:38:35 +0000281
282 PathDiagnosticLocation FSLoc =
283 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000284 BR.EmitBasicReport(AC->getDecl(),
285 bugType, "Security", os.str(),
Anna Zaks590dd8e2011-09-20 21:38:35 +0000286 FSLoc, ranges.data(), ranges.size());
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000287}
288
289//===----------------------------------------------------------------------===//
Ted Kremenekefcbb152009-07-23 22:29:41 +0000290// Check: Any use of 'gets' is insecure.
291// Originally: <rdar://problem/6335715>
292// Implements (part of): 300-BSI (buildsecurityin.us-cert.gov)
Zhongxing Xuaa30b3b2009-11-09 08:13:04 +0000293// CWE-242: Use of Inherently Dangerous Function
Ted Kremenekefcbb152009-07-23 22:29:41 +0000294//===----------------------------------------------------------------------===//
295
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000296void WalkAST::checkCall_gets(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000297 if (!filter.check_gets)
298 return;
299
Abramo Bagnara723df242010-12-14 22:11:44 +0000300 const FunctionProtoType *FPT
301 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Zhongxing Xubd842e32009-11-09 12:19:26 +0000302 if (!FPT)
Ted Kremenekefcbb152009-07-23 22:29:41 +0000303 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000304
Ted Kremenekefcbb152009-07-23 22:29:41 +0000305 // Verify that the function takes a single argument.
Zhongxing Xubd842e32009-11-09 12:19:26 +0000306 if (FPT->getNumArgs() != 1)
Ted Kremenekefcbb152009-07-23 22:29:41 +0000307 return;
308
309 // Is the argument a 'char*'?
Zhongxing Xubd842e32009-11-09 12:19:26 +0000310 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
Ted Kremenekefcbb152009-07-23 22:29:41 +0000311 if (!PT)
312 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Ted Kremenekefcbb152009-07-23 22:29:41 +0000314 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
315 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Ted Kremenekefcbb152009-07-23 22:29:41 +0000317 // Issue a warning.
318 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000319 PathDiagnosticLocation CELoc =
320 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000321 BR.EmitBasicReport(AC->getDecl(),
322 "Potential buffer overflow in call to 'gets'",
Ted Kremenekefcbb152009-07-23 22:29:41 +0000323 "Security",
324 "Call to function 'gets' is extremely insecure as it can "
325 "always result in a buffer overflow",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000326 CELoc, &R, 1);
Ted Kremenekefcbb152009-07-23 22:29:41 +0000327}
328
329//===----------------------------------------------------------------------===//
Zhongxing Xubd842e32009-11-09 12:19:26 +0000330// Check: Any use of 'getpwd' is insecure.
331// CWE-477: Use of Obsolete Functions
332//===----------------------------------------------------------------------===//
333
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000334void WalkAST::checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000335 if (!filter.check_getpw)
336 return;
337
Abramo Bagnara723df242010-12-14 22:11:44 +0000338 const FunctionProtoType *FPT
339 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Zhongxing Xubd842e32009-11-09 12:19:26 +0000340 if (!FPT)
341 return;
342
343 // Verify that the function takes two arguments.
344 if (FPT->getNumArgs() != 2)
345 return;
346
347 // Verify the first argument type is integer.
348 if (!FPT->getArgType(0)->isIntegerType())
349 return;
350
351 // Verify the second argument type is char*.
352 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
353 if (!PT)
354 return;
355
356 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
357 return;
358
359 // Issue a warning.
360 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000361 PathDiagnosticLocation CELoc =
362 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000363 BR.EmitBasicReport(AC->getDecl(),
364 "Potential buffer overflow in call to 'getpw'",
Zhongxing Xubd842e32009-11-09 12:19:26 +0000365 "Security",
366 "The getpw() function is dangerous as it may overflow the "
367 "provided buffer. It is obsoleted by getpwuid().",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000368 CELoc, &R, 1);
Zhongxing Xubd842e32009-11-09 12:19:26 +0000369}
370
371//===----------------------------------------------------------------------===//
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000372// Check: Any use of 'mktemp' is insecure. It is obsoleted by mkstemp().
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000373// CWE-377: Insecure Temporary File
374//===----------------------------------------------------------------------===//
375
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000376void WalkAST::checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenekb0754172012-06-29 21:01:35 +0000377 if (!filter.check_mktemp) {
378 // Fall back to the security check of looking for enough 'X's in the
379 // format string, since that is a less severe warning.
380 checkCall_mkstemp(CE, FD);
381 return;
382 }
383
Abramo Bagnara723df242010-12-14 22:11:44 +0000384 const FunctionProtoType *FPT
385 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000386 if(!FPT)
387 return;
Ted Kremenek2c016762010-03-24 22:39:47 +0000388
Lenny Maioraniea4411e2011-03-31 21:26:55 +0000389 // Verify that the function takes a single argument.
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000390 if (FPT->getNumArgs() != 1)
391 return;
392
393 // Verify that the argument is Pointer Type.
394 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
395 if (!PT)
396 return;
397
398 // Verify that the argument is a 'char*'.
399 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
400 return;
Ted Kremenek431a2cb2010-03-24 22:39:45 +0000401
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000402 // Issue a waring.
403 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000404 PathDiagnosticLocation CELoc =
405 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000406 BR.EmitBasicReport(AC->getDecl(),
407 "Potential insecure temporary file in call 'mktemp'",
Eli Friedmana7e68452010-08-22 01:00:03 +0000408 "Security",
409 "Call to function 'mktemp' is insecure as it always "
Ted Kremenek07189522012-04-04 18:11:35 +0000410 "creates or uses insecure temporary file. Use 'mkstemp' "
411 "instead",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000412 CELoc, &R, 1);
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000413}
414
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000415
416//===----------------------------------------------------------------------===//
417// Check: Use of 'mkstemp', 'mktemp', 'mkdtemp' should contain at least 6 X's.
418//===----------------------------------------------------------------------===//
419
420void WalkAST::checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD) {
421 if (!filter.check_mkstemp)
422 return;
423
424 StringRef Name = FD->getIdentifier()->getName();
425 std::pair<signed, signed> ArgSuffix =
426 llvm::StringSwitch<std::pair<signed, signed> >(Name)
427 .Case("mktemp", std::make_pair(0,-1))
428 .Case("mkstemp", std::make_pair(0,-1))
429 .Case("mkdtemp", std::make_pair(0,-1))
430 .Case("mkstemps", std::make_pair(0,1))
431 .Default(std::make_pair(-1, -1));
432
433 assert(ArgSuffix.first >= 0 && "Unsupported function");
434
435 // Check if the number of arguments is consistent with out expectations.
436 unsigned numArgs = CE->getNumArgs();
437 if ((signed) numArgs <= ArgSuffix.first)
438 return;
439
440 const StringLiteral *strArg =
441 dyn_cast<StringLiteral>(CE->getArg((unsigned)ArgSuffix.first)
442 ->IgnoreParenImpCasts());
443
444 // Currently we only handle string literals. It is possible to do better,
445 // either by looking at references to const variables, or by doing real
446 // flow analysis.
447 if (!strArg || strArg->getCharByteWidth() != 1)
448 return;
449
450 // Count the number of X's, taking into account a possible cutoff suffix.
451 StringRef str = strArg->getString();
452 unsigned numX = 0;
453 unsigned n = str.size();
454
455 // Take into account the suffix.
456 unsigned suffix = 0;
457 if (ArgSuffix.second >= 0) {
458 const Expr *suffixEx = CE->getArg((unsigned)ArgSuffix.second);
459 llvm::APSInt Result;
460 if (!suffixEx->EvaluateAsInt(Result, BR.getContext()))
461 return;
462 // FIXME: Issue a warning.
463 if (Result.isNegative())
464 return;
465 suffix = (unsigned) Result.getZExtValue();
466 n = (n > suffix) ? n - suffix : 0;
467 }
468
469 for (unsigned i = 0; i < n; ++i)
470 if (str[i] == 'X') ++numX;
471
472 if (numX >= 6)
473 return;
474
475 // Issue a warning.
476 SourceRange R = strArg->getSourceRange();
477 PathDiagnosticLocation CELoc =
478 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000479 SmallString<512> buf;
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000480 llvm::raw_svector_ostream out(buf);
481 out << "Call to '" << Name << "' should have at least 6 'X's in the"
482 " format string to be secure (" << numX << " 'X'";
483 if (numX != 1)
484 out << 's';
485 out << " seen";
486 if (suffix) {
487 out << ", " << suffix << " character";
488 if (suffix > 1)
489 out << 's';
490 out << " used as a suffix";
491 }
492 out << ')';
Ted Kremenek07189522012-04-04 18:11:35 +0000493 BR.EmitBasicReport(AC->getDecl(),
494 "Insecure temporary file creation", "Security",
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000495 out.str(), CELoc, &R, 1);
496}
497
Zhongxing Xu1bf40562009-12-03 09:15:23 +0000498//===----------------------------------------------------------------------===//
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000499// Check: Any use of 'strcpy' is insecure.
500//
501// CWE-119: Improper Restriction of Operations within
502// the Bounds of a Memory Buffer
503//===----------------------------------------------------------------------===//
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000504void WalkAST::checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000505 if (!filter.check_strcpy)
506 return;
507
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000508 if (!checkCall_strCommon(CE, FD))
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000509 return;
510
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000511 // Issue a warning.
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000512 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000513 PathDiagnosticLocation CELoc =
514 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000515 BR.EmitBasicReport(AC->getDecl(),
516 "Potential insecure memory buffer bounds restriction in "
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000517 "call 'strcpy'",
518 "Security",
519 "Call to function 'strcpy' is insecure as it does not "
Ted Kremenek07189522012-04-04 18:11:35 +0000520 "provide bounding of the memory buffer. Replace "
521 "unbounded copy functions with analogous functions that "
522 "support length arguments such as 'strlcpy'. CWE-119.",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000523 CELoc, &R, 1);
Lenny Maiorani5b67a822011-03-31 22:09:14 +0000524}
525
526//===----------------------------------------------------------------------===//
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000527// Check: Any use of 'strcat' is insecure.
528//
529// CWE-119: Improper Restriction of Operations within
530// the Bounds of a Memory Buffer
531//===----------------------------------------------------------------------===//
532void WalkAST::checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000533 if (!filter.check_strcpy)
534 return;
535
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000536 if (!checkCall_strCommon(CE, FD))
537 return;
538
539 // Issue a warning.
540 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000541 PathDiagnosticLocation CELoc =
542 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000543 BR.EmitBasicReport(AC->getDecl(),
544 "Potential insecure memory buffer bounds restriction in "
545 "call 'strcat'",
546 "Security",
547 "Call to function 'strcat' is insecure as it does not "
548 "provide bounding of the memory buffer. Replace "
549 "unbounded copy functions with analogous functions that "
550 "support length arguments such as 'strlcat'. CWE-119.",
Anna Zaks590dd8e2011-09-20 21:38:35 +0000551 CELoc, &R, 1);
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000552}
553
554//===----------------------------------------------------------------------===//
555// Common check for str* functions with no bounds parameters.
556//===----------------------------------------------------------------------===//
557bool WalkAST::checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD) {
558 const FunctionProtoType *FPT
559 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
560 if (!FPT)
561 return false;
562
563 // Verify the function takes two arguments, three in the _chk version.
564 int numArgs = FPT->getNumArgs();
565 if (numArgs != 2 && numArgs != 3)
566 return false;
567
568 // Verify the type for both arguments.
569 for (int i = 0; i < 2; i++) {
570 // Verify that the arguments are pointers.
571 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i));
572 if (!PT)
573 return false;
574
575 // Verify that the argument is a 'char*'.
576 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
577 return false;
578 }
579
580 return true;
581}
582
583//===----------------------------------------------------------------------===//
Ted Kremenek24650472009-09-02 02:47:41 +0000584// Check: Linear congruent random number generators should not be used
585// Originally: <rdar://problem/63371000>
586// CWE-338: Use of cryptographically weak prng
587//===----------------------------------------------------------------------===//
588
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000589void WalkAST::checkCall_rand(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000590 if (!filter.check_rand || !CheckRand)
Ted Kremenek24650472009-09-02 02:47:41 +0000591 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Abramo Bagnara723df242010-12-14 22:11:44 +0000593 const FunctionProtoType *FTP
594 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Ted Kremenek24650472009-09-02 02:47:41 +0000595 if (!FTP)
596 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Ted Kremenek24650472009-09-02 02:47:41 +0000598 if (FTP->getNumArgs() == 1) {
599 // Is the argument an 'unsigned short *'?
600 // (Actually any integer type is allowed.)
601 const PointerType *PT = dyn_cast<PointerType>(FTP->getArgType(0));
602 if (!PT)
603 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Ted Kremenek24650472009-09-02 02:47:41 +0000605 if (! PT->getPointeeType()->isIntegerType())
606 return;
607 }
Mike Stump1eb44332009-09-09 15:08:12 +0000608 else if (FTP->getNumArgs() != 0)
Ted Kremenek24650472009-09-02 02:47:41 +0000609 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000610
Ted Kremenek24650472009-09-02 02:47:41 +0000611 // Issue a warning.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000612 SmallString<256> buf1;
Ted Kremenek2c016762010-03-24 22:39:47 +0000613 llvm::raw_svector_ostream os1(buf1);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000614 os1 << '\'' << *FD << "' is a poor random number generator";
Ted Kremenek24650472009-09-02 02:47:41 +0000615
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000616 SmallString<256> buf2;
Ted Kremenek2c016762010-03-24 22:39:47 +0000617 llvm::raw_svector_ostream os2(buf2);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000618 os2 << "Function '" << *FD
Ted Kremenek24650472009-09-02 02:47:41 +0000619 << "' is obsolete because it implements a poor random number generator."
620 << " Use 'arc4random' instead";
621
622 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000623 PathDiagnosticLocation CELoc =
624 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000625 BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(),
626 CELoc, &R, 1);
Ted Kremenek24650472009-09-02 02:47:41 +0000627}
628
629//===----------------------------------------------------------------------===//
630// Check: 'random' should not be used
631// Originally: <rdar://problem/63371000>
632//===----------------------------------------------------------------------===//
633
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000634void WalkAST::checkCall_random(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000635 if (!CheckRand || !filter.check_rand)
Ted Kremenek24650472009-09-02 02:47:41 +0000636 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000637
Abramo Bagnara723df242010-12-14 22:11:44 +0000638 const FunctionProtoType *FTP
639 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Ted Kremenek24650472009-09-02 02:47:41 +0000640 if (!FTP)
641 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Ted Kremenek24650472009-09-02 02:47:41 +0000643 // Verify that the function takes no argument.
644 if (FTP->getNumArgs() != 0)
645 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Ted Kremenek24650472009-09-02 02:47:41 +0000647 // Issue a warning.
648 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000649 PathDiagnosticLocation CELoc =
650 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000651 BR.EmitBasicReport(AC->getDecl(),
652 "'random' is not a secure random number generator",
Ted Kremenek24650472009-09-02 02:47:41 +0000653 "Security",
654 "The 'random' function produces a sequence of values that "
655 "an adversary may be able to predict. Use 'arc4random' "
Anna Zaks590dd8e2011-09-20 21:38:35 +0000656 "instead", CELoc, &R, 1);
Ted Kremenek24650472009-09-02 02:47:41 +0000657}
658
659//===----------------------------------------------------------------------===//
Anna Zaksa7957ff2011-10-11 04:34:54 +0000660// Check: 'vfork' should not be used.
661// POS33-C: Do not use vfork().
662//===----------------------------------------------------------------------===//
663
664void WalkAST::checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD) {
Ted Kremenek76a54242012-01-20 01:44:29 +0000665 if (!filter.check_vfork)
666 return;
667
Anna Zaksa7957ff2011-10-11 04:34:54 +0000668 // All calls to vfork() are insecure, issue a warning.
669 SourceRange R = CE->getCallee()->getSourceRange();
670 PathDiagnosticLocation CELoc =
671 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000672 BR.EmitBasicReport(AC->getDecl(),
673 "Potential insecure implementation-specific behavior in "
Anna Zaksa7957ff2011-10-11 04:34:54 +0000674 "call 'vfork'",
675 "Security",
676 "Call to function 'vfork' is insecure as it can lead to "
677 "denial of service situations in the parent process. "
678 "Replace calls to vfork with calls to the safer "
679 "'posix_spawn' function",
680 CELoc, &R, 1);
681}
682
683//===----------------------------------------------------------------------===//
Ted Kremenek65a81a92009-08-28 00:08:09 +0000684// Check: Should check whether privileges are dropped successfully.
685// Originally: <rdar://problem/6337132>
686//===----------------------------------------------------------------------===//
687
Lenny Maiorani9cb677e2011-04-05 20:18:46 +0000688void WalkAST::checkUncheckedReturnValue(CallExpr *CE) {
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000689 if (!filter.check_UncheckedReturn)
690 return;
691
Ted Kremenek65a81a92009-08-28 00:08:09 +0000692 const FunctionDecl *FD = CE->getDirectCallee();
693 if (!FD)
694 return;
695
696 if (II_setid[0] == NULL) {
Ted Kremenek24650472009-09-02 02:47:41 +0000697 static const char * const identifiers[num_setids] = {
Ted Kremenek65a81a92009-08-28 00:08:09 +0000698 "setuid", "setgid", "seteuid", "setegid",
699 "setreuid", "setregid"
700 };
Mike Stump1eb44332009-09-09 15:08:12 +0000701
Ted Kremenek24650472009-09-02 02:47:41 +0000702 for (size_t i = 0; i < num_setids; i++)
Mike Stump1eb44332009-09-09 15:08:12 +0000703 II_setid[i] = &BR.getContext().Idents.get(identifiers[i]);
Ted Kremenek65a81a92009-08-28 00:08:09 +0000704 }
Mike Stump1eb44332009-09-09 15:08:12 +0000705
Ted Kremenek65a81a92009-08-28 00:08:09 +0000706 const IdentifierInfo *id = FD->getIdentifier();
707 size_t identifierid;
708
Ted Kremenek24650472009-09-02 02:47:41 +0000709 for (identifierid = 0; identifierid < num_setids; identifierid++)
Ted Kremenek65a81a92009-08-28 00:08:09 +0000710 if (id == II_setid[identifierid])
711 break;
712
Ted Kremenek24650472009-09-02 02:47:41 +0000713 if (identifierid >= num_setids)
Ted Kremenek65a81a92009-08-28 00:08:09 +0000714 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000715
Abramo Bagnara723df242010-12-14 22:11:44 +0000716 const FunctionProtoType *FTP
717 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
Ted Kremenek65a81a92009-08-28 00:08:09 +0000718 if (!FTP)
719 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Ted Kremeneka8187832009-08-28 00:24:55 +0000721 // Verify that the function takes one or two arguments (depending on
722 // the function).
Ted Kremenek65a81a92009-08-28 00:08:09 +0000723 if (FTP->getNumArgs() != (identifierid < 4 ? 1 : 2))
724 return;
725
726 // The arguments must be integers.
727 for (unsigned i = 0; i < FTP->getNumArgs(); i++)
728 if (! FTP->getArgType(i)->isIntegerType())
729 return;
730
731 // Issue a warning.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000732 SmallString<256> buf1;
Ted Kremenek2c016762010-03-24 22:39:47 +0000733 llvm::raw_svector_ostream os1(buf1);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000734 os1 << "Return value is not checked in call to '" << *FD << '\'';
Ted Kremenek65a81a92009-08-28 00:08:09 +0000735
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000736 SmallString<256> buf2;
Ted Kremenek2c016762010-03-24 22:39:47 +0000737 llvm::raw_svector_ostream os2(buf2);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000738 os2 << "The return value from the call to '" << *FD
739 << "' is not checked. If an error occurs in '" << *FD
Ted Kremenek65a81a92009-08-28 00:08:09 +0000740 << "', the following code may execute with unexpected privileges";
741
742 SourceRange R = CE->getCallee()->getSourceRange();
Anna Zaks590dd8e2011-09-20 21:38:35 +0000743 PathDiagnosticLocation CELoc =
744 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
Ted Kremenek07189522012-04-04 18:11:35 +0000745 BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(),
746 CELoc, &R, 1);
Ted Kremenek65a81a92009-08-28 00:08:09 +0000747}
748
749//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000750// SecuritySyntaxChecker
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000751//===----------------------------------------------------------------------===//
752
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000753namespace {
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +0000754class SecuritySyntaxChecker : public Checker<check::ASTCodeBody> {
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000755public:
Ted Kremenek76a54242012-01-20 01:44:29 +0000756 ChecksFilter filter;
757
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000758 void checkASTCodeBody(const Decl *D, AnalysisManager& mgr,
759 BugReporter &BR) const {
Ted Kremenek76a54242012-01-20 01:44:29 +0000760 WalkAST walker(BR, mgr.getAnalysisDeclContext(D), filter);
Argyrios Kyrtzidis7dd445e2011-02-17 21:39:33 +0000761 walker.Visit(D->getBody());
762 }
763};
764}
765
Ted Kremenek76a54242012-01-20 01:44:29 +0000766#define REGISTER_CHECKER(name) \
767void ento::register##name(CheckerManager &mgr) {\
Ted Kremenekb0754172012-06-29 21:01:35 +0000768 mgr.registerChecker<SecuritySyntaxChecker>()->filter.check_##name = true;\
Ted Kremenekdbfb5f82009-07-23 01:07:19 +0000769}
Ted Kremenek76a54242012-01-20 01:44:29 +0000770
771REGISTER_CHECKER(gets)
772REGISTER_CHECKER(getpw)
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000773REGISTER_CHECKER(mkstemp)
Ted Kremenek76a54242012-01-20 01:44:29 +0000774REGISTER_CHECKER(mktemp)
775REGISTER_CHECKER(strcpy)
776REGISTER_CHECKER(rand)
777REGISTER_CHECKER(vfork)
778REGISTER_CHECKER(FloatLoopCounter)
Ted Kremenekb63d8d82012-01-20 05:35:06 +0000779REGISTER_CHECKER(UncheckedReturn)
780
Ted Kremenek76a54242012-01-20 01:44:29 +0000781