testcjdroute.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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({ return builder.config.cjdnsTest_prototypes; })
  34. typedef int (* Test)(int argc, char** argv);
  35. typedef void* (* FuzzTestInit)(struct Allocator* alloc, struct Random* rand);
  36. typedef void (* FuzzTest)(void* ctx, struct Message* fuzz);
  37. typedef struct FuzzTest* (* MkFuzz)(struct Allocator* alloc);
  38. static const struct {
  39. Test func;
  40. char* name;
  41. } TESTS[] = { Js({ return builder.config.cjdnsTest_tests }) };
  42. static const int TEST_COUNT = (int) (sizeof(TESTS) / sizeof(*TESTS));
  43. static const struct {
  44. FuzzTestInit init;
  45. FuzzTest fuzz;
  46. char* name;
  47. } FUZZ_TESTS[] = { Js({ return builder.config.cjdnsTest_fuzzTests }) };
  48. static const int FUZZ_TEST_COUNT = (int) (sizeof(FUZZ_TESTS) / sizeof(*FUZZ_TESTS));
  49. static const char* FUZZ_CASES[] = { Js({ return builder.config.cjdnsTest_fuzzCases }) };
  50. static const int FUZZ_CASE_COUNT = (int) (sizeof(FUZZ_CASES) / sizeof(*FUZZ_CASES));
  51. Js({ builder.config.cjdnsTest_files.forEach((f) => js.linkerDependency(f)); })
  52. static uint64_t runTest(Test test,
  53. char* name,
  54. uint64_t startTime,
  55. int argc,
  56. char** argv,
  57. int quiet)
  58. {
  59. if (!quiet) { fprintf(stderr, "Running test %s", name); }
  60. Assert_true(!test(argc, argv));
  61. if (!quiet) {
  62. uint64_t now = Time_hrtime();
  63. char* seventySpaces =
  64. " ";
  65. int count = CString_strlen(name);
  66. if (count > 69) { count = 69; }
  67. fprintf(stderr, "%s%d.%d ms\n",
  68. &seventySpaces[count],
  69. (int)((now - startTime)/1000000),
  70. (int)((now - startTime)/1000)%1000);
  71. return now;
  72. }
  73. return startTime;
  74. }
  75. static void usage(char* appName)
  76. {
  77. printf("%s <test> run one test\n", appName);
  78. printf("%s all run every test\n\n", appName);
  79. printf("Flags:\n");
  80. printf(" --quiet # Don't write test timings to stderr");
  81. printf(" --stderr-to <path> # Redirect stderr to a file (append mode)");
  82. printf(" --inittests # When using `fuzz` first initialize ALL tests");
  83. printf("\n");
  84. printf("Available Tests:\n");
  85. for (int i = 0; i < TEST_COUNT; i++) {
  86. printf("%s %s\n", appName, TESTS[i].name);
  87. }
  88. printf("\nAvailable Fuzz Tests:\n");
  89. for (int i = 0; i < FUZZ_CASE_COUNT; i++) {
  90. printf("%s fuzz < %s\n", appName, FUZZ_CASES[i]);
  91. }
  92. }
  93. static void readFile(int fileNo, struct Allocator* alloc, struct Message* fuzz)
  94. {
  95. ssize_t length = read(fileNo, fuzz->bytes, fuzz->length);
  96. if (length >= fuzz->length) {
  97. printf("No test files over [%d] bytes\n", fuzz->length);
  98. length = 0;
  99. }
  100. fuzz->length = length;
  101. }
  102. static void** initFuzzTests(struct Allocator* alloc, struct Random* rand)
  103. {
  104. void** contexts = Allocator_calloc(alloc, sizeof(char*), FUZZ_TEST_COUNT);
  105. for (int i = 0; i < FUZZ_TEST_COUNT; i++) {
  106. contexts[i] = FUZZ_TESTS[i].init(alloc, rand);
  107. }
  108. return contexts;
  109. }
  110. static int runFuzzTest(
  111. void** ctxs,
  112. struct Allocator* alloc,
  113. struct Random* rand,
  114. struct Message* fuzz,
  115. const char* testCase,
  116. int quiet)
  117. {
  118. if (fuzz->length < 4) { return 100; }
  119. uint32_t selector = Er_assert(Message_epop32be(fuzz));
  120. if (selector >= (uint32_t)FUZZ_TEST_COUNT) {
  121. printf("selector [%x] out of bounds [%u]\n", selector, FUZZ_TEST_COUNT);
  122. return 100;
  123. }
  124. if (!testCase) { testCase = FUZZ_TESTS[selector].name; }
  125. if (!quiet) { fprintf(stderr, "Running fuzz %s", testCase); }
  126. void* ctx = ctxs ? ctxs[selector] : FUZZ_TESTS[selector].init(alloc, rand);
  127. FUZZ_TESTS[selector].fuzz(ctx, fuzz);
  128. return 0;
  129. }
  130. static uint64_t runFuzzTestManual(
  131. struct Allocator* alloc,
  132. struct Random* detRand,
  133. const char* testCase,
  134. uint64_t startTime,
  135. int quiet)
  136. {
  137. int f = open(testCase, O_RDONLY);
  138. Assert_true(f > -1);
  139. struct Message* fuzz = Message_new(4096, 128, alloc);
  140. readFile(f, alloc, fuzz);
  141. close(f);
  142. runFuzzTest(NULL, alloc, detRand, fuzz, testCase, quiet);
  143. if (!quiet) {
  144. uint64_t now = Time_hrtime();
  145. char* seventySpaces =
  146. " ";
  147. int count = CString_strlen(testCase);
  148. if (count > 69) { count = 69; }
  149. fprintf(stderr, "%s%d.%d ms\n",
  150. &seventySpaces[count],
  151. (int)((now - startTime)/1000000),
  152. (int)((now - startTime)/1000)%1000);
  153. return now;
  154. }
  155. return startTime;
  156. }
  157. // We don't really want to let AFL write the random seed because the amount of mixing
  158. // that occurs between the input and output makes any attempt at optimizing the seed
  159. // useless.
  160. //
  161. // We do, however, want to make sure that crashes discovered by AFL are reproducable.
  162. //
  163. // We might imagine letting part of the AFL message content be the random data which
  164. // is returned, but we don't know how much will be requested in advance. Possibly
  165. // something for the future.
  166. #define RANDOM_SEED "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
  167. static int fuzzMain(struct Allocator* alloc, struct Random* detRand, int initTests, int quiet)
  168. {
  169. struct Message* fuzz = Message_new(4096, 128, alloc);
  170. #ifdef __AFL_INIT
  171. // Enable AFL deferred forkserver mode. Requires compilation using afl-clang-fast
  172. initTests = 1;
  173. #endif
  174. void** ctxs = (initTests) ? initFuzzTests(alloc, detRand) : NULL;
  175. #ifdef __AFL_INIT
  176. __AFL_INIT();
  177. #endif
  178. readFile(STDIN_FILENO, alloc, fuzz);
  179. int out = runFuzzTest(ctxs, alloc, detRand, fuzz, NULL, quiet);
  180. printf("\n");
  181. return out;
  182. }
  183. static void stderrTo(char* file)
  184. {
  185. int f = open(file, O_CREAT | O_APPEND | O_WRONLY, 0666);
  186. Assert_true(f > -1);
  187. Assert_true(dup2(f, STDERR_FILENO) == STDERR_FILENO);
  188. }
  189. static int main2(int argc, char** argv, struct Allocator* alloc, struct Random* detRand)
  190. {
  191. int initTests = 0;
  192. int quiet = 0;
  193. for (int i = 0; i < argc; i++) {
  194. if (!CString_strcmp("--inittests", argv[i])) { initTests = 1; }
  195. if (!CString_strcmp("--stderr-to", argv[i]) && argc > i + 1) { stderrTo(argv[i + 1]); }
  196. if (!CString_strcmp("--quiet", argv[i])) { quiet = 1; }
  197. }
  198. if (argc > 1 && !CString_strcmp("fuzz", argv[1])) {
  199. return fuzzMain(alloc, detRand, initTests, quiet);
  200. }
  201. uint64_t now = Time_hrtime();
  202. uint64_t startTime = now;
  203. if (argc < 2) {
  204. Assert_true(argc > 0);
  205. usage(argv[0]);
  206. return 100;
  207. }
  208. if (argc > 1 && CString_strcmp("all", argv[1])) {
  209. for (int i = 0; i < TEST_COUNT; i++) {
  210. if (!CString_strcmp(TESTS[i].name, argv[1])) {
  211. TESTS[i].func(argc, argv);
  212. return 0;
  213. }
  214. }
  215. for (int i = 0; i < FUZZ_CASE_COUNT; i++) {
  216. if (!CString_strcmp(FUZZ_CASES[i], argv[1])) {
  217. runFuzzTestManual(alloc, detRand, FUZZ_CASES[i], now, quiet);
  218. return 0;
  219. }
  220. }
  221. usage(argv[0]);
  222. return 100;
  223. }
  224. for (int i = 0; i < TEST_COUNT; i++) {
  225. now = runTest(TESTS[i].func, TESTS[i].name, now, argc, argv, quiet);
  226. }
  227. for (int i = 0; i < FUZZ_CASE_COUNT; i++) {
  228. // TODO(cjd): Apparently a race condition in the allocator
  229. // if you have async freeing in progress and then you come in and
  230. // free the root allocator, you get an assertion.
  231. //
  232. //struct Allocator* child = Allocator_child(alloc);
  233. struct Allocator* child = MallocAllocator_new(1<<24);
  234. now = runFuzzTestManual(child, detRand, FUZZ_CASES[i], now, quiet);
  235. Allocator_free(child);
  236. }
  237. if (!quiet) {
  238. fprintf(stderr, "Total test time %d.%d ms\n",
  239. (int)((now - startTime)/1000000),
  240. (int)((now - startTime)/1000)%1000);
  241. }
  242. return 0;
  243. }
  244. int testcjdroute_main(int argc, char** argv);
  245. int testcjdroute_main(int argc, char** argv)
  246. {
  247. struct Allocator* alloc = MallocAllocator_new(1<<24);
  248. struct RandomSeed* rs = DeterminentRandomSeed_new(alloc, RANDOM_SEED);
  249. struct Random* detRand = Random_newWithSeed(alloc, NULL, rs, NULL);
  250. int out = main2(argc, argv, alloc, detRand);
  251. Allocator_free(alloc);
  252. return out;
  253. }