2019-02-28 12:28:09 +01:00
|
|
|
#include <vips/vips.h>
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
LLVMFuzzerInitialize( int *argc, char ***argv )
|
|
|
|
{
|
|
|
|
vips_concurrency_set( 1 );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
LLVMFuzzerTestOneInput( const guint8 *data, size_t size )
|
|
|
|
{
|
|
|
|
VipsImage *image;
|
|
|
|
void *buf;
|
2019-08-09 17:45:08 +02:00
|
|
|
size_t len;
|
2019-02-28 12:28:09 +01:00
|
|
|
|
2020-07-25 15:46:44 +02:00
|
|
|
if( size > 100 * 1024 * 1024 )
|
|
|
|
return( 0 );
|
|
|
|
|
2019-08-09 17:45:08 +02:00
|
|
|
if( !(image = vips_image_new_from_buffer( data, size, "", NULL )) )
|
2019-02-28 12:28:09 +01:00
|
|
|
return( 0 );
|
2019-08-02 17:28:16 +02:00
|
|
|
|
2019-10-30 09:57:46 +01:00
|
|
|
if( image->Xsize > 100 ||
|
|
|
|
image->Ysize > 100 ||
|
|
|
|
image->Bands > 4 ) {
|
2019-08-02 17:28:16 +02:00
|
|
|
g_object_unref( image );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2019-02-28 12:28:09 +01:00
|
|
|
if( vips_jpegsave_buffer( image, &buf, &len, NULL ) ) {
|
|
|
|
g_object_unref( image );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free( buf );
|
|
|
|
g_object_unref( image );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|