bb0cfeb2d4
This commit was generated using the following script: # ======================== #!/bin/sh git ls-files | grep -v '^ChangeLog' | xargs sed -b -E -i ' s/((check|crypto|full|mbedtls|query)_config)\.h/\1\nh/g s/config\.h/mbedtls_config.h/g y/\n/./ ' mv include/mbedtls/config.h include/mbedtls/mbedtls_config.h # ======================== Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
56 lines
1.1 KiB
C
56 lines
1.1 KiB
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
/* This file doesn't use any Mbed TLS function, but grab mbedtls_config.h anyway
|
|
* in case it contains platform-specific #defines related to malloc or
|
|
* stdio functions. */
|
|
#include "mbedtls/build_info.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
FILE * fp;
|
|
uint8_t *Data;
|
|
size_t Size;
|
|
|
|
if (argc != 2) {
|
|
return 1;
|
|
}
|
|
//opens the file, get its size, and reads it into a buffer
|
|
fp = fopen(argv[1], "rb");
|
|
if (fp == NULL) {
|
|
return 2;
|
|
}
|
|
if (fseek(fp, 0L, SEEK_END) != 0) {
|
|
fclose(fp);
|
|
return 2;
|
|
}
|
|
Size = ftell(fp);
|
|
if (Size == (size_t) -1) {
|
|
fclose(fp);
|
|
return 2;
|
|
}
|
|
if (fseek(fp, 0L, SEEK_SET) != 0) {
|
|
fclose(fp);
|
|
return 2;
|
|
}
|
|
Data = malloc(Size);
|
|
if (Data == NULL) {
|
|
fclose(fp);
|
|
return 2;
|
|
}
|
|
if (fread(Data, Size, 1, fp) != 1) {
|
|
free(Data);
|
|
fclose(fp);
|
|
return 2;
|
|
}
|
|
|
|
//lauch fuzzer
|
|
LLVMFuzzerTestOneInput(Data, Size);
|
|
free(Data);
|
|
fclose(fp);
|
|
return 0;
|
|
}
|
|
|