routerkeys.c 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414
  1. /* Copyright (c) 2014-2018, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file routerkeys.c
  5. *
  6. * \brief Functions and structures to handle generating and maintaining the
  7. * set of keypairs necessary to be an OR.
  8. *
  9. * The keys handled here now are the Ed25519 keys that Tor relays use to sign
  10. * descriptors, authenticate themselves on links, and identify one another
  11. * uniquely. Other keys are maintained in router.c and rendservice.c.
  12. *
  13. * (TODO: The keys in router.c should go here too.)
  14. */
  15. #include "core/or/or.h"
  16. #include "app/config/config.h"
  17. #include "feature/relay/router.h"
  18. #include "feature/relay/routerkeys.h"
  19. #include "feature/nodelist/torcert.h"
  20. #include "lib/crypt_ops/crypto_pwbox.h"
  21. #include "lib/crypt_ops/crypto_util.h"
  22. #include "lib/term/getpass.h"
  23. #include "lib/tls/tortls.h"
  24. #include "lib/tls/x509.h"
  25. #include "lib/crypt_ops/crypto_format.h"
  26. #define ENC_KEY_HEADER "Boxed Ed25519 key"
  27. #define ENC_KEY_TAG "master"
  28. #ifdef HAVE_UNISTD_H
  29. #include <unistd.h>
  30. #endif
  31. /* DOCDOC */
  32. static ssize_t
  33. do_getpass(const char *prompt, char *buf, size_t buflen,
  34. int twice, const or_options_t *options)
  35. {
  36. if (options->keygen_force_passphrase == FORCE_PASSPHRASE_OFF) {
  37. tor_assert(buflen);
  38. buf[0] = 0;
  39. return 0;
  40. }
  41. char *prompt2 = NULL;
  42. char *buf2 = NULL;
  43. int fd = -1;
  44. ssize_t length = -1;
  45. if (options->use_keygen_passphrase_fd) {
  46. twice = 0;
  47. fd = options->keygen_passphrase_fd;
  48. length = read_all_from_fd(fd, buf, buflen-1);
  49. if (length >= 0)
  50. buf[length] = 0;
  51. goto done_reading;
  52. }
  53. if (twice) {
  54. const char msg[] = "One more time:";
  55. size_t p2len = strlen(prompt) + 1;
  56. if (p2len < sizeof(msg))
  57. p2len = sizeof(msg);
  58. prompt2 = tor_malloc(p2len);
  59. memset(prompt2, ' ', p2len);
  60. memcpy(prompt2 + p2len - sizeof(msg), msg, sizeof(msg));
  61. buf2 = tor_malloc_zero(buflen);
  62. }
  63. while (1) {
  64. length = tor_getpass(prompt, buf, buflen);
  65. if (length < 0)
  66. goto done_reading;
  67. if (! twice)
  68. break;
  69. ssize_t length2 = tor_getpass(prompt2, buf2, buflen);
  70. if (length != length2 || tor_memneq(buf, buf2, length)) {
  71. fprintf(stderr, "That didn't match.\n");
  72. } else {
  73. break;
  74. }
  75. }
  76. done_reading:
  77. if (twice) {
  78. tor_free(prompt2);
  79. memwipe(buf2, 0, buflen);
  80. tor_free(buf2);
  81. }
  82. if (options->keygen_force_passphrase == FORCE_PASSPHRASE_ON && length == 0)
  83. return -1;
  84. return length;
  85. }
  86. /* DOCDOC */
  87. int
  88. read_encrypted_secret_key(ed25519_secret_key_t *out,
  89. const char *fname)
  90. {
  91. int r = -1;
  92. uint8_t *secret = NULL;
  93. size_t secret_len = 0;
  94. char pwbuf[256];
  95. uint8_t encrypted_key[256];
  96. char *tag = NULL;
  97. int saved_errno = 0;
  98. ssize_t encrypted_len = crypto_read_tagged_contents_from_file(fname,
  99. ENC_KEY_HEADER,
  100. &tag,
  101. encrypted_key,
  102. sizeof(encrypted_key));
  103. if (encrypted_len < 0) {
  104. saved_errno = errno;
  105. log_info(LD_OR, "%s is missing", fname);
  106. r = 0;
  107. goto done;
  108. }
  109. if (strcmp(tag, ENC_KEY_TAG)) {
  110. saved_errno = EINVAL;
  111. goto done;
  112. }
  113. while (1) {
  114. ssize_t pwlen =
  115. do_getpass("Enter passphrase for master key:", pwbuf, sizeof(pwbuf), 0,
  116. get_options());
  117. if (pwlen < 0) {
  118. saved_errno = EINVAL;
  119. goto done;
  120. }
  121. const int r_unbox = crypto_unpwbox(&secret, &secret_len,
  122. encrypted_key, encrypted_len,
  123. pwbuf, pwlen);
  124. if (r_unbox == UNPWBOX_CORRUPTED) {
  125. log_err(LD_OR, "%s is corrupted.", fname);
  126. saved_errno = EINVAL;
  127. goto done;
  128. } else if (r_unbox == UNPWBOX_OKAY) {
  129. break;
  130. }
  131. /* Otherwise, passphrase is bad, so try again till user does ctrl-c or gets
  132. * it right. */
  133. }
  134. if (secret_len != ED25519_SECKEY_LEN) {
  135. log_err(LD_OR, "%s is corrupted.", fname);
  136. saved_errno = EINVAL;
  137. goto done;
  138. }
  139. memcpy(out->seckey, secret, ED25519_SECKEY_LEN);
  140. r = 1;
  141. done:
  142. memwipe(encrypted_key, 0, sizeof(encrypted_key));
  143. memwipe(pwbuf, 0, sizeof(pwbuf));
  144. tor_free(tag);
  145. if (secret) {
  146. memwipe(secret, 0, secret_len);
  147. tor_free(secret);
  148. }
  149. if (saved_errno)
  150. errno = saved_errno;
  151. return r;
  152. }
  153. /* DOCDOC */
  154. int
  155. write_encrypted_secret_key(const ed25519_secret_key_t *key,
  156. const char *fname)
  157. {
  158. int r = -1;
  159. char pwbuf0[256];
  160. uint8_t *encrypted_key = NULL;
  161. size_t encrypted_len = 0;
  162. if (do_getpass("Enter new passphrase:", pwbuf0, sizeof(pwbuf0), 1,
  163. get_options()) < 0) {
  164. log_warn(LD_OR, "NO/failed passphrase");
  165. return -1;
  166. }
  167. if (strlen(pwbuf0) == 0) {
  168. if (get_options()->keygen_force_passphrase == FORCE_PASSPHRASE_ON)
  169. return -1;
  170. else
  171. return 0;
  172. }
  173. if (crypto_pwbox(&encrypted_key, &encrypted_len,
  174. key->seckey, sizeof(key->seckey),
  175. pwbuf0, strlen(pwbuf0), 0) < 0) {
  176. log_warn(LD_OR, "crypto_pwbox failed!?");
  177. goto done;
  178. }
  179. if (crypto_write_tagged_contents_to_file(fname,
  180. ENC_KEY_HEADER,
  181. ENC_KEY_TAG,
  182. encrypted_key, encrypted_len) < 0)
  183. goto done;
  184. r = 1;
  185. done:
  186. if (encrypted_key) {
  187. memwipe(encrypted_key, 0, encrypted_len);
  188. tor_free(encrypted_key);
  189. }
  190. memwipe(pwbuf0, 0, sizeof(pwbuf0));
  191. return r;
  192. }
  193. /* DOCDOC */
  194. static int
  195. write_secret_key(const ed25519_secret_key_t *key, int encrypted,
  196. const char *fname,
  197. const char *fname_tag,
  198. const char *encrypted_fname)
  199. {
  200. if (encrypted) {
  201. int r = write_encrypted_secret_key(key, encrypted_fname);
  202. if (r == 1) {
  203. /* Success! */
  204. /* Try to unlink the unencrypted key, if any existed before */
  205. if (strcmp(fname, encrypted_fname))
  206. unlink(fname);
  207. return r;
  208. } else if (r != 0) {
  209. /* Unrecoverable failure! */
  210. return r;
  211. }
  212. fprintf(stderr, "Not encrypting the secret key.\n");
  213. }
  214. return ed25519_seckey_write_to_file(key, fname, fname_tag);
  215. }
  216. /**
  217. * Read an ed25519 key and associated certificates from files beginning with
  218. * <b>fname</b>, with certificate type <b>cert_type</b>. On failure, return
  219. * NULL; on success return the keypair.
  220. *
  221. * If INIT_ED_KEY_CREATE is set in <b>flags</b>, then create the key (and
  222. * certificate if requested) if it doesn't exist, and save it to disk.
  223. *
  224. * If INIT_ED_KEY_NEEDCERT is set in <b>flags</b>, load/create a certificate
  225. * too and store it in *<b>cert_out</b>. Fail if the cert can't be
  226. * found/created. To create a certificate, <b>signing_key</b> must be set to
  227. * the key that should sign it; <b>now</b> to the current time, and
  228. * <b>lifetime</b> to the lifetime of the key.
  229. *
  230. * If INIT_ED_KEY_REPLACE is set in <b>flags</b>, then create and save new key
  231. * whether we can read the old one or not.
  232. *
  233. * If INIT_ED_KEY_EXTRA_STRONG is set in <b>flags</b>, set the extra_strong
  234. * flag when creating the secret key.
  235. *
  236. * If INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT is set in <b>flags</b>, and
  237. * we create a new certificate, create it with the signing key embedded.
  238. *
  239. * If INIT_ED_KEY_SPLIT is set in <b>flags</b>, and we create a new key,
  240. * store the public key in a separate file from the secret key.
  241. *
  242. * If INIT_ED_KEY_MISSING_SECRET_OK is set in <b>flags</b>, and we find a
  243. * public key file but no secret key file, return successfully anyway.
  244. *
  245. * If INIT_ED_KEY_OMIT_SECRET is set in <b>flags</b>, do not try to load a
  246. * secret key unless no public key is found. Do not return a secret key. (but
  247. * create and save one if needed).
  248. *
  249. * If INIT_ED_KEY_NO_LOAD_SECRET is set in <b>flags</b>, don't try to load
  250. * a secret key, no matter what.
  251. *
  252. * If INIT_ED_KEY_TRY_ENCRYPTED is set, we look for an encrypted secret key
  253. * and consider encrypting any new secret key.
  254. *
  255. * If INIT_ED_KEY_NO_REPAIR is set, and there is any issue loading the keys
  256. * from disk _other than their absence_ (full or partial), we do not try to
  257. * replace them.
  258. *
  259. * If INIT_ED_KEY_SUGGEST_KEYGEN is set, have log messages about failures
  260. * refer to the --keygen option.
  261. *
  262. * If INIT_ED_KEY_EXPLICIT_FNAME is set, use the provided file name for the
  263. * secret key file, encrypted or not.
  264. */
  265. ed25519_keypair_t *
  266. ed_key_init_from_file(const char *fname, uint32_t flags,
  267. int severity,
  268. const ed25519_keypair_t *signing_key,
  269. time_t now,
  270. time_t lifetime,
  271. uint8_t cert_type,
  272. struct tor_cert_st **cert_out)
  273. {
  274. char *secret_fname = NULL;
  275. char *encrypted_secret_fname = NULL;
  276. char *public_fname = NULL;
  277. char *cert_fname = NULL;
  278. const char *loaded_secret_fname = NULL;
  279. int created_pk = 0, created_sk = 0, created_cert = 0;
  280. const int try_to_load = ! (flags & INIT_ED_KEY_REPLACE);
  281. const int encrypt_key = !! (flags & INIT_ED_KEY_TRY_ENCRYPTED);
  282. const int norepair = !! (flags & INIT_ED_KEY_NO_REPAIR);
  283. const int split = !! (flags & INIT_ED_KEY_SPLIT);
  284. const int omit_secret = !! (flags & INIT_ED_KEY_OMIT_SECRET);
  285. const int offline_secret = !! (flags & INIT_ED_KEY_OFFLINE_SECRET);
  286. const int explicit_fname = !! (flags & INIT_ED_KEY_EXPLICIT_FNAME);
  287. /* we don't support setting both of these flags at once. */
  288. tor_assert((flags & (INIT_ED_KEY_NO_REPAIR|INIT_ED_KEY_NEEDCERT)) !=
  289. (INIT_ED_KEY_NO_REPAIR|INIT_ED_KEY_NEEDCERT));
  290. char tag[8];
  291. tor_snprintf(tag, sizeof(tag), "type%d", (int)cert_type);
  292. tor_cert_t *cert = NULL;
  293. char *got_tag = NULL;
  294. ed25519_keypair_t *keypair = tor_malloc_zero(sizeof(ed25519_keypair_t));
  295. if (explicit_fname) {
  296. secret_fname = tor_strdup(fname);
  297. encrypted_secret_fname = tor_strdup(fname);
  298. } else {
  299. tor_asprintf(&secret_fname, "%s_secret_key", fname);
  300. tor_asprintf(&encrypted_secret_fname, "%s_secret_key_encrypted", fname);
  301. }
  302. tor_asprintf(&public_fname, "%s_public_key", fname);
  303. tor_asprintf(&cert_fname, "%s_cert", fname);
  304. /* Try to read the secret key. */
  305. int have_secret = 0;
  306. int load_secret = try_to_load &&
  307. !offline_secret &&
  308. (!omit_secret || file_status(public_fname)==FN_NOENT);
  309. if (load_secret) {
  310. int rv = ed25519_seckey_read_from_file(&keypair->seckey,
  311. &got_tag, secret_fname);
  312. if (rv == 0) {
  313. have_secret = 1;
  314. loaded_secret_fname = secret_fname;
  315. tor_assert(got_tag);
  316. } else {
  317. if (errno != ENOENT && norepair) {
  318. tor_log(severity, LD_OR, "Unable to read %s: %s", secret_fname,
  319. strerror(errno));
  320. goto err;
  321. }
  322. }
  323. }
  324. /* Should we try for an encrypted key? */
  325. int have_encrypted_secret_file = 0;
  326. if (!have_secret && try_to_load && encrypt_key) {
  327. int r = read_encrypted_secret_key(&keypair->seckey,
  328. encrypted_secret_fname);
  329. if (r > 0) {
  330. have_secret = 1;
  331. have_encrypted_secret_file = 1;
  332. tor_free(got_tag); /* convince coverity we aren't leaking */
  333. got_tag = tor_strdup(tag);
  334. loaded_secret_fname = encrypted_secret_fname;
  335. } else if (errno != ENOENT && norepair) {
  336. tor_log(severity, LD_OR, "Unable to read %s: %s",
  337. encrypted_secret_fname, strerror(errno));
  338. goto err;
  339. }
  340. } else {
  341. if (try_to_load) {
  342. /* Check if it's there anyway, so we don't replace it. */
  343. if (file_status(encrypted_secret_fname) != FN_NOENT)
  344. have_encrypted_secret_file = 1;
  345. }
  346. }
  347. if (have_secret) {
  348. if (strcmp(got_tag, tag)) {
  349. tor_log(severity, LD_OR, "%s has wrong tag", loaded_secret_fname);
  350. goto err;
  351. }
  352. /* Derive the public key */
  353. if (ed25519_public_key_generate(&keypair->pubkey, &keypair->seckey)<0) {
  354. tor_log(severity, LD_OR, "%s can't produce a public key",
  355. loaded_secret_fname);
  356. goto err;
  357. }
  358. }
  359. /* If we do split keys here, try to read the pubkey. */
  360. int found_public = 0;
  361. if (try_to_load && (!have_secret || split)) {
  362. ed25519_public_key_t pubkey_tmp;
  363. tor_free(got_tag);
  364. found_public = ed25519_pubkey_read_from_file(&pubkey_tmp,
  365. &got_tag, public_fname) == 0;
  366. if (!found_public && errno != ENOENT && norepair) {
  367. tor_log(severity, LD_OR, "Unable to read %s: %s", public_fname,
  368. strerror(errno));
  369. goto err;
  370. }
  371. if (found_public && strcmp(got_tag, tag)) {
  372. tor_log(severity, LD_OR, "%s has wrong tag", public_fname);
  373. goto err;
  374. }
  375. if (found_public) {
  376. if (have_secret) {
  377. /* If we have a secret key and we're reloading the public key,
  378. * the key must match! */
  379. if (! ed25519_pubkey_eq(&keypair->pubkey, &pubkey_tmp)) {
  380. tor_log(severity, LD_OR, "%s does not match %s! If you are trying "
  381. "to restore from backup, make sure you didn't mix up the "
  382. "key files. If you are absolutely sure that %s is the right "
  383. "key for this relay, delete %s or move it out of the way.",
  384. public_fname, loaded_secret_fname,
  385. loaded_secret_fname, public_fname);
  386. goto err;
  387. }
  388. } else {
  389. /* We only have the public key; better use that. */
  390. tor_assert(split);
  391. memcpy(&keypair->pubkey, &pubkey_tmp, sizeof(pubkey_tmp));
  392. }
  393. } else {
  394. /* We have no public key file, but we do have a secret key, make the
  395. * public key file! */
  396. if (have_secret) {
  397. if (ed25519_pubkey_write_to_file(&keypair->pubkey, public_fname, tag)
  398. < 0) {
  399. tor_log(severity, LD_OR, "Couldn't repair %s", public_fname);
  400. goto err;
  401. } else {
  402. tor_log(LOG_NOTICE, LD_OR,
  403. "Found secret key but not %s. Regenerating.",
  404. public_fname);
  405. }
  406. }
  407. }
  408. }
  409. /* If the secret key is absent and it's not allowed to be, fail. */
  410. if (!have_secret && found_public &&
  411. !(flags & INIT_ED_KEY_MISSING_SECRET_OK)) {
  412. if (have_encrypted_secret_file) {
  413. tor_log(severity, LD_OR, "We needed to load a secret key from %s, "
  414. "but it was encrypted. Try 'tor --keygen' instead, so you "
  415. "can enter the passphrase.",
  416. secret_fname);
  417. } else if (offline_secret) {
  418. tor_log(severity, LD_OR, "We wanted to load a secret key from %s, "
  419. "but you're keeping it offline. (OfflineMasterKey is set.)",
  420. secret_fname);
  421. } else {
  422. tor_log(severity, LD_OR, "We needed to load a secret key from %s, "
  423. "but couldn't find it. %s", secret_fname,
  424. (flags & INIT_ED_KEY_SUGGEST_KEYGEN) ?
  425. "If you're keeping your master secret key offline, you will "
  426. "need to run 'tor --keygen' to generate new signing keys." :
  427. "Did you forget to copy it over when you copied the rest of the "
  428. "signing key material?");
  429. }
  430. goto err;
  431. }
  432. /* If it's absent, and we're not supposed to make a new keypair, fail. */
  433. if (!have_secret && !found_public && !(flags & INIT_ED_KEY_CREATE)) {
  434. if (split) {
  435. tor_log(severity, LD_OR, "No key found in %s or %s.",
  436. secret_fname, public_fname);
  437. } else {
  438. tor_log(severity, LD_OR, "No key found in %s.", secret_fname);
  439. }
  440. goto err;
  441. }
  442. /* If the secret key is absent, but the encrypted key would be present,
  443. * that's an error */
  444. if (!have_secret && !found_public && have_encrypted_secret_file) {
  445. tor_assert(!encrypt_key);
  446. tor_log(severity, LD_OR, "Found an encrypted secret key, "
  447. "but not public key file %s!", public_fname);
  448. goto err;
  449. }
  450. /* if it's absent, make a new keypair... */
  451. if (!have_secret && !found_public) {
  452. tor_free(keypair);
  453. keypair = ed_key_new(signing_key, flags, now, lifetime,
  454. cert_type, &cert);
  455. if (!keypair) {
  456. tor_log(severity, LD_OR, "Couldn't create keypair");
  457. goto err;
  458. }
  459. created_pk = created_sk = created_cert = 1;
  460. }
  461. /* Write it to disk if we're supposed to do with a new passphrase, or if
  462. * we just created it. */
  463. if (created_sk || (have_secret && get_options()->change_key_passphrase)) {
  464. if (write_secret_key(&keypair->seckey,
  465. encrypt_key,
  466. secret_fname, tag, encrypted_secret_fname) < 0
  467. ||
  468. (split &&
  469. ed25519_pubkey_write_to_file(&keypair->pubkey, public_fname, tag) < 0)
  470. ||
  471. (cert &&
  472. crypto_write_tagged_contents_to_file(cert_fname, "ed25519v1-cert",
  473. tag, cert->encoded, cert->encoded_len) < 0)) {
  474. tor_log(severity, LD_OR, "Couldn't write keys or cert to file.");
  475. goto err;
  476. }
  477. goto done;
  478. }
  479. /* If we're not supposed to get a cert, we're done. */
  480. if (! (flags & INIT_ED_KEY_NEEDCERT))
  481. goto done;
  482. /* Read a cert. */
  483. tor_free(got_tag);
  484. uint8_t certbuf[256];
  485. ssize_t cert_body_len = crypto_read_tagged_contents_from_file(
  486. cert_fname, "ed25519v1-cert",
  487. &got_tag, certbuf, sizeof(certbuf));
  488. if (cert_body_len >= 0 && !strcmp(got_tag, tag))
  489. cert = tor_cert_parse(certbuf, cert_body_len);
  490. /* If we got it, check it to the extent we can. */
  491. int bad_cert = 0;
  492. if (! cert) {
  493. tor_log(severity, LD_OR, "Cert was unparseable");
  494. bad_cert = 1;
  495. } else if (!tor_memeq(cert->signed_key.pubkey, keypair->pubkey.pubkey,
  496. ED25519_PUBKEY_LEN)) {
  497. tor_log(severity, LD_OR, "Cert was for wrong key");
  498. bad_cert = 1;
  499. } else if (signing_key &&
  500. tor_cert_checksig(cert, &signing_key->pubkey, now) < 0) {
  501. tor_log(severity, LD_OR, "Can't check certificate: %s",
  502. tor_cert_describe_signature_status(cert));
  503. bad_cert = 1;
  504. } else if (cert->cert_expired) {
  505. tor_log(severity, LD_OR, "Certificate is expired");
  506. bad_cert = 1;
  507. } else if (signing_key && cert->signing_key_included &&
  508. ! ed25519_pubkey_eq(&signing_key->pubkey, &cert->signing_key)) {
  509. tor_log(severity, LD_OR, "Certificate signed by unexpectd key!");
  510. bad_cert = 1;
  511. }
  512. if (bad_cert) {
  513. tor_cert_free(cert);
  514. cert = NULL;
  515. }
  516. /* If we got a cert, we're done. */
  517. if (cert)
  518. goto done;
  519. /* If we didn't get a cert, and we're not supposed to make one, fail. */
  520. if (!signing_key || !(flags & INIT_ED_KEY_CREATE)) {
  521. tor_log(severity, LD_OR, "Without signing key, can't create certificate");
  522. goto err;
  523. }
  524. /* We have keys but not a certificate, so make one. */
  525. uint32_t cert_flags = 0;
  526. if (flags & INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT)
  527. cert_flags |= CERT_FLAG_INCLUDE_SIGNING_KEY;
  528. cert = tor_cert_create(signing_key, cert_type,
  529. &keypair->pubkey,
  530. now, lifetime,
  531. cert_flags);
  532. if (! cert) {
  533. tor_log(severity, LD_OR, "Couldn't create certificate");
  534. goto err;
  535. }
  536. /* Write it to disk. */
  537. created_cert = 1;
  538. if (crypto_write_tagged_contents_to_file(cert_fname, "ed25519v1-cert",
  539. tag, cert->encoded, cert->encoded_len) < 0) {
  540. tor_log(severity, LD_OR, "Couldn't write cert to disk.");
  541. goto err;
  542. }
  543. done:
  544. if (cert_out)
  545. *cert_out = cert;
  546. else
  547. tor_cert_free(cert);
  548. goto cleanup;
  549. err:
  550. if (keypair)
  551. memwipe(keypair, 0, sizeof(*keypair));
  552. tor_free(keypair);
  553. tor_cert_free(cert);
  554. if (cert_out)
  555. *cert_out = NULL;
  556. if (created_sk)
  557. unlink(secret_fname);
  558. if (created_pk)
  559. unlink(public_fname);
  560. if (created_cert)
  561. unlink(cert_fname);
  562. cleanup:
  563. tor_free(encrypted_secret_fname);
  564. tor_free(secret_fname);
  565. tor_free(public_fname);
  566. tor_free(cert_fname);
  567. tor_free(got_tag);
  568. return keypair;
  569. }
  570. /**
  571. * Create a new signing key and (optionally) certficiate; do not read or write
  572. * from disk. See ed_key_init_from_file() for more information.
  573. */
  574. ed25519_keypair_t *
  575. ed_key_new(const ed25519_keypair_t *signing_key,
  576. uint32_t flags,
  577. time_t now,
  578. time_t lifetime,
  579. uint8_t cert_type,
  580. struct tor_cert_st **cert_out)
  581. {
  582. if (cert_out)
  583. *cert_out = NULL;
  584. const int extra_strong = !! (flags & INIT_ED_KEY_EXTRA_STRONG);
  585. ed25519_keypair_t *keypair = tor_malloc_zero(sizeof(ed25519_keypair_t));
  586. if (ed25519_keypair_generate(keypair, extra_strong) < 0)
  587. goto err;
  588. if (! (flags & INIT_ED_KEY_NEEDCERT))
  589. return keypair;
  590. tor_assert(signing_key);
  591. tor_assert(cert_out);
  592. uint32_t cert_flags = 0;
  593. if (flags & INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT)
  594. cert_flags |= CERT_FLAG_INCLUDE_SIGNING_KEY;
  595. tor_cert_t *cert = tor_cert_create(signing_key, cert_type,
  596. &keypair->pubkey,
  597. now, lifetime,
  598. cert_flags);
  599. if (! cert)
  600. goto err;
  601. *cert_out = cert;
  602. return keypair;
  603. err:
  604. tor_free(keypair);
  605. return NULL;
  606. }
  607. static ed25519_keypair_t *master_identity_key = NULL;
  608. static ed25519_keypair_t *master_signing_key = NULL;
  609. static ed25519_keypair_t *current_auth_key = NULL;
  610. static tor_cert_t *signing_key_cert = NULL;
  611. static tor_cert_t *link_cert_cert = NULL;
  612. static tor_cert_t *auth_key_cert = NULL;
  613. static uint8_t *rsa_ed_crosscert = NULL;
  614. static size_t rsa_ed_crosscert_len = 0;
  615. static time_t rsa_ed_crosscert_expiration = 0;
  616. /**
  617. * Running as a server: load, reload, or refresh our ed25519 keys and
  618. * certificates, creating and saving new ones as needed.
  619. *
  620. * Return -1 on failure; 0 on success if the signing key was not replaced;
  621. * and 1 on success if the signing key was replaced.
  622. */
  623. int
  624. load_ed_keys(const or_options_t *options, time_t now)
  625. {
  626. ed25519_keypair_t *id = NULL;
  627. ed25519_keypair_t *sign = NULL;
  628. ed25519_keypair_t *auth = NULL;
  629. const ed25519_keypair_t *sign_signing_key_with_id = NULL;
  630. const ed25519_keypair_t *use_signing = NULL;
  631. const tor_cert_t *check_signing_cert = NULL;
  632. tor_cert_t *sign_cert = NULL;
  633. tor_cert_t *auth_cert = NULL;
  634. int signing_key_changed = 0;
  635. // It is later than 1972, since otherwise there would be no C compilers.
  636. // (Try to diagnose #22466.)
  637. tor_assert_nonfatal(now >= 2 * 365 * 86400);
  638. #define FAIL(msg) do { \
  639. log_warn(LD_OR, (msg)); \
  640. goto err; \
  641. } while (0)
  642. #define SET_KEY(key, newval) do { \
  643. if ((key) != (newval)) \
  644. ed25519_keypair_free(key); \
  645. key = (newval); \
  646. } while (0)
  647. #define SET_CERT(cert, newval) do { \
  648. if ((cert) != (newval)) \
  649. tor_cert_free(cert); \
  650. cert = (newval); \
  651. } while (0)
  652. #define HAPPENS_SOON(when, interval) \
  653. ((when) < now + (interval))
  654. #define EXPIRES_SOON(cert, interval) \
  655. (!(cert) || HAPPENS_SOON((cert)->valid_until, (interval)))
  656. /* XXXX support encrypted identity keys fully */
  657. /* First try to get the signing key to see how it is. */
  658. {
  659. char *fname =
  660. options_get_keydir_fname(options, "ed25519_signing");
  661. sign = ed_key_init_from_file(
  662. fname,
  663. INIT_ED_KEY_NEEDCERT|
  664. INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT,
  665. LOG_INFO,
  666. NULL, 0, 0, CERT_TYPE_ID_SIGNING, &sign_cert);
  667. tor_free(fname);
  668. check_signing_cert = sign_cert;
  669. use_signing = sign;
  670. }
  671. if (use_signing) {
  672. /* We loaded a signing key with its certificate. */
  673. if (! master_signing_key) {
  674. /* We didn't know one before! */
  675. signing_key_changed = 1;
  676. } else if (! ed25519_pubkey_eq(&use_signing->pubkey,
  677. &master_signing_key->pubkey) ||
  678. ! tor_memeq(use_signing->seckey.seckey,
  679. master_signing_key->seckey.seckey,
  680. ED25519_SECKEY_LEN)) {
  681. /* We loaded a different signing key than the one we knew before. */
  682. signing_key_changed = 1;
  683. }
  684. }
  685. if (!use_signing && master_signing_key) {
  686. /* We couldn't load a signing key, but we already had one loaded */
  687. check_signing_cert = signing_key_cert;
  688. use_signing = master_signing_key;
  689. }
  690. const int offline_master =
  691. options->OfflineMasterKey && options->command != CMD_KEYGEN;
  692. const int need_new_signing_key =
  693. NULL == use_signing ||
  694. EXPIRES_SOON(check_signing_cert, 0) ||
  695. (options->command == CMD_KEYGEN && ! options->change_key_passphrase);
  696. const int want_new_signing_key =
  697. need_new_signing_key ||
  698. EXPIRES_SOON(check_signing_cert, options->TestingSigningKeySlop);
  699. /* We can only create a master key if we haven't been told that the
  700. * master key will always be offline. Also, if we have a signing key,
  701. * then we shouldn't make a new master ID key. */
  702. const int can_make_master_id_key = !offline_master &&
  703. NULL == use_signing;
  704. if (need_new_signing_key) {
  705. log_notice(LD_OR, "It looks like I need to generate and sign a new "
  706. "medium-term signing key, because %s. To do that, I "
  707. "need to load%s the permanent master identity key. "
  708. "If the master identity key was not moved or encrypted "
  709. "with a passphrase, this will be done automatically and "
  710. "no further action is required. Otherwise, provide the "
  711. "necessary data using 'tor --keygen' to do it manually.",
  712. (NULL == use_signing) ? "I don't have one" :
  713. EXPIRES_SOON(check_signing_cert, 0) ? "the one I have is expired" :
  714. "you asked me to make one with --keygen",
  715. can_make_master_id_key ? " (or create)" : "");
  716. } else if (want_new_signing_key && !offline_master) {
  717. log_notice(LD_OR, "It looks like I should try to generate and sign a "
  718. "new medium-term signing key, because the one I have is "
  719. "going to expire soon. To do that, I'm going to have to "
  720. "try to load the permanent master identity key. "
  721. "If the master identity key was not moved or encrypted "
  722. "with a passphrase, this will be done automatically and "
  723. "no further action is required. Otherwise, provide the "
  724. "necessary data using 'tor --keygen' to do it manually.");
  725. } else if (want_new_signing_key) {
  726. log_notice(LD_OR, "It looks like I should try to generate and sign a "
  727. "new medium-term signing key, because the one I have is "
  728. "going to expire soon. But OfflineMasterKey is set, so I "
  729. "won't try to load a permanent master identity key. You "
  730. "will need to use 'tor --keygen' to make a new signing "
  731. "key and certificate.");
  732. }
  733. {
  734. uint32_t flags =
  735. (INIT_ED_KEY_SPLIT|
  736. INIT_ED_KEY_EXTRA_STRONG|INIT_ED_KEY_NO_REPAIR);
  737. if (can_make_master_id_key)
  738. flags |= INIT_ED_KEY_CREATE;
  739. if (! need_new_signing_key)
  740. flags |= INIT_ED_KEY_MISSING_SECRET_OK;
  741. if (! want_new_signing_key || offline_master)
  742. flags |= INIT_ED_KEY_OMIT_SECRET;
  743. if (offline_master)
  744. flags |= INIT_ED_KEY_OFFLINE_SECRET;
  745. if (options->command == CMD_KEYGEN)
  746. flags |= INIT_ED_KEY_TRY_ENCRYPTED;
  747. /* Check/Create the key directory */
  748. if (create_keys_directory(options) < 0)
  749. return -1;
  750. char *fname;
  751. if (options->master_key_fname) {
  752. fname = tor_strdup(options->master_key_fname);
  753. flags |= INIT_ED_KEY_EXPLICIT_FNAME;
  754. } else {
  755. fname = options_get_keydir_fname(options, "ed25519_master_id");
  756. }
  757. id = ed_key_init_from_file(
  758. fname,
  759. flags,
  760. LOG_WARN, NULL, 0, 0, 0, NULL);
  761. tor_free(fname);
  762. if (!id) {
  763. if (need_new_signing_key) {
  764. if (offline_master)
  765. FAIL("Can't load master identity key; OfflineMasterKey is set.");
  766. else
  767. FAIL("Missing identity key");
  768. } else {
  769. log_warn(LD_OR, "Master public key was absent; inferring from "
  770. "public key in signing certificate and saving to disk.");
  771. tor_assert(check_signing_cert);
  772. id = tor_malloc_zero(sizeof(*id));
  773. memcpy(&id->pubkey, &check_signing_cert->signing_key,
  774. sizeof(ed25519_public_key_t));
  775. fname = options_get_keydir_fname(options,
  776. "ed25519_master_id_public_key");
  777. if (ed25519_pubkey_write_to_file(&id->pubkey, fname, "type0") < 0) {
  778. log_warn(LD_OR, "Error while attempting to write master public key "
  779. "to disk");
  780. tor_free(fname);
  781. goto err;
  782. }
  783. tor_free(fname);
  784. }
  785. }
  786. if (tor_mem_is_zero((char*)id->seckey.seckey, sizeof(id->seckey)))
  787. sign_signing_key_with_id = NULL;
  788. else
  789. sign_signing_key_with_id = id;
  790. }
  791. if (master_identity_key &&
  792. !ed25519_pubkey_eq(&id->pubkey, &master_identity_key->pubkey)) {
  793. FAIL("Identity key on disk does not match key we loaded earlier!");
  794. }
  795. if (need_new_signing_key && NULL == sign_signing_key_with_id)
  796. FAIL("Can't load master key make a new signing key.");
  797. if (sign_cert) {
  798. if (! sign_cert->signing_key_included)
  799. FAIL("Loaded a signing cert with no key included!");
  800. if (! ed25519_pubkey_eq(&sign_cert->signing_key, &id->pubkey))
  801. FAIL("The signing cert we have was not signed with the master key "
  802. "we loaded!");
  803. if (tor_cert_checksig(sign_cert, &id->pubkey, 0) < 0) {
  804. log_warn(LD_OR, "The signing cert we loaded was not signed "
  805. "correctly: %s!",
  806. tor_cert_describe_signature_status(sign_cert));
  807. goto err;
  808. }
  809. }
  810. if (want_new_signing_key && sign_signing_key_with_id) {
  811. uint32_t flags = (INIT_ED_KEY_CREATE|
  812. INIT_ED_KEY_REPLACE|
  813. INIT_ED_KEY_EXTRA_STRONG|
  814. INIT_ED_KEY_NEEDCERT|
  815. INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT);
  816. char *fname =
  817. options_get_keydir_fname(options, "ed25519_signing");
  818. ed25519_keypair_free(sign);
  819. tor_cert_free(sign_cert);
  820. sign = ed_key_init_from_file(fname,
  821. flags, LOG_WARN,
  822. sign_signing_key_with_id, now,
  823. options->SigningKeyLifetime,
  824. CERT_TYPE_ID_SIGNING, &sign_cert);
  825. tor_free(fname);
  826. if (!sign)
  827. FAIL("Missing signing key");
  828. use_signing = sign;
  829. signing_key_changed = 1;
  830. tor_assert(sign_cert->signing_key_included);
  831. tor_assert(ed25519_pubkey_eq(&sign_cert->signing_key, &id->pubkey));
  832. tor_assert(ed25519_pubkey_eq(&sign_cert->signed_key, &sign->pubkey));
  833. } else if (want_new_signing_key) {
  834. static ratelim_t missing_master = RATELIM_INIT(3600);
  835. log_fn_ratelim(&missing_master, LOG_WARN, LD_OR,
  836. "Signing key will expire soon, but I can't load the "
  837. "master key to sign a new one!");
  838. }
  839. tor_assert(use_signing);
  840. /* At this point we no longer need our secret identity key. So wipe
  841. * it, if we loaded it in the first place. */
  842. memwipe(id->seckey.seckey, 0, sizeof(id->seckey));
  843. if (options->command == CMD_KEYGEN)
  844. goto end;
  845. if (server_mode(options) &&
  846. (!rsa_ed_crosscert ||
  847. HAPPENS_SOON(rsa_ed_crosscert_expiration, 30*86400))) {
  848. uint8_t *crosscert;
  849. time_t expiration = now+6*30*86400; /* 6 months in the future. */
  850. ssize_t crosscert_len = tor_make_rsa_ed25519_crosscert(&id->pubkey,
  851. get_server_identity_key(),
  852. expiration,
  853. &crosscert);
  854. tor_free(rsa_ed_crosscert);
  855. rsa_ed_crosscert_len = crosscert_len;
  856. rsa_ed_crosscert = crosscert;
  857. rsa_ed_crosscert_expiration = expiration;
  858. }
  859. if (!current_auth_key ||
  860. signing_key_changed ||
  861. EXPIRES_SOON(auth_key_cert, options->TestingAuthKeySlop)) {
  862. auth = ed_key_new(use_signing, INIT_ED_KEY_NEEDCERT,
  863. now,
  864. options->TestingAuthKeyLifetime,
  865. CERT_TYPE_SIGNING_AUTH, &auth_cert);
  866. if (!auth)
  867. FAIL("Can't create auth key");
  868. }
  869. /* We've generated or loaded everything. Put them in memory. */
  870. end:
  871. if (! master_identity_key) {
  872. SET_KEY(master_identity_key, id);
  873. } else {
  874. tor_free(id);
  875. }
  876. if (sign) {
  877. SET_KEY(master_signing_key, sign);
  878. SET_CERT(signing_key_cert, sign_cert);
  879. }
  880. if (auth) {
  881. SET_KEY(current_auth_key, auth);
  882. SET_CERT(auth_key_cert, auth_cert);
  883. }
  884. return signing_key_changed;
  885. err:
  886. ed25519_keypair_free(id);
  887. ed25519_keypair_free(sign);
  888. ed25519_keypair_free(auth);
  889. tor_cert_free(sign_cert);
  890. tor_cert_free(auth_cert);
  891. return -1;
  892. }
  893. /**
  894. * Retrieve our currently-in-use Ed25519 link certificate and id certificate,
  895. * and, if they would expire soon (based on the time <b>now</b>, generate new
  896. * certificates (without embedding the public part of the signing key inside).
  897. * If <b>force</b> is true, always generate a new certificate.
  898. *
  899. * The signed_key from the current id->signing certificate will be used to
  900. * sign the new key within newly generated X509 certificate.
  901. *
  902. * Returns -1 upon error. Otherwise, returns 0 upon success (either when the
  903. * current certificate is still valid, or when a new certificate was
  904. * successfully generated, or no certificate was needed).
  905. */
  906. int
  907. generate_ed_link_cert(const or_options_t *options, time_t now,
  908. int force)
  909. {
  910. const tor_x509_cert_t *link_ = NULL, *id = NULL;
  911. tor_cert_t *link_cert = NULL;
  912. if (tor_tls_get_my_certs(1, &link_, &id) < 0 || link_ == NULL) {
  913. if (!server_mode(options)) {
  914. /* No need to make an Ed25519->Link cert: we are a client */
  915. return 0;
  916. }
  917. log_warn(LD_OR, "Can't get my x509 link cert.");
  918. return -1;
  919. }
  920. const common_digests_t *digests = tor_x509_cert_get_cert_digests(link_);
  921. if (force == 0 &&
  922. link_cert_cert &&
  923. ! EXPIRES_SOON(link_cert_cert, options->TestingLinkKeySlop) &&
  924. fast_memeq(digests->d[DIGEST_SHA256], link_cert_cert->signed_key.pubkey,
  925. DIGEST256_LEN)) {
  926. return 0;
  927. }
  928. ed25519_public_key_t dummy_key;
  929. memcpy(dummy_key.pubkey, digests->d[DIGEST_SHA256], DIGEST256_LEN);
  930. link_cert = tor_cert_create(get_master_signing_keypair(),
  931. CERT_TYPE_SIGNING_LINK,
  932. &dummy_key,
  933. now,
  934. options->TestingLinkCertLifetime, 0);
  935. if (link_cert) {
  936. SET_CERT(link_cert_cert, link_cert);
  937. }
  938. return 0;
  939. }
  940. #undef FAIL
  941. #undef SET_KEY
  942. #undef SET_CERT
  943. /**
  944. * Return 1 if any of the following are true:
  945. *
  946. * - if one of our Ed25519 signing, auth, or link certificates would expire
  947. * soon w.r.t. the time <b>now</b>,
  948. * - if we do not currently have a link certificate, or
  949. * - if our cached Ed25519 link certificate is not same as the one we're
  950. * currently using.
  951. *
  952. * Otherwise, returns 0.
  953. */
  954. int
  955. should_make_new_ed_keys(const or_options_t *options, const time_t now)
  956. {
  957. if (!master_identity_key ||
  958. !master_signing_key ||
  959. !current_auth_key ||
  960. !link_cert_cert ||
  961. EXPIRES_SOON(signing_key_cert, options->TestingSigningKeySlop) ||
  962. EXPIRES_SOON(auth_key_cert, options->TestingAuthKeySlop) ||
  963. EXPIRES_SOON(link_cert_cert, options->TestingLinkKeySlop))
  964. return 1;
  965. const tor_x509_cert_t *link_ = NULL, *id = NULL;
  966. if (tor_tls_get_my_certs(1, &link_, &id) < 0 || link_ == NULL)
  967. return 1;
  968. const common_digests_t *digests = tor_x509_cert_get_cert_digests(link_);
  969. if (!fast_memeq(digests->d[DIGEST_SHA256],
  970. link_cert_cert->signed_key.pubkey,
  971. DIGEST256_LEN)) {
  972. return 1;
  973. }
  974. return 0;
  975. }
  976. #undef EXPIRES_SOON
  977. #undef HAPPENS_SOON
  978. #ifdef TOR_UNIT_TESTS
  979. /* Helper for unit tests: populate the ed25519 keys without saving or
  980. * loading */
  981. void
  982. init_mock_ed_keys(const crypto_pk_t *rsa_identity_key)
  983. {
  984. routerkeys_free_all();
  985. #define MAKEKEY(k) \
  986. k = tor_malloc_zero(sizeof(*k)); \
  987. if (ed25519_keypair_generate(k, 0) < 0) { \
  988. log_warn(LD_BUG, "Couldn't make a keypair"); \
  989. goto err; \
  990. }
  991. MAKEKEY(master_identity_key);
  992. MAKEKEY(master_signing_key);
  993. MAKEKEY(current_auth_key);
  994. #define MAKECERT(cert, signing, signed_, type, flags) \
  995. cert = tor_cert_create(signing, \
  996. type, \
  997. &signed_->pubkey, \
  998. time(NULL), 86400, \
  999. flags); \
  1000. if (!cert) { \
  1001. log_warn(LD_BUG, "Couldn't make a %s certificate!", #cert); \
  1002. goto err; \
  1003. }
  1004. MAKECERT(signing_key_cert,
  1005. master_identity_key, master_signing_key, CERT_TYPE_ID_SIGNING,
  1006. CERT_FLAG_INCLUDE_SIGNING_KEY);
  1007. MAKECERT(auth_key_cert,
  1008. master_signing_key, current_auth_key, CERT_TYPE_SIGNING_AUTH, 0);
  1009. if (generate_ed_link_cert(get_options(), time(NULL), 0) < 0) {
  1010. log_warn(LD_BUG, "Couldn't make link certificate");
  1011. goto err;
  1012. }
  1013. rsa_ed_crosscert_len = tor_make_rsa_ed25519_crosscert(
  1014. &master_identity_key->pubkey,
  1015. rsa_identity_key,
  1016. time(NULL)+86400,
  1017. &rsa_ed_crosscert);
  1018. return;
  1019. err:
  1020. routerkeys_free_all();
  1021. tor_assert_nonfatal_unreached();
  1022. }
  1023. #undef MAKEKEY
  1024. #undef MAKECERT
  1025. #endif /* defined(TOR_UNIT_TESTS) */
  1026. /**
  1027. * Print the ISO8601-formated <b>expiration</b> for a certificate with
  1028. * some <b>description</b> to stdout.
  1029. *
  1030. * For example, for a signing certificate, this might print out:
  1031. * signing-cert-expiry: 2017-07-25 08:30:15 UTC
  1032. */
  1033. static void
  1034. print_cert_expiration(const char *expiration,
  1035. const char *description)
  1036. {
  1037. fprintf(stderr, "%s-cert-expiry: %s\n", description, expiration);
  1038. }
  1039. /**
  1040. * Log when a certificate, <b>cert</b>, with some <b>description</b> and
  1041. * stored in a file named <b>fname</b>, is going to expire.
  1042. */
  1043. static void
  1044. log_ed_cert_expiration(const tor_cert_t *cert,
  1045. const char *description,
  1046. const char *fname) {
  1047. char expiration[ISO_TIME_LEN+1];
  1048. if (BUG(!cert)) { /* If the specified key hasn't been loaded */
  1049. log_warn(LD_OR, "No %s key loaded; can't get certificate expiration.",
  1050. description);
  1051. } else {
  1052. format_local_iso_time(expiration, cert->valid_until);
  1053. log_notice(LD_OR, "The %s certificate stored in %s is valid until %s.",
  1054. description, fname, expiration);
  1055. print_cert_expiration(expiration, description);
  1056. }
  1057. }
  1058. /**
  1059. * Log when our master signing key certificate expires. Used when tor is given
  1060. * the --key-expiration command-line option.
  1061. *
  1062. * Returns 0 on success and 1 on failure.
  1063. */
  1064. static int
  1065. log_master_signing_key_cert_expiration(const or_options_t *options)
  1066. {
  1067. const tor_cert_t *signing_key;
  1068. char *fn = NULL;
  1069. int failed = 0;
  1070. time_t now = approx_time();
  1071. fn = options_get_keydir_fname(options, "ed25519_signing_cert");
  1072. /* Try to grab our cached copy of the key. */
  1073. signing_key = get_master_signing_key_cert();
  1074. tor_assert(server_identity_key_is_set());
  1075. /* Load our keys from disk, if necessary. */
  1076. if (!signing_key) {
  1077. failed = load_ed_keys(options, now) < 0;
  1078. signing_key = get_master_signing_key_cert();
  1079. }
  1080. /* If we do have a signing key, log the expiration time. */
  1081. if (signing_key) {
  1082. log_ed_cert_expiration(signing_key, "signing", fn);
  1083. } else {
  1084. log_warn(LD_OR, "Could not load signing key certificate from %s, so " \
  1085. "we couldn't learn anything about certificate expiration.", fn);
  1086. }
  1087. tor_free(fn);
  1088. return failed;
  1089. }
  1090. /**
  1091. * Log when a key certificate expires. Used when tor is given the
  1092. * --key-expiration command-line option.
  1093. *
  1094. * If an command argument is given, which should specify the type of
  1095. * key to get expiry information about (currently supported arguments
  1096. * are "sign"), get info about that type of certificate. Otherwise,
  1097. * print info about the supported arguments.
  1098. *
  1099. * Returns 0 on success and -1 on failure.
  1100. */
  1101. int
  1102. log_cert_expiration(void)
  1103. {
  1104. const or_options_t *options = get_options();
  1105. const char *arg = options->command_arg;
  1106. if (!strcmp(arg, "sign")) {
  1107. return log_master_signing_key_cert_expiration(options);
  1108. } else {
  1109. fprintf(stderr, "No valid argument to --key-expiration found!\n");
  1110. fprintf(stderr, "Currently recognised arguments are: 'sign'\n");
  1111. return -1;
  1112. }
  1113. }
  1114. const ed25519_public_key_t *
  1115. get_master_identity_key(void)
  1116. {
  1117. if (!master_identity_key)
  1118. return NULL;
  1119. return &master_identity_key->pubkey;
  1120. }
  1121. /** Return true iff <b>id</b> is our Ed25519 master identity key. */
  1122. int
  1123. router_ed25519_id_is_me(const ed25519_public_key_t *id)
  1124. {
  1125. return id && master_identity_key &&
  1126. ed25519_pubkey_eq(id, &master_identity_key->pubkey);
  1127. }
  1128. #ifdef TOR_UNIT_TESTS
  1129. /* only exists for the unit tests, since otherwise the identity key
  1130. * should be used to sign nothing but the signing key. */
  1131. const ed25519_keypair_t *
  1132. get_master_identity_keypair(void)
  1133. {
  1134. return master_identity_key;
  1135. }
  1136. #endif /* defined(TOR_UNIT_TESTS) */
  1137. const ed25519_keypair_t *
  1138. get_master_signing_keypair(void)
  1139. {
  1140. return master_signing_key;
  1141. }
  1142. const struct tor_cert_st *
  1143. get_master_signing_key_cert(void)
  1144. {
  1145. return signing_key_cert;
  1146. }
  1147. const ed25519_keypair_t *
  1148. get_current_auth_keypair(void)
  1149. {
  1150. return current_auth_key;
  1151. }
  1152. const tor_cert_t *
  1153. get_current_link_cert_cert(void)
  1154. {
  1155. return link_cert_cert;
  1156. }
  1157. const tor_cert_t *
  1158. get_current_auth_key_cert(void)
  1159. {
  1160. return auth_key_cert;
  1161. }
  1162. void
  1163. get_master_rsa_crosscert(const uint8_t **cert_out,
  1164. size_t *size_out)
  1165. {
  1166. *cert_out = rsa_ed_crosscert;
  1167. *size_out = rsa_ed_crosscert_len;
  1168. }
  1169. /** Construct cross-certification for the master identity key with
  1170. * the ntor onion key. Store the sign of the corresponding ed25519 public key
  1171. * in *<b>sign_out</b>. */
  1172. tor_cert_t *
  1173. make_ntor_onion_key_crosscert(const curve25519_keypair_t *onion_key,
  1174. const ed25519_public_key_t *master_id_key, time_t now, time_t lifetime,
  1175. int *sign_out)
  1176. {
  1177. tor_cert_t *cert = NULL;
  1178. ed25519_keypair_t ed_onion_key;
  1179. if (ed25519_keypair_from_curve25519_keypair(&ed_onion_key, sign_out,
  1180. onion_key) < 0)
  1181. goto end;
  1182. cert = tor_cert_create(&ed_onion_key, CERT_TYPE_ONION_ID, master_id_key,
  1183. now, lifetime, 0);
  1184. end:
  1185. memwipe(&ed_onion_key, 0, sizeof(ed_onion_key));
  1186. return cert;
  1187. }
  1188. /** Construct and return an RSA signature for the TAP onion key to
  1189. * cross-certify the RSA and Ed25519 identity keys. Set <b>len_out</b> to its
  1190. * length. */
  1191. uint8_t *
  1192. make_tap_onion_key_crosscert(const crypto_pk_t *onion_key,
  1193. const ed25519_public_key_t *master_id_key,
  1194. const crypto_pk_t *rsa_id_key,
  1195. int *len_out)
  1196. {
  1197. uint8_t signature[PK_BYTES];
  1198. uint8_t signed_data[DIGEST_LEN + ED25519_PUBKEY_LEN];
  1199. *len_out = 0;
  1200. if (crypto_pk_get_digest(rsa_id_key, (char*)signed_data) < 0) {
  1201. return NULL;
  1202. }
  1203. memcpy(signed_data + DIGEST_LEN, master_id_key->pubkey, ED25519_PUBKEY_LEN);
  1204. int r = crypto_pk_private_sign(onion_key,
  1205. (char*)signature, sizeof(signature),
  1206. (const char*)signed_data, sizeof(signed_data));
  1207. if (r < 0)
  1208. return NULL;
  1209. *len_out = r;
  1210. return tor_memdup(signature, r);
  1211. }
  1212. /** Check whether an RSA-TAP cross-certification is correct. Return 0 if it
  1213. * is, -1 if it isn't. */
  1214. MOCK_IMPL(int,
  1215. check_tap_onion_key_crosscert,(const uint8_t *crosscert,
  1216. int crosscert_len,
  1217. const crypto_pk_t *onion_pkey,
  1218. const ed25519_public_key_t *master_id_pkey,
  1219. const uint8_t *rsa_id_digest))
  1220. {
  1221. uint8_t *cc = tor_malloc(crypto_pk_keysize(onion_pkey));
  1222. int cc_len =
  1223. crypto_pk_public_checksig(onion_pkey,
  1224. (char*)cc,
  1225. crypto_pk_keysize(onion_pkey),
  1226. (const char*)crosscert,
  1227. crosscert_len);
  1228. if (cc_len < 0) {
  1229. goto err;
  1230. }
  1231. if (cc_len < DIGEST_LEN + ED25519_PUBKEY_LEN) {
  1232. log_warn(LD_DIR, "Short signature on cross-certification with TAP key");
  1233. goto err;
  1234. }
  1235. if (tor_memneq(cc, rsa_id_digest, DIGEST_LEN) ||
  1236. tor_memneq(cc + DIGEST_LEN, master_id_pkey->pubkey,
  1237. ED25519_PUBKEY_LEN)) {
  1238. log_warn(LD_DIR, "Incorrect cross-certification with TAP key");
  1239. goto err;
  1240. }
  1241. tor_free(cc);
  1242. return 0;
  1243. err:
  1244. tor_free(cc);
  1245. return -1;
  1246. }
  1247. void
  1248. routerkeys_free_all(void)
  1249. {
  1250. ed25519_keypair_free(master_identity_key);
  1251. ed25519_keypair_free(master_signing_key);
  1252. ed25519_keypair_free(current_auth_key);
  1253. tor_cert_free(signing_key_cert);
  1254. tor_cert_free(link_cert_cert);
  1255. tor_cert_free(auth_key_cert);
  1256. tor_free(rsa_ed_crosscert);
  1257. master_identity_key = master_signing_key = NULL;
  1258. current_auth_key = NULL;
  1259. signing_key_cert = link_cert_cert = auth_key_cert = NULL;
  1260. rsa_ed_crosscert = NULL; // redundant
  1261. rsa_ed_crosscert_len = 0;
  1262. }