aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Fuzzer/FuzzerIO.cpp
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2015-07-18 00:03:37 +0000
committerKostya Serebryany <kcc@google.com>2015-07-18 00:03:37 +0000
commit86e4a3e0a39e5cb18f592e4de91b4c96c17b41f6 (patch)
treeaee43d56cf4df0023090400edf336dd59d4c42c6 /llvm/lib/Fuzzer/FuzzerIO.cpp
parent9cb08f823f270d31041112c47617a99d04d06fb2 (diff)
downloadllvm-86e4a3e0a39e5cb18f592e4de91b4c96c17b41f6.zip
llvm-86e4a3e0a39e5cb18f592e4de91b4c96c17b41f6.tar.gz
llvm-86e4a3e0a39e5cb18f592e4de91b4c96c17b41f6.tar.bz2
[libFuzzer] require the files and directories passed to the fuzzer to exist
llvm-svn: 242596
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerIO.cpp')
-rw-r--r--llvm/lib/Fuzzer/FuzzerIO.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerIO.cpp b/llvm/lib/Fuzzer/FuzzerIO.cpp
index 85703c8..1d25389 100644
--- a/llvm/lib/Fuzzer/FuzzerIO.cpp
+++ b/llvm/lib/Fuzzer/FuzzerIO.cpp
@@ -21,7 +21,10 @@ namespace fuzzer {
static long GetEpoch(const std::string &Path) {
struct stat St;
- if (stat(Path.c_str(), &St)) return 0;
+ if (stat(Path.c_str(), &St)) {
+ Printf("Can not stat: %s; exiting\n", Path.c_str());
+ exit(1);
+ }
return St.st_mtime;
}
@@ -34,7 +37,10 @@ static std::vector<std::string> ListFilesInDir(const std::string &Dir,
*Epoch = E;
}
DIR *D = opendir(Dir.c_str());
- if (!D) return V;
+ if (!D) {
+ Printf("No such directory: %s; exiting\n", Dir.c_str());
+ exit(1);
+ }
while (auto E = readdir(D)) {
if (E->d_type == DT_REG || E->d_type == DT_LNK)
V.push_back(E->d_name);