blob: 3fb5f5d9f0a3bc6a78ca9564ed1a4f47ffb7f88f [file] [log] [blame]
Benjamin Kramer190e2cf2014-07-08 14:32:17 +00001//===--- TwineLocalCheck.cpp - clang-tidy ---------------------------------===//
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#include "TwineLocalCheck.h"
11#include "clang/AST/ASTContext.h"
12#include "clang/ASTMatchers/ASTMatchers.h"
13#include "clang/Lex/Lexer.h"
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000014
15using namespace clang::ast_matchers;
16
17namespace clang {
18namespace tidy {
Alexander Kornienko0a6ce9f2015-03-02 12:39:18 +000019namespace llvm {
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000020
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000021void TwineLocalCheck::registerMatchers(MatchFinder *Finder) {
22 auto TwineType =
23 qualType(hasDeclaration(recordDecl(hasName("::llvm::Twine"))));
24 Finder->addMatcher(varDecl(hasType(TwineType)).bind("variable"), this);
25}
26
27void TwineLocalCheck::check(const MatchFinder::MatchResult &Result) {
Piotr Padlewski08124b12016-12-14 15:29:23 +000028 const auto *VD = Result.Nodes.getNodeAs<VarDecl>("variable");
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000029 auto Diag = diag(VD->getLocation(),
Benjamin Krameree587212014-07-08 15:41:20 +000030 "twine variables are prone to use-after-free bugs");
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000031
32 // If this VarDecl has an initializer try to fix it.
33 if (VD->hasInit()) {
34 // Peel away implicit constructors and casts so we can see the actual type
35 // of the initializer.
Tim Shen325c7272016-06-21 20:11:20 +000036 const Expr *C = VD->getInit()->IgnoreImplicit();
37
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000038 while (isa<CXXConstructExpr>(C))
39 C = cast<CXXConstructExpr>(C)->getArg(0)->IgnoreParenImpCasts();
40
41 SourceRange TypeRange =
42 VD->getTypeSourceInfo()->getTypeLoc().getSourceRange();
43
44 // A real Twine, turn it into a std::string.
45 if (VD->getType()->getCanonicalTypeUnqualified() ==
46 C->getType()->getCanonicalTypeUnqualified()) {
47 SourceLocation EndLoc = Lexer::getLocForEndOfToken(
Gabor Horvathafad84c2016-09-24 02:13:45 +000048 VD->getInit()->getLocEnd(), 0, *Result.SourceManager, getLangOpts());
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000049 Diag << FixItHint::CreateReplacement(TypeRange, "std::string")
50 << FixItHint::CreateInsertion(VD->getInit()->getLocStart(), "(")
51 << FixItHint::CreateInsertion(EndLoc, ").str()");
52 } else {
53 // Just an implicit conversion. Insert the real type.
54 Diag << FixItHint::CreateReplacement(
55 TypeRange,
56 C->getType().getAsString(Result.Context->getPrintingPolicy()));
57 }
58 }
59}
60
Alexander Kornienko0a6ce9f2015-03-02 12:39:18 +000061} // namespace llvm
Benjamin Kramer190e2cf2014-07-08 14:32:17 +000062} // namespace tidy
63} // namespace clang