summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/fragiledestructor.cxx
blob: 1631cb30c1e91152f47405ed05fa0a0eb6f192d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <string>
#include <iostream>

#include "plugin.hxx"
#include "compat.hxx"
#include "clang/AST/CXXInheritance.h"


// Check for calls to virtual methods from destructors. These are dangerous because intention might be to call
// a method on a subclass, while in actual fact, it only calls the method on the current or super class.
//

namespace {

class FragileDestructor:
    public loplugin::FilteringPlugin<FragileDestructor>
{
public:
    explicit FragileDestructor(loplugin::InstantiationData const & data):
        FilteringPlugin(data) {}

    virtual void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); }

    bool TraverseCXXDestructorDecl(CXXDestructorDecl *);

    bool VisitCXXMemberCallExpr(const CXXMemberCallExpr *);

private:
    bool mbChecking = false;
};

bool FragileDestructor::TraverseCXXDestructorDecl(CXXDestructorDecl* pCXXDestructorDecl)
{
    if (ignoreLocation(pCXXDestructorDecl)) {
        return RecursiveASTVisitor::TraverseCXXDestructorDecl(pCXXDestructorDecl);
    }
    if (!pCXXDestructorDecl->isThisDeclarationADefinition()) {
        return RecursiveASTVisitor::TraverseCXXDestructorDecl(pCXXDestructorDecl);
    }
    // ignore this for now, too tricky for me to work out
    StringRef aFileName = getFileNameOfSpellingLoc(
            compiler.getSourceManager().getSpellingLoc(compat::getBeginLoc(pCXXDestructorDecl)));
    if (loplugin::hasPathnamePrefix(aFileName, SRCDIR "/include/comphelper/")
        || loplugin::hasPathnamePrefix(aFileName, SRCDIR "/include/cppuhelper/")
        || loplugin::hasPathnamePrefix(aFileName, SRCDIR "/cppuhelper/")
        || loplugin::hasPathnamePrefix(aFileName, SRCDIR "/comphelper/")
        // don't know how to detect this in clang - it is making an explicit call to its own method, so presumably OK
        || loplugin::isSamePathname(aFileName, SRCDIR "/basic/source/sbx/sbxvalue.cxx")
       )
        return RecursiveASTVisitor::TraverseCXXDestructorDecl(pCXXDestructorDecl);
    mbChecking = true;
    bool ret = RecursiveASTVisitor::TraverseCXXDestructorDecl(pCXXDestructorDecl);
    mbChecking = false;
    return ret;
}

bool FragileDestructor::VisitCXXMemberCallExpr(const CXXMemberCallExpr* callExpr)
{
    if (!mbChecking || ignoreLocation(callExpr)) {
        return true;
    }
    const CXXMethodDecl* methodDecl = callExpr->getMethodDecl();
    if (!methodDecl->isVirtual() || methodDecl->hasAttr<FinalAttr>()) {
        return true;
    }
    const CXXRecordDecl* parentRecordDecl = methodDecl->getParent();
    if (parentRecordDecl->hasAttr<FinalAttr>()) {
        return true;
    }
    if (!callExpr->getImplicitObjectArgument()->IgnoreImpCasts()->isImplicitCXXThis()) {
        return true;
    }
    // if we see an explicit call to its own method, that's OK
    auto s1 = compiler.getSourceManager().getCharacterData(compat::getBeginLoc(callExpr));
    auto s2 = compiler.getSourceManager().getCharacterData(compat::getEndLoc(callExpr));
    std::string tok(s1, s2-s1);
    if (tok.find("::") != std::string::npos) {
        return true;
    }
    // e.g. osl/thread.hxx and cppuhelper/compbase.hxx
    StringRef aFileName = getFileNameOfSpellingLoc(
        compiler.getSourceManager().getSpellingLoc(compat::getBeginLoc(methodDecl)));
    if (loplugin::hasPathnamePrefix(aFileName, SRCDIR "/include/osl/")
        || loplugin::hasPathnamePrefix(aFileName, SRCDIR "/include/comphelper/")
        || loplugin::hasPathnamePrefix(aFileName, SRCDIR "/include/cppuhelper/"))
        return true;
    report(
        DiagnosticsEngine::Warning,
        "calling virtual method from destructor, either make the virtual method final, or make this class final",
        compat::getBeginLoc(callExpr))
      << callExpr->getSourceRange();
    report(
        DiagnosticsEngine::Note,
        "callee method here",
        compat::getBeginLoc(methodDecl))
      << methodDecl->getSourceRange();
    return true;
}


loplugin::Plugin::Registration< FragileDestructor > X("fragiledestructor", false);

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */