mbedtls/programs/fuzz/common.c

97 lines
2.2 KiB
C
Raw Normal View History

2019-06-04 12:03:06 +00:00
#include "common.h"
2019-06-04 12:14:33 +00:00
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "mbedtls/ctr_drbg.h"
2019-06-04 12:03:06 +00:00
2019-06-04 12:14:33 +00:00
mbedtls_time_t dummy_constant_time( mbedtls_time_t* time )
{
2019-06-04 12:03:06 +00:00
(void) time;
return 0x5af2a056;
}
2019-06-04 12:14:33 +00:00
void dummy_init()
{
2019-06-04 12:03:06 +00:00
#if defined(MBEDTLS_PLATFORM_TIME_ALT)
mbedtls_platform_set_time( dummy_constant_time );
#else
fprintf(stderr, "Warning: fuzzing without constant time\n");
#endif
}
2019-06-04 12:14:33 +00:00
int dummy_send( void *ctx, const unsigned char *buf, size_t len )
{
//silence warning about unused parameter
(void) ctx;
(void) buf;
//pretends we wrote everything ok
if( len > INT_MAX ) {
return( -1 );
2019-07-09 23:09:50 +00:00
}
return( (int) len );
2019-06-04 12:14:33 +00:00
}
int fuzz_recv( void *ctx, unsigned char *buf, size_t len )
{
//reads from the buffer from fuzzer
fuzzBufferOffset_t * biomemfuzz = (fuzzBufferOffset_t *) ctx;
if(biomemfuzz->Offset == biomemfuzz->Size) {
2019-06-04 12:14:33 +00:00
//EOF
return( 0 );
2019-06-04 12:14:33 +00:00
}
if( len > INT_MAX ) {
return( -1 );
2019-07-10 06:26:04 +00:00
}
if( len + biomemfuzz->Offset > biomemfuzz->Size ) {
2019-06-04 12:14:33 +00:00
//do not overflow
len = biomemfuzz->Size - biomemfuzz->Offset;
}
memcpy(buf, biomemfuzz->Data + biomemfuzz->Offset, len);
biomemfuzz->Offset += len;
return( (int) len );
2019-06-04 12:14:33 +00:00
}
int dummy_random( void *p_rng, unsigned char *output, size_t output_len )
{
int ret;
size_t i;
#if defined(MBEDTLS_CTR_DRBG_C)
2019-06-04 12:14:33 +00:00
//use mbedtls_ctr_drbg_random to find bugs in it
ret = mbedtls_ctr_drbg_random(p_rng, output, output_len);
#else
(void) p_rng;
ret = 0;
#endif
2019-06-04 12:14:33 +00:00
for (i=0; i<output_len; i++) {
//replace result with pseudo random
output[i] = (unsigned char) rand();
}
return( ret );
}
int dummy_entropy( void *data, unsigned char *output, size_t len )
{
size_t i;
(void) data;
//use mbedtls_entropy_func to find bugs in it
//test performance impact of entropy
//ret = mbedtls_entropy_func(data, output, len);
for (i=0; i<len; i++) {
//replace result with pseudo random
output[i] = (unsigned char) rand();
}
return( 0 );
}
int fuzz_recv_timeout( void *ctx, unsigned char *buf, size_t len,
uint32_t timeout )
{
(void) timeout;
return fuzz_recv(ctx, buf, len);
}