1 /* Copyright (c) 2014, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
7 #include "crypto_pwbox.h"
8 #include "routerkeys.h"
11 #define ENC_KEY_HEADER "Boxed Ed25519 key"
12 #define ENC_KEY_TAG "master"
15 do_getpass(const char *prompt
, char *buf
, size_t buflen
,
16 int twice
, const or_options_t
*options
)
18 if (options
->keygen_force_passphrase
== FORCE_PASSPHRASE_OFF
) {
29 if (options
->use_keygen_passphrase_fd
) {
31 fd
= options
->keygen_passphrase_fd
;
32 length
= read_all(fd
, buf
, buflen
-1, 0);
39 const char msg
[] = "One more time:";
40 size_t p2len
= strlen(prompt
) + 1;
41 if (p2len
< sizeof(msg
))
43 prompt2
= tor_malloc(strlen(prompt
)+1);
44 memset(prompt2
, ' ', p2len
);
45 memcpy(prompt2
+ p2len
- sizeof(msg
), msg
, sizeof(msg
));
47 buf2
= tor_malloc_zero(buflen
);
51 length
= tor_getpass(prompt
, buf
, buflen
);
58 ssize_t length2
= tor_getpass(prompt2
, buf2
, buflen
);
60 if (length
!= length2
|| tor_memneq(buf
, buf2
, length
)) {
61 fprintf(stderr
, "That didn't match.\n");
70 memwipe(buf2
, 0, buflen
);
74 if (options
->keygen_force_passphrase
== FORCE_PASSPHRASE_ON
&& length
== 0)
81 read_encrypted_secret_key(ed25519_secret_key_t
*out
,
85 uint8_t *secret
= NULL
;
86 size_t secret_len
= 0;
88 uint8_t encrypted_key
[256];
92 ssize_t encrypted_len
= crypto_read_tagged_contents_from_file(fname
,
96 sizeof(encrypted_key
));
97 if (encrypted_len
< 0) {
99 log_info(LD_OR
, "%s is missing", fname
);
103 if (strcmp(tag
, ENC_KEY_TAG
)) {
104 saved_errno
= EINVAL
;
110 do_getpass("Enter pasphrase for master key:", pwbuf
, sizeof(pwbuf
), 0,
113 saved_errno
= EINVAL
;
116 const int r
= crypto_unpwbox(&secret
, &secret_len
,
117 encrypted_key
, encrypted_len
,
119 if (r
== UNPWBOX_CORRUPTED
) {
120 log_err(LD_OR
, "%s is corrupted.", fname
);
121 saved_errno
= EINVAL
;
123 } else if (r
== UNPWBOX_OKAY
) {
127 /* Otherwise, passphrase is bad, so try again till user does ctrl-c or gets
131 if (secret_len
!= ED25519_SECKEY_LEN
) {
132 log_err(LD_OR
, "%s is corrupted.", fname
);
133 saved_errno
= EINVAL
;
136 memcpy(out
->seckey
, secret
, ED25519_SECKEY_LEN
);
140 memwipe(encrypted_key
, 0, sizeof(encrypted_key
));
141 memwipe(pwbuf
, 0, sizeof(pwbuf
));
144 memwipe(secret
, 0, secret_len
);
153 write_encrypted_secret_key(const ed25519_secret_key_t
*key
,
158 uint8_t *encrypted_key
= NULL
;
159 size_t encrypted_len
= 0;
161 if (do_getpass("Enter new passphrase:", pwbuf0
, sizeof(pwbuf0
), 1,
162 get_options()) < 0) {
163 log_warn(LD_OR
, "NO/failed passphrase");
167 if (strlen(pwbuf0
) == 0) {
168 if (get_options()->keygen_force_passphrase
== FORCE_PASSPHRASE_ON
)
174 if (crypto_pwbox(&encrypted_key
, &encrypted_len
,
175 key
->seckey
, sizeof(key
->seckey
),
176 pwbuf0
, strlen(pwbuf0
), 0) < 0) {
177 log_warn(LD_OR
, "crypto_pwbox failed!?");
180 if (crypto_write_tagged_contents_to_file(fname
,
183 encrypted_key
, encrypted_len
) < 0)
188 memwipe(encrypted_key
, 0, encrypted_len
);
189 tor_free(encrypted_key
);
191 memwipe(pwbuf0
, 0, sizeof(pwbuf0
));
196 write_secret_key(const ed25519_secret_key_t
*key
, int encrypted
,
198 const char *fname_tag
,
199 const char *encrypted_fname
)
202 int r
= write_encrypted_secret_key(key
, encrypted_fname
);
206 /* Try to unlink the unencrypted key, if any existed before */
207 if (strcmp(fname
, encrypted_fname
))
211 /* Unrecoverable failure! */
215 fprintf(stderr
, "Not encrypting the secret key.\n");
217 return ed25519_seckey_write_to_file(key
, fname
, fname_tag
);
221 * Read an ed25519 key and associated certificates from files beginning with
222 * <b>fname</b>, with certificate type <b>cert_type</b>. On failure, return
223 * NULL; on success return the keypair.
225 * If INIT_ED_KEY_CREATE is set in <b>flags</b>, then create the key (and
226 * certificate if requested) if it doesn't exist, and save it to disk.
228 * If INIT_ED_KEY_NEEDCERT is set in <b>flags</b>, load/create a certificate
229 * too and store it in *<b>cert_out</b>. Fail if the cert can't be
230 * found/created. To create a certificate, <b>signing_key</b> must be set to
231 * the key that should sign it; <b>now</b> to the current time, and
232 * <b>lifetime</b> to the lifetime of the key.
234 * If INIT_ED_KEY_REPLACE is set in <b>flags</b>, then create and save new key
235 * whether we can read the old one or not.
237 * If INIT_ED_KEY_EXTRA_STRONG is set in <b>flags</b>, set the extra_strong
238 * flag when creating the secret key.
240 * If INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT is set in <b>flags</b>, and
241 * we create a new certificate, create it with the signing key embedded.
243 * If INIT_ED_KEY_SPLIT is set in <b>flags</b>, and we create a new key,
244 * store the public key in a separate file from the secret key.
246 * If INIT_ED_KEY_MISSING_SECRET_OK is set in <b>flags</b>, and we find a
247 * public key file but no secret key file, return successfully anyway.
249 * If INIT_ED_KEY_OMIT_SECRET is set in <b>flags</b>, do not try to load a
250 * secret key unless no public key is found. Do not return a secret key. (but
251 * create and save one if needed).
253 * If INIT_ED_KEY_NO_LOAD_SECRET is set in <b>flags</b>, don't try to load
254 * a secret key, no matter what.
256 * If INIT_ED_KEY_TRY_ENCRYPTED is set, we look for an encrypted secret key
257 * and consider encrypting any new secret key.
259 * If INIT_ED_KEY_NO_REPAIR is set, and there is any issue loading the keys
260 * from disk _other than their absence_ (full or partial), we do not try to
263 * If INIT_ED_KEY_SUGGEST_KEYGEN is set, have log messages about failures
264 * refer to the --keygen option.
266 * If INIT_ED_KEY_EXPLICIT_FNAME is set, use the provided file name for the
267 * secret key file, encrypted or not.
270 ed_key_init_from_file(const char *fname
, uint32_t flags
,
272 const ed25519_keypair_t
*signing_key
,
276 struct tor_cert_st
**cert_out
)
278 char *secret_fname
= NULL
;
279 char *encrypted_secret_fname
= NULL
;
280 char *public_fname
= NULL
;
281 char *cert_fname
= NULL
;
282 const char *loaded_secret_fname
= NULL
;
283 int created_pk
= 0, created_sk
= 0, created_cert
= 0;
284 const int try_to_load
= ! (flags
& INIT_ED_KEY_REPLACE
);
285 const int encrypt_key
= !! (flags
& INIT_ED_KEY_TRY_ENCRYPTED
);
286 const int norepair
= !! (flags
& INIT_ED_KEY_NO_REPAIR
);
287 const int split
= !! (flags
& INIT_ED_KEY_SPLIT
);
288 const int omit_secret
= !! (flags
& INIT_ED_KEY_OMIT_SECRET
);
289 const int offline_secret
= !! (flags
& INIT_ED_KEY_OFFLINE_SECRET
);
290 const int explicit_fname
= !! (flags
& INIT_ED_KEY_EXPLICIT_FNAME
);
292 /* we don't support setting both of these flags at once. */
293 tor_assert((flags
& (INIT_ED_KEY_NO_REPAIR
|INIT_ED_KEY_NEEDCERT
)) !=
294 (INIT_ED_KEY_NO_REPAIR
|INIT_ED_KEY_NEEDCERT
));
297 tor_snprintf(tag
, sizeof(tag
), "type%d", (int)cert_type
);
299 tor_cert_t
*cert
= NULL
;
300 char *got_tag
= NULL
;
301 ed25519_keypair_t
*keypair
= tor_malloc_zero(sizeof(ed25519_keypair_t
));
303 if (explicit_fname
) {
304 secret_fname
= tor_strdup(fname
);
305 encrypted_secret_fname
= tor_strdup(fname
);
307 tor_asprintf(&secret_fname
, "%s_secret_key", fname
);
308 tor_asprintf(&encrypted_secret_fname
, "%s_secret_key_encrypted", fname
);
310 tor_asprintf(&public_fname
, "%s_public_key", fname
);
311 tor_asprintf(&cert_fname
, "%s_cert", fname
);
313 /* Try to read the secret key. */
315 int load_secret
= try_to_load
&&
317 (!omit_secret
|| file_status(public_fname
)==FN_NOENT
);
319 int rv
= ed25519_seckey_read_from_file(&keypair
->seckey
,
320 &got_tag
, secret_fname
);
323 loaded_secret_fname
= secret_fname
;
326 if (errno
!= ENOENT
&& norepair
) {
327 tor_log(severity
, LD_OR
, "Unable to read %s: %s", secret_fname
,
334 /* Should we try for an encrypted key? */
335 int have_encrypted_secret_file
= 0;
336 if (!have_secret
&& try_to_load
&& encrypt_key
) {
337 int r
= read_encrypted_secret_key(&keypair
->seckey
,
338 encrypted_secret_fname
);
341 have_encrypted_secret_file
= 1;
342 tor_free(got_tag
); /* convince coverity we aren't leaking */
343 got_tag
= tor_strdup(tag
);
344 loaded_secret_fname
= encrypted_secret_fname
;
345 } else if (errno
!= ENOENT
&& norepair
) {
346 tor_log(severity
, LD_OR
, "Unable to read %s: %s",
347 encrypted_secret_fname
, strerror(errno
));
352 /* Check if it's there anyway, so we don't replace it. */
353 if (file_status(encrypted_secret_fname
) != FN_NOENT
)
354 have_encrypted_secret_file
= 1;
359 if (strcmp(got_tag
, tag
)) {
360 tor_log(severity
, LD_OR
, "%s has wrong tag", loaded_secret_fname
);
363 /* Derive the public key */
364 if (ed25519_public_key_generate(&keypair
->pubkey
, &keypair
->seckey
)<0) {
365 tor_log(severity
, LD_OR
, "%s can't produce a public key",
366 loaded_secret_fname
);
371 /* If we do split keys here, try to read the pubkey. */
372 int found_public
= 0;
373 if (try_to_load
&& (!have_secret
|| split
)) {
374 ed25519_public_key_t pubkey_tmp
;
376 found_public
= ed25519_pubkey_read_from_file(&pubkey_tmp
,
377 &got_tag
, public_fname
) == 0;
378 if (!found_public
&& errno
!= ENOENT
&& norepair
) {
379 tor_log(severity
, LD_OR
, "Unable to read %s: %s", public_fname
,
383 if (found_public
&& strcmp(got_tag
, tag
)) {
384 tor_log(severity
, LD_OR
, "%s has wrong tag", public_fname
);
389 /* If we have a secret key and we're reloading the public key,
390 * the key must match! */
391 if (! ed25519_pubkey_eq(&keypair
->pubkey
, &pubkey_tmp
)) {
392 tor_log(severity
, LD_OR
, "%s does not match %s! If you are trying "
393 "to restore from backup, make sure you didn't mix up the "
394 "key files. If you are absolutely sure that %s is the right "
395 "key for this relay, delete %s or move it out of the way.",
396 public_fname
, loaded_secret_fname
,
397 loaded_secret_fname
, public_fname
);
401 /* We only have the public key; better use that. */
403 memcpy(&keypair
->pubkey
, &pubkey_tmp
, sizeof(pubkey_tmp
));
406 /* We have no public key file, but we do have a secret key, make the
407 * public key file! */
409 if (ed25519_pubkey_write_to_file(&keypair
->pubkey
, public_fname
, tag
)
411 tor_log(severity
, LD_OR
, "Couldn't repair %s", public_fname
);
414 tor_log(LOG_NOTICE
, LD_OR
,
415 "Found secret key but not %s. Regenerating.",
422 /* If the secret key is absent and it's not allowed to be, fail. */
423 if (!have_secret
&& found_public
&&
424 !(flags
& INIT_ED_KEY_MISSING_SECRET_OK
)) {
425 if (have_encrypted_secret_file
) {
426 tor_log(severity
, LD_OR
, "We needed to load a secret key from %s, "
427 "but it was encrypted. Try 'tor --keygen' instead, so you "
428 "can enter the passphrase.",
431 tor_log(severity
, LD_OR
, "We needed to load a secret key from %s, "
432 "but couldn't find it. %s", secret_fname
,
433 (flags
& INIT_ED_KEY_SUGGEST_KEYGEN
) ?
434 "If you're keeping your master secret key offline, you will "
435 "need to run 'tor --keygen' to generate new signing keys." :
436 "Did you forget to copy it over when you copied the rest of the "
437 "signing key material?");
442 /* If it's absent, and we're not supposed to make a new keypair, fail. */
443 if (!have_secret
&& !found_public
&& !(flags
& INIT_ED_KEY_CREATE
)) {
445 tor_log(severity
, LD_OR
, "No key found in %s or %s.",
446 secret_fname
, public_fname
);
448 tor_log(severity
, LD_OR
, "No key found in %s.", secret_fname
);
453 /* If the secret key is absent, but the encrypted key would be present,
455 if (!have_secret
&& !found_public
&& have_encrypted_secret_file
) {
456 tor_assert(!encrypt_key
);
457 tor_log(severity
, LD_OR
, "Found an encrypted secret key, "
458 "but not public key file %s!", public_fname
);
462 /* if it's absent, make a new keypair... */
463 if (!have_secret
&& !found_public
) {
465 keypair
= ed_key_new(signing_key
, flags
, now
, lifetime
,
468 tor_log(severity
, LD_OR
, "Couldn't create keypair");
471 created_pk
= created_sk
= created_cert
= 1;
474 /* Write it to disk if we're supposed to do with a new passphrase, or if
475 * we just created it. */
476 if (created_sk
|| (have_secret
&& get_options()->change_key_passphrase
)) {
477 if (write_secret_key(&keypair
->seckey
,
479 secret_fname
, tag
, encrypted_secret_fname
) < 0
482 ed25519_pubkey_write_to_file(&keypair
->pubkey
, public_fname
, tag
) < 0)
485 crypto_write_tagged_contents_to_file(cert_fname
, "ed25519v1-cert",
486 tag
, cert
->encoded
, cert
->encoded_len
) < 0)) {
487 tor_log(severity
, LD_OR
, "Couldn't write keys or cert to file.");
493 /* If we're not supposed to get a cert, we're done. */
494 if (! (flags
& INIT_ED_KEY_NEEDCERT
))
499 uint8_t certbuf
[256];
500 ssize_t cert_body_len
= crypto_read_tagged_contents_from_file(
501 cert_fname
, "ed25519v1-cert",
502 &got_tag
, certbuf
, sizeof(certbuf
));
503 if (cert_body_len
>= 0 && !strcmp(got_tag
, tag
))
504 cert
= tor_cert_parse(certbuf
, cert_body_len
);
506 /* If we got it, check it to the extent we can. */
510 tor_log(severity
, LD_OR
, "Cert was unparseable");
512 } else if (!tor_memeq(cert
->signed_key
.pubkey
, keypair
->pubkey
.pubkey
,
513 ED25519_PUBKEY_LEN
)) {
514 tor_log(severity
, LD_OR
, "Cert was for wrong key");
516 } else if (signing_key
&&
517 tor_cert_checksig(cert
, &signing_key
->pubkey
, now
) < 0) {
518 tor_log(severity
, LD_OR
, "Can't check certificate");
520 } else if (cert
->cert_expired
) {
521 tor_log(severity
, LD_OR
, "Certificate is expired");
523 } else if (signing_key
&& cert
->signing_key_included
&&
524 ! ed25519_pubkey_eq(&signing_key
->pubkey
, &cert
->signing_key
)) {
525 tor_log(severity
, LD_OR
, "Certificate signed by unexpectd key!");
534 /* If we got a cert, we're done. */
538 /* If we didn't get a cert, and we're not supposed to make one, fail. */
539 if (!signing_key
|| !(flags
& INIT_ED_KEY_CREATE
)) {
540 tor_log(severity
, LD_OR
, "Without signing key, can't create certificate");
544 /* We have keys but not a certificate, so make one. */
545 uint32_t cert_flags
= 0;
546 if (flags
& INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT
)
547 cert_flags
|= CERT_FLAG_INCLUDE_SIGNING_KEY
;
548 cert
= tor_cert_create(signing_key
, cert_type
,
554 tor_log(severity
, LD_OR
, "Couldn't create certificate");
558 /* Write it to disk. */
560 if (crypto_write_tagged_contents_to_file(cert_fname
, "ed25519v1-cert",
561 tag
, cert
->encoded
, cert
->encoded_len
) < 0) {
562 tor_log(severity
, LD_OR
, "Couldn't write cert to disk.");
576 memwipe(keypair
, 0, sizeof(*keypair
));
582 unlink(secret_fname
);
584 unlink(public_fname
);
589 tor_free(encrypted_secret_fname
);
590 tor_free(secret_fname
);
591 tor_free(public_fname
);
592 tor_free(cert_fname
);
599 * Create a new signing key and (optionally) certficiate; do not read or write
600 * from disk. See ed_key_init_from_file() for more information.
603 ed_key_new(const ed25519_keypair_t
*signing_key
,
608 struct tor_cert_st
**cert_out
)
613 const int extra_strong
= !! (flags
& INIT_ED_KEY_EXTRA_STRONG
);
614 ed25519_keypair_t
*keypair
= tor_malloc_zero(sizeof(ed25519_keypair_t
));
615 if (ed25519_keypair_generate(keypair
, extra_strong
) < 0)
618 if (! (flags
& INIT_ED_KEY_NEEDCERT
))
621 tor_assert(signing_key
);
622 tor_assert(cert_out
);
623 uint32_t cert_flags
= 0;
624 if (flags
& INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT
)
625 cert_flags
|= CERT_FLAG_INCLUDE_SIGNING_KEY
;
626 tor_cert_t
*cert
= tor_cert_create(signing_key
, cert_type
,
641 static ed25519_keypair_t
*master_identity_key
= NULL
;
642 static ed25519_keypair_t
*master_signing_key
= NULL
;
643 static ed25519_keypair_t
*current_auth_key
= NULL
;
644 static tor_cert_t
*signing_key_cert
= NULL
;
645 static tor_cert_t
*link_cert_cert
= NULL
;
646 static tor_cert_t
*auth_key_cert
= NULL
;
648 static uint8_t *rsa_ed_crosscert
= NULL
;
649 static size_t rsa_ed_crosscert_len
= 0;
652 * Running as a server: load, reload, or refresh our ed25519 keys and
653 * certificates, creating and saving new ones as needed.
656 load_ed_keys(const or_options_t
*options
, time_t now
)
658 ed25519_keypair_t
*id
= NULL
;
659 ed25519_keypair_t
*sign
= NULL
;
660 ed25519_keypair_t
*auth
= NULL
;
661 const ed25519_keypair_t
*sign_signing_key_with_id
= NULL
;
662 const ed25519_keypair_t
*use_signing
= NULL
;
663 const tor_cert_t
*check_signing_cert
= NULL
;
664 tor_cert_t
*sign_cert
= NULL
;
665 tor_cert_t
*auth_cert
= NULL
;
667 #define FAIL(msg) do { \
668 log_warn(LD_OR, (msg)); \
671 #define SET_KEY(key, newval) do { \
672 if ((key) != (newval)) \
673 ed25519_keypair_free(key); \
676 #define SET_CERT(cert, newval) do { \
677 if ((cert) != (newval)) \
678 tor_cert_free(cert); \
681 #define EXPIRES_SOON(cert, interval) \
682 (!(cert) || (cert)->valid_until < now + (interval))
684 /* XXXX support encrypted identity keys fully */
686 /* First try to get the signing key to see how it is. */
689 options_get_datadir_fname2(options
, "keys", "ed25519_signing");
690 sign
= ed_key_init_from_file(
692 INIT_ED_KEY_NEEDCERT
|
693 INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT
,
695 NULL
, 0, 0, CERT_TYPE_ID_SIGNING
, &sign_cert
);
697 check_signing_cert
= sign_cert
;
701 if (!use_signing
&& master_signing_key
) {
702 check_signing_cert
= signing_key_cert
;
703 use_signing
= master_signing_key
;
706 const int offline_master
=
707 options
->OfflineMasterKey
&& options
->command
!= CMD_KEYGEN
;
708 const int need_new_signing_key
=
709 NULL
== use_signing
||
710 EXPIRES_SOON(check_signing_cert
, 0) ||
711 (options
->command
== CMD_KEYGEN
&& ! options
->change_key_passphrase
);
712 const int want_new_signing_key
=
713 need_new_signing_key
||
714 EXPIRES_SOON(check_signing_cert
, options
->TestingSigningKeySlop
);
716 /* We can only create a master key if we haven't been told that the
717 * master key will always be offline. Also, if we have a signing key,
718 * then we shouldn't make a new master ID key. */
719 const int can_make_master_id_key
= !offline_master
&&
722 if (need_new_signing_key
) {
723 log_notice(LD_OR
, "It looks like I need to generate and sign a new "
724 "medium-term signing key, because %s. To do that, I need to "
725 "load%s the permanent master identity key.",
726 (NULL
== use_signing
) ? "I don't have one" :
727 EXPIRES_SOON(check_signing_cert
, 0) ? "the one I have is expired" :
728 "you asked me to make one with --keygen",
729 can_make_master_id_key
? " (or create)" : "");
730 } else if (want_new_signing_key
&& !offline_master
) {
731 log_notice(LD_OR
, "It looks like I should try to generate and sign a "
732 "new medium-term signing key, because the one I have is "
733 "going to expire soon. To do that, I'm going to have to try to "
734 "load the permanent master identity key.");
735 } else if (want_new_signing_key
) {
736 log_notice(LD_OR
, "It looks like I should try to generate and sign a "
737 "new medium-term signing key, because the one I have is "
738 "going to expire soon. But OfflineMasterKey is set, so I "
739 "won't try to load a permanent master identity key is set. "
740 "You will need to use 'tor --keygen' make a new signing key "
747 INIT_ED_KEY_EXTRA_STRONG
|INIT_ED_KEY_NO_REPAIR
);
748 if (can_make_master_id_key
)
749 flags
|= INIT_ED_KEY_CREATE
;
750 if (! need_new_signing_key
)
751 flags
|= INIT_ED_KEY_MISSING_SECRET_OK
;
752 if (! want_new_signing_key
|| offline_master
)
753 flags
|= INIT_ED_KEY_OMIT_SECRET
;
755 flags
|= INIT_ED_KEY_OFFLINE_SECRET
;
756 if (options
->command
== CMD_KEYGEN
)
757 flags
|= INIT_ED_KEY_TRY_ENCRYPTED
;
759 /* Check the key directory */
760 if (check_private_dir(options
->DataDirectory
, CPD_CREATE
, options
->User
)) {
761 log_err(LD_OR
, "Can't create/check datadirectory %s",
762 options
->DataDirectory
);
765 char *fname
= get_datadir_fname("keys");
766 if (check_private_dir(fname
, CPD_CREATE
, options
->User
) < 0) {
767 log_err(LD_OR
, "Problem creating/checking key directory %s", fname
);
772 if (options
->master_key_fname
) {
773 fname
= tor_strdup(options
->master_key_fname
);
774 flags
|= INIT_ED_KEY_EXPLICIT_FNAME
;
776 fname
= options_get_datadir_fname2(options
, "keys", "ed25519_master_id");
778 id
= ed_key_init_from_file(
781 LOG_WARN
, NULL
, 0, 0, 0, NULL
);
784 if (need_new_signing_key
) {
786 FAIL("Can't load master identity key; OfflineMasterKey is set.");
788 FAIL("Missing identity key");
790 log_warn(LD_OR
, "Master public key was absent; inferring from "
791 "public key in signing certificate and saving to disk.");
792 tor_assert(check_signing_cert
);
793 id
= tor_malloc_zero(sizeof(*id
));
794 memcpy(&id
->pubkey
, &check_signing_cert
->signing_key
,
795 sizeof(ed25519_public_key_t
));
796 fname
= options_get_datadir_fname2(options
, "keys",
797 "ed25519_master_id_public_key");
798 if (ed25519_pubkey_write_to_file(&id
->pubkey
, fname
, "type0") < 0) {
799 log_warn(LD_OR
, "Error while attempting to write master public key "
807 if (tor_mem_is_zero((char*)id
->seckey
.seckey
, sizeof(id
->seckey
)))
808 sign_signing_key_with_id
= NULL
;
810 sign_signing_key_with_id
= id
;
813 if (master_identity_key
&&
814 !ed25519_pubkey_eq(&id
->pubkey
, &master_identity_key
->pubkey
)) {
815 FAIL("Identity key on disk does not match key we loaded earlier!");
818 if (need_new_signing_key
&& NULL
== sign_signing_key_with_id
)
819 FAIL("Can't load master key make a new signing key.");
822 if (! sign_cert
->signing_key_included
)
823 FAIL("Loaded a signing cert with no key included!");
824 if (! ed25519_pubkey_eq(&sign_cert
->signing_key
, &id
->pubkey
))
825 FAIL("The signing cert we have was not signed with the master key "
827 if (tor_cert_checksig(sign_cert
, &id
->pubkey
, 0) < 0)
828 FAIL("The signing cert we loaded was not signed correctly!");
831 if (want_new_signing_key
&& sign_signing_key_with_id
) {
832 uint32_t flags
= (INIT_ED_KEY_CREATE
|
834 INIT_ED_KEY_EXTRA_STRONG
|
835 INIT_ED_KEY_NEEDCERT
|
836 INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT
);
838 options_get_datadir_fname2(options
, "keys", "ed25519_signing");
839 sign
= ed_key_init_from_file(fname
,
841 sign_signing_key_with_id
, now
,
842 options
->SigningKeyLifetime
,
843 CERT_TYPE_ID_SIGNING
, &sign_cert
);
846 FAIL("Missing signing key");
849 tor_assert(sign_cert
->signing_key_included
);
850 tor_assert(ed25519_pubkey_eq(&sign_cert
->signing_key
, &id
->pubkey
));
851 tor_assert(ed25519_pubkey_eq(&sign_cert
->signed_key
, &sign
->pubkey
));
852 } else if (want_new_signing_key
) {
853 static ratelim_t missing_master
= RATELIM_INIT(3600);
854 log_fn_ratelim(&missing_master
, LOG_WARN
, LD_OR
,
855 "Signing key will expire soon, but I can't load the "
856 "master key to sign a new one!");
859 tor_assert(use_signing
);
861 /* At this point we no longer need our secret identity key. So wipe
862 * it, if we loaded it in the first place. */
863 memwipe(id
->seckey
.seckey
, 0, sizeof(id
->seckey
));
865 if (options
->command
== CMD_KEYGEN
)
868 if (!rsa_ed_crosscert
&& server_mode(options
)) {
870 ssize_t crosscert_len
= tor_make_rsa_ed25519_crosscert(&id
->pubkey
,
871 get_server_identity_key(),
872 now
+10*365*86400,/*XXXX*/
874 rsa_ed_crosscert_len
= crosscert_len
;
875 rsa_ed_crosscert
= crosscert
;
878 if (!current_auth_key
||
879 EXPIRES_SOON(auth_key_cert
, options
->TestingAuthKeySlop
)) {
880 auth
= ed_key_new(use_signing
, INIT_ED_KEY_NEEDCERT
,
882 options
->TestingAuthKeyLifetime
,
883 CERT_TYPE_SIGNING_AUTH
, &auth_cert
);
886 FAIL("Can't create auth key");
889 /* We've generated or loaded everything. Put them in memory. */
892 if (! master_identity_key
) {
893 SET_KEY(master_identity_key
, id
);
898 SET_KEY(master_signing_key
, sign
);
899 SET_CERT(signing_key_cert
, sign_cert
);
902 SET_KEY(current_auth_key
, auth
);
903 SET_CERT(auth_key_cert
, auth_cert
);
908 ed25519_keypair_free(id
);
909 ed25519_keypair_free(sign
);
910 ed25519_keypair_free(auth
);
911 tor_cert_free(sign_cert
);
912 tor_cert_free(auth_cert
);
918 generate_ed_link_cert(const or_options_t
*options
, time_t now
)
920 const tor_x509_cert_t
*link
= NULL
, *id
= NULL
;
921 tor_cert_t
*link_cert
= NULL
;
923 if (tor_tls_get_my_certs(1, &link
, &id
) < 0 || link
== NULL
) {
924 log_warn(LD_OR
, "Can't get my x509 link cert.");
928 const digests_t
*digests
= tor_x509_cert_get_cert_digests(link
);
930 if (link_cert_cert
&&
931 ! EXPIRES_SOON(link_cert_cert
, options
->TestingLinkKeySlop
) &&
932 fast_memeq(digests
->d
[DIGEST_SHA256
], link_cert_cert
->signed_key
.pubkey
,
937 ed25519_public_key_t dummy_key
;
938 memcpy(dummy_key
.pubkey
, digests
->d
[DIGEST_SHA256
], DIGEST256_LEN
);
940 link_cert
= tor_cert_create(get_master_signing_keypair(),
941 CERT_TYPE_SIGNING_LINK
,
944 options
->TestingLinkCertLifetime
, 0);
947 SET_CERT(link_cert_cert
, link_cert
);
957 should_make_new_ed_keys(const or_options_t
*options
, const time_t now
)
959 if (!master_identity_key
||
960 !master_signing_key
||
963 EXPIRES_SOON(signing_key_cert
, options
->TestingSigningKeySlop
) ||
964 EXPIRES_SOON(auth_key_cert
, options
->TestingAuthKeySlop
) ||
965 EXPIRES_SOON(link_cert_cert
, options
->TestingLinkKeySlop
))
968 const tor_x509_cert_t
*link
= NULL
, *id
= NULL
;
970 if (tor_tls_get_my_certs(1, &link
, &id
) < 0 || link
== NULL
)
973 const digests_t
*digests
= tor_x509_cert_get_cert_digests(link
);
975 if (!fast_memeq(digests
->d
[DIGEST_SHA256
],
976 link_cert_cert
->signed_key
.pubkey
,
986 const ed25519_public_key_t
*
987 get_master_identity_key(void)
989 if (!master_identity_key
)
991 return &master_identity_key
->pubkey
;
994 const ed25519_keypair_t
*
995 get_master_signing_keypair(void)
997 return master_signing_key
;
1000 const struct tor_cert_st
*
1001 get_master_signing_key_cert(void)
1003 return signing_key_cert
;
1006 const ed25519_keypair_t
*
1007 get_current_auth_keypair(void)
1009 return current_auth_key
;
1013 get_current_link_cert_cert(void)
1015 return link_cert_cert
;
1019 get_current_auth_key_cert(void)
1021 return auth_key_cert
;
1025 get_master_rsa_crosscert(const uint8_t **cert_out
,
1028 *cert_out
= rsa_ed_crosscert
;
1029 *size_out
= rsa_ed_crosscert_len
;
1032 /** Construct cross-certification for the master identity key with
1033 * the ntor onion key. Store the sign of the corresponding ed25519 public key
1034 * in *<b>sign_out</b>. */
1036 make_ntor_onion_key_crosscert(const curve25519_keypair_t
*onion_key
,
1037 const ed25519_public_key_t
*master_id_key
, time_t now
, time_t lifetime
,
1040 tor_cert_t
*cert
= NULL
;
1041 ed25519_keypair_t ed_onion_key
;
1043 if (ed25519_keypair_from_curve25519_keypair(&ed_onion_key
, sign_out
,
1047 cert
= tor_cert_create(&ed_onion_key
, CERT_TYPE_ONION_ID
, master_id_key
,
1051 memwipe(&ed_onion_key
, 0, sizeof(ed_onion_key
));
1055 /** Construct and return an RSA signature for the TAP onion key to
1056 * cross-certify the RSA and Ed25519 identity keys. Set <b>len_out</b> to its
1059 make_tap_onion_key_crosscert(const crypto_pk_t
*onion_key
,
1060 const ed25519_public_key_t
*master_id_key
,
1061 const crypto_pk_t
*rsa_id_key
,
1064 uint8_t signature
[PK_BYTES
];
1065 uint8_t signed_data
[DIGEST_LEN
+ ED25519_PUBKEY_LEN
];
1068 crypto_pk_get_digest(rsa_id_key
, (char*)signed_data
);
1069 memcpy(signed_data
+ DIGEST_LEN
, master_id_key
->pubkey
, ED25519_PUBKEY_LEN
);
1071 int r
= crypto_pk_private_sign(onion_key
,
1072 (char*)signature
, sizeof(signature
),
1073 (const char*)signed_data
, sizeof(signed_data
));
1079 return tor_memdup(signature
, r
);
1082 /** Check whether an RSA-TAP cross-certification is correct. Return 0 if it
1083 * is, -1 if it isn't. */
1085 check_tap_onion_key_crosscert(const uint8_t *crosscert
,
1087 const crypto_pk_t
*onion_pkey
,
1088 const ed25519_public_key_t
*master_id_pkey
,
1089 const uint8_t *rsa_id_digest
)
1091 uint8_t *cc
= tor_malloc(crypto_pk_keysize(onion_pkey
));
1093 crypto_pk_public_checksig(onion_pkey
,
1095 crypto_pk_keysize(onion_pkey
),
1096 (const char*)crosscert
,
1101 if (cc_len
< DIGEST_LEN
+ ED25519_PUBKEY_LEN
) {
1102 log_warn(LD_DIR
, "Short signature on cross-certification with TAP key");
1105 if (tor_memneq(cc
, rsa_id_digest
, DIGEST_LEN
) ||
1106 tor_memneq(cc
+ DIGEST_LEN
, master_id_pkey
->pubkey
,
1107 ED25519_PUBKEY_LEN
)) {
1108 log_warn(LD_DIR
, "Incorrect cross-certification with TAP key");
1120 routerkeys_free_all(void)
1122 ed25519_keypair_free(master_identity_key
);
1123 ed25519_keypair_free(master_signing_key
);
1124 ed25519_keypair_free(current_auth_key
);
1125 tor_cert_free(signing_key_cert
);
1126 tor_cert_free(link_cert_cert
);
1127 tor_cert_free(auth_key_cert
);
1129 master_identity_key
= master_signing_key
= NULL
;
1130 current_auth_key
= NULL
;
1131 signing_key_cert
= link_cert_cert
= auth_key_cert
= NULL
;