summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp
blob: 66a77b875946cb059bb05c77044db2d2d58a1536 (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
//===--- CloexecSocketCheck.cpp - clang-tidy-------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "CloexecSocketCheck.h"
#include "../utils/ASTUtils.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"

using namespace clang::ast_matchers;

namespace clang {
namespace tidy {
namespace android {

static constexpr const char *SOCK_CLOEXEC = "SOCK_CLOEXEC";

void CloexecSocketCheck::registerMatchers(MatchFinder *Finder) {
  Finder->addMatcher(
      callExpr(callee(functionDecl(isExternC(), returns(isInteger()),
                                   hasName("socket"),
                                   hasParameter(0, hasType(isInteger())),
                                   hasParameter(1, hasType(isInteger())),
                                   hasParameter(2, hasType(isInteger())))
                          .bind("funcDecl")))
          .bind("socketFn"),
      this);
}

void CloexecSocketCheck::check(const MatchFinder::MatchResult &Result) {
  const auto *MatchedCall = Result.Nodes.getNodeAs<CallExpr>("socketFn");
  const auto *FD = Result.Nodes.getNodeAs<FunctionDecl>("funcDecl");
  const Expr *FlagArg = MatchedCall->getArg(1);
  SourceManager &SM = *Result.SourceManager;

  if (utils::exprHasBitFlagWithSpelling(FlagArg->IgnoreParenCasts(), SM,
                     Result.Context->getLangOpts(), SOCK_CLOEXEC))
    return;

  SourceLocation EndLoc =
      Lexer::getLocForEndOfToken(SM.getFileLoc(FlagArg->getLocEnd()), 0, SM,
                                 Result.Context->getLangOpts());

  diag(EndLoc, "%0 should use %1 where possible")
      << FD << SOCK_CLOEXEC
      << FixItHint::CreateInsertion(EndLoc,
                                    (Twine(" | ") + SOCK_CLOEXEC).str());
}

} // namespace android
} // namespace tidy
} // namespace clang
OpenPOWER on IntegriCloud