#include"clang/StaticAnalyzer/Core/BugReporter/BugType.h"#include"clang/StaticAnalyzer/Core/Checker.h"#include"clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"#include"clang/StaticAnalyzer/Frontend/CheckerRegistry.h"usingnamespace clang;usingnamespace ento;namespace{classMainCallChecker:publicChecker<check::PreStmt<CallExpr>>{mutable std::unique_ptr<BugType> BT;public:voidcheckPreStmt(const CallExpr *CE, CheckerContext &C)const;};}// end anonymous namespace
voidMainCallChecker::checkPreStmt(const CallExpr *CE,
CheckerContext &C)const{const Expr *Callee = CE->getCallee();const FunctionDecl *FD = C.getSVal(Callee).getAsFunctionDecl();if(!FD)return;// Get the name of the callee.
IdentifierInfo *II = FD->getIdentifier();if(!II)// if no identifier, not a simple C function
return;if(II->isStr("main")){
ExplodedNode *N = C.generateErrorNode();if(!N)return;if(!BT)
BT.reset(newBugType(this,"call to main","example analyzer plugin"));auto report =std::make_unique<PathSensitiveBugReport>(*BT, BT->getDescription(), N);
report->addRange(Callee->getSourceRange());
C.emitReport(std::move(report));}}// Register plugin!
extern"C"voidclang_registerCheckers(CheckerRegistry ®istry){
registry.addChecker<MainCallChecker>("example.MainCallChecker","Disallows calls to functions called main","");}extern"C"constchar clang_analyzerAPIVersionString[]=
CLANG_ANALYZER_API_VERSION_STRING;