Static Value-Flow Analysis
Loading...
Searching...
No Matches
SaberCheckerAPI.h
Go to the documentation of this file.
1//===- SaberCheckerAPI.h -- API for checkers in Saber-------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * SaberCheckerAPI.h
25 *
26 * Created on: Apr 23, 2014
27 * Author: Yulei Sui
28 */
29
30#ifndef SABERCHECKERAPI_H_
31#define SABERCHECKERAPI_H_
32
33#include "Util/SVFUtil.h"
34#include "Graphs/ICFGNode.h"
35#include "SVFIR/SVFVariables.h" // add header
36
37namespace SVF
38{
39
40/*
41 * Saber Checker API class contains interfaces for various bug checking
42 * memory leak detection e.g., alloc free
43 * incorrect file operation detection, e.g., fopen, fclose
44 */
46{
47
48public:
57
59
60private:
63
66 {
67 init();
68 }
69
71 void init();
72
75
77 inline CHECKER_TYPE getType(const FunObjVar* F) const
78 {
79 if(F)
80 {
81 TDAPIMap::const_iterator it= tdAPIMap.find(F->getName());
82 if(it != tdAPIMap.end())
83 return it->second;
84 }
85 return CK_DUMMY;
86 }
87
88public:
91 {
92 if(ckAPI == nullptr)
93 {
94 ckAPI = new SaberCheckerAPI();
95 }
96 return ckAPI;
97 }
98
100
101 inline bool isMemAlloc(const FunObjVar* fun) const
102 {
103 return getType(fun) == CK_ALLOC;
104 }
105 inline bool isMemAlloc(const CallICFGNode* cs) const
106 {
107 return isMemAlloc(cs->getCalledFunction());
108 }
110
112
113 inline bool isMemDealloc(const FunObjVar* fun) const
114 {
115 return getType(fun) == CK_FREE;
116 }
117 inline bool isMemDealloc(const CallICFGNode* cs) const
118 {
119 return isMemDealloc(cs->getCalledFunction());
120 }
122
124
125 inline bool isFOpen(const FunObjVar* fun) const
126 {
127 return getType(fun) == CK_FOPEN;
128 }
129 inline bool isFOpen(const CallICFGNode* cs) const
130 {
131 return isFOpen(cs->getCalledFunction());
132 }
134
136
137 inline bool isFClose(const FunObjVar* fun) const
138 {
139 return getType(fun) == CK_FCLOSE;
140 }
141 inline bool isFClose(const CallICFGNode* cs) const
142 {
143 return isFClose(cs->getCalledFunction());
144 }
146
147};
148
149} // End namespace SVF
150
151#endif /* SABERCHECKERAPI_H_ */
const FunObjVar * getCalledFunction() const
Definition ICFGNode.h:512
virtual const std::string & getName() const
Definition SVFValue.h:184
bool isFOpen(const FunObjVar *fun) const
Return true if this call is a file open.
@ CK_FREE
memory allocation
@ CK_FOPEN
memory deallocation
bool isFClose(const FunObjVar *fun) const
Return true if this call is a file close.
static SaberCheckerAPI * ckAPI
Static reference.
bool isFClose(const CallICFGNode *cs) const
void init()
Initialize the map.
bool isFOpen(const CallICFGNode *cs) const
TDAPIMap tdAPIMap
API map, from a string to threadAPI type.
bool isMemDealloc(const CallICFGNode *cs) const
Map< std::string, CHECKER_TYPE > TDAPIMap
bool isMemDealloc(const FunObjVar *fun) const
Return true if this call is a memory deallocation.
bool isMemAlloc(const CallICFGNode *cs) const
bool isMemAlloc(const FunObjVar *fun) const
Return true if this call is a memory allocation.
CHECKER_TYPE getType(const FunObjVar *F) const
Get the function type of a function.
SaberCheckerAPI()
Constructor.
static SaberCheckerAPI * getCheckerAPI()
Return a static reference.
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74