Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 1 | //===--- NonNullParamChecker.cpp - Undefined arguments checker -*- C++ -*--===// |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 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 | // |
Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 10 | // This defines NonNullParamChecker, which checks for arguments expected not to |
| 11 | // be null due to: |
| 12 | // - the corresponding parameters being declared to have nonnull attribute |
| 13 | // - the corresponding parameters being references; since the call would form |
| 14 | // a reference to a null pointer |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 18 | #include "ClangSACheckers.h" |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 19 | #include "clang/AST/Attr.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h" |
Argyrios Kyrtzidis | ec8605f | 2011-03-01 01:16:21 +0000 | [diff] [blame] | 21 | #include "clang/StaticAnalyzer/Core/Checker.h" |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 22 | #include "clang/StaticAnalyzer/Core/CheckerManager.h" |
Jordan Rose | f540c54 | 2012-07-26 21:39:41 +0000 | [diff] [blame] | 23 | #include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h" |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 24 | #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 25 | |
| 26 | using namespace clang; |
Ted Kremenek | 9ef6537 | 2010-12-23 07:20:52 +0000 | [diff] [blame] | 27 | using namespace ento; |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 28 | |
Ted Kremenek | f493f49 | 2009-11-11 05:50:44 +0000 | [diff] [blame] | 29 | namespace { |
Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 30 | class NonNullParamChecker |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 31 | : public Checker< check::PreCall > { |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 32 | mutable OwningPtr<BugType> BTAttrNonNull; |
| 33 | mutable OwningPtr<BugType> BTNullRefArg; |
Ted Kremenek | f493f49 | 2009-11-11 05:50:44 +0000 | [diff] [blame] | 34 | public: |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 35 | |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 36 | void checkPreCall(const CallEvent &Call, CheckerContext &C) const; |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 37 | |
| 38 | BugReport *genReportNullAttrNonNull(const ExplodedNode *ErrorN, |
| 39 | const Expr *ArgE) const; |
| 40 | BugReport *genReportReferenceToNullPointer(const ExplodedNode *ErrorN, |
| 41 | const Expr *ArgE) const; |
Ted Kremenek | f493f49 | 2009-11-11 05:50:44 +0000 | [diff] [blame] | 42 | }; |
| 43 | } // end anonymous namespace |
| 44 | |
Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 45 | void NonNullParamChecker::checkPreCall(const CallEvent &Call, |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 46 | CheckerContext &C) const { |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 47 | const Decl *FD = Call.getDecl(); |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 48 | if (!FD) |
| 49 | return; |
| 50 | |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 51 | const NonNullAttr *Att = FD->getAttr<NonNullAttr>(); |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 52 | |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 53 | ProgramStateRef state = C.getState(); |
| 54 | |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 55 | CallEvent::param_type_iterator TyI = Call.param_type_begin(), |
| 56 | TyE = Call.param_type_end(); |
| 57 | |
| 58 | for (unsigned idx = 0, count = Call.getNumArgs(); idx != count; ++idx){ |
| 59 | |
| 60 | // Check if the parameter is a reference. We want to report when reference |
| 61 | // to a null pointer is passed as a paramter. |
| 62 | bool haveRefTypeParam = false; |
| 63 | if (TyI != TyE) { |
| 64 | haveRefTypeParam = (*TyI)->isReferenceType(); |
| 65 | TyI++; |
| 66 | } |
| 67 | |
| 68 | bool haveAttrNonNull = Att && Att->isNonNull(idx); |
| 69 | |
| 70 | if (!haveRefTypeParam && !haveAttrNonNull) |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 71 | continue; |
| 72 | |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 73 | // If the value is unknown or undefined, we can't perform this check. |
| 74 | const Expr *ArgE = Call.getArgExpr(idx); |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 75 | SVal V = Call.getArgSVal(idx); |
David Blaikie | dc84cd5 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 76 | Optional<DefinedSVal> DV = V.getAs<DefinedSVal>(); |
Jordy Rose | 9a12685 | 2010-06-21 20:08:28 +0000 | [diff] [blame] | 77 | if (!DV) |
| 78 | continue; |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 79 | |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 80 | // Process the case when the argument is not a location. |
| 81 | assert(!haveRefTypeParam || DV->getAs<Loc>()); |
| 82 | |
| 83 | if (haveAttrNonNull && !DV->getAs<Loc>()) { |
Ted Kremenek | bb0ba0b | 2010-11-09 02:11:43 +0000 | [diff] [blame] | 84 | // If the argument is a union type, we want to handle a potential |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 85 | // transparent_union GCC extension. |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 86 | if (!ArgE) |
| 87 | continue; |
| 88 | |
| 89 | QualType T = ArgE->getType(); |
Ted Kremenek | bb0ba0b | 2010-11-09 02:11:43 +0000 | [diff] [blame] | 90 | const RecordType *UT = T->getAsUnionType(); |
| 91 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
| 92 | continue; |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 93 | |
David Blaikie | dc84cd5 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 94 | if (Optional<nonloc::CompoundVal> CSV = |
David Blaikie | 5251abe | 2013-02-20 05:52:05 +0000 | [diff] [blame] | 95 | DV->getAs<nonloc::CompoundVal>()) { |
Ted Kremenek | bb0ba0b | 2010-11-09 02:11:43 +0000 | [diff] [blame] | 96 | nonloc::CompoundVal::iterator CSV_I = CSV->begin(); |
| 97 | assert(CSV_I != CSV->end()); |
| 98 | V = *CSV_I; |
David Blaikie | 5251abe | 2013-02-20 05:52:05 +0000 | [diff] [blame] | 99 | DV = V.getAs<DefinedSVal>(); |
Ted Kremenek | bb0ba0b | 2010-11-09 02:11:43 +0000 | [diff] [blame] | 100 | assert(++CSV_I == CSV->end()); |
| 101 | if (!DV) |
Anna Zaks | 42773d6 | 2013-03-06 20:26:02 +0000 | [diff] [blame] | 102 | continue; |
| 103 | // Retrieve the corresponding expression. |
| 104 | if (const CompoundLiteralExpr *CE = dyn_cast<CompoundLiteralExpr>(ArgE)) |
| 105 | if (const InitListExpr *IE = |
| 106 | dyn_cast<InitListExpr>(CE->getInitializer())) |
| 107 | ArgE = dyn_cast<Expr>(*(IE->begin())); |
| 108 | |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 109 | } else { |
Ted Kremenek | bb0ba0b | 2010-11-09 02:11:43 +0000 | [diff] [blame] | 110 | // FIXME: Handle LazyCompoundVals? |
| 111 | continue; |
| 112 | } |
| 113 | } |
| 114 | |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 115 | ConstraintManager &CM = C.getConstraintManager(); |
Ted Kremenek | 8bef823 | 2012-01-26 21:29:00 +0000 | [diff] [blame] | 116 | ProgramStateRef stateNotNull, stateNull; |
Ted Kremenek | 28f47b9 | 2010-12-01 22:16:56 +0000 | [diff] [blame] | 117 | llvm::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 118 | |
| 119 | if (stateNull && !stateNotNull) { |
| 120 | // Generate an error node. Check for a null node in case |
| 121 | // we cache out. |
Ted Kremenek | d048c6e | 2010-12-20 21:19:09 +0000 | [diff] [blame] | 122 | if (ExplodedNode *errorNode = C.generateSink(stateNull)) { |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 123 | |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 124 | BugReport *R = 0; |
| 125 | if (haveAttrNonNull) |
| 126 | R = genReportNullAttrNonNull(errorNode, ArgE); |
| 127 | else if (haveRefTypeParam) |
| 128 | R = genReportReferenceToNullPointer(errorNode, ArgE); |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 129 | |
| 130 | // Highlight the range of the argument that was null. |
Jordan Rose | fe6a011 | 2012-07-02 19:28:21 +0000 | [diff] [blame] | 131 | R->addRange(Call.getArgSourceRange(idx)); |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 132 | |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 133 | // Emit the bug report. |
Jordan Rose | 785950e | 2012-11-02 01:53:40 +0000 | [diff] [blame] | 134 | C.emitReport(R); |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | // Always return. Either we cached out or we just emitted an error. |
| 138 | return; |
| 139 | } |
| 140 | |
| 141 | // If a pointer value passed the check we should assume that it is |
| 142 | // indeed not null from this point forward. |
| 143 | assert(stateNotNull); |
| 144 | state = stateNotNull; |
| 145 | } |
| 146 | |
| 147 | // If we reach here all of the arguments passed the nonnull check. |
| 148 | // If 'state' has been updated generated a new node. |
Anna Zaks | 0bd6b11 | 2011-10-26 21:06:34 +0000 | [diff] [blame] | 149 | C.addTransition(state); |
Zhongxing Xu | 94943b6 | 2009-11-03 07:35:33 +0000 | [diff] [blame] | 150 | } |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 151 | |
Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 152 | BugReport *NonNullParamChecker::genReportNullAttrNonNull( |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 153 | const ExplodedNode *ErrorNode, const Expr *ArgE) const { |
| 154 | // Lazily allocate the BugType object if it hasn't already been |
| 155 | // created. Ownership is transferred to the BugReporter object once |
| 156 | // the BugReport is passed to 'EmitWarning'. |
| 157 | if (!BTAttrNonNull) |
| 158 | BTAttrNonNull.reset(new BugType( |
| 159 | "Argument with 'nonnull' attribute passed null", |
| 160 | "API")); |
| 161 | |
| 162 | BugReport *R = new BugReport(*BTAttrNonNull, |
| 163 | "Null pointer passed as an argument to a 'nonnull' parameter", |
| 164 | ErrorNode); |
| 165 | if (ArgE) |
| 166 | bugreporter::trackNullOrUndefValue(ErrorNode, ArgE, *R); |
| 167 | |
| 168 | return R; |
| 169 | } |
| 170 | |
Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 171 | BugReport *NonNullParamChecker::genReportReferenceToNullPointer( |
Anna Zaks | 018e9aa | 2013-03-07 03:02:36 +0000 | [diff] [blame] | 172 | const ExplodedNode *ErrorNode, const Expr *ArgE) const { |
| 173 | if (!BTNullRefArg) |
| 174 | BTNullRefArg.reset(new BuiltinBug("Dereference of null pointer")); |
| 175 | |
| 176 | BugReport *R = new BugReport(*BTNullRefArg, |
| 177 | "Forming reference to null pointer", |
| 178 | ErrorNode); |
| 179 | if (ArgE) { |
| 180 | const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE); |
| 181 | if (ArgEDeref == 0) |
| 182 | ArgEDeref = ArgE; |
| 183 | bugreporter::trackNullOrUndefValue(ErrorNode, |
| 184 | ArgEDeref, |
| 185 | *R); |
| 186 | } |
| 187 | return R; |
| 188 | |
| 189 | } |
| 190 | |
Anna Zaks | 80412c4 | 2013-03-09 03:23:14 +0000 | [diff] [blame] | 191 | void ento::registerNonNullParamChecker(CheckerManager &mgr) { |
| 192 | mgr.registerChecker<NonNullParamChecker>(); |
Argyrios Kyrtzidis | bd90076 | 2011-02-28 01:28:01 +0000 | [diff] [blame] | 193 | } |