Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
SVF::ExtAPI Class Reference

#include <ExtAPI.h>

Public Member Functions

std::string getExtBcPath ()
 
std::string getExtFuncAnnotation (const FunObjVar *fun, const std::string &funcAnnotation)
 
const std::vector< std::string > & getExtFuncAnnotations (const FunObjVar *fun)
 
bool hasExtFuncAnnotation (const FunObjVar *fun, const std::string &funcAnnotation)
 
bool has_static (const FunObjVar *F)
 
bool is_memcpy (const FunObjVar *F)
 
bool is_memset (const FunObjVar *F)
 
bool is_alloc (const FunObjVar *F)
 
bool is_arg_alloc (const FunObjVar *F)
 
bool is_alloc_stack_ret (const FunObjVar *F)
 
s32_t get_alloc_arg_pos (const FunObjVar *F)
 
bool is_realloc (const FunObjVar *F)
 
bool is_ext (const FunObjVar *funObjVar)
 

Static Public Member Functions

static ExtAPIgetExtAPI ()
 
static void destory ()
 
static bool setExtBcPath (const std::string &path)
 

Private Member Functions

 ExtAPI ()=default
 
void setExtFuncAnnotations (const FunObjVar *fun, const std::vector< std::string > &funcAnnotations)
 

Private Attributes

Map< const FunObjVar *, std::vector< std::string > > funObjVar2Annotations
 

Static Private Attributes

static ExtAPIextOp = nullptr
 
static std::string extBcPath = ""
 

Friends

class LLVMModuleSet
 
class SVFIRBuilder
 

Detailed Description

Definition at line 46 of file ExtAPI.h.

Constructor & Destructor Documentation

◆ ExtAPI()

SVF::ExtAPI::ExtAPI ( )
privatedefault

Member Function Documentation

◆ destory()

void ExtAPI::destory ( )
static

Definition at line 52 of file ExtAPI.cpp.

53{
54 if (extOp != nullptr)
55 {
56 delete extOp;
57 extOp = nullptr;
58 }
59}
static ExtAPI * extOp
Definition ExtAPI.h:53

◆ get_alloc_arg_pos()

s32_t ExtAPI::get_alloc_arg_pos ( const FunObjVar F)

Definition at line 237 of file ExtAPI.cpp.

238{
239 std::string allocArg = getExtFuncAnnotation(F, "ALLOC_HEAP_ARG");
240 assert(!allocArg.empty() && "Not an alloc call via argument or incorrect extern function annotation!");
241
242 std::string number;
243 for (char c : allocArg)
244 {
245 if (isdigit(c))
246 number.push_back(c);
247 }
248 assert(!number.empty() && "Incorrect naming convention for svf external functions(ALLOC_HEAP_ARG + number)?");
249 return std::stoi(number);
250}
const char *const const double number
Definition cJSON.h:268
std::string getExtFuncAnnotation(const FunObjVar *fun, const std::string &funcAnnotation)
Definition ExtAPI.cpp:186
int isdigit(int c)
Definition extapi.c:851
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ getExtAPI()

ExtAPI * ExtAPI::getExtAPI ( )
static

Definition at line 43 of file ExtAPI.cpp.

44{
45 if (extOp == nullptr)
46 {
47 extOp = new ExtAPI;
48 }
49 return extOp;
50}
ExtAPI()=default

◆ getExtBcPath()

std::string ExtAPI::getExtBcPath ( )

Definition at line 120 of file ExtAPI.cpp.

