testcjdroute.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #include "crypto/random/Random.h"
  16. #include "crypto/random/test/DeterminentRandomSeed.h"
  17. #include "util/Assert.h"
  18. #include "util/events/Time.h"
  19. #include "util/events/EventBase.h"
  20. #include "util/CString.h"
  21. #include "memory/MallocAllocator.h"
  22. #include "wire/Message.h"
  23. #include "test/FuzzTest.h"
  24. #include "util/Js.h"
  25. #include <stdio.h>
  26. #include <unistd.h>
  27. #include <fcntl.h>
  28. #ifdef SUBNODE
  29. #define testcjdroute_SUBNODE 1
  30. #else
  31. #define testcjdroute_SUBNODE 0
  32. #endif
  33. Js({
  34. require("./test/testcjdroute.js").generate(
  35. file, builder, testcjdroute_SUBNODE, this.async());
  36. })
  37. Js({ return file.testcjdroute_prototypes; })
  38. typedef int (* Test)(int argc, char** argv);
  39. typedef void* (* FuzzTestInit)(struct Allocator* alloc, struct Random* rand);
  40. typedef void (* FuzzTest)(void* ctx, struct Message* fuzz);
  41. typedef struct FuzzTest* (* MkFuzz)(struct Allocator* alloc);
  42. static const struct {
  43. Test func;
  44. char* name;
  45. } TESTS[] = { Js({ return file.testcjdroute_tests }) };
  46. static const int TEST_COUNT = (int) (sizeof(TESTS) / sizeof(*TESTS));
  47. static const struct {
  48. FuzzTestInit init;
  49. FuzzTest fuzz;
  50. char* name;
  51. } FUZZ_TESTS[] = { Js({ return file.testcjdroute_fuzzTests }) };
  52. static const int FUZZ_TEST_COUNT = (int) (sizeof(FUZZ_TESTS) / sizeof(*FUZZ_TESTS));
  53. static const char* FUZZ_CASES[] = { Js({ return file.testcjdroute_fuzzCases }) };
  54. static const int FUZZ_CASE_COUNT = (int) (sizeof(FUZZ_CASES) / sizeof(*FUZZ_CASES));
  55. static uint64_t runTest(Test test,
  56. char* name,
  57. uint64_t startTime,
  58. int argc,
  59. char** argv,
  60. int quiet)
  61. {
  62. if (!quiet) { fprintf(stderr, "Running test %s", name); }
  63. Assert_true(!test(argc, argv));
  64. if (!quiet) {
  65. uint64_t now = Time_hrtime();
  66. char* seventySpaces =
  67. " ";
  68. int count = CString_strlen(name);
  69. if (count > 69) { count = 69; }
  70. fprintf(stderr, "%s%d.%d ms\n",
  71. &seventySpaces[count],
  72. (int)((now - startTime)/1000000),
  73. (int)((now - startTime)/1000)%1000);
  74. return now;
  75. }
  76. return startTime;
  77. }
  78. static void usage(char* appName)
  79. {
  80. printf("%s <test> run one test\n", appName);
  81. printf("%s all run every test\n\n", appName);
  82. printf("Flags:\n");
  83. printf(" --quiet # Don't write test timings to stderr");
  84. printf(" --stderr-to <path> # Redirect stderr to a file (append mode)");
  85. printf(" --inittests # When using `fuzz` first initialize ALL tests");
  86. printf("\n");
  87. printf("Available Tests:\n");
  88. for (int i = 0; i < TEST_COUNT; i++) {
  89. printf("%s\n", TESTS[i].name);
  90. }
  91. printf("\nAvailable Fuzz Tests:\n");
  92. for (int i = 0; i < FUZZ_CASE_COUNT; i++) {
  93. printf("%s fuzz < %s\n", appName, FUZZ_CASES[i]);
  94. }
  95. }
  96. static struct Message* readFile(int fileNo, struct Allocator* alloc)
  97. {
  98. uint8_t buff[4096] = { 0 };
  99. ssize_t length = read(fileNo, buff, 4096);
  100. if (length >= 4096) {
  101. printf("No test files over 4096 bytes\n");
  102. length = 0;
  103. }
  104. int capacity = length;
  105. while (capacity % 8) { capacity++; }
  106. struct Message* msg = Message_new(capacity, 128, alloc);
  107. msg->length = length;
  108. Bits_memcpy(msg->bytes, buff, length);
  109. return msg;
  110. }
  111. static void** initFuzzTests(struct Allocator* alloc, struct Random* rand)
  112. {
  113. void** contexts = Allocator_calloc(alloc, sizeof(char*), FUZZ_TEST_COUNT);
  114. for (int i = 0; i < FUZZ_TEST_COUNT; i++) {
  115. contexts[i] = FUZZ_TESTS[i].init(alloc, rand);
  116. }
  117. return contexts;
  118. }
  119. static int runFuzzTest(
  120. void** ctxs,
  121. struct Allocator* alloc,
  122. struct Random* rand,
  123. struct Message* fuzz,
  124. const char* testCase,
  125. int quiet)
  126. {
  127. if (fuzz->length < 4) { return 100; }
  128. uint32_t selector = Message_pop32(fuzz, NULL);
  129. if (selector >= (uint32_t)FUZZ_TEST_COUNT) {
  130. printf("selector [%x] out of bounds [%u]\n", selector, FUZZ_TEST_COUNT);
  131. return 100;
  132. }
  133. if (!testCase) { testCase = FUZZ_TESTS[selector].name; }
  134. if (!quiet) { fprintf(stderr, "Running fuzz %s", testCase); }
  135. void* ctx = ctxs ? ctxs[selector] : FUZZ_TESTS[selector].init(alloc, rand);
  136. FUZZ_TESTS[selector].fuzz(ctx, fuzz);
  137. return 0;
  138. }
  139. static uint64_t runFuzzTestManual(
  140. struct Allocator* alloc,
  141. struct Random* detRand,
  142. const char* testCase,
  143. uint64_t startTime,
  144. int quiet)
  145. {
  146. int f = open(testCase, O_RDONLY);
  147. Assert_true(f > -1);
  148. struct Message* fuzz = readFile(f, alloc);
  149. close(f);
  150. runFuzzTest(NULL, alloc, detRand, fuzz, testCase, quiet);
  151. if (!quiet) {
  152. uint64_t now = Time_hrtime();
  153. char* seventySpaces =
  154. " ";
  155. int count = CString_strlen(testCase);
  156. if (count > 69) { count = 69; }
  157. fprintf(stderr, "%s%d.%d ms\n",
  158. &seventySpaces[count],
  159. (int)((now - startTime)/1000000),
  160. (int)((now - startTime)/1000)%1000);
  161. return now;
  162. }
  163. return startTime;
  164. }
  165. // We don't really want to let AFL write the random seed because the amount of mixing
  166. // that occurs between the input and output makes any attempt at optimizing the seed
  167. // useless.
  168. //
  169. // We do, however, want to make sure that crashes discovered by AFL are reproducable.
  170. //
  171. // We might imagine letting part of the AFL message content be the random data which
  172. // is returned, but we don't know how much will be requested in advance. Possibly
  173. // something for the future.
  174. #define RANDOM_SEED "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
  175. static int fuzzMain(struct Allocator* alloc, struct Random* detRand, int initTests, int quiet)
  176. {
  177. #ifdef __AFL_INIT
  178. // Enable AFL deferred forkserver mode. Requires compilation using afl-clang-fast
  179. initTests = 1;
  180. #endif
  181. void** ctxs = (initTests) ? initFuzzTests(alloc, detRand) : NULL;
  182. #ifdef __AFL_INIT
  183. __AFL_INIT();
  184. #endif
  185. struct Message* fuzz = readFile(STDIN_FILENO, alloc);
  186. int out = runFuzzTest(ctxs, alloc, detRand, fuzz, NULL, quiet);
  187. printf("\n");
  188. return out;
  189. }
  190. static void stderrTo(char* file)
  191. {
  192. int f = open(file, O_CREAT | O_APPEND | O_WRONLY, 0666);
  193. Assert_true(f > -1);
  194. Assert_true(dup2(f, STDERR_FILENO) == STDERR_FILENO);
  195. }
  196. #ifdef WRAP_RAISE
  197. int __wrap_raise(int sig); // CHECKFILES_IGNORE
  198. int __real_raise(int sig); // CHECKFILES_IGNORE
  199. Js({ file.ldflags.push('-Wl,--wrap=raise'); })
  200. int __wrap_raise(int sig) // CHECKFILES_IGNORE
  201. {
  202. fprintf(stderr, "raise called from(%p)\n", __builtin_return_address(0));
  203. fflush(stderr);
  204. return __real_raise(sig);
  205. }
  206. #endif
  207. static int main2(int argc, char** argv, struct Allocator* alloc, struct Random* detRand)
  208. {
  209. int initTests = 0;
  210. int quiet = 0;
  211. for (int i = 0; i < argc; i++) {
  212. if (!CString_strcmp("--inittests", argv[i])) { initTests = 1; }
  213. if (!CString_strcmp("--stderr-to", argv[i]) && argc > i + 1) { stderrTo(argv[i + 1]); }
  214. if (!CString_strcmp("--quiet", argv[i])) { quiet = 1; }
  215. }
  216. if (argc > 1 && !CString_strcmp("fuzz", argv[1])) {
  217. return fuzzMain(alloc, detRand, initTests, quiet);
  218. }
  219. uint64_t now = Time_hrtime();
  220. uint64_t startTime = now;
  221. if (argc < 2) {
  222. Assert_true(argc > 0);
  223. usage(argv[0]);
  224. return 100;
  225. }
  226. if (argc > 1 && CString_strcmp("all", argv[1])) {
  227. for (int i = 0; i < TEST_COUNT; i++) {
  228. if (!CString_strcmp(TESTS[i].name, argv[1])) {
  229. TESTS[i].func(argc, argv);
  230. return 0;
  231. }
  232. }
  233. for (int i = 0; i < FUZZ_CASE_COUNT; i++) {
  234. if (!CString_strcmp(FUZZ_CASES[i], argv[1])) {
  235. runFuzzTestManual(alloc, detRand, FUZZ_CASES[i], now, quiet);
  236. return 0;
  237. }
  238. }
  239. usage(argv[0]);
  240. return 100;
  241. }
  242. for (int i = 0; i < TEST_COUNT; i++) {
  243. now = runTest(TESTS[i].func, TESTS[i].name, now, argc, argv, quiet);
  244. }
  245. for (int i = 0; i < FUZZ_CASE_COUNT; i++) {
  246. // TODO(cjd): Apparently a race condition in the allocator
  247. // if you have async freeing in progress and then you come in and
  248. // free the root allocator, you get an assertion.
  249. //
  250. //struct Allocator* child = Allocator_child(alloc);
  251. struct Allocator* child = MallocAllocator_new(1<<24);
  252. now = runFuzzTestManual(child, detRand, FUZZ_CASES[i], now, quiet);
  253. Allocator_free(child);
  254. }
  255. if (!quiet) {
  256. fprintf(stderr, "Total test time %d.%d ms\n",
  257. (int)((now - startTime)/1000000),
  258. (int)((now - startTime)/1000)%1000);
  259. }
  260. return 0;
  261. }
  262. int main(int argc, char** argv)
  263. {
  264. struct Allocator* alloc = MallocAllocator_new(1<<24);
  265. struct RandomSeed* rs = DeterminentRandomSeed_new(alloc, RANDOM_SEED);
  266. struct Random* detRand = Random_newWithSeed(alloc, NULL, rs, NULL);
  267. int out = main2(argc, argv, alloc, detRand);
  268. Allocator_free(alloc);
  269. return out;
  270. }