1 //===--- CloexecCreatCheck.cpp - clang-tidy--------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "CloexecCreatCheck.h"
10 #include "clang/AST/ASTContext.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
13 using namespace clang::ast_matchers
;
15 namespace clang::tidy::android
{
17 void CloexecCreatCheck::registerMatchers(MatchFinder
*Finder
) {
18 auto CharPointerType
= hasType(pointerType(pointee(isAnyCharacter())));
19 auto MODETType
= hasType(namedDecl(hasName("mode_t")));
20 registerMatchersImpl(Finder
,
21 functionDecl(isExternC(), returns(isInteger()),
23 hasParameter(0, CharPointerType
),
24 hasParameter(1, MODETType
)));
27 void CloexecCreatCheck::check(const MatchFinder::MatchResult
&Result
) {
28 const std::string
&ReplacementText
=
29 (Twine("open (") + getSpellingArg(Result
, 0) +
30 ", O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, " +
31 getSpellingArg(Result
, 1) + ")")
34 "prefer open() to creat() because open() allows O_CLOEXEC",
38 } // namespace clang::tidy::android