121{
122 // Default ways of retrieving extapi.bc (in order of precedence):
123 // 1. Set `path/to/extapi.bc` through `setExtBcPath()`
124 // 2. Set `path/to/extapi.bc` through the command line argument `-extapi=path/to/extapi.bc`
125 // 3. Get location generated by CMakeLists.txt from `config.h` header file (if SVF was installed)
126 // 4. Get location in build tree based from `config.h` header file (if SVF was only built)
127 // 5. Get location based on environment variable $ENV{SVF_DIR}
128 // 6. Search for `extapi.bc` from root directory for npm installation (iff SVF installed through npm)
129
130 // 1. Set `path/to/extapi.bc` through `setExtBcPath()`
131 if (!extBcPath.empty())
132 return extBcPath;
133
134 // 2. Set `path/to/extapi.bc` through the command line argument `-extapi=path/to/extapi.bc`
136 return extBcPath;
137
138 // 3. Get location generated by CMakeLists.txt from `config.h` header file (if SVF was installed)
139 if (setExtBcPath(SVF_EXTAPI_BC)) // Full path is available (for custom file names)
140 return extBcPath;
141 if (setExtBcPath(SVF_EXTAPI_DIR "/extapi.bc")) // Based on directory & default filename
142 return extBcPath;
143
144 // 4. Get location in build tree based from `config.h` header file (if SVF was only built)
145 if (setExtBcPath(SVF_BUILD_DIR "/lib/extapi.bc"))
146 return extBcPath;
147
148 // 5. Get location based on environment variable $ENV{SVF_DIR}
149 if (setExtBcPath(getFilePath("SVF_DIR")))
150 return extBcPath;
151
152 // 6. Search for `extapi.bc` from root directory for npm installation (iff SVF installed through npm)
153 if (setExtBcPath(getFilePath("npm root")))
154 return extBcPath;
155
156 SVFUtil::errs() << "ERROR: Failed to find \"extapi.bc\" LLVM bitcode file in " << extBcPath << std::endl
157 << "To override the default locations for \"extapi.bc\", you can:" << std::endl
158 << "\t1. Use the command line argument \"-extapi=path/to/extapi.bc\"" << std::endl
159 << "\t2. Use the \"setExtBcPath()\" function *BEFORE* calling \"buildSVFModule()\"" << std::endl
160 << "\t3. Override the paths in \"svf/Util/config.h\" (WARNING: will be overwritten when "
161 << "rebuilding SVF (generated by CMakeLists.txt))" << std::endl;
162 abort();
163}
static std::string getFilePath(const std::string &path)
Definition ExtAPI.cpp:98
static std::string extBcPath
Definition ExtAPI.h:59
static bool setExtBcPath(const std::string &path)
Definition ExtAPI.cpp:62
static const Option< std::string > ExtAPIPath
Definition Options.h:220
std::ostream & errs()
Overwrite llvm::errs()
Definition SVFUtil.h:58

◆ getExtFuncAnnotation()

std::string ExtAPI::getExtFuncAnnotation ( const FunObjVar fun,
const std::string &  funcAnnotation 
)

Definition at line 186 of file ExtAPI.cpp.

187{
188 assert(fun && "Null FunObjVar* pointer");
189 auto it = funObjVar2Annotations.find(fun);
190 if (it != funObjVar2Annotations.end())
191 {
192 for (const std::string& annotation : it->second)
193 if (annotation.find(funcAnnotation) != std::string::npos)
195 }
196 return "";
197}
if(prebuffer< 0)
Definition cJSON.cpp:1269
return(char *) p.buffer
const char *const string
Definition cJSON.h:172
Map< const FunObjVar *, std::vector< std::string > > funObjVar2Annotations
Definition ExtAPI.h:56

◆ getExtFuncAnnotations()

const std::vector< std::string > & ExtAPI::getExtFuncAnnotations ( const FunObjVar fun)

Definition at line 199 of file ExtAPI.cpp.

200{
201 assert(fun && "Null FunObjVar* pointer");
202 auto it = funObjVar2Annotations.find(fun);
203 if (it != funObjVar2Annotations.end())
204 return it->second;
205 return funObjVar2Annotations[fun];
206}

◆ has_static()

bool SVF::ExtAPI::has_static ( const FunObjVar F)

◆ hasExtFuncAnnotation()

bool ExtAPI::hasExtFuncAnnotation ( const FunObjVar fun,
const std::string &  funcAnnotation 
)

Definition at line 172 of file ExtAPI.cpp.

