2015-06-05 23:12:24 +02:00
# include <stdlib.h>
# include <stdio.h>
# include <string.h>
# include <sys/stat.h>
# include <openssl/sha.h>
//Build with: gcc -o ropgadget_patternfinder ropgadget_patternfinder.c -lcrypto
2015-06-08 16:58:28 +02:00
int patterntype = - 1 ;
unsigned int findtarget = 1 ;
unsigned int stride = 4 ;
unsigned int baseaddr = 0 ;
int plainout = 0 ;
2015-09-13 00:16:34 +02:00
int disable_locatefail_halt = 0 ;
2015-06-08 16:58:28 +02:00
unsigned char * filebuf = NULL , * patterndata = NULL , * patternmask = NULL ;
size_t filebufsz = 0 , hashblocksize = 0 ;
size_t patterndata_size = 0 , patternmask_size = 0 ;
2015-06-09 23:52:03 +02:00
unsigned int dataload_offset = 0 , dataload_enabled = 0 ;
2015-06-10 00:37:58 +02:00
unsigned int addval = 0 ;
2015-10-13 22:04:36 +02:00
unsigned int printrawval = 0 ;
2015-06-09 23:52:03 +02:00
2015-06-09 21:47:34 +02:00
int enable_script = 0 ;
2015-06-08 16:58:28 +02:00
char line_prefix [ 256 ] ;
2015-09-13 00:16:34 +02:00
char line_suffix [ 256 ] ;
2015-06-09 21:47:34 +02:00
char script_path [ 1024 ] ;
void hexdump ( void * ptr , int buflen ) //From ctrtool.
{
unsigned char * buf = ( unsigned char * ) ptr ;
int i , j ;
for ( i = 0 ; i < buflen ; i + = 16 )
{
printf ( " %06x: " , i ) ;
for ( j = 0 ; j < 16 ; j + + )
{
if ( i + j < buflen )
{
printf ( " %02x " , buf [ i + j ] ) ;
}
else
{
printf ( " " ) ;
}
}
printf ( " " ) ;
for ( j = 0 ; j < 16 ; j + + )
{
if ( i + j < buflen )
{
printf ( " %c " , ( buf [ i + j ] > = 0x20 & & buf [ i + j ] < = 0x7e ) ? buf [ i + j ] : ' . ' ) ;
}
}
printf ( " \n " ) ;
}
}
2015-06-08 16:58:28 +02:00
2015-06-05 23:12:24 +02:00
int load_bindata ( char * arg , unsigned char * * buf , unsigned int * size )
{
int i ;
unsigned int tmp = 0 ;
unsigned char * bufptr ;
FILE * f ;
struct stat filestat ;
bufptr = * buf ;
if ( arg [ 0 ] ! = ' @ ' )
{
if ( bufptr = = NULL )
{
tmp = strlen ( arg ) ;
if ( tmp < 2 | | ( tmp & 1 ) )
{
printf ( " The length of the input hex param is invalid. \n " ) ;
return 4 ;
}
* size = strlen ( arg ) / 2 ;
* buf = ( unsigned char * ) malloc ( * size ) ;
bufptr = * buf ;
if ( bufptr = = NULL )
{
printf ( " Failed to allocate memory for input buffer. \n " ) ;
return 1 ;
}
memset ( bufptr , 0 , * size ) ;
}
for ( i = 0 ; i < * size ; i + + )
{
if ( i > = strlen ( arg ) ) break ;
sscanf ( & arg [ i * 2 ] , " %02x " , & tmp ) ;
bufptr [ i ] = ( unsigned char ) tmp ;
}
}
else
{
if ( stat ( & arg [ 1 ] , & filestat ) = = - 1 )
{
printf ( " Failed to stat %s \n " , & arg [ 1 ] ) ;
return 2 ;
}
f = fopen ( & arg [ 1 ] , " rb " ) ;
if ( f = = NULL )
{
printf ( " Failed to open %s \n " , & arg [ 1 ] ) ;
return 2 ;
}
if ( bufptr )
{
if ( * size < filestat . st_size ) * size = filestat . st_size ;
}
else
{
* size = filestat . st_size ;
* buf = ( unsigned char * ) malloc ( * size ) ;
bufptr = * buf ;
if ( bufptr = = NULL )
{
printf ( " Failed to allocate memory for input buffer. \n " ) ;
return 1 ;
}
memset ( bufptr , 0 , * size ) ;
}
if ( fread ( bufptr , 1 , * size , f ) ! = * size )
{
printf ( " Failed to read file %s \n " , & arg [ 1 ] ) ;
fclose ( f ) ;
return 3 ;
}
fclose ( f ) ;
}
return 0 ;
}
2015-06-09 21:47:34 +02:00
int parse_param ( char * param , int type )
{
int ret = 0 ;
unsigned int tmpsize = 0 ;
if ( strncmp ( param , " --patterntype= " , 14 ) = = 0 )
{
if ( strncmp ( & param [ 14 ] , " sha256 " , 6 ) = = 0 )
{
patterntype = 0 ;
}
else if ( strncmp ( & param [ 14 ] , " datacmp " , 7 ) = = 0 )
{
patterntype = 1 ;
}
else
{
printf ( " Invalid pattern-type. \n " ) ;
ret = 5 ;
}
}
if ( strncmp ( param , " --patterndata= " , 14 ) = = 0 )
{
if ( patterndata )
{
free ( patterndata ) ;
patterndata = NULL ;
}
tmpsize = 0 ;
ret = load_bindata ( & param [ 14 ] , & patterndata , & tmpsize ) ;
patterndata_size = tmpsize ;
}
if ( strncmp ( param , " --patterndatamask= " , 18 ) = = 0 )
{
if ( patterndata )
{
free ( patternmask ) ;
patternmask = NULL ;
}
tmpsize = 0 ;
ret = load_bindata ( & param [ 18 ] , & patternmask , & tmpsize ) ;
patternmask_size = tmpsize ;
}
if ( strncmp ( param , " --patternsha256size= " , 20 ) = = 0 )
{
sscanf ( & param [ 20 ] , " 0x%x " , & tmpsize ) ;
hashblocksize = tmpsize ;
}
if ( strncmp ( param , " --stride= " , 9 ) = = 0 )
{
sscanf ( & param [ 9 ] , " 0x%x " , & stride ) ;
}
if ( strncmp ( param , " --findtarget= " , 13 ) = = 0 )
{
sscanf ( & param [ 13 ] , " 0x%x " , & findtarget ) ;
}
if ( strncmp ( param , " --baseaddr= " , 11 ) = = 0 )
{
sscanf ( & param [ 11 ] , " 0x%x " , & baseaddr ) ;
}
2015-06-09 23:52:03 +02:00
if ( strncmp ( param , " --dataload= " , 11 ) = = 0 )
{
dataload_enabled = 1 ;
sscanf ( & param [ 11 ] , " 0x%x " , & dataload_offset ) ;
}
2015-06-10 00:37:58 +02:00
if ( strncmp ( param , " --addval= " , 9 ) = = 0 )
{
sscanf ( & param [ 9 ] , " 0x%x " , & addval ) ;
}
2015-06-09 21:47:34 +02:00
if ( strncmp ( param , " --plainout " , 10 ) = = 0 )
{
plainout = 1 ;
if ( param [ 10 ] = = ' = ' )
{
strncpy ( line_prefix , & param [ 11 ] , sizeof ( line_prefix ) - 1 ) ;
}
}
2015-09-13 00:16:34 +02:00
if ( strncmp ( param , " --plainsuffix= " , 14 ) = = 0 ) strncpy ( line_suffix , & param [ 14 ] , sizeof ( line_suffix ) - 1 ) ;
2015-10-13 22:04:36 +02:00
if ( strncmp ( param , " --printrawval " , 13 ) = = 0 ) printrawval = 1 ;
2015-09-13 00:16:34 +02:00
if ( strncmp ( param , " --disablelocatehalt " , 19 ) = = 0 ) disable_locatefail_halt = 1 ;
2015-06-09 21:47:34 +02:00
if ( type = = 0 & & strncmp ( param , " --script " , 8 ) = = 0 )
{
enable_script = 1 ;
if ( param [ 8 ] = = ' = ' )
{
strncpy ( script_path , & param [ 9 ] , sizeof ( script_path ) - 1 ) ;
}
}
return ret ;
}
int verify_params_state ( )
{
int ret = 0 ;
if ( patterntype = = - 1 )
{
printf ( " No pattern-type specified. \n " ) ;
ret = 5 ;
}
if ( patterntype = = 0 )
{
if ( patterndata_size = = 0 )
{
printf ( " --patternsha256size must be used when pattern-type is sha256. \n " ) ;
ret = 5 ;
}
if ( patterndata_size ! = 0x20 )
{
printf ( " Input hash size is invalid. \n " ) ;
ret = 5 ;
}
}
return ret ;
}
2015-06-08 16:58:28 +02:00
int locate_pattern ( )
{
2015-06-09 21:47:34 +02:00
int ret = 0 ;
2015-06-08 16:58:28 +02:00
size_t pos , i ;
2015-06-10 21:02:01 +02:00
unsigned int found = 0 , found2 = 0 ;
2015-06-08 16:58:28 +02:00
unsigned int tmpval , tmpval2 ;
2015-06-10 21:02:01 +02:00
unsigned char * tmpbuf = NULL ;
2015-06-08 16:58:28 +02:00
unsigned char calchash [ 0x20 ] ;
2015-06-10 21:02:01 +02:00
if ( patterntype = = 0 & & patternmask )
{
tmpbuf = malloc ( hashblocksize ) ;
if ( tmpbuf = = NULL )
{
printf ( " Failed to alloc tmpbuf in locate_pattern(). \n " ) ;
return 8 ;
}
memset ( tmpbuf , 0 , hashblocksize ) ;
}
2015-06-08 16:58:28 +02:00
for ( pos = 0 ; pos < filebufsz ; pos + = stride )
{
tmpval = 0 ;
if ( patterntype = = 0 )
{
if ( filebufsz - pos < hashblocksize ) break ;
2015-06-10 21:02:01 +02:00
if ( patternmask = = NULL )
{
SHA256 ( & filebuf [ pos ] , hashblocksize , calchash ) ;
}
else
{
memcpy ( tmpbuf , & filebuf [ pos ] , hashblocksize ) ;
for ( i = 0 ; i < hashblocksize ; i + + )
{
if ( i < patternmask_size ) tmpbuf [ i ] & = patternmask [ i ] ;
}
SHA256 ( tmpbuf , hashblocksize , calchash ) ;
}
2015-06-08 16:58:28 +02:00
if ( memcmp ( patterndata , calchash , 0x20 ) = = 0 )
{
tmpval = 1 ;
}
}
else if ( patterntype = = 1 )
{
if ( filebufsz - pos < patterndata_size ) break ;
if ( patternmask = = NULL )
{
if ( memcmp ( patterndata , & filebuf [ pos ] , patterndata_size ) = = 0 )
{
tmpval = 1 ;
}
}
else
{
found2 = 1 ;
for ( i = 0 ; i < patterndata_size ; i + + )
{
tmpval2 = filebuf [ pos + i ] ;
if ( i < patternmask_size ) tmpval2 & = patternmask [ i ] ;
if ( tmpval2 ! = patterndata [ i ] )
{
found2 = 0 ;
break ;
}
}
if ( found2 ) tmpval = 1 ;
}
}
if ( tmpval )
{
2015-06-09 23:52:03 +02:00
if ( ! dataload_enabled )
{
2015-06-10 00:37:58 +02:00
tmpval = ( ( unsigned int ) pos ) + baseaddr ;
tmpval + = addval ;
if ( ! plainout ) printf ( " Found the pattern at(value added with 0x%x) " , addval ) ;
2015-10-13 22:04:36 +02:00
if ( ! printrawval )
{
printf ( " %s0x%08x%s " , line_prefix , tmpval , line_suffix ) ;
}
else
{
printf ( " %s%02x%02x%02x%02x%s " , line_prefix , ( tmpval & 0xff ) , ( tmpval > > 8 ) & 0xff , ( tmpval > > 16 ) & 0xff , ( tmpval > > 24 ) & 0xff , line_suffix ) ;
}
2015-06-09 23:52:03 +02:00
if ( ! plainout ) printf ( " . " ) ;
}
else
{
2015-06-10 00:37:58 +02:00
tmpval = * ( ( unsigned int * ) & filebuf [ ( ( unsigned int ) pos ) + dataload_offset ] ) ;
tmpval + = addval ;
2015-06-09 23:52:03 +02:00
if ( ! plainout )
{
printf ( " Found the pattern at " ) ;
2015-06-10 07:34:20 +02:00
printf ( " %s0x%08x " , line_prefix , ( ( unsigned int ) pos ) + baseaddr ) ;
2015-06-10 00:37:58 +02:00
printf ( " , u32 value at +0x%x, value added with 0x%x: 0x%x. " , dataload_offset , addval , tmpval ) ;
2015-06-09 23:52:03 +02:00
}
else
{
2015-10-13 22:04:36 +02:00
if ( ! printrawval )
{
printf ( " %s0x%08x%s " , line_prefix , tmpval , line_suffix ) ;
}
else
{
printf ( " %s%02x%02x%02x%02x%s " , line_prefix , ( tmpval & 0xff ) , ( tmpval > > 8 ) & 0xff , ( tmpval > > 16 ) & 0xff , ( tmpval > > 24 ) & 0xff , line_suffix ) ;
}
2015-06-09 23:52:03 +02:00
}
}
2015-06-08 16:58:28 +02:00
printf ( " \n " ) ;
found + + ;
if ( found = = findtarget ) break ;
}
}
if ( ! found )
{
printf ( " Failed to find the pattern. \n " ) ;
2015-09-13 00:16:34 +02:00
if ( ! disable_locatefail_halt ) ret = 7 ;
2015-06-08 16:58:28 +02:00
}
else
{
if ( ! plainout ) printf ( " Found 0x%x matches. \n " , found ) ;
}
2015-06-10 21:02:01 +02:00
if ( patterntype = = 0 & & patternmask ) free ( tmpbuf ) ;
2015-06-08 16:58:28 +02:00
return ret ;
}
2015-06-09 21:47:34 +02:00
int parse_script ( FILE * fscript )
{
int pos , pos2 ;
int ret = 0 ;
int linenum = 0 ;
char * strptr , * strptr2 ;
char linebuf [ 1024 ] ;
char tmpbuf [ 1024 ] ;
memset ( linebuf , 0 , sizeof ( linebuf ) ) ;
while ( fgets ( linebuf , 1023 , fscript ) )
{
linenum + + ;
strptr = strchr ( linebuf , ' \n ' ) ;
if ( strptr ) * strptr = 0 ;
2015-08-01 15:59:53 +02:00
strptr = strchr ( linebuf , ' \r ' ) ;
if ( strptr ) * strptr = 0 ;
2015-06-09 21:47:34 +02:00
2015-06-10 07:16:59 +02:00
if ( strlen ( linebuf ) = = 0 | | linebuf [ 0 ] = = ' # ' )
{
if ( linebuf [ 0 ] = = 0 ) printf ( " \n " ) ;
continue ;
}
2015-06-09 21:47:34 +02:00
strptr = linebuf ;
if ( patternmask_size )
{
free ( patternmask ) ;
patternmask = NULL ;
patternmask_size = 0 ;
}
2015-06-09 23:52:03 +02:00
dataload_enabled = 0 ;
dataload_offset = 0 ;
plainout = 0 ;
memset ( line_prefix , 0 , sizeof ( line_prefix ) ) ;
2015-06-10 00:37:58 +02:00
addval = 0 ;
2015-10-13 22:04:36 +02:00
printrawval = 0 ;
2015-06-10 00:37:58 +02:00
2015-06-09 21:47:34 +02:00
while ( * strptr )
{
if ( strptr [ 0 ] = = ' ' )
{
strptr + + ;
continue ;
}
if ( strptr [ 0 ] = = ' " ' | | strptr [ 0 ] = = ' \' ' )
{
strptr + + ;
memset ( tmpbuf , 0 , sizeof ( tmpbuf ) ) ;
for ( pos = 0 ; pos < sizeof ( tmpbuf ) - 1 ; pos + + )
{
if ( strptr [ pos ] = = 0 | | strptr [ pos ] = = ' \' ' | | strptr [ pos ] = = ' " ' ) break ;
tmpbuf [ pos ] = strptr [ pos ] ;
}
if ( strptr [ pos ] = = ' \' ' | | strptr [ pos ] = = ' " ' ) strptr + + ;
strptr + = pos ;
}
else
{
memset ( tmpbuf , 0 , sizeof ( tmpbuf ) ) ;
for ( pos = 0 ; pos < sizeof ( tmpbuf ) - 1 ; pos + + )
{
if ( strptr [ pos ] = = 0 | | strptr [ pos ] = = ' ' ) break ;
tmpbuf [ pos ] = strptr [ pos ] ;
}
if ( strptr [ pos ] = = ' ' ) strptr + + ;
strptr + = pos ;
}
ret = parse_param ( tmpbuf , 1 ) ;
if ( ret ! = 0 )
{
printf ( " Line#: %d \n " , linenum ) ;
return ret ;
}
}
ret = verify_params_state ( ) ;
if ( ret ! = 0 )
{
printf ( " Line#: %d \n " , linenum ) ;
return ret ;
}
ret = locate_pattern ( ) ;
if ( ret ! = 0 )
{
printf ( " Line#: %d \n " , linenum ) ;
return ret ;
}
}
return ret ;
}
2015-06-05 23:12:24 +02:00
int main ( int argc , char * * argv )
{
int argi ;
int ret ;
struct stat filestat ;
2015-06-09 21:47:34 +02:00
FILE * fbin , * fscript ;
2015-06-05 23:12:24 +02:00
if ( argc < 3 )
{
printf ( " ropgadget_patternfinder by yellows8. \n " ) ;
printf ( " Locates the offset/address of the specified pattern in the input binary. This tool is mainly intended for locating ROP-gadgets, but it could be used for other purposes as well. \n " ) ;
2015-06-08 16:58:28 +02:00
printf ( " <bindata> below can be either hex with any byte-length(unless specified otherwise), or '@' followed by a file-path to load the data from. \n " ) ;
2015-06-05 23:12:24 +02:00
printf ( " Usage: \n " ) ;
printf ( " ropgadget_patternfinder <binary path> <options> \n " ) ;
printf ( " Options: \n " ) ;
2015-06-06 05:04:05 +02:00
printf ( " --patterntype=<type> Selects the pattern-type, which must be one of the following(this option is required): sha256 or datacmp. sha256: Hash every --patternsha256size bytes in the binary, for locating the target pattern. The input bindata(sha256 hash) size must be 0x20-bytes. \n " ) ;
printf ( " --patterndata=<bindata> Pattern data to use during searching the binary, see --patterntype. \n " ) ;
2015-06-10 21:02:01 +02:00
printf ( " --patterndatamask=<bindata> Mask data to use with the data loaded from the file. The byte-size can be less than the size of patterndata / patternsha256size as well. The data loaded from the filebuf is &= with this mask data. \n " ) ;
2015-06-06 05:04:05 +02:00
printf ( " --patternsha256size=0x<hexval> See --patterntype. \n " ) ;
2015-06-06 03:33:26 +02:00
printf ( " --stride=0x<hexval> In the search loop, this is the value that the pos is increased by at the end of each interation. By default this is 0x4. \n " ) ;
2015-06-06 03:40:43 +02:00
printf ( " --findtarget=0x<hexval> Stop searching once this number of matches were found, by default this is 0x1. When this is 0x0, this will not stop until the end of the binary is reached. \n " ) ;
2015-06-06 07:07:38 +02:00
printf ( " --baseaddr=0x<hexval> This is the value which is added to the located offset when printing it, by default this is 0x0. \n " ) ;
2015-06-09 23:52:03 +02:00
printf ( " --dataload=0x<hexval> When used, the u32 at the specified offset relative to the located pattern location, is returned instead of the pattern offset. --baseaddr does not apply to the loaded value. \n " ) ;
2015-06-10 00:37:58 +02:00
printf ( " --addval=0x<hexval> Add the specified value to the value which gets printed. \n " ) ;
2015-06-08 16:58:28 +02:00
printf ( " --plainout[=<prefix text>] Only print the located offset/address, unless an error occurs. If '=<text>' is specified, print that before printing the located offset/address. \n " ) ;
2015-09-13 00:16:34 +02:00
printf ( " --plainsuffix=[suffix text] When --plainout was used, print the specified text immediately after printing the located offset/address. \n " ) ;
2015-10-13 22:04:36 +02:00
printf ( " --printrawval Instead of printing 0x<val> for the final value, print the raw bytes in little-endian form. \n " ) ;
2015-09-13 00:16:34 +02:00
printf ( " --disablelocatehalt When the pattern wasn't found, don't return an error + immediately exit. \n " ) ;
2015-10-13 22:04:36 +02:00
printf ( " --script=<path> Specifies a script from which to load params from(identical to the cmd-line params), each line is for a different pattern to search for. Each param applies to the current line, and all the lines after that until that param gets specified on another line again. When '=<path>' isn't specified, the script is read from stdin. When this --script option is used, all input-param state is reset to the defaults, except for --patterntype, --baseaddr, --findtarget, and --plainsuffix. When beginning processing each line, the --patterndatamask, --dataload, --addval, --printrawval, and --plainout state is reset to the default before parsing the params each time. When a line is empty, a newline will be printed then processing will skip to the next line. When the first char of a line is '#'(comment), processing will just skip to the next line. \n " ) ;
2015-06-05 23:12:24 +02:00
return 0 ;
}
ret = 0 ;
2015-06-08 16:58:28 +02:00
memset ( line_prefix , 0 , sizeof ( line_prefix ) ) ;
2015-09-13 00:16:34 +02:00
memset ( line_suffix , 0 , sizeof ( line_suffix ) ) ;
2015-06-09 21:47:34 +02:00
memset ( script_path , 0 , sizeof ( script_path ) ) ;
2015-06-08 16:58:28 +02:00
2015-06-05 23:12:24 +02:00
for ( argi = 2 ; argi < argc ; argi + + )
{
2015-06-09 21:47:34 +02:00
ret = parse_param ( argv [ argi ] , 0 ) ;
2015-06-08 16:58:28 +02:00
2015-06-05 23:12:24 +02:00
if ( ret ! = 0 ) break ;
}
if ( ret ! = 0 ) return ret ;
2015-06-09 21:47:34 +02:00
if ( ! enable_script )
2015-06-05 23:12:24 +02:00
{
2015-06-09 21:47:34 +02:00
ret = verify_params_state ( ) ;
2015-06-06 05:04:05 +02:00
2015-06-09 21:47:34 +02:00
if ( ret ! = 0 )
2015-06-06 05:04:05 +02:00
{
2015-06-09 21:47:34 +02:00
free ( patterndata ) ;
free ( patternmask ) ;
return ret ;
2015-06-06 05:04:05 +02:00
}
2015-06-05 23:12:24 +02:00
}
if ( stat ( argv [ 1 ] , & filestat ) = = - 1 )
{
printf ( " Failed to stat the input binary: %s. \n " , argv [ 1 ] ) ;
2015-06-06 05:04:05 +02:00
free ( patterndata ) ;
free ( patternmask ) ;
2015-06-05 23:12:24 +02:00
return 1 ;
}
filebufsz = filestat . st_size ;
filebuf = malloc ( filebufsz ) ;
if ( filebuf = = NULL )
{
printf ( " Failed to alloc filebuf. \n " ) ;
2015-06-06 05:04:05 +02:00
free ( patterndata ) ;
free ( patternmask ) ;
2015-06-05 23:12:24 +02:00
return 2 ;
}
fbin = fopen ( argv [ 1 ] , " rb " ) ;
if ( fbin = = NULL )
{
printf ( " Failed to open the input binary. \n " ) ;
free ( filebuf ) ;
2015-06-06 05:04:05 +02:00
free ( patterndata ) ;
free ( patternmask ) ;
2015-06-05 23:12:24 +02:00
return 3 ;
}
if ( fread ( filebuf , 1 , filebufsz , fbin ) ! = filebufsz )
{
printf ( " Failed to read the input binary. \n " ) ;
free ( filebuf ) ;
2015-06-06 05:04:05 +02:00
free ( patterndata ) ;
free ( patternmask ) ;
2015-06-05 23:12:24 +02:00
fclose ( fbin ) ;
return 4 ;
}
fclose ( fbin ) ;
2015-06-09 21:47:34 +02:00
if ( enable_script )
{
free ( patterndata ) ;
free ( patternmask ) ;
patterndata = NULL ;
patternmask = NULL ;
patterndata_size = 0 ;
patternmask_size = 0 ;
hashblocksize = 0 ;
stride = 4 ;
plainout = 0 ;
memset ( line_prefix , 0 , sizeof ( line_prefix ) ) ;
if ( script_path [ 0 ] )
{
fscript = fopen ( script_path , " r " ) ;
if ( fscript = = NULL )
{
printf ( " Failed to open script. \n " ) ;
free ( filebuf ) ;
return 1 ;
}
}
else
{
fscript = stdin ;
}
}
if ( ! enable_script )
{
ret = locate_pattern ( ) ;
}
else
{
ret = parse_script ( fscript ) ;
if ( script_path [ 0 ] ) fclose ( fscript ) ;
}
2015-06-05 23:12:24 +02:00
free ( filebuf ) ;
2015-06-06 05:04:05 +02:00
free ( patterndata ) ;
free ( patternmask ) ;
2015-06-05 23:12:24 +02:00
return ret ;
}