|
| 1 | +/* |
| 2 | + This file is part of solidity. |
| 3 | +
|
| 4 | + solidity is free software: you can redistribute it and/or modify |
| 5 | + it under the terms of the GNU General Public License as published by |
| 6 | + the Free Software Foundation, either version 3 of the License, or |
| 7 | + (at your option) any later version. |
| 8 | +
|
| 9 | + solidity is distributed in the hope that it will be useful, |
| 10 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | + GNU General Public License for more details. |
| 13 | +
|
| 14 | + You should have received a copy of the GNU General Public License |
| 15 | + along with solidity. If not, see <http://www.gnu.org/licenses/>. |
| 16 | +*/ |
| 17 | +/** |
| 18 | + * Executable for use with AFL <http://lcamtuf.coredump.cx/afl>. |
| 19 | + * Reads a single source from stdin and signals a failure for internal errors. |
| 20 | + */ |
| 21 | + |
| 22 | +#include <json/json.h> |
| 23 | + |
| 24 | +#include <string> |
| 25 | +#include <iostream> |
| 26 | + |
| 27 | +using namespace std; |
| 28 | + |
| 29 | +extern "C" |
| 30 | +{ |
| 31 | +extern char const* compileJSON(char const* _input, bool _optimize); |
| 32 | +} |
| 33 | + |
| 34 | +string contains(string const& _haystack, vector<string> const& _needles) |
| 35 | +{ |
| 36 | + for (string const& needle: _needles) |
| 37 | + if (_haystack.find(needle) != string::npos) |
| 38 | + return needle; |
| 39 | + return ""; |
| 40 | +} |
| 41 | + |
| 42 | +int main() |
| 43 | +{ |
| 44 | + string input; |
| 45 | + while (!cin.eof()) |
| 46 | + { |
| 47 | + string s; |
| 48 | + getline(cin, s); |
| 49 | + input += s + '\n'; |
| 50 | + } |
| 51 | + |
| 52 | + bool optimize = true; |
| 53 | + string outputString(compileJSON(input.c_str(), optimize)); |
| 54 | + Json::Value outputJson; |
| 55 | + if (!Json::Reader().parse(outputString, outputJson)) |
| 56 | + { |
| 57 | + cout << "Compiler produced invalid JSON output." << endl; |
| 58 | + abort(); |
| 59 | + } |
| 60 | + if (outputJson.isMember("errors")) |
| 61 | + { |
| 62 | + if (!outputJson["errors"].isArray()) |
| 63 | + { |
| 64 | + cout << "Output JSON has \"errors\" but it is not an array." << endl; |
| 65 | + abort(); |
| 66 | + } |
| 67 | + for (Json::Value const& error: outputJson["errors"]) |
| 68 | + { |
| 69 | + string invalid = contains(error.asString(), vector<string>{ |
| 70 | + "Compiler error", |
| 71 | + "Internal compiler error", |
| 72 | + "Exception during compilation", |
| 73 | + "Unknown exception during compilation", |
| 74 | + "Unknown exception while generating contract data output", |
| 75 | + "Unknown exception while generating formal method output", |
| 76 | + "Unknown exception while generating source name output", |
| 77 | + "Unknown error while generating JSON" |
| 78 | + }); |
| 79 | + if (!invalid.empty()) |
| 80 | + { |
| 81 | + cout << "Invalid error: \"" << invalid << "\"" << endl; |
| 82 | + abort(); |
| 83 | + } |
| 84 | + } |
| 85 | + } |
| 86 | + else if (!outputJson.isMember("contracts")) |
| 87 | + { |
| 88 | + cout << "Output JSON has neither \"errors\" nor \"contracts\"." << endl; |
| 89 | + abort(); |
| 90 | + } |
| 91 | + return 0; |
| 92 | +} |
0 commit comments