Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 1 | //==- 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 Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 14 | #include "ClangSACheckers.h" |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 15 | #include "clang/AST/StmtVisitor.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame^] | 16 | #include "clang/Analysis/AnalysisContext.h" |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 17 | #include "clang/Basic/TargetInfo.h" |
Ted Kremenek | 9b66371 | 2011-02-10 01:03:03 +0000 | [diff] [blame] | 18 | #include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame^] | 19 | #include "clang/StaticAnalyzer/Core/Checker.h" |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 20 | #include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h" |
Benjamin Kramer | 8fe83e1 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallString.h" |
Lenny Maiorani | c2dace1 | 2011-04-03 05:07:11 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringSwitch.h" |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 24 | |
| 25 | using namespace clang; |
Ted Kremenek | 9ef6537 | 2010-12-23 07:20:52 +0000 | [diff] [blame] | 26 | using namespace ento; |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 27 | |
Ted Kremenek | 88c8bc8 | 2010-01-15 08:20:31 +0000 | [diff] [blame] | 28 | static bool isArc4RandomAvailable(const ASTContext &Ctx) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 29 | const llvm::Triple &T = Ctx.getTargetInfo().getTriple(); |
Ted Kremenek | 88c8bc8 | 2010-01-15 08:20:31 +0000 | [diff] [blame] | 30 | return T.getVendor() == llvm::Triple::Apple || |
Douglas Gregor | 0f56559 | 2011-01-17 19:16:24 +0000 | [diff] [blame] | 31 | T.getOS() == llvm::Triple::FreeBSD || |
| 32 | T.getOS() == llvm::Triple::NetBSD || |
| 33 | T.getOS() == llvm::Triple::OpenBSD || |
Eli Friedman | 42f74f2 | 2012-08-08 23:57:20 +0000 | [diff] [blame] | 34 | T.getOS() == llvm::Triple::Bitrig || |
Douglas Gregor | 0f56559 | 2011-01-17 19:16:24 +0000 | [diff] [blame] | 35 | T.getOS() == llvm::Triple::DragonFly; |
Ted Kremenek | 88c8bc8 | 2010-01-15 08:20:31 +0000 | [diff] [blame] | 36 | } |
| 37 | |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 38 | namespace { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 39 | struct DefaultBool { |
| 40 | bool val; |
| 41 | DefaultBool() : val(false) {} |
| 42 | operator bool() const { return val; } |
| 43 | DefaultBool &operator=(bool b) { val = b; return *this; } |
| 44 | }; |
| 45 | |
| 46 | struct ChecksFilter { |
| 47 | DefaultBool check_gets; |
| 48 | DefaultBool check_getpw; |
| 49 | DefaultBool check_mktemp; |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 50 | DefaultBool check_mkstemp; |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 51 | DefaultBool check_strcpy; |
| 52 | DefaultBool check_rand; |
| 53 | DefaultBool check_vfork; |
| 54 | DefaultBool check_FloatLoopCounter; |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 55 | DefaultBool check_UncheckedReturn; |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
Kovarththanan Rajaratnam | ba5fb5a | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 58 | class WalkAST : public StmtVisitor<WalkAST> { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 59 | BugReporter &BR; |
Ted Kremenek | 1d26f48 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 60 | AnalysisDeclContext* AC; |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 61 | enum { num_setids = 6 }; |
| 62 | IdentifierInfo *II_setid[num_setids]; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 63 | |
Ted Kremenek | 88c8bc8 | 2010-01-15 08:20:31 +0000 | [diff] [blame] | 64 | const bool CheckRand; |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 65 | const ChecksFilter &filter; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 66 | |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 67 | public: |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 68 | WalkAST(BugReporter &br, AnalysisDeclContext* ac, |
| 69 | const ChecksFilter &f) |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 70 | : BR(br), AC(ac), II_setid(), |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 71 | CheckRand(isArc4RandomAvailable(BR.getContext())), |
| 72 | filter(f) {} |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 74 | // Statement visitor methods. |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 75 | void VisitCallExpr(CallExpr *CE); |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 76 | void VisitForStmt(ForStmt *S); |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 77 | void VisitCompoundStmt (CompoundStmt *S); |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 78 | void VisitStmt(Stmt *S) { VisitChildren(S); } |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 79 | |
| 80 | void VisitChildren(Stmt *S); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 81 | |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 82 | // Helpers. |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 83 | bool checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 84 | |
Lenny Maiorani | c2dace1 | 2011-04-03 05:07:11 +0000 | [diff] [blame] | 85 | typedef void (WalkAST::*FnCheck)(const CallExpr *, |
| 86 | const FunctionDecl *); |
| 87 | |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 88 | // Checker-specific methods. |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 89 | void checkLoopConditionForFloat(const ForStmt *FS); |
| 90 | void checkCall_gets(const CallExpr *CE, const FunctionDecl *FD); |
| 91 | void checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD); |
| 92 | void checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD); |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 93 | void checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD); |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 94 | void checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD); |
| 95 | void checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD); |
| 96 | void checkCall_rand(const CallExpr *CE, const FunctionDecl *FD); |
| 97 | void checkCall_random(const CallExpr *CE, const FunctionDecl *FD); |
Anna Zaks | a7957ff | 2011-10-11 04:34:54 +0000 | [diff] [blame] | 98 | void checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD); |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 99 | void checkUncheckedReturnValue(CallExpr *CE); |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 100 | }; |
| 101 | } // end anonymous namespace |
| 102 | |
| 103 | //===----------------------------------------------------------------------===// |
| 104 | // AST walking. |
| 105 | //===----------------------------------------------------------------------===// |
| 106 | |
| 107 | void WalkAST::VisitChildren(Stmt *S) { |
| 108 | for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I) |
| 109 | if (Stmt *child = *I) |
| 110 | Visit(child); |
| 111 | } |
| 112 | |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 113 | void WalkAST::VisitCallExpr(CallExpr *CE) { |
Lenny Maiorani | c2dace1 | 2011-04-03 05:07:11 +0000 | [diff] [blame] | 114 | // Get the callee. |
| 115 | const FunctionDecl *FD = CE->getDirectCallee(); |
| 116 | |
| 117 | if (!FD) |
| 118 | return; |
| 119 | |
| 120 | // Get the name of the callee. If it's a builtin, strip off the prefix. |
| 121 | IdentifierInfo *II = FD->getIdentifier(); |
| 122 | if (!II) // if no identifier, not a simple C function |
| 123 | return; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 124 | StringRef Name = II->getName(); |
Lenny Maiorani | c2dace1 | 2011-04-03 05:07:11 +0000 | [diff] [blame] | 125 | if (Name.startswith("__builtin_")) |
| 126 | Name = Name.substr(10); |
| 127 | |
| 128 | // Set the evaluation function by switching on the callee name. |
| 129 | FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name) |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 130 | .Case("gets", &WalkAST::checkCall_gets) |
| 131 | .Case("getpw", &WalkAST::checkCall_getpw) |
| 132 | .Case("mktemp", &WalkAST::checkCall_mktemp) |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 133 | .Case("mkstemp", &WalkAST::checkCall_mkstemp) |
| 134 | .Case("mkdtemp", &WalkAST::checkCall_mkstemp) |
| 135 | .Case("mkstemps", &WalkAST::checkCall_mkstemp) |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 136 | .Cases("strcpy", "__strcpy_chk", &WalkAST::checkCall_strcpy) |
| 137 | .Cases("strcat", "__strcat_chk", &WalkAST::checkCall_strcat) |
| 138 | .Case("drand48", &WalkAST::checkCall_rand) |
| 139 | .Case("erand48", &WalkAST::checkCall_rand) |
| 140 | .Case("jrand48", &WalkAST::checkCall_rand) |
| 141 | .Case("lrand48", &WalkAST::checkCall_rand) |
| 142 | .Case("mrand48", &WalkAST::checkCall_rand) |
| 143 | .Case("nrand48", &WalkAST::checkCall_rand) |
| 144 | .Case("lcong48", &WalkAST::checkCall_rand) |
| 145 | .Case("rand", &WalkAST::checkCall_rand) |
| 146 | .Case("rand_r", &WalkAST::checkCall_rand) |
| 147 | .Case("random", &WalkAST::checkCall_random) |
Anna Zaks | a7957ff | 2011-10-11 04:34:54 +0000 | [diff] [blame] | 148 | .Case("vfork", &WalkAST::checkCall_vfork) |
Lenny Maiorani | c2dace1 | 2011-04-03 05:07:11 +0000 | [diff] [blame] | 149 | .Default(NULL); |
| 150 | |
| 151 | // If the callee isn't defined, it is not of security concern. |
| 152 | // Check and evaluate the call. |
| 153 | if (evalFunction) |
| 154 | (this->*evalFunction)(CE, FD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 155 | |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 156 | // Recurse and check children. |
| 157 | VisitChildren(CE); |
| 158 | } |
| 159 | |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 160 | void WalkAST::VisitCompoundStmt(CompoundStmt *S) { |
| 161 | for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 162 | if (Stmt *child = *I) { |
| 163 | if (CallExpr *CE = dyn_cast<CallExpr>(child)) |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 164 | checkUncheckedReturnValue(CE); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 165 | Visit(child); |
| 166 | } |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 169 | void WalkAST::VisitForStmt(ForStmt *FS) { |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 170 | checkLoopConditionForFloat(FS); |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 171 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 172 | // Recurse and check children. |
| 173 | VisitChildren(FS); |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 177 | // Check: floating poing variable used as loop counter. |
Ted Kremenek | 5abeb52 | 2009-07-23 21:44:18 +0000 | [diff] [blame] | 178 | // Originally: <rdar://problem/6336718> |
| 179 | // Implements: CERT security coding advisory FLP-30. |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 180 | //===----------------------------------------------------------------------===// |
| 181 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 182 | static const DeclRefExpr* |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 183 | getIncrementedVar(const Expr *expr, const VarDecl *x, const VarDecl *y) { |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 184 | expr = expr->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 185 | |
| 186 | if (const BinaryOperator *B = dyn_cast<BinaryOperator>(expr)) { |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 187 | if (!(B->isAssignmentOp() || B->isCompoundAssignmentOp() || |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 188 | B->getOpcode() == BO_Comma)) |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 189 | return NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 190 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 191 | if (const DeclRefExpr *lhs = getIncrementedVar(B->getLHS(), x, y)) |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 192 | return lhs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 193 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 194 | if (const DeclRefExpr *rhs = getIncrementedVar(B->getRHS(), x, y)) |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 195 | return rhs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 196 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 197 | return NULL; |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 198 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 199 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 200 | if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) { |
| 201 | const NamedDecl *ND = DR->getDecl(); |
| 202 | return ND == x || ND == y ? DR : NULL; |
| 203 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 204 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 205 | if (const UnaryOperator *U = dyn_cast<UnaryOperator>(expr)) |
| 206 | return U->isIncrementDecrementOp() |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 207 | ? getIncrementedVar(U->getSubExpr(), x, y) : NULL; |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 208 | |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 209 | return NULL; |
| 210 | } |
| 211 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 212 | /// CheckLoopConditionForFloat - This check looks for 'for' statements that |
| 213 | /// use a floating point variable as a loop counter. |
| 214 | /// CERT: FLP30-C, FLP30-CPP. |
| 215 | /// |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 216 | void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 217 | if (!filter.check_FloatLoopCounter) |
| 218 | return; |
| 219 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 220 | // Does the loop have a condition? |
| 221 | const Expr *condition = FS->getCond(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 222 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 223 | if (!condition) |
| 224 | return; |
| 225 | |
| 226 | // Does the loop have an increment? |
| 227 | const Expr *increment = FS->getInc(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 228 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 229 | if (!increment) |
| 230 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 231 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 232 | // Strip away '()' and casts. |
| 233 | condition = condition->IgnoreParenCasts(); |
| 234 | increment = increment->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 235 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 236 | // Is the loop condition a comparison? |
| 237 | const BinaryOperator *B = dyn_cast<BinaryOperator>(condition); |
| 238 | |
| 239 | if (!B) |
| 240 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 241 | |
Ted Kremenek | cad9f41 | 2009-07-24 20:26:31 +0000 | [diff] [blame] | 242 | // Is this a comparison? |
| 243 | if (!(B->isRelationalOp() || B->isEqualityOp())) |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 244 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 245 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 246 | // Are we comparing variables? |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 247 | const DeclRefExpr *drLHS = |
| 248 | dyn_cast<DeclRefExpr>(B->getLHS()->IgnoreParenLValueCasts()); |
| 249 | const DeclRefExpr *drRHS = |
| 250 | dyn_cast<DeclRefExpr>(B->getRHS()->IgnoreParenLValueCasts()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 251 | |
Ted Kremenek | cad9f41 | 2009-07-24 20:26:31 +0000 | [diff] [blame] | 252 | // Does at least one of the variables have a floating point type? |
Douglas Gregor | 0c293ea | 2010-06-22 23:07:26 +0000 | [diff] [blame] | 253 | drLHS = drLHS && drLHS->getType()->isRealFloatingType() ? drLHS : NULL; |
| 254 | drRHS = drRHS && drRHS->getType()->isRealFloatingType() ? drRHS : NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 255 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 256 | if (!drLHS && !drRHS) |
| 257 | return; |
| 258 | |
| 259 | const VarDecl *vdLHS = drLHS ? dyn_cast<VarDecl>(drLHS->getDecl()) : NULL; |
| 260 | const VarDecl *vdRHS = drRHS ? dyn_cast<VarDecl>(drRHS->getDecl()) : NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 261 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 262 | if (!vdLHS && !vdRHS) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 263 | return; |
| 264 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 265 | // Does either variable appear in increment? |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 266 | const DeclRefExpr *drInc = getIncrementedVar(increment, vdLHS, vdRHS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 267 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 268 | if (!drInc) |
| 269 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 270 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 271 | // Emit the error. First figure out which DeclRefExpr in the condition |
| 272 | // referenced the compared variable. |
Ted Kremenek | d0f3d71 | 2012-10-12 22:56:42 +0000 | [diff] [blame] | 273 | assert(drInc->getDecl()); |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 274 | const DeclRefExpr *drCond = vdLHS == drInc->getDecl() ? drLHS : drRHS; |
| 275 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 276 | SmallVector<SourceRange, 2> ranges; |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 277 | SmallString<256> sbuf; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 278 | llvm::raw_svector_ostream os(sbuf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 279 | |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 280 | os << "Variable '" << drCond->getDecl()->getName() |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 281 | << "' with floating point type '" << drCond->getType().getAsString() |
| 282 | << "' should not be used as a loop counter"; |
| 283 | |
| 284 | ranges.push_back(drCond->getSourceRange()); |
| 285 | ranges.push_back(drInc->getSourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 286 | |
Ted Kremenek | 8baf86d | 2009-07-23 21:34:35 +0000 | [diff] [blame] | 287 | const char *bugType = "Floating point variable used as loop counter"; |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 288 | |
| 289 | PathDiagnosticLocation FSLoc = |
| 290 | PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 291 | BR.EmitBasicReport(AC->getDecl(), |
| 292 | bugType, "Security", os.str(), |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 293 | FSLoc, ranges.data(), ranges.size()); |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | //===----------------------------------------------------------------------===// |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 297 | // Check: Any use of 'gets' is insecure. |
| 298 | // Originally: <rdar://problem/6335715> |
| 299 | // Implements (part of): 300-BSI (buildsecurityin.us-cert.gov) |
Zhongxing Xu | aa30b3b | 2009-11-09 08:13:04 +0000 | [diff] [blame] | 300 | // CWE-242: Use of Inherently Dangerous Function |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 301 | //===----------------------------------------------------------------------===// |
| 302 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 303 | void WalkAST::checkCall_gets(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 304 | if (!filter.check_gets) |
| 305 | return; |
| 306 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 307 | const FunctionProtoType *FPT |
| 308 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 309 | if (!FPT) |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 310 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 311 | |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 312 | // Verify that the function takes a single argument. |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 313 | if (FPT->getNumArgs() != 1) |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 314 | return; |
| 315 | |
| 316 | // Is the argument a 'char*'? |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 317 | const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0)); |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 318 | if (!PT) |
| 319 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 320 | |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 321 | if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) |
| 322 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 323 | |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 324 | // Issue a warning. |
| 325 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 326 | PathDiagnosticLocation CELoc = |
| 327 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 328 | BR.EmitBasicReport(AC->getDecl(), |
| 329 | "Potential buffer overflow in call to 'gets'", |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 330 | "Security", |
| 331 | "Call to function 'gets' is extremely insecure as it can " |
| 332 | "always result in a buffer overflow", |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 333 | CELoc, &R, 1); |
Ted Kremenek | efcbb15 | 2009-07-23 22:29:41 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | //===----------------------------------------------------------------------===// |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 337 | // Check: Any use of 'getpwd' is insecure. |
| 338 | // CWE-477: Use of Obsolete Functions |
| 339 | //===----------------------------------------------------------------------===// |
| 340 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 341 | void WalkAST::checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 342 | if (!filter.check_getpw) |
| 343 | return; |
| 344 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 345 | const FunctionProtoType *FPT |
| 346 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 347 | if (!FPT) |
| 348 | return; |
| 349 | |
| 350 | // Verify that the function takes two arguments. |
| 351 | if (FPT->getNumArgs() != 2) |
| 352 | return; |
| 353 | |
| 354 | // Verify the first argument type is integer. |
| 355 | if (!FPT->getArgType(0)->isIntegerType()) |
| 356 | return; |
| 357 | |
| 358 | // Verify the second argument type is char*. |
| 359 | const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1)); |
| 360 | if (!PT) |
| 361 | return; |
| 362 | |
| 363 | if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) |
| 364 | return; |
| 365 | |
| 366 | // Issue a warning. |
| 367 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 368 | PathDiagnosticLocation CELoc = |
| 369 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 370 | BR.EmitBasicReport(AC->getDecl(), |
| 371 | "Potential buffer overflow in call to 'getpw'", |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 372 | "Security", |
| 373 | "The getpw() function is dangerous as it may overflow the " |
| 374 | "provided buffer. It is obsoleted by getpwuid().", |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 375 | CELoc, &R, 1); |
Zhongxing Xu | bd842e3 | 2009-11-09 12:19:26 +0000 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | //===----------------------------------------------------------------------===// |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 379 | // Check: Any use of 'mktemp' is insecure. It is obsoleted by mkstemp(). |
Zhongxing Xu | 1bf4056 | 2009-12-03 09:15:23 +0000 | [diff] [blame] | 380 | // CWE-377: Insecure Temporary File |
| 381 | //===----------------------------------------------------------------------===// |
| 382 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 383 | void WalkAST::checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | b075417 | 2012-06-29 21:01:35 +0000 | [diff] [blame] | 384 | if (!filter.check_mktemp) { |
| 385 | // Fall back to the security check of looking for enough 'X's in the |
| 386 | // format string, since that is a less severe warning. |
| 387 | checkCall_mkstemp(CE, FD); |
| 388 | return; |
| 389 | } |
| 390 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 391 | const FunctionProtoType *FPT |
| 392 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
Zhongxing Xu | 1bf4056 | 2009-12-03 09:15:23 +0000 | [diff] [blame] | 393 | if(!FPT) |
| 394 | return; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 395 | |
Lenny Maiorani | ea4411e | 2011-03-31 21:26:55 +0000 | [diff] [blame] | 396 | // Verify that the function takes a single argument. |
Zhongxing Xu | 1bf4056 | 2009-12-03 09:15:23 +0000 | [diff] [blame] | 397 | if (FPT->getNumArgs() != 1) |
| 398 | return; |
| 399 | |
| 400 | // Verify that the argument is Pointer Type. |
| 401 | const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0)); |
| 402 | if (!PT) |
| 403 | return; |
| 404 | |
| 405 | // Verify that the argument is a 'char*'. |
| 406 | if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) |
| 407 | return; |
Ted Kremenek | 431a2cb | 2010-03-24 22:39:45 +0000 | [diff] [blame] | 408 | |
Zhongxing Xu | 1bf4056 | 2009-12-03 09:15:23 +0000 | [diff] [blame] | 409 | // Issue a waring. |
| 410 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 411 | PathDiagnosticLocation CELoc = |
| 412 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 413 | BR.EmitBasicReport(AC->getDecl(), |
| 414 | "Potential insecure temporary file in call 'mktemp'", |
Eli Friedman | a7e6845 | 2010-08-22 01:00:03 +0000 | [diff] [blame] | 415 | "Security", |
| 416 | "Call to function 'mktemp' is insecure as it always " |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 417 | "creates or uses insecure temporary file. Use 'mkstemp' " |
| 418 | "instead", |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 419 | CELoc, &R, 1); |
Zhongxing Xu | 1bf4056 | 2009-12-03 09:15:23 +0000 | [diff] [blame] | 420 | } |
| 421 | |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 422 | |
| 423 | //===----------------------------------------------------------------------===// |
| 424 | // Check: Use of 'mkstemp', 'mktemp', 'mkdtemp' should contain at least 6 X's. |
| 425 | //===----------------------------------------------------------------------===// |
| 426 | |
| 427 | void WalkAST::checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD) { |
| 428 | if (!filter.check_mkstemp) |
| 429 | return; |
| 430 | |
| 431 | StringRef Name = FD->getIdentifier()->getName(); |
| 432 | std::pair<signed, signed> ArgSuffix = |
| 433 | llvm::StringSwitch<std::pair<signed, signed> >(Name) |
| 434 | .Case("mktemp", std::make_pair(0,-1)) |
| 435 | .Case("mkstemp", std::make_pair(0,-1)) |
| 436 | .Case("mkdtemp", std::make_pair(0,-1)) |
| 437 | .Case("mkstemps", std::make_pair(0,1)) |
| 438 | .Default(std::make_pair(-1, -1)); |
| 439 | |
| 440 | assert(ArgSuffix.first >= 0 && "Unsupported function"); |
| 441 | |
| 442 | // Check if the number of arguments is consistent with out expectations. |
| 443 | unsigned numArgs = CE->getNumArgs(); |
| 444 | if ((signed) numArgs <= ArgSuffix.first) |
| 445 | return; |
| 446 | |
| 447 | const StringLiteral *strArg = |
| 448 | dyn_cast<StringLiteral>(CE->getArg((unsigned)ArgSuffix.first) |
| 449 | ->IgnoreParenImpCasts()); |
| 450 | |
| 451 | // Currently we only handle string literals. It is possible to do better, |
| 452 | // either by looking at references to const variables, or by doing real |
| 453 | // flow analysis. |
| 454 | if (!strArg || strArg->getCharByteWidth() != 1) |
| 455 | return; |
| 456 | |
| 457 | // Count the number of X's, taking into account a possible cutoff suffix. |
| 458 | StringRef str = strArg->getString(); |
| 459 | unsigned numX = 0; |
| 460 | unsigned n = str.size(); |
| 461 | |
| 462 | // Take into account the suffix. |
| 463 | unsigned suffix = 0; |
| 464 | if (ArgSuffix.second >= 0) { |
| 465 | const Expr *suffixEx = CE->getArg((unsigned)ArgSuffix.second); |
| 466 | llvm::APSInt Result; |
| 467 | if (!suffixEx->EvaluateAsInt(Result, BR.getContext())) |
| 468 | return; |
| 469 | // FIXME: Issue a warning. |
| 470 | if (Result.isNegative()) |
| 471 | return; |
| 472 | suffix = (unsigned) Result.getZExtValue(); |
| 473 | n = (n > suffix) ? n - suffix : 0; |
| 474 | } |
| 475 | |
| 476 | for (unsigned i = 0; i < n; ++i) |
| 477 | if (str[i] == 'X') ++numX; |
| 478 | |
| 479 | if (numX >= 6) |
| 480 | return; |
| 481 | |
| 482 | // Issue a warning. |
| 483 | SourceRange R = strArg->getSourceRange(); |
| 484 | PathDiagnosticLocation CELoc = |
| 485 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 486 | SmallString<512> buf; |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 487 | llvm::raw_svector_ostream out(buf); |
| 488 | out << "Call to '" << Name << "' should have at least 6 'X's in the" |
| 489 | " format string to be secure (" << numX << " 'X'"; |
| 490 | if (numX != 1) |
| 491 | out << 's'; |
| 492 | out << " seen"; |
| 493 | if (suffix) { |
| 494 | out << ", " << suffix << " character"; |
| 495 | if (suffix > 1) |
| 496 | out << 's'; |
| 497 | out << " used as a suffix"; |
| 498 | } |
| 499 | out << ')'; |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 500 | BR.EmitBasicReport(AC->getDecl(), |
| 501 | "Insecure temporary file creation", "Security", |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 502 | out.str(), CELoc, &R, 1); |
| 503 | } |
| 504 | |
Zhongxing Xu | 1bf4056 | 2009-12-03 09:15:23 +0000 | [diff] [blame] | 505 | //===----------------------------------------------------------------------===// |
Lenny Maiorani | 5b67a82 | 2011-03-31 22:09:14 +0000 | [diff] [blame] | 506 | // Check: Any use of 'strcpy' is insecure. |
| 507 | // |
| 508 | // CWE-119: Improper Restriction of Operations within |
| 509 | // the Bounds of a Memory Buffer |
| 510 | //===----------------------------------------------------------------------===// |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 511 | void WalkAST::checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 512 | if (!filter.check_strcpy) |
| 513 | return; |
| 514 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 515 | if (!checkCall_strCommon(CE, FD)) |
Lenny Maiorani | 5b67a82 | 2011-03-31 22:09:14 +0000 | [diff] [blame] | 516 | return; |
| 517 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 518 | // Issue a warning. |
Lenny Maiorani | 5b67a82 | 2011-03-31 22:09:14 +0000 | [diff] [blame] | 519 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 520 | PathDiagnosticLocation CELoc = |
| 521 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 522 | BR.EmitBasicReport(AC->getDecl(), |
| 523 | "Potential insecure memory buffer bounds restriction in " |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 524 | "call 'strcpy'", |
| 525 | "Security", |
| 526 | "Call to function 'strcpy' is insecure as it does not " |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 527 | "provide bounding of the memory buffer. Replace " |
| 528 | "unbounded copy functions with analogous functions that " |
| 529 | "support length arguments such as 'strlcpy'. CWE-119.", |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 530 | CELoc, &R, 1); |
Lenny Maiorani | 5b67a82 | 2011-03-31 22:09:14 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | //===----------------------------------------------------------------------===// |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 534 | // Check: Any use of 'strcat' is insecure. |
| 535 | // |
| 536 | // CWE-119: Improper Restriction of Operations within |
| 537 | // the Bounds of a Memory Buffer |
| 538 | //===----------------------------------------------------------------------===// |
| 539 | void WalkAST::checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 540 | if (!filter.check_strcpy) |
| 541 | return; |
| 542 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 543 | if (!checkCall_strCommon(CE, FD)) |
| 544 | return; |
| 545 | |
| 546 | // Issue a warning. |
| 547 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 548 | PathDiagnosticLocation CELoc = |
| 549 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 550 | BR.EmitBasicReport(AC->getDecl(), |
| 551 | "Potential insecure memory buffer bounds restriction in " |
| 552 | "call 'strcat'", |
| 553 | "Security", |
| 554 | "Call to function 'strcat' is insecure as it does not " |
| 555 | "provide bounding of the memory buffer. Replace " |
| 556 | "unbounded copy functions with analogous functions that " |
| 557 | "support length arguments such as 'strlcat'. CWE-119.", |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 558 | CELoc, &R, 1); |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | //===----------------------------------------------------------------------===// |
| 562 | // Common check for str* functions with no bounds parameters. |
| 563 | //===----------------------------------------------------------------------===// |
| 564 | bool WalkAST::checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD) { |
| 565 | const FunctionProtoType *FPT |
| 566 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
| 567 | if (!FPT) |
| 568 | return false; |
| 569 | |
| 570 | // Verify the function takes two arguments, three in the _chk version. |
| 571 | int numArgs = FPT->getNumArgs(); |
| 572 | if (numArgs != 2 && numArgs != 3) |
| 573 | return false; |
| 574 | |
| 575 | // Verify the type for both arguments. |
| 576 | for (int i = 0; i < 2; i++) { |
| 577 | // Verify that the arguments are pointers. |
| 578 | const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i)); |
| 579 | if (!PT) |
| 580 | return false; |
| 581 | |
| 582 | // Verify that the argument is a 'char*'. |
| 583 | if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) |
| 584 | return false; |
| 585 | } |
| 586 | |
| 587 | return true; |
| 588 | } |
| 589 | |
| 590 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 591 | // Check: Linear congruent random number generators should not be used |
| 592 | // Originally: <rdar://problem/63371000> |
| 593 | // CWE-338: Use of cryptographically weak prng |
| 594 | //===----------------------------------------------------------------------===// |
| 595 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 596 | void WalkAST::checkCall_rand(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 597 | if (!filter.check_rand || !CheckRand) |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 598 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 599 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 600 | const FunctionProtoType *FTP |
| 601 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 602 | if (!FTP) |
| 603 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 604 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 605 | if (FTP->getNumArgs() == 1) { |
| 606 | // Is the argument an 'unsigned short *'? |
| 607 | // (Actually any integer type is allowed.) |
| 608 | const PointerType *PT = dyn_cast<PointerType>(FTP->getArgType(0)); |
| 609 | if (!PT) |
| 610 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 611 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 612 | if (! PT->getPointeeType()->isIntegerType()) |
| 613 | return; |
| 614 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 615 | else if (FTP->getNumArgs() != 0) |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 616 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 617 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 618 | // Issue a warning. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 619 | SmallString<256> buf1; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 620 | llvm::raw_svector_ostream os1(buf1); |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 621 | os1 << '\'' << *FD << "' is a poor random number generator"; |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 622 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 623 | SmallString<256> buf2; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 624 | llvm::raw_svector_ostream os2(buf2); |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 625 | os2 << "Function '" << *FD |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 626 | << "' is obsolete because it implements a poor random number generator." |
| 627 | << " Use 'arc4random' instead"; |
| 628 | |
| 629 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 630 | PathDiagnosticLocation CELoc = |
| 631 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 632 | BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(), |
| 633 | CELoc, &R, 1); |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | //===----------------------------------------------------------------------===// |
| 637 | // Check: 'random' should not be used |
| 638 | // Originally: <rdar://problem/63371000> |
| 639 | //===----------------------------------------------------------------------===// |
| 640 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 641 | void WalkAST::checkCall_random(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 642 | if (!CheckRand || !filter.check_rand) |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 643 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 644 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 645 | const FunctionProtoType *FTP |
| 646 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 647 | if (!FTP) |
| 648 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 649 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 650 | // Verify that the function takes no argument. |
| 651 | if (FTP->getNumArgs() != 0) |
| 652 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 653 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 654 | // Issue a warning. |
| 655 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 656 | PathDiagnosticLocation CELoc = |
| 657 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 658 | BR.EmitBasicReport(AC->getDecl(), |
| 659 | "'random' is not a secure random number generator", |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 660 | "Security", |
| 661 | "The 'random' function produces a sequence of values that " |
| 662 | "an adversary may be able to predict. Use 'arc4random' " |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 663 | "instead", CELoc, &R, 1); |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | //===----------------------------------------------------------------------===// |
Anna Zaks | a7957ff | 2011-10-11 04:34:54 +0000 | [diff] [blame] | 667 | // Check: 'vfork' should not be used. |
| 668 | // POS33-C: Do not use vfork(). |
| 669 | //===----------------------------------------------------------------------===// |
| 670 | |
| 671 | void WalkAST::checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD) { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 672 | if (!filter.check_vfork) |
| 673 | return; |
| 674 | |
Anna Zaks | a7957ff | 2011-10-11 04:34:54 +0000 | [diff] [blame] | 675 | // All calls to vfork() are insecure, issue a warning. |
| 676 | SourceRange R = CE->getCallee()->getSourceRange(); |
| 677 | PathDiagnosticLocation CELoc = |
| 678 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 679 | BR.EmitBasicReport(AC->getDecl(), |
| 680 | "Potential insecure implementation-specific behavior in " |
Anna Zaks | a7957ff | 2011-10-11 04:34:54 +0000 | [diff] [blame] | 681 | "call 'vfork'", |
| 682 | "Security", |
| 683 | "Call to function 'vfork' is insecure as it can lead to " |
| 684 | "denial of service situations in the parent process. " |
| 685 | "Replace calls to vfork with calls to the safer " |
| 686 | "'posix_spawn' function", |
| 687 | CELoc, &R, 1); |
| 688 | } |
| 689 | |
| 690 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 691 | // Check: Should check whether privileges are dropped successfully. |
| 692 | // Originally: <rdar://problem/6337132> |
| 693 | //===----------------------------------------------------------------------===// |
| 694 | |
Lenny Maiorani | 9cb677e | 2011-04-05 20:18:46 +0000 | [diff] [blame] | 695 | void WalkAST::checkUncheckedReturnValue(CallExpr *CE) { |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 696 | if (!filter.check_UncheckedReturn) |
| 697 | return; |
| 698 | |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 699 | const FunctionDecl *FD = CE->getDirectCallee(); |
| 700 | if (!FD) |
| 701 | return; |
| 702 | |
| 703 | if (II_setid[0] == NULL) { |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 704 | static const char * const identifiers[num_setids] = { |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 705 | "setuid", "setgid", "seteuid", "setegid", |
| 706 | "setreuid", "setregid" |
| 707 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 708 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 709 | for (size_t i = 0; i < num_setids; i++) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 710 | II_setid[i] = &BR.getContext().Idents.get(identifiers[i]); |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 711 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 712 | |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 713 | const IdentifierInfo *id = FD->getIdentifier(); |
| 714 | size_t identifierid; |
| 715 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 716 | for (identifierid = 0; identifierid < num_setids; identifierid++) |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 717 | if (id == II_setid[identifierid]) |
| 718 | break; |
| 719 | |
Ted Kremenek | 2465047 | 2009-09-02 02:47:41 +0000 | [diff] [blame] | 720 | if (identifierid >= num_setids) |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 721 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 722 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 723 | const FunctionProtoType *FTP |
| 724 | = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens()); |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 725 | if (!FTP) |
| 726 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 727 | |
Ted Kremenek | a818783 | 2009-08-28 00:24:55 +0000 | [diff] [blame] | 728 | // Verify that the function takes one or two arguments (depending on |
| 729 | // the function). |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 730 | if (FTP->getNumArgs() != (identifierid < 4 ? 1 : 2)) |
| 731 | return; |
| 732 | |
| 733 | // The arguments must be integers. |
| 734 | for (unsigned i = 0; i < FTP->getNumArgs(); i++) |
| 735 | if (! FTP->getArgType(i)->isIntegerType()) |
| 736 | return; |
| 737 | |
| 738 | // Issue a warning. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 739 | SmallString<256> buf1; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 740 | llvm::raw_svector_ostream os1(buf1); |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 741 | os1 << "Return value is not checked in call to '" << *FD << '\''; |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 742 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 743 | SmallString<256> buf2; |
Ted Kremenek | 2c01676 | 2010-03-24 22:39:47 +0000 | [diff] [blame] | 744 | llvm::raw_svector_ostream os2(buf2); |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 745 | os2 << "The return value from the call to '" << *FD |
| 746 | << "' is not checked. If an error occurs in '" << *FD |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 747 | << "', the following code may execute with unexpected privileges"; |
| 748 | |
| 749 | SourceRange R = CE->getCallee()->getSourceRange(); |
Anna Zaks | 590dd8e | 2011-09-20 21:38:35 +0000 | [diff] [blame] | 750 | PathDiagnosticLocation CELoc = |
| 751 | PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); |
Ted Kremenek | 0718952 | 2012-04-04 18:11:35 +0000 | [diff] [blame] | 752 | BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(), |
| 753 | CELoc, &R, 1); |
Ted Kremenek | 65a81a9 | 2009-08-28 00:08:09 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 757 | // SecuritySyntaxChecker |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 758 | //===----------------------------------------------------------------------===// |
| 759 | |
Argyrios Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 760 | namespace { |
Argyrios Kyrtzidis | ec8605f | 2011-03-01 01:16:21 +0000 | [diff] [blame] | 761 | class SecuritySyntaxChecker : public Checker<check::ASTCodeBody> { |
Argyrios Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 762 | public: |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 763 | ChecksFilter filter; |
| 764 | |
Argyrios Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 765 | void checkASTCodeBody(const Decl *D, AnalysisManager& mgr, |
| 766 | BugReporter &BR) const { |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 767 | WalkAST walker(BR, mgr.getAnalysisDeclContext(D), filter); |
Argyrios Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 768 | walker.Visit(D->getBody()); |
| 769 | } |
| 770 | }; |
| 771 | } |
| 772 | |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 773 | #define REGISTER_CHECKER(name) \ |
| 774 | void ento::register##name(CheckerManager &mgr) {\ |
Ted Kremenek | b075417 | 2012-06-29 21:01:35 +0000 | [diff] [blame] | 775 | mgr.registerChecker<SecuritySyntaxChecker>()->filter.check_##name = true;\ |
Ted Kremenek | dbfb5f8 | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 776 | } |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 777 | |
| 778 | REGISTER_CHECKER(gets) |
| 779 | REGISTER_CHECKER(getpw) |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 780 | REGISTER_CHECKER(mkstemp) |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 781 | REGISTER_CHECKER(mktemp) |
| 782 | REGISTER_CHECKER(strcpy) |
| 783 | REGISTER_CHECKER(rand) |
| 784 | REGISTER_CHECKER(vfork) |
| 785 | REGISTER_CHECKER(FloatLoopCounter) |
Ted Kremenek | b63d8d8 | 2012-01-20 05:35:06 +0000 | [diff] [blame] | 786 | REGISTER_CHECKER(UncheckedReturn) |
| 787 | |
Ted Kremenek | 76a5424 | 2012-01-20 01:44:29 +0000 | [diff] [blame] | 788 | |