[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor/master] Handle "keygen" if datadir does not yet exist
commit c2c23d1443ba69d356a11303071e4ea5723ba1b6
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Wed Jun 17 13:51:45 2015 -0400
Handle "keygen" if datadir does not yet exist
---
src/or/routerkeys.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/or/routerkeys.c b/src/or/routerkeys.c
index 277dc6e..f5cae44 100644
--- a/src/or/routerkeys.c
+++ b/src/or/routerkeys.c
@@ -486,8 +486,19 @@ load_ed_keys(const or_options_t *options, time_t now)
if (options->command == CMD_KEYGEN)
flags |= INIT_ED_KEY_TRY_ENCRYPTED;
- char *fname =
- options_get_datadir_fname2(options, "keys", "ed25519_master_id");
+ /* Check the key directory */
+ if (check_private_dir(options->DataDirectory, CPD_CREATE, options->User)) {
+ log_err(LD_OR, "Can't create/check datadirectory %s",
+ options->DataDirectory);
+ goto err;
+ }
+ char *fname = get_datadir_fname("keys");
+ if (check_private_dir(fname, CPD_CREATE, options->User) < 0) {
+ log_err(LD_OR, "Problem creating/checking key directory %s", fname);
+ tor_free(fname);
+ goto err;
+ }
+ fname = options_get_datadir_fname2(options, "keys", "ed25519_master_id");
id = ed_key_init_from_file(
fname,
flags,
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits