testing_common.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2016, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. extern const char tor_git_revision[];
  6. /* Ordinarily defined in tor_main.c; this bit is just here to provide one
  7. * since we're not linking to tor_main.c */
  8. const char tor_git_revision[] = "";
  9. /**
  10. * \file test_common.c
  11. * \brief Common pieces to implement unit tests.
  12. **/
  13. #include "orconfig.h"
  14. #include "or.h"
  15. #include "control.h"
  16. #include "config.h"
  17. #include "rephist.h"
  18. #include "backtrace.h"
  19. #include "test.h"
  20. #include <stdio.h>
  21. #ifdef HAVE_FCNTL_H
  22. #include <fcntl.h>
  23. #endif
  24. #ifdef _WIN32
  25. /* For mkdir() */
  26. #include <direct.h>
  27. #else
  28. #include <dirent.h>
  29. #endif
  30. #include "or.h"
  31. #ifdef USE_DMALLOC
  32. #include <dmalloc.h>
  33. #include <openssl/crypto.h>
  34. #include "main.h"
  35. #endif
  36. /** Temporary directory (set up by setup_directory) under which we store all
  37. * our files during testing. */
  38. static char temp_dir[256];
  39. #ifdef _WIN32
  40. #define pid_t int
  41. #endif
  42. static pid_t temp_dir_setup_in_pid = 0;
  43. /** Select and create the temporary directory we'll use to run our unit tests.
  44. * Store it in <b>temp_dir</b>. Exit immediately if we can't create it.
  45. * idempotent. */
  46. static void
  47. setup_directory(void)
  48. {
  49. static int is_setup = 0;
  50. int r;
  51. char rnd[256], rnd32[256];
  52. if (is_setup) return;
  53. /* Due to base32 limitation needs to be a multiple of 5. */
  54. #define RAND_PATH_BYTES 5
  55. crypto_rand(rnd, RAND_PATH_BYTES);
  56. base32_encode(rnd32, sizeof(rnd32), rnd, RAND_PATH_BYTES);
  57. #ifdef _WIN32
  58. {
  59. char buf[MAX_PATH];
  60. const char *tmp = buf;
  61. const char *extra_backslash = "";
  62. /* If this fails, we're probably screwed anyway */
  63. if (!GetTempPathA(sizeof(buf),buf))
  64. tmp = "c:\\windows\\temp\\";
  65. if (strcmpend(tmp, "\\")) {
  66. /* According to MSDN, it should be impossible for GetTempPath to give us
  67. * an answer that doesn't end with \. But let's make sure. */
  68. extra_backslash = "\\";
  69. }
  70. tor_snprintf(temp_dir, sizeof(temp_dir),
  71. "%s%stor_test_%d_%s", tmp, extra_backslash,
  72. (int)getpid(), rnd32);
  73. r = mkdir(temp_dir);
  74. }
  75. #else
  76. tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s",
  77. (int) getpid(), rnd32);
  78. r = mkdir(temp_dir, 0700);
  79. if (!r) {
  80. /* undo sticky bit so tests don't get confused. */
  81. r = chown(temp_dir, getuid(), getgid());
  82. }
  83. #endif
  84. if (r) {
  85. fprintf(stderr, "Can't create directory %s:", temp_dir);
  86. perror("");
  87. exit(1);
  88. }
  89. is_setup = 1;
  90. temp_dir_setup_in_pid = getpid();
  91. }
  92. /** Return a filename relative to our testing temporary directory */
  93. const char *
  94. get_fname(const char *name)
  95. {
  96. static char buf[1024];
  97. setup_directory();
  98. if (!name)
  99. return temp_dir;
  100. tor_snprintf(buf,sizeof(buf),"%s/%s",temp_dir,name);
  101. return buf;
  102. }
  103. /* Remove a directory and all of its subdirectories */
  104. static void
  105. rm_rf(const char *dir)
  106. {
  107. struct stat st;
  108. smartlist_t *elements;
  109. elements = tor_listdir(dir);
  110. if (elements) {
  111. SMARTLIST_FOREACH_BEGIN(elements, const char *, cp) {
  112. char *tmp = NULL;
  113. tor_asprintf(&tmp, "%s"PATH_SEPARATOR"%s", dir, cp);
  114. if (0 == stat(tmp,&st) && (st.st_mode & S_IFDIR)) {
  115. rm_rf(tmp);
  116. } else {
  117. if (unlink(tmp)) {
  118. fprintf(stderr, "Error removing %s: %s\n", tmp, strerror(errno));
  119. }
  120. }
  121. tor_free(tmp);
  122. } SMARTLIST_FOREACH_END(cp);
  123. SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
  124. smartlist_free(elements);
  125. }
  126. if (rmdir(dir))
  127. fprintf(stderr, "Error removing directory %s: %s\n", dir, strerror(errno));
  128. }
  129. /** Remove all files stored under the temporary directory, and the directory
  130. * itself. Called by atexit(). */
  131. static void
  132. remove_directory(void)
  133. {
  134. if (getpid() != temp_dir_setup_in_pid) {
  135. /* Only clean out the tempdir when the main process is exiting. */
  136. return;
  137. }
  138. rm_rf(temp_dir);
  139. }
  140. static void *
  141. passthrough_test_setup(const struct testcase_t *testcase)
  142. {
  143. return testcase->setup_data;
  144. }
  145. static int
  146. passthrough_test_cleanup(const struct testcase_t *testcase, void *ptr)
  147. {
  148. (void)testcase;
  149. (void)ptr;
  150. return 1;
  151. }
  152. static void *
  153. ed25519_testcase_setup(const struct testcase_t *testcase)
  154. {
  155. crypto_ed25519_testing_force_impl(testcase->setup_data);
  156. return testcase->setup_data;
  157. }
  158. static int
  159. ed25519_testcase_cleanup(const struct testcase_t *testcase, void *ptr)
  160. {
  161. (void)testcase;
  162. (void)ptr;
  163. crypto_ed25519_testing_restore_impl();
  164. return 1;
  165. }
  166. const struct testcase_setup_t ed25519_test_setup = {
  167. ed25519_testcase_setup, ed25519_testcase_cleanup
  168. };
  169. const struct testcase_setup_t passthrough_setup = {
  170. passthrough_test_setup, passthrough_test_cleanup
  171. };
  172. static void
  173. an_assertion_failed(void)
  174. {
  175. tinytest_set_test_failed_();
  176. }
  177. /** Main entry point for unit test code: parse the command line, and run
  178. * some unit tests. */
  179. int
  180. main(int c, const char **v)
  181. {
  182. or_options_t *options;
  183. char *errmsg = NULL;
  184. int i, i_out;
  185. int loglevel = LOG_ERR;
  186. int accel_crypto = 0;
  187. /* We must initialise logs before we call tor_assert() */
  188. init_logging(1);
  189. #ifdef USE_DMALLOC
  190. {
  191. int r = CRYPTO_set_mem_ex_functions(tor_malloc_, tor_realloc_, tor_free_);
  192. tor_assert(r);
  193. }
  194. #endif
  195. update_approx_time(time(NULL));
  196. options = options_new();
  197. tor_threads_init();
  198. network_init();
  199. monotime_init();
  200. struct tor_libevent_cfg cfg;
  201. memset(&cfg, 0, sizeof(cfg));
  202. tor_libevent_initialize(&cfg);
  203. control_initialize_event_queue();
  204. configure_backtrace_handler(get_version());
  205. for (i_out = i = 1; i < c; ++i) {
  206. if (!strcmp(v[i], "--warn")) {
  207. loglevel = LOG_WARN;
  208. } else if (!strcmp(v[i], "--notice")) {
  209. loglevel = LOG_NOTICE;
  210. } else if (!strcmp(v[i], "--info")) {
  211. loglevel = LOG_INFO;
  212. } else if (!strcmp(v[i], "--debug")) {
  213. loglevel = LOG_DEBUG;
  214. } else if (!strcmp(v[i], "--accel")) {
  215. accel_crypto = 1;
  216. } else {
  217. v[i_out++] = v[i];
  218. }
  219. }
  220. c = i_out;
  221. {
  222. log_severity_list_t s;
  223. memset(&s, 0, sizeof(s));
  224. set_log_severity_config(loglevel, LOG_ERR, &s);
  225. /* ALWAYS log bug warnings. */
  226. s.masks[LOG_WARN-LOG_ERR] |= LD_BUG;
  227. add_stream_log(&s, "", fileno(stdout));
  228. }
  229. options->command = CMD_RUN_UNITTESTS;
  230. if (crypto_global_init(accel_crypto, NULL, NULL)) {
  231. printf("Can't initialize crypto subsystem; exiting.\n");
  232. return 1;
  233. }
  234. crypto_set_tls_dh_prime();
  235. if (crypto_seed_rng() < 0) {
  236. printf("Couldn't seed RNG; exiting.\n");
  237. return 1;
  238. }
  239. rep_hist_init();
  240. setup_directory();
  241. options_init(options);
  242. options->DataDirectory = tor_strdup(temp_dir);
  243. options->EntryStatistics = 1;
  244. if (set_options(options, &errmsg) < 0) {
  245. printf("Failed to set initial options: %s\n", errmsg);
  246. tor_free(errmsg);
  247. return 1;
  248. }
  249. tor_set_failed_assertion_callback(an_assertion_failed);
  250. init_pregenerated_keys();
  251. atexit(remove_directory);
  252. int have_failed = (tinytest_main(c, v, testgroups) != 0);
  253. free_pregenerated_keys();
  254. #ifdef USE_DMALLOC
  255. tor_free_all(0);
  256. dmalloc_log_unfreed();
  257. #endif
  258. crypto_global_cleanup();
  259. if (have_failed)
  260. return 1;
  261. else
  262. return 0;
  263. }