blob: 5c999c4096a6b700648a18958bdd318477fd11a7 [file] [log] [blame]
Ted Kremenek6dd66ed2010-02-14 02:45:18 +00001//=== LLVMConventionsChecker.cpp - Check LLVM codebase conventions ---*- 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 defines LLVMConventionsChecker, a bunch of small little checks
11// for checking specific coding conventions in the LLVM/Clang codebase.
12//
13//===----------------------------------------------------------------------===//
14
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +000015#include "ClangSACheckers.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000016#include "clang/StaticAnalyzer/Core/Checker.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000017#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +000018#include "clang/AST/DeclTemplate.h"
19#include "clang/AST/StmtVisitor.h"
Ted Kremenek6dd66ed2010-02-14 02:45:18 +000020#include <string>
Ted Kremeneka6b87932010-02-14 19:09:13 +000021#include "llvm/ADT/StringRef.h"
Ted Kremenek6dd66ed2010-02-14 02:45:18 +000022
23using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000024using namespace ento;
Ted Kremenek6dd66ed2010-02-14 02:45:18 +000025
26//===----------------------------------------------------------------------===//
Ted Kremenek55abf162010-02-14 19:08:36 +000027// Generic type checking routines.
28//===----------------------------------------------------------------------===//
29
Ted Kremeneka6b87932010-02-14 19:09:13 +000030static bool IsLLVMStringRef(QualType T) {
Ted Kremenek55abf162010-02-14 19:08:36 +000031 const RecordType *RT = T->getAs<RecordType>();
32 if (!RT)
33 return false;
34
35 return llvm::StringRef(QualType(RT, 0).getAsString()) ==
Ted Kremeneka6b87932010-02-14 19:09:13 +000036 "class llvm::StringRef";
37}
38
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000039/// Check whether the declaration is semantically inside the top-level
40/// namespace named by ns.
Benjamin Kramerec1b1cc2010-07-14 23:19:41 +000041static bool InNamespace(const Decl *D, llvm::StringRef NS) {
Ted Kremeneka6b87932010-02-14 19:09:13 +000042 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(D->getDeclContext());
43 if (!ND)
44 return false;
45 const IdentifierInfo *II = ND->getIdentifier();
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000046 if (!II || !II->getName().equals(NS))
Ted Kremeneka6b87932010-02-14 19:09:13 +000047 return false;
Ted Kremenekc39b5e82011-01-14 22:31:41 +000048 return isa<TranslationUnitDecl>(ND->getDeclContext());
Ted Kremenek55abf162010-02-14 19:08:36 +000049}
50
51static bool IsStdString(QualType T) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +000052 if (const ElaboratedType *QT = T->getAs<ElaboratedType>())
Ted Kremenek55abf162010-02-14 19:08:36 +000053 T = QT->getNamedType();
54
55 const TypedefType *TT = T->getAs<TypedefType>();
56 if (!TT)
57 return false;
58
Ted Kremenek676ca152010-02-14 19:09:05 +000059 const TypedefDecl *TD = TT->getDecl();
Ted Kremeneka6b87932010-02-14 19:09:13 +000060
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000061 if (!InNamespace(TD, "std"))
Ted Kremeneka6b87932010-02-14 19:09:13 +000062 return false;
63
64 return TD->getName() == "string";
65}
66
Ted Kremeneka6b87932010-02-14 19:09:13 +000067static bool IsClangType(const RecordDecl *RD) {
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000068 return RD->getName() == "Type" && InNamespace(RD, "clang");
Ted Kremeneka6b87932010-02-14 19:09:13 +000069}
70
71static bool IsClangDecl(const RecordDecl *RD) {
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000072 return RD->getName() == "Decl" && InNamespace(RD, "clang");
Ted Kremeneka6b87932010-02-14 19:09:13 +000073}
74
75static bool IsClangStmt(const RecordDecl *RD) {
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000076 return RD->getName() == "Stmt" && InNamespace(RD, "clang");
Ted Kremeneka6b87932010-02-14 19:09:13 +000077}
78
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000079static bool IsClangAttr(const RecordDecl *RD) {
80 return RD->getName() == "Attr" && InNamespace(RD, "clang");
Ted Kremenek1ed482b2010-02-14 22:58:16 +000081}
82
Ted Kremeneka6b87932010-02-14 19:09:13 +000083static bool IsStdVector(QualType T) {
84 const TemplateSpecializationType *TS = T->getAs<TemplateSpecializationType>();
85 if (!TS)
Ted Kremenek55abf162010-02-14 19:08:36 +000086 return false;
87
Ted Kremeneka6b87932010-02-14 19:09:13 +000088 TemplateName TM = TS->getTemplateName();
89 TemplateDecl *TD = TM.getAsTemplateDecl();
90
Nick Lewycky31b5c4b2010-05-30 18:05:23 +000091 if (!TD || !InNamespace(TD, "std"))
Ted Kremeneka6b87932010-02-14 19:09:13 +000092 return false;
93
94 return TD->getName() == "vector";
95}
96
97static bool IsSmallVector(QualType T) {
98 const TemplateSpecializationType *TS = T->getAs<TemplateSpecializationType>();
99 if (!TS)
100 return false;
101
102 TemplateName TM = TS->getTemplateName();
103 TemplateDecl *TD = TM.getAsTemplateDecl();
104
Nick Lewycky31b5c4b2010-05-30 18:05:23 +0000105 if (!TD || !InNamespace(TD, "llvm"))
Ted Kremeneka6b87932010-02-14 19:09:13 +0000106 return false;
107
108 return TD->getName() == "SmallVector";
Ted Kremenek55abf162010-02-14 19:08:36 +0000109}
110
111//===----------------------------------------------------------------------===//
112// CHECK: a llvm::StringRef should not be bound to a temporary std::string whose
113// lifetime is shorter than the StringRef's.
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000114//===----------------------------------------------------------------------===//
115
116namespace {
117class StringRefCheckerVisitor : public StmtVisitor<StringRefCheckerVisitor> {
118 BugReporter &BR;
119public:
120 StringRefCheckerVisitor(BugReporter &br) : BR(br) {}
121 void VisitChildren(Stmt *S) {
122 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end() ;
123 I != E; ++I)
124 if (Stmt *child = *I)
125 Visit(child);
126 }
127 void VisitStmt(Stmt *S) { VisitChildren(S); }
128 void VisitDeclStmt(DeclStmt *DS);
129private:
130 void VisitVarDecl(VarDecl *VD);
131};
132} // end anonymous namespace
133
134static void CheckStringRefAssignedTemporary(const Decl *D, BugReporter &BR) {
135 StringRefCheckerVisitor walker(BR);
136 walker.Visit(D->getBody());
137}
138
139void StringRefCheckerVisitor::VisitDeclStmt(DeclStmt *S) {
Ted Kremenek005f09b2010-02-14 19:08:43 +0000140 VisitChildren(S);
141
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000142 for (DeclStmt::decl_iterator I = S->decl_begin(), E = S->decl_end();I!=E; ++I)
143 if (VarDecl *VD = dyn_cast<VarDecl>(*I))
144 VisitVarDecl(VD);
145}
146
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000147void StringRefCheckerVisitor::VisitVarDecl(VarDecl *VD) {
148 Expr *Init = VD->getInit();
149 if (!Init)
Ted Kremenek676ca152010-02-14 19:09:05 +0000150 return;
Ted Kremenek55abf162010-02-14 19:08:36 +0000151
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000152 // Pattern match for:
153 // llvm::StringRef x = call() (where call returns std::string)
Ted Kremeneka6b87932010-02-14 19:09:13 +0000154 if (!IsLLVMStringRef(VD->getType()))
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000155 return;
John McCall4765fa02010-12-06 08:20:24 +0000156 ExprWithCleanups *Ex1 = dyn_cast<ExprWithCleanups>(Init);
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000157 if (!Ex1)
158 return;
159 CXXConstructExpr *Ex2 = dyn_cast<CXXConstructExpr>(Ex1->getSubExpr());
160 if (!Ex2 || Ex2->getNumArgs() != 1)
161 return;
162 ImplicitCastExpr *Ex3 = dyn_cast<ImplicitCastExpr>(Ex2->getArg(0));
163 if (!Ex3)
164 return;
165 CXXConstructExpr *Ex4 = dyn_cast<CXXConstructExpr>(Ex3->getSubExpr());
166 if (!Ex4 || Ex4->getNumArgs() != 1)
167 return;
168 ImplicitCastExpr *Ex5 = dyn_cast<ImplicitCastExpr>(Ex4->getArg(0));
169 if (!Ex5)
170 return;
171 CXXBindTemporaryExpr *Ex6 = dyn_cast<CXXBindTemporaryExpr>(Ex5->getSubExpr());
172 if (!Ex6 || !IsStdString(Ex6->getType()))
173 return;
Ted Kremenek55abf162010-02-14 19:08:36 +0000174
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000175 // Okay, badness! Report an error.
Ted Kremeneka6b87932010-02-14 19:09:13 +0000176 const char *desc = "StringRef should not be bound to temporary "
177 "std::string that it outlives";
178
179 BR.EmitBasicReport(desc, "LLVM Conventions", desc,
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000180 VD->getLocStart(), Init->getSourceRange());
181}
182
183//===----------------------------------------------------------------------===//
Ted Kremeneka6b87932010-02-14 19:09:13 +0000184// CHECK: Clang AST nodes should not have fields that can allocate
185// memory.
186//===----------------------------------------------------------------------===//
187
188static bool AllocatesMemory(QualType T) {
189 return IsStdVector(T) || IsStdString(T) || IsSmallVector(T);
190}
191
192// This type checking could be sped up via dynamic programming.
193static bool IsPartOfAST(const CXXRecordDecl *R) {
Nick Lewycky31b5c4b2010-05-30 18:05:23 +0000194 if (IsClangStmt(R) || IsClangType(R) || IsClangDecl(R) || IsClangAttr(R))
Ted Kremeneka6b87932010-02-14 19:09:13 +0000195 return true;
196
197 for (CXXRecordDecl::base_class_const_iterator I = R->bases_begin(),
198 E = R->bases_end(); I!=E; ++I) {
199 CXXBaseSpecifier BS = *I;
200 QualType T = BS.getType();
201 if (const RecordType *baseT = T->getAs<RecordType>()) {
202 CXXRecordDecl *baseD = cast<CXXRecordDecl>(baseT->getDecl());
203 if (IsPartOfAST(baseD))
204 return true;
205 }
206 }
207
208 return false;
209}
210
211namespace {
212class ASTFieldVisitor {
213 llvm::SmallVector<FieldDecl*, 10> FieldChain;
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000214 const CXXRecordDecl *Root;
Ted Kremeneka6b87932010-02-14 19:09:13 +0000215 BugReporter &BR;
216public:
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000217 ASTFieldVisitor(const CXXRecordDecl *root, BugReporter &br)
Ted Kremeneka6b87932010-02-14 19:09:13 +0000218 : Root(root), BR(br) {}
219
220 void Visit(FieldDecl *D);
221 void ReportError(QualType T);
222};
223} // end anonymous namespace
224
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000225static void CheckASTMemory(const CXXRecordDecl *R, BugReporter &BR) {
Ted Kremeneka6b87932010-02-14 19:09:13 +0000226 if (!IsPartOfAST(R))
227 return;
228
229 for (RecordDecl::field_iterator I = R->field_begin(), E = R->field_end();
230 I != E; ++I) {
231 ASTFieldVisitor walker(R, BR);
232 walker.Visit(*I);
233 }
234}
235
236void ASTFieldVisitor::Visit(FieldDecl *D) {
237 FieldChain.push_back(D);
238
239 QualType T = D->getType();
240
241 if (AllocatesMemory(T))
242 ReportError(T);
243
244 if (const RecordType *RT = T->getAs<RecordType>()) {
245 const RecordDecl *RD = RT->getDecl()->getDefinition();
246 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
247 I != E; ++I)
248 Visit(*I);
249 }
250
251 FieldChain.pop_back();
252}
253
254void ASTFieldVisitor::ReportError(QualType T) {
255 llvm::SmallString<1024> buf;
256 llvm::raw_svector_ostream os(buf);
257
258 os << "AST class '" << Root->getName() << "' has a field '"
259 << FieldChain.front()->getName() << "' that allocates heap memory";
260 if (FieldChain.size() > 1) {
261 os << " via the following chain: ";
262 bool isFirst = true;
263 for (llvm::SmallVectorImpl<FieldDecl*>::iterator I=FieldChain.begin(),
264 E=FieldChain.end(); I!=E; ++I) {
265 if (!isFirst)
266 os << '.';
267 else
268 isFirst = false;
269 os << (*I)->getName();
270 }
271 }
272 os << " (type " << FieldChain.back()->getType().getAsString() << ")";
273 os.flush();
274
275 // Note that this will fire for every translation unit that uses this
276 // class. This is suboptimal, but at least scan-build will merge
277 // duplicate HTML reports. In the future we need a unified way of merging
278 // duplicate reports across translation units. For C++ classes we cannot
279 // just report warnings when we see an out-of-line method definition for a
280 // class, as that heuristic doesn't always work (the complete definition of
281 // the class may be in the header file, for example).
282 BR.EmitBasicReport("AST node allocates heap memory", "LLVM Conventions",
283 os.str(), FieldChain.front()->getLocStart());
284}
285
286//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000287// LLVMConventionsChecker
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000288//===----------------------------------------------------------------------===//
289
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000290namespace {
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +0000291class LLVMConventionsChecker : public Checker<
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000292 check::ASTDecl<CXXRecordDecl>,
293 check::ASTCodeBody > {
294public:
295 void checkASTDecl(const CXXRecordDecl *R, AnalysisManager& mgr,
296 BugReporter &BR) const {
297 if (R->isDefinition())
298 CheckASTMemory(R, BR);
Ted Kremenek676ca152010-02-14 19:09:05 +0000299 }
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000300
301 void checkASTCodeBody(const Decl *D, AnalysisManager& mgr,
302 BugReporter &BR) const {
303 CheckStringRefAssignedTemporary(D, BR);
304 }
305};
Ted Kremenek6dd66ed2010-02-14 02:45:18 +0000306}
Ted Kremenek676ca152010-02-14 19:09:05 +0000307
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000308void ento::registerLLVMConventionsChecker(CheckerManager &mgr) {
309 mgr.registerChecker<LLVMConventionsChecker>();
Ted Kremenek676ca152010-02-14 19:09:05 +0000310}