2017-08-31 12:11:57 -07:00
|
|
|
/*
|
2017-06-29 16:53:52 -07:00
|
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-31 12:11:57 -07:00
|
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
* in the COPYING file in the root directory of this source tree).
|
2017-06-29 16:53:52 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fuzz.h"
|
|
|
|
#include "fuzz_helpers.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main(int argc, char const **argv) {
|
2018-05-23 18:22:32 -07:00
|
|
|
size_t const kMaxFileSize = (size_t)1 << 27;
|
2017-06-29 16:53:52 -07:00
|
|
|
int const kFollowLinks = 1;
|
|
|
|
char *fileNamesBuf = NULL;
|
|
|
|
char const **files = argv + 1;
|
|
|
|
unsigned numFiles = argc - 1;
|
|
|
|
uint8_t *buffer = NULL;
|
|
|
|
size_t bufferSize = 0;
|
|
|
|
unsigned i;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
|
|
|
files = UTIL_createFileList(files, numFiles, &fileNamesBuf, &numFiles,
|
|
|
|
kFollowLinks);
|
2017-09-13 17:44:30 -07:00
|
|
|
if (!files)
|
|
|
|
numFiles = 0;
|
2017-06-29 16:53:52 -07:00
|
|
|
#endif
|
2017-09-13 17:44:30 -07:00
|
|
|
if (numFiles == 0)
|
|
|
|
fprintf(stderr, "WARNING: No files passed to %s\n", argv[0]);
|
2017-06-29 16:53:52 -07:00
|
|
|
for (i = 0; i < numFiles; ++i) {
|
|
|
|
char const *fileName = files[i];
|
|
|
|
size_t const fileSize = UTIL_getFileSize(fileName);
|
|
|
|
size_t readSize;
|
|
|
|
FILE *file;
|
|
|
|
|
|
|
|
/* Check that it is a regular file, and that the fileSize is valid */
|
2017-09-05 22:14:41 -07:00
|
|
|
FUZZ_ASSERT_MSG(UTIL_isRegularFile(fileName), fileName);
|
2017-06-29 16:53:52 -07:00
|
|
|
FUZZ_ASSERT_MSG(fileSize <= kMaxFileSize, fileName);
|
|
|
|
/* Ensure we have a large enough buffer allocated */
|
|
|
|
if (fileSize > bufferSize) {
|
|
|
|
free(buffer);
|
|
|
|
buffer = (uint8_t *)malloc(fileSize);
|
|
|
|
FUZZ_ASSERT_MSG(buffer, fileName);
|
|
|
|
bufferSize = fileSize;
|
|
|
|
}
|
|
|
|
/* Open the file */
|
|
|
|
file = fopen(fileName, "rb");
|
|
|
|
FUZZ_ASSERT_MSG(file, fileName);
|
|
|
|
/* Read the file */
|
|
|
|
readSize = fread(buffer, 1, fileSize, file);
|
|
|
|
FUZZ_ASSERT_MSG(readSize == fileSize, fileName);
|
|
|
|
/* Close the file */
|
|
|
|
fclose(file);
|
|
|
|
/* Run the fuzz target */
|
|
|
|
LLVMFuzzerTestOneInput(buffer, fileSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
free(buffer);
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
|
|
|
UTIL_freeFileList(files, fileNamesBuf);
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|