You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
497 B
35 lines
497 B
3 years ago
|
#include <dlfcn.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#if !defined LIB || !defined FUNC
|
||
|
#error
|
||
|
#endif
|
||
|
|
||
|
typedef int (*FuzzFunc)(const char *Data, size_t Size);
|
||
|
|
||
|
void *handle = NULL;
|
||
|
FuzzFunc f = NULL;
|
||
|
|
||
|
int LLVMFuzzerTestOneInput( const char *Data, size_t Size )
|
||
|
{
|
||
|
if( !handle )
|
||
|
handle = dlopen( LIB, RTLD_NOW );
|
||
|
|
||
|
if( handle )
|
||
|
{
|
||
|
if( !f )
|
||
|
f = dlsym( handle, FUNC );
|
||
|
|
||
|
if( f )
|
||
|
{
|
||
|
return f( Data, Size );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fprintf( stderr, "Fail: %s\n", dlerror() );
|
||
|
|
||
|
abort();
|
||
|
return 0;
|
||
|
}
|