[lib/Fuzzer] use -fsanitize-coverage=trace-cmp when building LLVM with LLVM_USE_SANIT...
[oota-llvm.git] / lib / Fuzzer / FuzzerIO.cpp
1 //===- FuzzerIO.cpp - IO utils. -------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 // IO functions.
10 //===----------------------------------------------------------------------===//
11 #include "FuzzerInternal.h"
12 #include <iostream>
13 #include <iterator>
14 #include <fstream>
15 #include <dirent.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <unistd.h>
19
20 namespace fuzzer {
21
22 static long GetEpoch(const std::string &Path) {
23   struct stat St;
24   if (stat(Path.c_str(), &St)) return 0;
25   return St.st_mtime;
26 }
27
28 static std::vector<std::string> ListFilesInDir(const std::string &Dir,
29                                                long *Epoch) {
30   std::vector<std::string> V;
31   if (Epoch) {
32     auto E = GetEpoch(Dir.c_str());
33     if (*Epoch >= E) return V;
34     *Epoch = E;
35   }
36   DIR *D = opendir(Dir.c_str());
37   if (!D) return V;
38   while (auto E = readdir(D)) {
39     if (E->d_type == DT_REG || E->d_type == DT_LNK)
40       V.push_back(E->d_name);
41   }
42   closedir(D);
43   return V;
44 }
45
46 Unit FileToVector(const std::string &Path) {
47   std::ifstream T(Path);
48   return Unit((std::istreambuf_iterator<char>(T)),
49               std::istreambuf_iterator<char>());
50 }
51
52 std::string FileToString(const std::string &Path) {
53   std::ifstream T(Path);
54   return std::string((std::istreambuf_iterator<char>(T)),
55                      std::istreambuf_iterator<char>());
56 }
57
58 void CopyFileToErr(const std::string &Path) {
59   std::ifstream T(Path);
60   std::copy(std::istreambuf_iterator<char>(T), std::istreambuf_iterator<char>(),
61             std::ostream_iterator<char>(std::cerr, ""));
62 }
63
64 void WriteToFile(const Unit &U, const std::string &Path) {
65   std::ofstream OF(Path);
66   OF.write((const char*)U.data(), U.size());
67 }
68
69 void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V,
70                             long *Epoch) {
71   long E = Epoch ? *Epoch : 0;
72   for (auto &X : ListFilesInDir(Path, Epoch)) {
73     auto FilePath = DirPlusFile(Path, X);
74     if (Epoch && GetEpoch(FilePath) < E) continue;
75     V->push_back(FileToVector(FilePath));
76   }
77 }
78
79 std::string DirPlusFile(const std::string &DirPath,
80                         const std::string &FileName) {
81   return DirPath + "/" + FileName;
82 }
83
84 void PrintFileAsBase64(const std::string &Path) {
85   std::string Cmd = "base64 -w 0 < " + Path + "; echo";
86   system(Cmd.c_str());
87 }
88
89 }  // namespace fuzzer