2019-04-04 02:10:11 +03:00
/*
Fuzzing for oLschema2ldif
Copyright ( C ) Michael Hanselmann 2019
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# include "includes.h"
# include "fuzzing.h"
# include "utils/oLschema2ldif/lib.h"
static FILE * devnull ;
int LLVMFuzzerInitialize ( int * argc , char * * * argv )
{
devnull = fopen ( " /dev/null " , " w " ) ;
return 0 ;
}
2023-08-05 05:30:24 +03:00
int LLVMFuzzerTestOneInput ( const uint8_t * buf , size_t len )
2019-04-04 02:10:11 +03:00
{
TALLOC_CTX * mem_ctx ;
struct conv_options opt ;
2019-11-07 05:08:18 +03:00
if ( len = = 0 ) {
/*
* Otherwise fmemopen ( ) will return null and set errno
* to EINVAL
*/
return 0 ;
}
2019-04-04 02:10:11 +03:00
mem_ctx = talloc_init ( __FUNCTION__ ) ;
2020-01-17 00:19:32 +03:00
if ( mem_ctx = = NULL ) {
return 0 ;
}
2019-04-04 02:10:11 +03:00
opt . in = fmemopen ( buf , len , " r " ) ;
opt . out = devnull ;
opt . ldb_ctx = ldb_init ( mem_ctx , NULL ) ;
2020-01-17 00:19:32 +03:00
if ( opt . ldb_ctx = = NULL | | opt . in = = NULL ) {
talloc_free ( mem_ctx ) ;
return 0 ;
}
2019-04-04 02:10:11 +03:00
opt . basedn = ldb_dn_new ( mem_ctx , opt . ldb_ctx , " " ) ;
2020-01-17 00:19:32 +03:00
if ( opt . basedn = = NULL ) {
talloc_free ( mem_ctx ) ;
return 0 ;
}
2019-04-04 02:10:11 +03:00
process_file ( mem_ctx , & opt ) ;
fclose ( opt . in ) ;
talloc_free ( mem_ctx ) ;
return 0 ;
}