173{
174 assert(fun && "Null FunObjVar* pointer");
175 auto it = funObjVar2Annotations.find(fun);
176 if (it != funObjVar2Annotations.end())
177 {
178 for (const std::string& annotation : it->second)
179 if (annotation.find(funcAnnotation) != std::string::npos)
180 return true;
181 }
182 return false;
183}
#define true
Definition cJSON.cpp:65

◆ is_alloc()

bool ExtAPI::is_alloc ( const FunObjVar F)

Definition at line 220 of file ExtAPI.cpp.

221{
222 return F && hasExtFuncAnnotation(F, "ALLOC_HEAP_RET");
223}
bool hasExtFuncAnnotation(const FunObjVar *fun, const std::string &funcAnnotation)
Definition ExtAPI.cpp:172

◆ is_alloc_stack_ret()

bool ExtAPI::is_alloc_stack_ret ( const FunObjVar F)

Definition at line 231 of file ExtAPI.cpp.

232{
233 return F && hasExtFuncAnnotation(F, "ALLOC_STACK_RET");
234}

◆ is_arg_alloc()

bool ExtAPI::is_arg_alloc ( const FunObjVar F)

Definition at line 226 of file ExtAPI.cpp.

227{
228 return F && hasExtFuncAnnotation(F, "ALLOC_HEAP_ARG");
229}

◆ is_ext()

bool ExtAPI::is_ext ( const FunObjVar funObjVar)

Definition at line 257 of file ExtAPI.cpp.

258{
259 assert(F && "Null FunObjVar* pointer");
260 if (F->isDeclaration() || F->isIntrinsic())
261 return true;
262 else if (hasExtFuncAnnotation(F, "OVERWRITE") && getExtFuncAnnotations(F).size() == 1)
263 return false;
264 else
265 return !getExtFuncAnnotations(F).empty();
266}
const std::vector< std::string > & getExtFuncAnnotations(const FunObjVar *fun)
Definition ExtAPI.cpp:199

◆ is_memcpy()

bool ExtAPI::is_memcpy ( const FunObjVar F)

Definition at line 208 of file ExtAPI.cpp.

209{
210 return F &&
211 (hasExtFuncAnnotation(F, "MEMCPY") || hasExtFuncAnnotation(F, "STRCPY")
212 || hasExtFuncAnnotation(F, "STRCAT"));
213}

◆ is_memset()

bool ExtAPI::is_memset ( const FunObjVar F)

Definition at line 215 of file ExtAPI.cpp.

216{
217 return F && hasExtFuncAnnotation(F, "MEMSET");
218}

◆ is_realloc()

bool ExtAPI::is_realloc ( const FunObjVar F)

Definition at line 253 of file ExtAPI.cpp.

254{
255 return F && hasExtFuncAnnotation(F, "REALLOC_HEAP_RET");
256}

◆ setExtBcPath()

bool ExtAPI::setExtBcPath ( const std::string &  path)
static

Definition at line 62 of file ExtAPI.cpp.

63{
64 struct stat statbuf;
65 if (!path.empty() && !stat(path.c_str(), &statbuf))
66 {
68 return true;
69 }
70 return false;
71}

◆ setExtFuncAnnotations()

void ExtAPI::setExtFuncAnnotations ( const FunObjVar fun,
const std::vector< std::string > &  funcAnnotations 
)
private

Definition at line 166 of file ExtAPI.cpp.

167{
168 assert(fun && "Null FunObjVar* pointer");
170}

Friends And Related Symbol Documentation

◆ LLVMModuleSet

Definition at line 48 of file ExtAPI.h.

◆ SVFIRBuilder

Definition at line 49 of file ExtAPI.h.

Member Data Documentation

◆ extBcPath

std::string ExtAPI::extBcPath = ""
staticprivate

Definition at line 59 of file ExtAPI.h.

◆ extOp

ExtAPI * ExtAPI::extOp = nullptr
staticprivate

Definition at line 53 of file ExtAPI.h.

◆ funObjVar2Annotations

Map<const FunObjVar*, std::vector<std::string> > SVF::ExtAPI::funObjVar2Annotations
private

Definition at line 56 of file ExtAPI.h.


The documentation for this class was generated from the following files: