blob: d0898adf49fb633f1b466d5c9ad6810b84d0758f [file] [log] [blame]
Artem Dergachevba816322016-07-26 18:13:12 +00001//===--- CloneChecker.cpp - Clone detection 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/// \file
11/// CloneChecker is a checker that reports clones in the current translation
12/// unit.
13///
14//===----------------------------------------------------------------------===//
15
16#include "ClangSACheckers.h"
17#include "clang/Analysis/CloneDetection.h"
18#include "clang/Basic/Diagnostic.h"
Artem Dergachev4eca0de2016-10-08 10:54:30 +000019#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
Artem Dergachevba816322016-07-26 18:13:12 +000020#include "clang/StaticAnalyzer/Core/Checker.h"
21#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Artem Dergachev4eca0de2016-10-08 10:54:30 +000022#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
Artem Dergachevba816322016-07-26 18:13:12 +000023#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
24
25using namespace clang;
26using namespace ento;
27
28namespace {
29class CloneChecker
30 : public Checker<check::ASTCodeBody, check::EndOfTranslationUnit> {
Artem Dergachev96034ca2016-07-26 19:05:22 +000031 mutable CloneDetector Detector;
Artem Dergachev4eca0de2016-10-08 10:54:30 +000032 mutable std::unique_ptr<BugType> BT_Exact, BT_Suspicious;
Artem Dergachevba816322016-07-26 18:13:12 +000033
34public:
35 void checkASTCodeBody(const Decl *D, AnalysisManager &Mgr,
36 BugReporter &BR) const;
37
38 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU,
39 AnalysisManager &Mgr, BugReporter &BR) const;
Artem Dergachev2fc19852016-08-18 12:29:41 +000040
Artem Dergachevda9e7182017-04-06 14:34:07 +000041 /// Reports all clones to the user.
Artem Dergachev4eca0de2016-10-08 10:54:30 +000042 void reportClones(BugReporter &BR, AnalysisManager &Mgr,
Artem Dergachevda9e7182017-04-06 14:34:07 +000043 std::vector<CloneDetector::CloneGroup> &CloneGroups) const;
Artem Dergachev2fc19852016-08-18 12:29:41 +000044
Artem Dergachevda9e7182017-04-06 14:34:07 +000045 /// Reports only suspicious clones to the user along with informaton
46 /// that explain why they are suspicious.
47 void reportSuspiciousClones(
48 BugReporter &BR, AnalysisManager &Mgr,
49 std::vector<CloneDetector::CloneGroup> &CloneGroups) const;
Artem Dergachevba816322016-07-26 18:13:12 +000050};
51} // end anonymous namespace
52
53void CloneChecker::checkASTCodeBody(const Decl *D, AnalysisManager &Mgr,
54 BugReporter &BR) const {
55 // Every statement that should be included in the search for clones needs to
56 // be passed to the CloneDetector.
Artem Dergachev96034ca2016-07-26 19:05:22 +000057 Detector.analyzeCodeBody(D);
Artem Dergachevba816322016-07-26 18:13:12 +000058}
59
60void CloneChecker::checkEndOfTranslationUnit(const TranslationUnitDecl *TU,
61 AnalysisManager &Mgr,
62 BugReporter &BR) const {
63 // At this point, every statement in the translation unit has been analyzed by
64 // the CloneDetector. The only thing left to do is to report the found clones.
65
66 int MinComplexity = Mgr.getAnalyzerOptions().getOptionAsInteger(
67 "MinimumCloneComplexity", 10, this);
Artem Dergachevba816322016-07-26 18:13:12 +000068 assert(MinComplexity >= 0);
69
Artem Dergachev2fc19852016-08-18 12:29:41 +000070 bool ReportSuspiciousClones = Mgr.getAnalyzerOptions().getBooleanOption(
71 "ReportSuspiciousClones", true, this);
72
73 bool ReportNormalClones = Mgr.getAnalyzerOptions().getBooleanOption(
74 "ReportNormalClones", true, this);
75
Leslie Zhaid91d19e2017-06-19 01:55:50 +000076 StringRef IgnoredFilesPattern = Mgr.getAnalyzerOptions().getOptionAsString(
77 "IgnoredFilesPattern", "", this);
78
Artem Dergachevda9e7182017-04-06 14:34:07 +000079 // Let the CloneDetector create a list of clones from all the analyzed
80 // statements. We don't filter for matching variable patterns at this point
81 // because reportSuspiciousClones() wants to search them for errors.
82 std::vector<CloneDetector::CloneGroup> AllCloneGroups;
Artem Dergachevf8b4fc32017-04-05 14:17:36 +000083
Leslie Zhaid91d19e2017-06-19 01:55:50 +000084 Detector.findClones(AllCloneGroups,
85 AutoGeneratedCloneConstraint(IgnoredFilesPattern),
86 RecursiveCloneTypeIIConstraint(),
Artem Dergachevda9e7182017-04-06 14:34:07 +000087 MinComplexityConstraint(MinComplexity),
88 MinGroupSizeConstraint(2), OnlyLargestCloneConstraint());
89
90 if (ReportSuspiciousClones)
91 reportSuspiciousClones(BR, Mgr, AllCloneGroups);
92
93 // We are done for this translation unit unless we also need to report normal
94 // clones.
95 if (!ReportNormalClones)
96 return;
97
98 // Now that the suspicious clone detector has checked for pattern errors,
99 // we also filter all clones who don't have matching patterns
100 CloneDetector::constrainClones(AllCloneGroups,
101 MatchingVariablePatternConstraint(),
102 MinGroupSizeConstraint(2));
103
104 reportClones(BR, Mgr, AllCloneGroups);
Artem Dergachev2fc19852016-08-18 12:29:41 +0000105}
106
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000107static PathDiagnosticLocation makeLocation(const StmtSequence &S,
108 AnalysisManager &Mgr) {
109 ASTContext &ACtx = Mgr.getASTContext();
110 return PathDiagnosticLocation::createBegin(
111 S.front(), ACtx.getSourceManager(),
112 Mgr.getAnalysisDeclContext(ACtx.getTranslationUnitDecl()));
113}
114
Artem Dergachevda9e7182017-04-06 14:34:07 +0000115void CloneChecker::reportClones(
116 BugReporter &BR, AnalysisManager &Mgr,
117 std::vector<CloneDetector::CloneGroup> &CloneGroups) const {
Artem Dergachevba816322016-07-26 18:13:12 +0000118
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000119 if (!BT_Exact)
120 BT_Exact.reset(new BugType(this, "Exact code clone", "Code clone"));
Artem Dergachevba816322016-07-26 18:13:12 +0000121
Artem Dergachevda9e7182017-04-06 14:34:07 +0000122 for (const CloneDetector::CloneGroup &Group : CloneGroups) {
Artem Dergachevba816322016-07-26 18:13:12 +0000123 // We group the clones by printing the first as a warning and all others
124 // as a note.
Artem Dergachevda9e7182017-04-06 14:34:07 +0000125 auto R = llvm::make_unique<BugReport>(*BT_Exact, "Duplicate code detected",
126 makeLocation(Group.front(), Mgr));
127 R->addRange(Group.front().getSourceRange());
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000128
Artem Dergachevda9e7182017-04-06 14:34:07 +0000129 for (unsigned i = 1; i < Group.size(); ++i)
130 R->addNote("Similar code here", makeLocation(Group[i], Mgr),
131 Group[i].getSourceRange());
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000132 BR.emitReport(std::move(R));
Artem Dergachevba816322016-07-26 18:13:12 +0000133 }
134}
135
Artem Dergachevda9e7182017-04-06 14:34:07 +0000136void CloneChecker::reportSuspiciousClones(
137 BugReporter &BR, AnalysisManager &Mgr,
138 std::vector<CloneDetector::CloneGroup> &CloneGroups) const {
139 std::vector<VariablePattern::SuspiciousClonePair> Pairs;
Artem Dergachev2fc19852016-08-18 12:29:41 +0000140
Artem Dergachevda9e7182017-04-06 14:34:07 +0000141 for (const CloneDetector::CloneGroup &Group : CloneGroups) {
142 for (unsigned i = 0; i < Group.size(); ++i) {
143 VariablePattern PatternA(Group[i]);
144
145 for (unsigned j = i + 1; j < Group.size(); ++j) {
146 VariablePattern PatternB(Group[j]);
147
148 VariablePattern::SuspiciousClonePair ClonePair;
149 // For now, we only report clones which break the variable pattern just
150 // once because multiple differences in a pattern are an indicator that
151 // those differences are maybe intended (e.g. because it's actually a
152 // different algorithm).
153 // FIXME: In very big clones even multiple variables can be unintended,
154 // so replacing this number with a percentage could better handle such
155 // cases. On the other hand it could increase the false-positive rate
156 // for all clones if the percentage is too high.
157 if (PatternA.countPatternDifferences(PatternB, &ClonePair) == 1) {
158 Pairs.push_back(ClonePair);
159 break;
160 }
161 }
162 }
163 }
Artem Dergachev2fc19852016-08-18 12:29:41 +0000164
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000165 if (!BT_Suspicious)
166 BT_Suspicious.reset(
167 new BugType(this, "Suspicious code clone", "Code clone"));
Artem Dergachev2fc19852016-08-18 12:29:41 +0000168
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000169 ASTContext &ACtx = BR.getContext();
170 SourceManager &SM = ACtx.getSourceManager();
171 AnalysisDeclContext *ADC =
172 Mgr.getAnalysisDeclContext(ACtx.getTranslationUnitDecl());
Artem Dergachev2fc19852016-08-18 12:29:41 +0000173
Artem Dergachevda9e7182017-04-06 14:34:07 +0000174 for (VariablePattern::SuspiciousClonePair &Pair : Pairs) {
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000175 // FIXME: We are ignoring the suggestions currently, because they are
176 // only 50% accurate (even if the second suggestion is unavailable),
177 // which may confuse the user.
178 // Think how to perform more accurate suggestions?
Artem Dergachev2fc19852016-08-18 12:29:41 +0000179
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000180 auto R = llvm::make_unique<BugReport>(
181 *BT_Suspicious,
182 "Potential copy-paste error; did you really mean to use '" +
183 Pair.FirstCloneInfo.Variable->getNameAsString() + "' here?",
184 PathDiagnosticLocation::createBegin(Pair.FirstCloneInfo.Mention, SM,
185 ADC));
186 R->addRange(Pair.FirstCloneInfo.Mention->getSourceRange());
Artem Dergachev2fc19852016-08-18 12:29:41 +0000187
Artem Dergachev4eca0de2016-10-08 10:54:30 +0000188 R->addNote("Similar code using '" +
189 Pair.SecondCloneInfo.Variable->getNameAsString() + "' here",
190 PathDiagnosticLocation::createBegin(Pair.SecondCloneInfo.Mention,
191 SM, ADC),
192 Pair.SecondCloneInfo.Mention->getSourceRange());
193
194 BR.emitReport(std::move(R));
Artem Dergachev2fc19852016-08-18 12:29:41 +0000195 }
196}
197
Artem Dergachevba816322016-07-26 18:13:12 +0000198//===----------------------------------------------------------------------===//
199// Register CloneChecker
200//===----------------------------------------------------------------------===//
201
202void ento::registerCloneChecker(CheckerManager &Mgr) {
203 Mgr.registerChecker<CloneChecker>();
204}