Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 1 | //=== PointerArithChecker.cpp - Pointer arithmetic checker -----*- 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 files defines PointerArithChecker, a builtin checker that checks for |
| 11 | // pointer arithmetic on locations other than array elements. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Argyrios Kyrtzidis | a921528 | 2011-02-15 22:55:20 +0000 | [diff] [blame] | 15 | #include "ClangSACheckers.h" |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclCXX.h" |
| 17 | #include "clang/AST/ExprCXX.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h" |
Argyrios Kyrtzidis | 6a5674f | 2011-03-01 01:16:21 +0000 | [diff] [blame] | 19 | #include "clang/StaticAnalyzer/Core/Checker.h" |
Argyrios Kyrtzidis | 507ff53 | 2011-02-17 21:39:17 +0000 | [diff] [blame] | 20 | #include "clang/StaticAnalyzer/Core/CheckerManager.h" |
Argyrios Kyrtzidis | dff865d | 2011-02-23 01:05:36 +0000 | [diff] [blame] | 21 | #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 22 | |
| 23 | using namespace clang; |
Ted Kremenek | 98857c9 | 2010-12-23 07:20:52 +0000 | [diff] [blame] | 24 | using namespace ento; |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 25 | |
| 26 | namespace { |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 27 | enum class AllocKind { |
| 28 | SingleObject, |
| 29 | Array, |
| 30 | Unknown, |
| 31 | Reinterpreted // Single object interpreted as an array. |
| 32 | }; |
| 33 | } // end namespace |
| 34 | |
| 35 | namespace llvm { |
| 36 | template <> struct FoldingSetTrait<AllocKind> { |
| 37 | static inline void Profile(AllocKind X, FoldingSetNodeID &ID) { |
| 38 | ID.AddInteger(static_cast<int>(X)); |
| 39 | } |
| 40 | }; |
| 41 | } // end namespace llvm |
| 42 | |
| 43 | namespace { |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 44 | class PointerArithChecker |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 45 | : public Checker< |
| 46 | check::PreStmt<BinaryOperator>, check::PreStmt<UnaryOperator>, |
| 47 | check::PreStmt<ArraySubscriptExpr>, check::PreStmt<CastExpr>, |
| 48 | check::PostStmt<CastExpr>, check::PostStmt<CXXNewExpr>, |
| 49 | check::PostStmt<CallExpr>, check::DeadSymbols> { |
| 50 | AllocKind getKindOfNewOp(const CXXNewExpr *NE, const FunctionDecl *FD) const; |
| 51 | const MemRegion *getArrayRegion(const MemRegion *Region, bool &Polymorphic, |
| 52 | AllocKind &AKind, CheckerContext &C) const; |
| 53 | const MemRegion *getPointedRegion(const MemRegion *Region, |
| 54 | CheckerContext &C) const; |
| 55 | void reportPointerArithMisuse(const Expr *E, CheckerContext &C, |
| 56 | bool PointedNeeded = false) const; |
| 57 | void initAllocIdentifiers(ASTContext &C) const; |
| 58 | |
| 59 | mutable std::unique_ptr<BuiltinBug> BT_pointerArith; |
| 60 | mutable std::unique_ptr<BuiltinBug> BT_polyArray; |
| 61 | mutable llvm::SmallSet<IdentifierInfo *, 8> AllocFunctions; |
Argyrios Kyrtzidis | dff865d | 2011-02-23 01:05:36 +0000 | [diff] [blame] | 62 | |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 63 | public: |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 64 | void checkPreStmt(const UnaryOperator *UOp, CheckerContext &C) const; |
| 65 | void checkPreStmt(const BinaryOperator *BOp, CheckerContext &C) const; |
| 66 | void checkPreStmt(const ArraySubscriptExpr *SubExpr, CheckerContext &C) const; |
| 67 | void checkPreStmt(const CastExpr *CE, CheckerContext &C) const; |
| 68 | void checkPostStmt(const CastExpr *CE, CheckerContext &C) const; |
| 69 | void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const; |
| 70 | void checkPostStmt(const CallExpr *CE, CheckerContext &C) const; |
| 71 | void checkDeadSymbols(SymbolReaper &SR, CheckerContext &C) const; |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 72 | }; |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 73 | } // end namespace |
| 74 | |
| 75 | REGISTER_MAP_WITH_PROGRAMSTATE(RegionState, const MemRegion *, AllocKind) |
| 76 | |
| 77 | void PointerArithChecker::checkDeadSymbols(SymbolReaper &SR, |
| 78 | CheckerContext &C) const { |
| 79 | // TODO: intentional leak. Some information is garbage collected too early, |
| 80 | // see http://reviews.llvm.org/D14203 for further information. |
| 81 | /*ProgramStateRef State = C.getState(); |
| 82 | RegionStateTy RegionStates = State->get<RegionState>(); |
| 83 | for (RegionStateTy::iterator I = RegionStates.begin(), E = RegionStates.end(); |
| 84 | I != E; ++I) { |
| 85 | if (!SR.isLiveRegion(I->first)) |
| 86 | State = State->remove<RegionState>(I->first); |
| 87 | } |
| 88 | C.addTransition(State);*/ |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 91 | AllocKind PointerArithChecker::getKindOfNewOp(const CXXNewExpr *NE, |
| 92 | const FunctionDecl *FD) const { |
| 93 | // This checker try not to assume anything about placement and overloaded |
| 94 | // new to avoid false positives. |
| 95 | if (isa<CXXMethodDecl>(FD)) |
| 96 | return AllocKind::Unknown; |
| 97 | if (FD->getNumParams() != 1 || FD->isVariadic()) |
| 98 | return AllocKind::Unknown; |
| 99 | if (NE->isArray()) |
| 100 | return AllocKind::Array; |
| 101 | |
| 102 | return AllocKind::SingleObject; |
| 103 | } |
| 104 | |
| 105 | const MemRegion * |
| 106 | PointerArithChecker::getPointedRegion(const MemRegion *Region, |
| 107 | CheckerContext &C) const { |
| 108 | assert(Region); |
| 109 | ProgramStateRef State = C.getState(); |
| 110 | SVal S = State->getSVal(Region); |
| 111 | return S.getAsRegion(); |
| 112 | } |
| 113 | |
| 114 | /// Checks whether a region is the part of an array. |
| 115 | /// In case there is a dericed to base cast above the array element, the |
| 116 | /// Polymorphic output value is set to true. AKind output value is set to the |
| 117 | /// allocation kind of the inspected region. |
| 118 | const MemRegion *PointerArithChecker::getArrayRegion(const MemRegion *Region, |
| 119 | bool &Polymorphic, |
| 120 | AllocKind &AKind, |
| 121 | CheckerContext &C) const { |
| 122 | assert(Region); |
| 123 | while (Region->getKind() == MemRegion::Kind::CXXBaseObjectRegionKind) { |
| 124 | Region = Region->getAs<CXXBaseObjectRegion>()->getSuperRegion(); |
| 125 | Polymorphic = true; |
| 126 | } |
| 127 | if (Region->getKind() == MemRegion::Kind::ElementRegionKind) { |
| 128 | Region = Region->getAs<ElementRegion>()->getSuperRegion(); |
| 129 | } |
| 130 | |
| 131 | ProgramStateRef State = C.getState(); |
| 132 | if (const AllocKind *Kind = State->get<RegionState>(Region)) { |
| 133 | AKind = *Kind; |
| 134 | if (*Kind == AllocKind::Array) |
| 135 | return Region; |
| 136 | else |
| 137 | return nullptr; |
| 138 | } |
| 139 | // When the region is symbolic and we do not have any information about it, |
| 140 | // assume that this is an array to avoid false positives. |
| 141 | if (Region->getKind() == MemRegion::Kind::SymbolicRegionKind) |
| 142 | return Region; |
| 143 | |
| 144 | // No AllocKind stored and not symbolic, assume that it points to a single |
| 145 | // object. |
| 146 | return nullptr; |
| 147 | } |
| 148 | |
| 149 | void PointerArithChecker::reportPointerArithMisuse(const Expr *E, |
| 150 | CheckerContext &C, |
| 151 | bool PointedNeeded) const { |
| 152 | SourceRange SR = E->getSourceRange(); |
| 153 | if (SR.isInvalid()) |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 154 | return; |
| 155 | |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 156 | ProgramStateRef State = C.getState(); |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 157 | const MemRegion *Region = C.getSVal(E).getAsRegion(); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 158 | if (!Region) |
| 159 | return; |
| 160 | if (PointedNeeded) |
| 161 | Region = getPointedRegion(Region, C); |
| 162 | if (!Region) |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 163 | return; |
| 164 | |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 165 | bool IsPolymorphic = false; |
| 166 | AllocKind Kind = AllocKind::Unknown; |
| 167 | if (const MemRegion *ArrayRegion = |
| 168 | getArrayRegion(Region, IsPolymorphic, Kind, C)) { |
| 169 | if (!IsPolymorphic) |
| 170 | return; |
Devin Coughlin | e39bd40 | 2015-09-16 22:03:05 +0000 | [diff] [blame] | 171 | if (ExplodedNode *N = C.generateNonFatalErrorNode()) { |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 172 | if (!BT_polyArray) |
| 173 | BT_polyArray.reset(new BuiltinBug( |
| 174 | this, "Dangerous pointer arithmetic", |
| 175 | "Pointer arithmetic on a pointer to base class is dangerous " |
| 176 | "because derived and base class may have different size.")); |
| 177 | auto R = llvm::make_unique<BugReport>(*BT_polyArray, |
| 178 | BT_polyArray->getDescription(), N); |
| 179 | R->addRange(E->getSourceRange()); |
| 180 | R->markInteresting(ArrayRegion); |
Aaron Ballman | 8d3a7a5 | 2015-06-23 13:15:32 +0000 | [diff] [blame] | 181 | C.emitReport(std::move(R)); |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 182 | } |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 183 | return; |
| 184 | } |
| 185 | |
| 186 | if (Kind == AllocKind::Reinterpreted) |
| 187 | return; |
| 188 | |
| 189 | // We might not have enough information about symbolic regions. |
| 190 | if (Kind != AllocKind::SingleObject && |
| 191 | Region->getKind() == MemRegion::Kind::SymbolicRegionKind) |
| 192 | return; |
| 193 | |
| 194 | if (ExplodedNode *N = C.generateNonFatalErrorNode()) { |
| 195 | if (!BT_pointerArith) |
| 196 | BT_pointerArith.reset(new BuiltinBug(this, "Dangerous pointer arithmetic", |
| 197 | "Pointer arithmetic on non-array " |
| 198 | "variables relies on memory layout, " |
| 199 | "which is dangerous.")); |
| 200 | auto R = llvm::make_unique<BugReport>(*BT_pointerArith, |
| 201 | BT_pointerArith->getDescription(), N); |
| 202 | R->addRange(SR); |
| 203 | R->markInteresting(Region); |
| 204 | C.emitReport(std::move(R)); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | void PointerArithChecker::initAllocIdentifiers(ASTContext &C) const { |
| 209 | if (!AllocFunctions.empty()) |
| 210 | return; |
| 211 | AllocFunctions.insert(&C.Idents.get("alloca")); |
| 212 | AllocFunctions.insert(&C.Idents.get("malloc")); |
| 213 | AllocFunctions.insert(&C.Idents.get("realloc")); |
| 214 | AllocFunctions.insert(&C.Idents.get("calloc")); |
| 215 | AllocFunctions.insert(&C.Idents.get("valloc")); |
| 216 | } |
| 217 | |
| 218 | void PointerArithChecker::checkPostStmt(const CallExpr *CE, |
| 219 | CheckerContext &C) const { |
| 220 | ProgramStateRef State = C.getState(); |
| 221 | const FunctionDecl *FD = C.getCalleeDecl(CE); |
| 222 | if (!FD) |
| 223 | return; |
| 224 | IdentifierInfo *FunI = FD->getIdentifier(); |
| 225 | initAllocIdentifiers(C.getASTContext()); |
| 226 | if (AllocFunctions.count(FunI) == 0) |
| 227 | return; |
| 228 | |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 229 | SVal SV = C.getSVal(CE); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 230 | const MemRegion *Region = SV.getAsRegion(); |
| 231 | if (!Region) |
| 232 | return; |
| 233 | // Assume that C allocation functions allocate arrays to avoid false |
| 234 | // positives. |
| 235 | // TODO: Add heuristics to distinguish alloc calls that allocates single |
| 236 | // objecs. |
| 237 | State = State->set<RegionState>(Region, AllocKind::Array); |
| 238 | C.addTransition(State); |
| 239 | } |
| 240 | |
| 241 | void PointerArithChecker::checkPostStmt(const CXXNewExpr *NE, |
| 242 | CheckerContext &C) const { |
| 243 | const FunctionDecl *FD = NE->getOperatorNew(); |
| 244 | if (!FD) |
| 245 | return; |
| 246 | |
| 247 | AllocKind Kind = getKindOfNewOp(NE, FD); |
| 248 | |
| 249 | ProgramStateRef State = C.getState(); |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 250 | SVal AllocedVal = C.getSVal(NE); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 251 | const MemRegion *Region = AllocedVal.getAsRegion(); |
| 252 | if (!Region) |
| 253 | return; |
| 254 | State = State->set<RegionState>(Region, Kind); |
| 255 | C.addTransition(State); |
| 256 | } |
| 257 | |
| 258 | void PointerArithChecker::checkPostStmt(const CastExpr *CE, |
| 259 | CheckerContext &C) const { |
| 260 | if (CE->getCastKind() != CastKind::CK_BitCast) |
| 261 | return; |
| 262 | |
| 263 | const Expr *CastedExpr = CE->getSubExpr(); |
| 264 | ProgramStateRef State = C.getState(); |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 265 | SVal CastedVal = C.getSVal(CastedExpr); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 266 | |
| 267 | const MemRegion *Region = CastedVal.getAsRegion(); |
| 268 | if (!Region) |
| 269 | return; |
| 270 | |
| 271 | // Suppress reinterpret casted hits. |
| 272 | State = State->set<RegionState>(Region, AllocKind::Reinterpreted); |
| 273 | C.addTransition(State); |
| 274 | } |
| 275 | |
| 276 | void PointerArithChecker::checkPreStmt(const CastExpr *CE, |
| 277 | CheckerContext &C) const { |
| 278 | if (CE->getCastKind() != CastKind::CK_ArrayToPointerDecay) |
| 279 | return; |
| 280 | |
| 281 | const Expr *CastedExpr = CE->getSubExpr(); |
| 282 | ProgramStateRef State = C.getState(); |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 283 | SVal CastedVal = C.getSVal(CastedExpr); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 284 | |
| 285 | const MemRegion *Region = CastedVal.getAsRegion(); |
| 286 | if (!Region) |
| 287 | return; |
| 288 | |
| 289 | if (const AllocKind *Kind = State->get<RegionState>(Region)) { |
| 290 | if (*Kind == AllocKind::Array || *Kind == AllocKind::Reinterpreted) |
| 291 | return; |
| 292 | } |
| 293 | State = State->set<RegionState>(Region, AllocKind::Array); |
| 294 | C.addTransition(State); |
| 295 | } |
| 296 | |
| 297 | void PointerArithChecker::checkPreStmt(const UnaryOperator *UOp, |
| 298 | CheckerContext &C) const { |
| 299 | if (!UOp->isIncrementDecrementOp() || !UOp->getType()->isPointerType()) |
| 300 | return; |
| 301 | reportPointerArithMisuse(UOp->getSubExpr(), C, true); |
| 302 | } |
| 303 | |
| 304 | void PointerArithChecker::checkPreStmt(const ArraySubscriptExpr *SubsExpr, |
| 305 | CheckerContext &C) const { |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 306 | SVal Idx = C.getSVal(SubsExpr->getIdx()); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 307 | |
| 308 | // Indexing with 0 is OK. |
| 309 | if (Idx.isZeroConstant()) |
| 310 | return; |
| 311 | reportPointerArithMisuse(SubsExpr->getBase(), C); |
| 312 | } |
| 313 | |
| 314 | void PointerArithChecker::checkPreStmt(const BinaryOperator *BOp, |
| 315 | CheckerContext &C) const { |
| 316 | BinaryOperatorKind OpKind = BOp->getOpcode(); |
| 317 | if (!BOp->isAdditiveOp() && OpKind != BO_AddAssign && OpKind != BO_SubAssign) |
| 318 | return; |
| 319 | |
| 320 | const Expr *Lhs = BOp->getLHS(); |
| 321 | const Expr *Rhs = BOp->getRHS(); |
| 322 | ProgramStateRef State = C.getState(); |
| 323 | |
| 324 | if (Rhs->getType()->isIntegerType() && Lhs->getType()->isPointerType()) { |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 325 | SVal RHSVal = C.getSVal(Rhs); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 326 | if (State->isNull(RHSVal).isConstrainedTrue()) |
| 327 | return; |
| 328 | reportPointerArithMisuse(Lhs, C, !BOp->isAdditiveOp()); |
| 329 | } |
| 330 | // The int += ptr; case is not valid C++. |
| 331 | if (Lhs->getType()->isIntegerType() && Rhs->getType()->isPointerType()) { |
George Karpenkov | d703ec9 | 2018-01-17 20:27:29 +0000 | [diff] [blame] | 332 | SVal LHSVal = C.getSVal(Lhs); |
Gabor Horvath | d1abcf7 | 2016-02-23 12:34:39 +0000 | [diff] [blame] | 333 | if (State->isNull(LHSVal).isConstrainedTrue()) |
| 334 | return; |
| 335 | reportPointerArithMisuse(Rhs, C); |
Zhongxing Xu | ab0e27f | 2009-11-09 13:23:31 +0000 | [diff] [blame] | 336 | } |
| 337 | } |
| 338 | |
Argyrios Kyrtzidis | 507ff53 | 2011-02-17 21:39:17 +0000 | [diff] [blame] | 339 | void ento::registerPointerArithChecker(CheckerManager &mgr) { |
Argyrios Kyrtzidis | dff865d | 2011-02-23 01:05:36 +0000 | [diff] [blame] | 340 | mgr.registerChecker<PointerArithChecker>(); |
Argyrios Kyrtzidis | 507ff53 | 2011-02-17 21:39:17 +0000 | [diff] [blame] | 341 | } |