1999-09-10 19:52:56 +00:00
|
|
|
/*
|
2018-03-15 18:32:45 -07:00
|
|
|
* Portions Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2007-06-18 23:47:57 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2007-06-18 23:47:57 +00:00
|
|
|
*
|
2018-02-23 09:53:12 +01:00
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
|
|
|
*
|
|
|
|
* Portions Copyright (C) Network Associates, Inc.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2007-08-28 07:20:43 +00:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
1999-09-10 19:52:56 +00:00
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2004-03-05 05:14:21 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NETWORK ASSOCIATES DISCLAIMS
|
|
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE
|
|
|
|
* FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
1999-09-10 19:52:56 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
/*! \file */
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2009-07-19 04:18:05 +00:00
|
|
|
#include <ctype.h>
|
2018-03-28 14:19:37 +02:00
|
|
|
#include <inttypes.h>
|
2018-04-17 08:29:14 -07:00
|
|
|
#include <stdbool.h>
|
1999-09-10 19:52:56 +00:00
|
|
|
#include <stdlib.h>
|
2009-10-28 00:27:10 +00:00
|
|
|
#include <unistd.h>
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2000-05-15 21:06:41 +00:00
|
|
|
#include <isc/buffer.h>
|
1999-10-06 20:07:25 +00:00
|
|
|
#include <isc/commandline.h>
|
1999-09-10 19:52:56 +00:00
|
|
|
#include <isc/mem.h>
|
2015-05-23 14:21:51 +02:00
|
|
|
#include <isc/print.h>
|
2000-05-08 14:38:29 +00:00
|
|
|
#include <isc/region.h>
|
|
|
|
#include <isc/string.h>
|
2000-04-28 01:12:23 +00:00
|
|
|
#include <isc/util.h>
|
|
|
|
|
2016-08-19 08:02:51 +10:00
|
|
|
#include <pk11/site.h>
|
|
|
|
|
2010-01-19 20:26:07 +00:00
|
|
|
#include <dns/dnssec.h>
|
2000-05-24 23:13:32 +00:00
|
|
|
#include <dns/fixedname.h>
|
1999-09-10 19:52:56 +00:00
|
|
|
#include <dns/keyvalues.h>
|
2000-05-24 23:54:43 +00:00
|
|
|
#include <dns/log.h>
|
2000-05-24 23:13:32 +00:00
|
|
|
#include <dns/name.h>
|
2000-09-12 10:07:50 +00:00
|
|
|
#include <dns/rdataclass.h>
|
2000-05-24 23:13:32 +00:00
|
|
|
#include <dns/result.h>
|
2000-04-25 17:57:10 +00:00
|
|
|
#include <dns/secalg.h>
|
2000-05-24 23:13:32 +00:00
|
|
|
|
1999-09-10 19:52:56 +00:00
|
|
|
#include <dst/dst.h>
|
|
|
|
|
2018-06-12 11:26:04 +02:00
|
|
|
#if USE_PKCS11
|
2014-03-12 20:52:01 -07:00
|
|
|
#include <pk11/result.h>
|
|
|
|
#endif
|
|
|
|
|
2000-05-24 23:54:43 +00:00
|
|
|
#include "dnssectool.h"
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2000-11-07 20:10:14 +00:00
|
|
|
#define MAX_RSA 4096 /* should be long enough... */
|
2000-04-27 18:24:26 +00:00
|
|
|
|
2000-06-01 18:49:22 +00:00
|
|
|
const char *program = "dnssec-keygen";
|
2000-05-16 18:41:00 +00:00
|
|
|
|
2009-09-29 15:06:07 +00:00
|
|
|
ISC_PLATFORM_NORETURN_PRE static void
|
|
|
|
usage(void) ISC_PLATFORM_NORETURN_POST;
|
|
|
|
|
2009-10-24 09:46:19 +00:00
|
|
|
static void progress(int p);
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
struct keygen_ctx {
|
|
|
|
const char *predecessor;
|
|
|
|
const char *policy;
|
|
|
|
const char *configfile;
|
|
|
|
const char *directory;
|
|
|
|
char *algname;
|
|
|
|
char *nametype;
|
|
|
|
char *type;
|
|
|
|
int generator;
|
|
|
|
int protocol;
|
|
|
|
int size;
|
|
|
|
int signatory;
|
|
|
|
dns_rdataclass_t rdclass;
|
|
|
|
int options;
|
|
|
|
int dbits;
|
|
|
|
dns_ttl_t ttl;
|
|
|
|
uint16_t kskflag;
|
|
|
|
uint16_t revflag;
|
|
|
|
dns_secalg_t alg;
|
|
|
|
/* timing data */
|
|
|
|
int prepub;
|
|
|
|
isc_stdtime_t now;
|
|
|
|
isc_stdtime_t publish;
|
|
|
|
isc_stdtime_t activate;
|
|
|
|
isc_stdtime_t inactive;
|
|
|
|
isc_stdtime_t revokekey;
|
|
|
|
isc_stdtime_t deltime;
|
|
|
|
isc_stdtime_t syncadd;
|
|
|
|
isc_stdtime_t syncdel;
|
|
|
|
bool setpub;
|
|
|
|
bool setact;
|
|
|
|
bool setinact;
|
|
|
|
bool setrev;
|
|
|
|
bool setdel;
|
|
|
|
bool setsyncadd;
|
|
|
|
bool setsyncdel;
|
|
|
|
bool unsetpub;
|
|
|
|
bool unsetact;
|
|
|
|
bool unsetinact;
|
|
|
|
bool unsetrev;
|
|
|
|
bool unsetdel;
|
|
|
|
/* how to generate the key */
|
|
|
|
bool setttl;
|
|
|
|
bool use_nsec3;
|
|
|
|
bool genonly;
|
|
|
|
bool showprogress;
|
|
|
|
bool quiet;
|
|
|
|
bool oldstyle;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct keygen_ctx keygen_ctx_t;
|
|
|
|
|
|
|
|
static void keygen(keygen_ctx_t *ctx, isc_mem_t *mctx, int argc, char **argv);
|
|
|
|
|
2000-05-16 18:41:00 +00:00
|
|
|
static void
|
2000-05-24 03:16:19 +00:00
|
|
|
usage(void) {
|
2001-02-15 23:26:29 +00:00
|
|
|
fprintf(stderr, "Usage:\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " %s [options] name\n\n", program);
|
2002-12-03 05:01:34 +00:00
|
|
|
fprintf(stderr, "Version: %s\n", VERSION);
|
2009-06-17 06:51:44 +00:00
|
|
|
fprintf(stderr, " name: owner of the key\n");
|
|
|
|
fprintf(stderr, "Options:\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -K <directory>: write keys into directory\n");
|
|
|
|
fprintf(stderr, " -a <algorithm>:\n");
|
2018-10-25 10:27:49 +02:00
|
|
|
fprintf(stderr, " RSASHA1 | NSEC3RSASHA1 |\n");
|
2018-05-25 16:17:13 +02:00
|
|
|
fprintf(stderr, " RSASHA256 | RSASHA512 |\n");
|
2012-05-02 23:20:17 +10:00
|
|
|
fprintf(stderr, " ECDSAP256SHA256 | ECDSAP384SHA384 |\n");
|
2018-01-18 17:29:28 -08:00
|
|
|
fprintf(stderr, " ED25519 | ED448 | DH\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -3: use NSEC3-capable algorithm\n");
|
|
|
|
fprintf(stderr, " -b <key size in bits>:\n");
|
2017-04-21 11:54:23 +05:30
|
|
|
fprintf(stderr, " RSASHA1:\t[1024..%d]\n", MAX_RSA);
|
|
|
|
fprintf(stderr, " NSEC3RSASHA1:\t[1024..%d]\n", MAX_RSA);
|
|
|
|
fprintf(stderr, " RSASHA256:\t[1024..%d]\n", MAX_RSA);
|
2010-08-16 22:21:07 +00:00
|
|
|
fprintf(stderr, " RSASHA512:\t[1024..%d]\n", MAX_RSA);
|
|
|
|
fprintf(stderr, " DH:\t\t[128..4096]\n");
|
2012-05-02 23:20:17 +10:00
|
|
|
fprintf(stderr, " ECDSAP256SHA256:\tignored\n");
|
|
|
|
fprintf(stderr, " ECDSAP384SHA384:\tignored\n");
|
2017-07-31 15:26:00 +02:00
|
|
|
fprintf(stderr, " ED25519:\tignored\n");
|
|
|
|
fprintf(stderr, " ED448:\tignored\n");
|
2017-08-30 18:51:11 -07:00
|
|
|
fprintf(stderr, " (key size defaults are set according to\n"
|
|
|
|
" algorithm and usage (ZSK or KSK)\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -n <nametype>: ZONE | HOST | ENTITY | "
|
|
|
|
"USER | OTHER\n");
|
2010-08-16 22:21:07 +00:00
|
|
|
fprintf(stderr, " (DNSKEY generation defaults to ZONE)\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -c <class>: (default: IN)\n");
|
2006-01-27 02:35:15 +00:00
|
|
|
fprintf(stderr, " -d <digest bits> (0 => max, default)\n");
|
2014-01-14 15:40:56 -08:00
|
|
|
fprintf(stderr, " -E <engine>:\n");
|
2018-06-12 11:26:04 +02:00
|
|
|
#if USE_PKCS11
|
2014-01-14 15:40:56 -08:00
|
|
|
fprintf(stderr, " path to PKCS#11 provider library "
|
|
|
|
"(default is %s)\n", PK11_LIB_LOCATION);
|
2009-10-05 17:30:49 +00:00
|
|
|
#else
|
2014-01-14 15:40:56 -08:00
|
|
|
fprintf(stderr, " name of an OpenSSL engine to use\n");
|
2009-10-05 17:30:49 +00:00
|
|
|
#endif
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -f <keyflag>: KSK | REVOKE\n");
|
|
|
|
fprintf(stderr, " -g <generator>: use specified generator "
|
|
|
|
"(DH only)\n");
|
2011-03-17 01:40:40 +00:00
|
|
|
fprintf(stderr, " -L <ttl>: default key TTL\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -p <protocol>: (default: 3 [dnssec])\n");
|
|
|
|
fprintf(stderr, " -s <strength>: strength value this key signs DNS "
|
|
|
|
"records with (default: 0)\n");
|
|
|
|
fprintf(stderr, " -T <rrtype>: DNSKEY | KEY (default: DNSKEY; "
|
|
|
|
"use KEY for SIG(0))\n");
|
2001-09-25 22:47:02 +00:00
|
|
|
fprintf(stderr, " -t <type>: "
|
2009-07-19 04:18:05 +00:00
|
|
|
"AUTHCONF | NOAUTHCONF | NOAUTH | NOCONF "
|
|
|
|
"(default: AUTHCONF)\n");
|
|
|
|
fprintf(stderr, " -h: print usage and exit\n");
|
|
|
|
fprintf(stderr, " -m <memory debugging mode>:\n");
|
2010-08-16 22:21:07 +00:00
|
|
|
fprintf(stderr, " usage | trace | record | size | mctx\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -v <level>: set verbosity level (0 - 10)\n");
|
2014-06-13 06:27:43 +05:30
|
|
|
fprintf(stderr, " -V: print version information\n");
|
2010-01-07 19:13:59 +00:00
|
|
|
fprintf(stderr, "Timing options:\n");
|
|
|
|
fprintf(stderr, " -P date/[+-]offset/none: set key publication date "
|
2009-09-14 18:45:45 +00:00
|
|
|
"(default: now)\n");
|
2015-11-05 12:09:48 +11:00
|
|
|
fprintf(stderr, " -P sync date/[+-]offset/none: set CDS and CDNSKEY "
|
|
|
|
"publication date\n");
|
2010-01-07 19:13:59 +00:00
|
|
|
fprintf(stderr, " -A date/[+-]offset/none: set key activation date "
|
2009-09-14 18:45:45 +00:00
|
|
|
"(default: now)\n");
|
2010-01-07 19:13:59 +00:00
|
|
|
fprintf(stderr, " -R date/[+-]offset/none: set key "
|
2015-11-05 12:09:48 +11:00
|
|
|
"revocation date\n");
|
2010-01-07 19:13:59 +00:00
|
|
|
fprintf(stderr, " -I date/[+-]offset/none: set key "
|
2015-11-05 12:09:48 +11:00
|
|
|
"inactivation date\n");
|
2010-01-07 19:13:59 +00:00
|
|
|
fprintf(stderr, " -D date/[+-]offset/none: set key deletion date\n");
|
2015-11-05 12:09:48 +11:00
|
|
|
fprintf(stderr, " -D sync date/[+-]offset/none: set CDS and CDNSKEY "
|
|
|
|
"deletion date\n");
|
|
|
|
|
2009-09-14 18:45:45 +00:00
|
|
|
fprintf(stderr, " -G: generate key only; do not set -P or -A\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
fprintf(stderr, " -C: generate a backward-compatible key, omitting "
|
2009-09-14 18:45:45 +00:00
|
|
|
"all dates\n");
|
2010-08-16 22:21:07 +00:00
|
|
|
fprintf(stderr, " -S <key>: generate a successor to an existing "
|
|
|
|
"key\n");
|
|
|
|
fprintf(stderr, " -i <interval>: prepublication interval for "
|
|
|
|
"successor key "
|
|
|
|
"(default: 30 days)\n");
|
2001-02-15 23:26:29 +00:00
|
|
|
fprintf(stderr, "Output:\n");
|
|
|
|
fprintf(stderr, " K<name>+<alg>+<id>.key, "
|
2009-07-19 04:18:05 +00:00
|
|
|
"K<name>+<alg>+<id>.private\n");
|
2000-05-16 18:41:00 +00:00
|
|
|
|
|
|
|
exit (-1);
|
|
|
|
}
|
|
|
|
|
2009-10-24 09:46:19 +00:00
|
|
|
static void
|
|
|
|
progress(int p)
|
|
|
|
{
|
|
|
|
char c = '*';
|
|
|
|
|
|
|
|
switch (p) {
|
|
|
|
case 0:
|
|
|
|
c = '.';
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c = '+';
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
c = '*';
|
|
|
|
break;
|
|
|
|
case 3:
|
2009-10-28 00:27:10 +00:00
|
|
|
c = ' ';
|
2009-10-24 09:46:19 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
(void) putc(c, stderr);
|
|
|
|
(void) fflush(stderr);
|
|
|
|
}
|
|
|
|
|
1999-09-10 19:52:56 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv) {
|
2011-11-30 00:48:51 +00:00
|
|
|
char *algname = NULL, *freeit = NULL;
|
2000-09-12 10:07:50 +00:00
|
|
|
char *classname = NULL;
|
2001-09-19 00:03:37 +00:00
|
|
|
char *endp;
|
2000-05-08 14:38:29 +00:00
|
|
|
isc_mem_t *mctx = NULL;
|
|
|
|
isc_result_t ret;
|
|
|
|
isc_textregion_t r;
|
2000-05-24 23:54:43 +00:00
|
|
|
isc_log_t *log = NULL;
|
2009-10-05 17:30:49 +00:00
|
|
|
const char *engine = NULL;
|
2009-11-25 23:00:32 +00:00
|
|
|
unsigned char c;
|
2019-09-11 10:51:36 +02:00
|
|
|
int ch;
|
|
|
|
|
|
|
|
keygen_ctx_t ctx = {
|
|
|
|
.options = DST_TYPE_PRIVATE | DST_TYPE_PUBLIC,
|
|
|
|
.prepub = -1,
|
|
|
|
.protocol = -1,
|
|
|
|
.size = -1,
|
|
|
|
};
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (argc == 1) {
|
2000-05-18 22:04:02 +00:00
|
|
|
usage();
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2018-06-12 11:26:04 +02:00
|
|
|
#if USE_PKCS11
|
2014-03-12 20:52:01 -07:00
|
|
|
pk11_result_register();
|
|
|
|
#endif
|
2000-05-24 23:13:32 +00:00
|
|
|
dns_result_register();
|
|
|
|
|
2018-04-17 08:29:14 -07:00
|
|
|
isc_commandline_errprint = false;
|
2007-05-21 02:47:25 +00:00
|
|
|
|
2009-07-19 04:18:05 +00:00
|
|
|
/*
|
|
|
|
* Process memory debugging argument first.
|
|
|
|
*/
|
2019-02-21 18:54:16 +00:00
|
|
|
#define CMDLINE_FLAGS "3A:a:b:Cc:D:d:E:eFf:Gg:hI:i:K:L:m:n:P:p:qR:r:S:s:T:t:" \
|
2014-06-13 06:27:43 +05:30
|
|
|
"v:V"
|
2009-07-19 04:18:05 +00:00
|
|
|
while ((ch = isc_commandline_parse(argc, argv, CMDLINE_FLAGS)) != -1) {
|
|
|
|
switch (ch) {
|
|
|
|
case 'm':
|
|
|
|
if (strcasecmp(isc_commandline_argument, "record") == 0)
|
|
|
|
isc_mem_debugging |= ISC_MEM_DEBUGRECORD;
|
|
|
|
if (strcasecmp(isc_commandline_argument, "trace") == 0)
|
|
|
|
isc_mem_debugging |= ISC_MEM_DEBUGTRACE;
|
|
|
|
if (strcasecmp(isc_commandline_argument, "usage") == 0)
|
|
|
|
isc_mem_debugging |= ISC_MEM_DEBUGUSAGE;
|
|
|
|
if (strcasecmp(isc_commandline_argument, "size") == 0)
|
|
|
|
isc_mem_debugging |= ISC_MEM_DEBUGSIZE;
|
|
|
|
if (strcasecmp(isc_commandline_argument, "mctx") == 0)
|
|
|
|
isc_mem_debugging |= ISC_MEM_DEBUGCTX;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-04-17 08:29:14 -07:00
|
|
|
isc_commandline_reset = true;
|
2009-07-19 04:18:05 +00:00
|
|
|
|
2019-09-05 18:40:57 +02:00
|
|
|
isc_mem_create(&mctx);
|
2009-07-19 04:18:05 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
isc_stdtime_get(&ctx.now);
|
2009-07-19 04:18:05 +00:00
|
|
|
|
|
|
|
while ((ch = isc_commandline_parse(argc, argv, CMDLINE_FLAGS)) != -1) {
|
1999-09-10 19:52:56 +00:00
|
|
|
switch (ch) {
|
2009-07-19 04:18:05 +00:00
|
|
|
case '3':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.use_nsec3 = true;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
1999-09-10 19:52:56 +00:00
|
|
|
case 'a':
|
2000-09-12 10:07:50 +00:00
|
|
|
algname = isc_commandline_argument;
|
1999-09-10 19:52:56 +00:00
|
|
|
break;
|
2000-04-25 17:57:10 +00:00
|
|
|
case 'b':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.size = strtol(isc_commandline_argument, &endp, 10);
|
|
|
|
if (*endp != '\0' || ctx.size < 0)
|
2000-05-16 18:41:00 +00:00
|
|
|
fatal("-b requires a non-negative number");
|
1999-09-10 19:52:56 +00:00
|
|
|
break;
|
2009-07-19 04:18:05 +00:00
|
|
|
case 'C':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.oldstyle = true;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
2000-09-12 10:07:50 +00:00
|
|
|
case 'c':
|
|
|
|
classname = isc_commandline_argument;
|
|
|
|
break;
|
2006-01-27 02:35:15 +00:00
|
|
|
case 'd':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.dbits = strtol(isc_commandline_argument, &endp, 10);
|
|
|
|
if (*endp != '\0' || ctx.dbits < 0)
|
2006-01-27 02:35:15 +00:00
|
|
|
fatal("-d requires a non-negative number");
|
|
|
|
break;
|
2009-10-05 17:30:49 +00:00
|
|
|
case 'E':
|
|
|
|
engine = isc_commandline_argument;
|
|
|
|
break;
|
2000-04-25 17:57:10 +00:00
|
|
|
case 'e':
|
2012-06-14 15:44:20 +10:00
|
|
|
fprintf(stderr,
|
|
|
|
"phased-out option -e "
|
2018-09-24 15:21:47 -07:00
|
|
|
"(was 'use (RSA) large exponent')\n");
|
1999-09-10 19:52:56 +00:00
|
|
|
break;
|
2003-01-18 02:40:59 +00:00
|
|
|
case 'f':
|
2009-11-25 23:00:32 +00:00
|
|
|
c = (unsigned char)(isc_commandline_argument[0]);
|
|
|
|
if (toupper(c) == 'K')
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.kskflag = DNS_KEYFLAG_KSK;
|
2009-11-25 23:00:32 +00:00
|
|
|
else if (toupper(c) == 'R')
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.revflag = DNS_KEYFLAG_REVOKE;
|
2003-01-18 02:40:59 +00:00
|
|
|
else
|
|
|
|
fatal("unknown flag '%s'",
|
|
|
|
isc_commandline_argument);
|
|
|
|
break;
|
1999-09-27 17:11:41 +00:00
|
|
|
case 'g':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.generator = strtol(isc_commandline_argument,
|
2000-05-24 03:16:19 +00:00
|
|
|
&endp, 10);
|
2019-09-11 10:51:36 +02:00
|
|
|
if (*endp != '\0' || ctx.generator <= 0)
|
2000-05-16 18:41:00 +00:00
|
|
|
fatal("-g requires a positive number");
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
2009-07-19 04:18:05 +00:00
|
|
|
case 'K':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.directory = isc_commandline_argument;
|
|
|
|
ret = try_dir(ctx.directory);
|
2009-10-24 00:00:06 +00:00
|
|
|
if (ret != ISC_R_SUCCESS)
|
2009-10-27 18:56:49 +00:00
|
|
|
fatal("cannot open directory %s: %s",
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.directory, isc_result_totext(ret));
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
2011-03-17 01:40:40 +00:00
|
|
|
case 'L':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.ttl = strtottl(isc_commandline_argument);
|
|
|
|
ctx.setttl = true;
|
|
|
|
break;
|
2011-03-17 01:40:40 +00:00
|
|
|
break;
|
2000-04-25 17:57:10 +00:00
|
|
|
case 'n':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.nametype = isc_commandline_argument;
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
2009-07-19 04:18:05 +00:00
|
|
|
case 'm':
|
1999-09-27 17:11:41 +00:00
|
|
|
break;
|
1999-09-10 19:52:56 +00:00
|
|
|
case 'p':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.protocol = strtol(isc_commandline_argument, &endp,
|
|
|
|
10);
|
|
|
|
if (*endp != '\0' || ctx.protocol < 0 ||
|
|
|
|
ctx.protocol > 255)
|
|
|
|
{
|
2000-05-16 18:41:00 +00:00
|
|
|
fatal("-p must be followed by a number "
|
|
|
|
"[0..255]");
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
break;
|
2009-10-28 00:27:10 +00:00
|
|
|
case 'q':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.quiet = true;
|
2009-10-28 00:27:10 +00:00
|
|
|
break;
|
2009-07-19 04:18:05 +00:00
|
|
|
case 'r':
|
2018-04-22 14:56:28 +02:00
|
|
|
fatal("The -r option has been deprecated.\n"
|
|
|
|
"System random data is always used.\n");
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
1999-09-10 19:52:56 +00:00
|
|
|
case 's':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.signatory = strtol(isc_commandline_argument,
|
|
|
|
&endp, 10);
|
|
|
|
if (*endp != '\0' || ctx.signatory < 0 ||
|
|
|
|
ctx.signatory > 15)
|
|
|
|
{
|
2000-05-16 18:41:00 +00:00
|
|
|
fatal("-s must be followed by a number "
|
|
|
|
"[0..15]");
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
break;
|
2009-07-19 04:18:05 +00:00
|
|
|
case 'T':
|
|
|
|
if (strcasecmp(isc_commandline_argument, "KEY") == 0)
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.options |= DST_TYPE_KEY;
|
2009-07-19 04:18:05 +00:00
|
|
|
else if (strcasecmp(isc_commandline_argument,
|
|
|
|
"DNSKEY") == 0)
|
|
|
|
/* default behavior */
|
|
|
|
;
|
|
|
|
else
|
|
|
|
fatal("unknown type '%s'",
|
|
|
|
isc_commandline_argument);
|
|
|
|
break;
|
|
|
|
case 't':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.type = isc_commandline_argument;
|
2000-06-10 01:28:11 +00:00
|
|
|
break;
|
2000-04-27 18:24:26 +00:00
|
|
|
case 'v':
|
|
|
|
endp = NULL;
|
|
|
|
verbose = strtol(isc_commandline_argument, &endp, 0);
|
|
|
|
if (*endp != '\0')
|
2000-05-16 18:41:00 +00:00
|
|
|
fatal("-v must be followed by a number");
|
2000-04-27 18:24:26 +00:00
|
|
|
break;
|
2009-09-14 18:45:45 +00:00
|
|
|
case 'G':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.genonly = true;
|
2009-09-14 18:45:45 +00:00
|
|
|
break;
|
2009-07-19 04:18:05 +00:00
|
|
|
case 'P':
|
2015-11-05 12:09:48 +11:00
|
|
|
/* -Psync ? */
|
|
|
|
if (isoptarg("sync", argv, usage)) {
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setsyncadd)
|
2015-11-05 12:09:48 +11:00
|
|
|
fatal("-P sync specified more than "
|
|
|
|
"once");
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.syncadd = strtotime(
|
|
|
|
isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now,
|
|
|
|
&ctx.setsyncadd);
|
2015-11-05 12:09:48 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
(void)isoptarg("dnskey", argv, usage);
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setpub || ctx.unsetpub)
|
2009-09-02 23:48:03 +00:00
|
|
|
fatal("-P specified more than once");
|
2009-09-02 06:29:01 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.publish = strtotime(isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now, &ctx.setpub);
|
|
|
|
ctx.unsetpub = !ctx.setpub;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
|
|
|
case 'A':
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setact || ctx.unsetact)
|
2009-09-02 23:48:03 +00:00
|
|
|
fatal("-A specified more than once");
|
2009-09-02 06:29:01 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.activate = strtotime(isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now, &ctx.setact);
|
|
|
|
ctx.unsetact = !ctx.setact;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
|
|
|
case 'R':
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setrev || ctx.unsetrev)
|
2009-09-02 23:48:03 +00:00
|
|
|
fatal("-R specified more than once");
|
2009-09-02 06:29:01 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.revokekey = strtotime(isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now, &ctx.setrev);
|
|
|
|
ctx.unsetrev = !ctx.setrev;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
2009-09-14 18:45:45 +00:00
|
|
|
case 'I':
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setinact || ctx.unsetinact)
|
2009-09-14 18:45:45 +00:00
|
|
|
fatal("-I specified more than once");
|
2009-09-02 06:29:01 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.inactive = strtotime(isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now, &ctx.setinact);
|
|
|
|
ctx.unsetinact = !ctx.setinact;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
|
|
|
case 'D':
|
2015-11-05 12:09:48 +11:00
|
|
|
/* -Dsync ? */
|
|
|
|
if (isoptarg("sync", argv, usage)) {
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setsyncdel)
|
2015-11-05 12:09:48 +11:00
|
|
|
fatal("-D sync specified more than "
|
|
|
|
"once");
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.syncdel = strtotime(
|
|
|
|
isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now,
|
|
|
|
&ctx.setsyncdel);
|
2015-11-05 12:09:48 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
(void)isoptarg("dnskey", argv, usage);
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.setdel || ctx.unsetdel)
|
2009-09-02 23:48:03 +00:00
|
|
|
fatal("-D specified more than once");
|
2009-09-02 06:29:01 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.deltime = strtotime(isc_commandline_argument,
|
|
|
|
ctx.now, ctx.now, &ctx.setdel);
|
|
|
|
ctx.unsetdel = !ctx.setdel;
|
2009-07-19 04:18:05 +00:00
|
|
|
break;
|
2010-08-16 22:21:07 +00:00
|
|
|
case 'S':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.predecessor = isc_commandline_argument;
|
2010-08-16 22:21:07 +00:00
|
|
|
break;
|
|
|
|
case 'i':
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.prepub = strtottl(isc_commandline_argument);
|
2010-08-16 22:21:07 +00:00
|
|
|
break;
|
2009-05-07 09:33:52 +00:00
|
|
|
case 'F':
|
|
|
|
/* Reserved for FIPS mode */
|
|
|
|
/* FALLTHROUGH */
|
2007-05-21 02:47:25 +00:00
|
|
|
case '?':
|
|
|
|
if (isc_commandline_option != '?')
|
|
|
|
fprintf(stderr, "%s: invalid argument -%c\n",
|
|
|
|
program, isc_commandline_option);
|
2009-05-07 09:33:52 +00:00
|
|
|
/* FALLTHROUGH */
|
1999-09-10 19:52:56 +00:00
|
|
|
case 'h':
|
2014-06-13 06:27:43 +05:30
|
|
|
/* Does not return. */
|
2000-05-18 22:04:02 +00:00
|
|
|
usage();
|
2007-05-21 02:47:25 +00:00
|
|
|
|
2014-06-13 06:27:43 +05:30
|
|
|
case 'V':
|
|
|
|
/* Does not return. */
|
|
|
|
version(program);
|
|
|
|
|
1999-09-10 19:52:56 +00:00
|
|
|
default:
|
2007-05-21 02:47:25 +00:00
|
|
|
fprintf(stderr, "%s: unhandled option -%c\n",
|
|
|
|
program, isc_commandline_option);
|
|
|
|
exit(1);
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
}
|
|
|
|
|
2009-10-28 00:27:10 +00:00
|
|
|
if (!isatty(0))
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.quiet = true;
|
2009-10-28 00:27:10 +00:00
|
|
|
|
2018-04-22 14:56:28 +02:00
|
|
|
ret = dst_lib_init(mctx, engine);
|
2000-06-09 22:34:40 +00:00
|
|
|
if (ret != ISC_R_SUCCESS)
|
2009-10-05 17:30:49 +00:00
|
|
|
fatal("could not initialize dst: %s",
|
|
|
|
isc_result_totext(ret));
|
2000-06-09 22:34:40 +00:00
|
|
|
|
2015-01-20 13:29:18 -08:00
|
|
|
setup_logging(mctx, &log);
|
2000-05-24 23:54:43 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx.rdclass = strtoclass(classname);
|
2010-08-16 22:21:07 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx.predecessor == NULL) {
|
2010-08-16 22:21:07 +00:00
|
|
|
if (argc < isc_commandline_index + 1)
|
|
|
|
fatal("the key name was not specified");
|
|
|
|
if (argc > isc_commandline_index + 1)
|
|
|
|
fatal("extraneous arguments");
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (algname == NULL)
|
|
|
|
fatal("no algorithm specified");
|
|
|
|
|
|
|
|
r.base = algname;
|
|
|
|
r.length = strlen(algname);
|
|
|
|
ret = dns_secalg_fromtext(&ctx.alg, &r);
|
|
|
|
if (ret != ISC_R_SUCCESS) {
|
|
|
|
fatal("unknown algorithm %s", algname);
|
|
|
|
}
|
|
|
|
if (!dst_algorithm_supported(ctx.alg)) {
|
|
|
|
fatal("unsupported algorithm: %s", algname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
keygen(&ctx, mctx, argc, argv);
|
|
|
|
|
|
|
|
cleanup_logging(&log);
|
|
|
|
dst_lib_destroy();
|
|
|
|
dns_name_destroy();
|
|
|
|
if (verbose > 10)
|
|
|
|
isc_mem_stats(mctx, stdout);
|
|
|
|
isc_mem_destroy(&mctx);
|
|
|
|
|
|
|
|
if (freeit != NULL)
|
|
|
|
free(freeit);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
keygen(keygen_ctx_t *ctx, isc_mem_t *mctx, int argc, char **argv)
|
|
|
|
{
|
|
|
|
char filename[255];
|
|
|
|
char algstr[DNS_SECALG_FORMATSIZE];
|
|
|
|
uint16_t flags = 0;
|
|
|
|
int param = 0;
|
|
|
|
bool null_key = false;
|
|
|
|
bool conflict = false;
|
|
|
|
bool show_progress = false;
|
|
|
|
isc_buffer_t buf;
|
|
|
|
dns_name_t *name;
|
|
|
|
dns_fixedname_t fname;
|
|
|
|
isc_result_t ret;
|
|
|
|
dst_key_t* key = NULL;
|
|
|
|
dst_key_t* prevkey = NULL;
|
|
|
|
|
|
|
|
UNUSED(argc);
|
|
|
|
|
|
|
|
dns_secalg_format(ctx->alg, algstr, sizeof(algstr));
|
|
|
|
|
|
|
|
if (ctx->predecessor == NULL) {
|
|
|
|
if (ctx->prepub == -1)
|
|
|
|
ctx->prepub = 0;
|
|
|
|
|
2018-03-28 14:38:09 +02:00
|
|
|
name = dns_fixedname_initname(&fname);
|
2010-08-16 22:21:07 +00:00
|
|
|
isc_buffer_init(&buf, argv[isc_commandline_index],
|
|
|
|
strlen(argv[isc_commandline_index]));
|
|
|
|
isc_buffer_add(&buf, strlen(argv[isc_commandline_index]));
|
|
|
|
ret = dns_name_fromtext(name, &buf, dns_rootname, 0, NULL);
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ret != ISC_R_SUCCESS) {
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("invalid key name %s: %s",
|
|
|
|
argv[isc_commandline_index],
|
|
|
|
isc_result_totext(ret));
|
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (!dst_algorithm_supported(ctx->alg)) {
|
|
|
|
fatal("unsupported algorithm: %s", algstr);
|
2010-08-16 22:21:07 +00:00
|
|
|
}
|
2009-06-17 06:51:44 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->alg == DST_ALG_DH) {
|
|
|
|
ctx->options |= DST_TYPE_KEY;
|
2018-01-18 17:29:28 -08:00
|
|
|
}
|
2014-09-29 10:18:54 +10:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->use_nsec3) {
|
|
|
|
switch (ctx->alg) {
|
2017-08-30 18:51:11 -07:00
|
|
|
case DST_ALG_RSASHA1:
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->alg = DST_ALG_NSEC3RSASHA1;
|
2017-08-30 18:51:11 -07:00
|
|
|
break;
|
|
|
|
case DST_ALG_NSEC3RSASHA1:
|
|
|
|
case DST_ALG_RSASHA256:
|
|
|
|
case DST_ALG_RSASHA512:
|
|
|
|
case DST_ALG_ECDSA256:
|
|
|
|
case DST_ALG_ECDSA384:
|
|
|
|
case DST_ALG_ED25519:
|
|
|
|
case DST_ALG_ED448:
|
|
|
|
break;
|
|
|
|
default:
|
2019-09-11 10:51:36 +02:00
|
|
|
fatal("algorithm %s is incompatible with NSEC3"
|
|
|
|
", do not use the -3 option", algstr);
|
2017-08-30 18:51:11 -07:00
|
|
|
}
|
2010-08-16 22:21:07 +00:00
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->type != NULL && (ctx->options & DST_TYPE_KEY) != 0) {
|
|
|
|
if (strcasecmp(ctx->type, "NOAUTH") == 0) {
|
2010-08-16 22:21:07 +00:00
|
|
|
flags |= DNS_KEYTYPE_NOAUTH;
|
2019-09-11 10:51:36 +02:00
|
|
|
} else if (strcasecmp(ctx->type, "NOCONF") == 0) {
|
2010-08-16 22:21:07 +00:00
|
|
|
flags |= DNS_KEYTYPE_NOCONF;
|
2019-09-11 10:51:36 +02:00
|
|
|
} else if (strcasecmp(ctx->type, "NOAUTHCONF") == 0) {
|
2010-08-16 23:46:52 +00:00
|
|
|
flags |= (DNS_KEYTYPE_NOAUTH |
|
2010-08-16 22:21:07 +00:00
|
|
|
DNS_KEYTYPE_NOCONF);
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size < 0)
|
|
|
|
ctx->size = 0;
|
|
|
|
} else if (strcasecmp(ctx->type, "AUTHCONF") == 0) {
|
2010-08-16 22:21:07 +00:00
|
|
|
/* nothing */;
|
2018-01-18 17:29:28 -08:00
|
|
|
} else {
|
2019-09-11 10:51:36 +02:00
|
|
|
fatal("invalid type %s", ctx->type);
|
2018-01-18 17:29:28 -08:00
|
|
|
}
|
2010-08-16 22:21:07 +00:00
|
|
|
}
|
2009-07-19 04:18:05 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size < 0) {
|
|
|
|
switch (ctx->alg) {
|
2017-08-30 18:51:11 -07:00
|
|
|
case DST_ALG_RSASHA1:
|
|
|
|
case DST_ALG_NSEC3RSASHA1:
|
|
|
|
case DST_ALG_RSASHA256:
|
|
|
|
case DST_ALG_RSASHA512:
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->size = 2048;
|
2017-08-30 18:51:11 -07:00
|
|
|
if (verbose > 0) {
|
2010-08-16 22:21:07 +00:00
|
|
|
fprintf(stderr, "key size not "
|
2012-05-02 23:20:17 +10:00
|
|
|
"specified; defaulting"
|
2019-09-11 10:51:36 +02:00
|
|
|
" to %d\n", ctx->size);
|
2017-08-30 18:51:11 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DST_ALG_ECDSA256:
|
|
|
|
case DST_ALG_ECDSA384:
|
|
|
|
case DST_ALG_ED25519:
|
|
|
|
case DST_ALG_ED448:
|
|
|
|
break;
|
|
|
|
default:
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("key size not specified (-b option)");
|
2017-08-30 18:51:11 -07:00
|
|
|
}
|
2000-05-10 17:57:53 +00:00
|
|
|
}
|
2000-04-25 17:57:10 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (!ctx->oldstyle && ctx->prepub > 0) {
|
|
|
|
if (ctx->setpub && ctx->setact &&
|
|
|
|
(ctx->activate - ctx->prepub) < ctx->publish)
|
|
|
|
{
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("Activation and publication dates "
|
|
|
|
"are closer together than the\n\t"
|
|
|
|
"prepublication interval.");
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
2010-08-16 22:21:07 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (!ctx->setpub && !ctx->setact) {
|
|
|
|
ctx->setpub = ctx->setact = true;
|
|
|
|
ctx->publish = ctx->now;
|
|
|
|
ctx->activate = ctx->now + ctx->prepub;
|
|
|
|
} else if (ctx->setpub && !ctx->setact) {
|
|
|
|
ctx->setact = true;
|
|
|
|
ctx->activate = ctx->publish + ctx->prepub;
|
|
|
|
} else if (ctx->setact && !ctx->setpub) {
|
|
|
|
ctx->setpub = true;
|
|
|
|
ctx->publish = ctx->activate - ctx->prepub;
|
2010-08-16 22:21:07 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if ((ctx->activate - ctx->prepub) < ctx->now)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("Time until activation is shorter "
|
|
|
|
"than the\n\tprepublication interval.");
|
2009-06-17 06:51:44 +00:00
|
|
|
}
|
2010-08-16 22:21:07 +00:00
|
|
|
} else {
|
|
|
|
char keystr[DST_KEY_FORMATSIZE];
|
|
|
|
isc_stdtime_t when;
|
|
|
|
int major, minor;
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->prepub == -1)
|
|
|
|
ctx->prepub = (30 * 86400);
|
2010-08-16 22:21:07 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->alg != 0)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -a cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size >= 0)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -b cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->nametype != NULL)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -n cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->type != NULL)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -t cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setpub || ctx->unsetpub)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -P cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setact || ctx->unsetact)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -A cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->use_nsec3)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -3 cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->oldstyle)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -C cannot be used together");
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->genonly)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("-S and -G cannot be used together");
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ret = dst_key_fromnamedfile(ctx->predecessor, ctx->directory,
|
2010-08-16 22:21:07 +00:00
|
|
|
DST_TYPE_PUBLIC | DST_TYPE_PRIVATE,
|
|
|
|
mctx, &prevkey);
|
|
|
|
if (ret != ISC_R_SUCCESS)
|
|
|
|
fatal("Invalid keyfile %s: %s",
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->predecessor, isc_result_totext(ret));
|
2010-08-16 22:21:07 +00:00
|
|
|
if (!dst_key_isprivate(prevkey))
|
2019-09-11 10:51:36 +02:00
|
|
|
fatal("%s is not a private key", ctx->predecessor);
|
2010-08-16 22:21:07 +00:00
|
|
|
|
|
|
|
name = dst_key_name(prevkey);
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->alg = dst_key_alg(prevkey);
|
|
|
|
ctx->size = dst_key_size(prevkey);
|
2010-08-16 22:21:07 +00:00
|
|
|
flags = dst_key_flags(prevkey);
|
|
|
|
|
|
|
|
dst_key_format(prevkey, keystr, sizeof(keystr));
|
|
|
|
dst_key_getprivateformat(prevkey, &major, &minor);
|
|
|
|
if (major != DST_MAJOR_VERSION || minor < DST_MINOR_VERSION)
|
|
|
|
fatal("Key %s has incompatible format version %d.%d\n\t"
|
|
|
|
"It is not possible to generate a successor key.",
|
|
|
|
keystr, major, minor);
|
|
|
|
|
|
|
|
ret = dst_key_gettime(prevkey, DST_TIME_ACTIVATE, &when);
|
|
|
|
if (ret != ISC_R_SUCCESS)
|
|
|
|
fatal("Key %s has no activation date.\n\t"
|
|
|
|
"You must use dnssec-settime -A to set one "
|
|
|
|
"before generating a successor.", keystr);
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ret = dst_key_gettime(prevkey, DST_TIME_INACTIVE,
|
|
|
|
&ctx->activate);
|
2010-08-16 22:21:07 +00:00
|
|
|
if (ret != ISC_R_SUCCESS)
|
|
|
|
fatal("Key %s has no inactivation date.\n\t"
|
|
|
|
"You must use dnssec-settime -I to set one "
|
|
|
|
"before generating a successor.", keystr);
|
2010-08-16 23:46:52 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->publish = ctx->activate - ctx->prepub;
|
|
|
|
if (ctx->publish < ctx->now)
|
2010-08-16 22:21:07 +00:00
|
|
|
fatal("Key %s becomes inactive\n\t"
|
|
|
|
"sooner than the prepublication period "
|
|
|
|
"for the new key ends.\n\t"
|
|
|
|
"Either change the inactivation date with "
|
|
|
|
"dnssec-settime -I,\n\t"
|
|
|
|
"or use the -i option to set a shorter "
|
|
|
|
"prepublication interval.", keystr);
|
|
|
|
|
|
|
|
ret = dst_key_gettime(prevkey, DST_TIME_DELETE, &when);
|
|
|
|
if (ret != ISC_R_SUCCESS)
|
|
|
|
fprintf(stderr, "%s: WARNING: Key %s has no removal "
|
|
|
|
"date;\n\t it will remain in the zone "
|
|
|
|
"indefinitely after rollover.\n\t "
|
2010-08-16 23:46:52 +00:00
|
|
|
"You can use dnssec-settime -D to "
|
|
|
|
"change this.\n", program, keystr);
|
2010-08-16 22:21:07 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->setpub = ctx->setact = true;
|
2009-06-17 06:51:44 +00:00
|
|
|
}
|
2000-05-10 17:57:53 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
switch (ctx->alg) {
|
2001-09-19 00:15:05 +00:00
|
|
|
case DNS_KEYALG_RSASHA1:
|
2008-09-24 02:46:23 +00:00
|
|
|
case DNS_KEYALG_NSEC3RSASHA1:
|
2009-10-22 02:21:31 +00:00
|
|
|
case DNS_KEYALG_RSASHA256:
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size != 0 && (ctx->size < 1024 || ctx->size > MAX_RSA))
|
|
|
|
fatal("RSA key size %d out of range", ctx->size);
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
2009-10-22 02:21:31 +00:00
|
|
|
case DNS_KEYALG_RSASHA512:
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size != 0 && (ctx->size < 1024 || ctx->size > MAX_RSA))
|
|
|
|
fatal("RSA key size %d out of range", ctx->size);
|
2009-10-22 02:21:31 +00:00
|
|
|
break;
|
2000-04-25 17:57:10 +00:00
|
|
|
case DNS_KEYALG_DH:
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size != 0 && (ctx->size < 128 || ctx->size > 4096))
|
|
|
|
fatal("DH key size %d out of range", ctx->size);
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
2012-05-02 23:20:17 +10:00
|
|
|
case DST_ALG_ECDSA256:
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->size = 256;
|
2014-09-29 10:18:54 +10:00
|
|
|
break;
|
2012-05-02 23:20:17 +10:00
|
|
|
case DST_ALG_ECDSA384:
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->size = 384;
|
2010-12-23 04:08:00 +00:00
|
|
|
break;
|
2017-07-31 15:26:00 +02:00
|
|
|
case DST_ALG_ED25519:
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->size = 256;
|
2017-07-31 15:26:00 +02:00
|
|
|
break;
|
|
|
|
case DST_ALG_ED448:
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->size = 456;
|
2017-07-31 15:26:00 +02:00
|
|
|
break;
|
2000-04-25 17:57:10 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->alg != DNS_KEYALG_DH && ctx->generator != 0)
|
2001-09-19 00:15:05 +00:00
|
|
|
fatal("specified DH generator for a non-DH key");
|
2000-04-25 17:57:10 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->nametype == NULL) {
|
|
|
|
if ((ctx->options & DST_TYPE_KEY) != 0) /* KEY */
|
2007-06-18 01:03:13 +00:00
|
|
|
fatal("no nametype specified");
|
|
|
|
flags |= DNS_KEYOWNER_ZONE; /* DNSKEY */
|
2019-09-11 10:51:36 +02:00
|
|
|
} else if (strcasecmp(ctx->nametype, "zone") == 0)
|
2000-04-25 17:57:10 +00:00
|
|
|
flags |= DNS_KEYOWNER_ZONE;
|
2019-09-11 10:51:36 +02:00
|
|
|
else if ((ctx->options & DST_TYPE_KEY) != 0) { /* KEY */
|
|
|
|
if (strcasecmp(ctx->nametype, "host") == 0 ||
|
|
|
|
strcasecmp(ctx->nametype, "entity") == 0)
|
2004-06-11 01:12:40 +00:00
|
|
|
flags |= DNS_KEYOWNER_ENTITY;
|
2019-09-11 10:51:36 +02:00
|
|
|
else if (strcasecmp(ctx->nametype, "user") == 0)
|
2004-06-11 01:12:40 +00:00
|
|
|
flags |= DNS_KEYOWNER_USER;
|
|
|
|
else
|
2019-09-11 10:51:36 +02:00
|
|
|
fatal("invalid KEY nametype %s", ctx->nametype);
|
|
|
|
} else if (strcasecmp(ctx->nametype, "other") != 0) /* DNSKEY */
|
|
|
|
fatal("invalid DNSKEY nametype %s", ctx->nametype);
|
2000-04-25 17:57:10 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->directory == NULL)
|
|
|
|
ctx->directory = ".";
|
2000-09-12 10:07:50 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if ((ctx->options & DST_TYPE_KEY) != 0) /* KEY */
|
|
|
|
flags |= ctx->signatory;
|
2009-06-30 02:53:46 +00:00
|
|
|
else if ((flags & DNS_KEYOWNER_ZONE) != 0) { /* DNSKEY */
|
2019-09-11 10:51:36 +02:00
|
|
|
flags |= ctx->kskflag;
|
|
|
|
flags |= ctx->revflag;
|
2009-06-30 23:48:01 +00:00
|
|
|
}
|
2000-04-25 17:57:10 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->protocol == -1)
|
|
|
|
ctx->protocol = DNS_KEYPROTO_DNSSEC;
|
|
|
|
else if ((ctx->options & DST_TYPE_KEY) == 0 &&
|
|
|
|
ctx->protocol != DNS_KEYPROTO_DNSSEC)
|
|
|
|
fatal("invalid DNSKEY protocol: %d", ctx->protocol);
|
1999-09-10 19:52:56 +00:00
|
|
|
|
|
|
|
if ((flags & DNS_KEYFLAG_TYPEMASK) == DNS_KEYTYPE_NOKEY) {
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->size > 0)
|
2001-10-11 22:53:46 +00:00
|
|
|
fatal("specified null key with non-zero size");
|
1999-09-10 19:52:56 +00:00
|
|
|
if ((flags & DNS_KEYFLAG_SIGNATORYMASK) != 0)
|
2001-10-11 22:53:46 +00:00
|
|
|
fatal("specified null key with signing authority");
|
1999-09-10 19:52:56 +00:00
|
|
|
}
|
2000-04-25 17:57:10 +00:00
|
|
|
|
2001-10-11 22:19:15 +00:00
|
|
|
if ((flags & DNS_KEYFLAG_OWNERMASK) == DNS_KEYOWNER_ZONE &&
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->alg == DNS_KEYALG_DH)
|
2018-01-18 17:29:28 -08:00
|
|
|
{
|
2019-09-11 10:51:36 +02:00
|
|
|
fatal("a key with algorithm %s cannot be a zone key", algstr);
|
2018-01-18 17:29:28 -08:00
|
|
|
}
|
2001-10-11 22:19:15 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
switch(ctx->alg) {
|
2001-09-19 00:15:05 +00:00
|
|
|
case DNS_KEYALG_RSASHA1:
|
2009-10-22 02:21:31 +00:00
|
|
|
case DNS_KEYALG_NSEC3RSASHA1:
|
|
|
|
case DNS_KEYALG_RSASHA256:
|
|
|
|
case DNS_KEYALG_RSASHA512:
|
2018-04-17 08:29:14 -07:00
|
|
|
show_progress = true;
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
2009-10-28 00:27:10 +00:00
|
|
|
|
2000-04-25 17:57:10 +00:00
|
|
|
case DNS_KEYALG_DH:
|
2019-09-11 10:51:36 +02:00
|
|
|
param = ctx->generator;
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
2009-10-28 00:27:10 +00:00
|
|
|
|
2012-05-02 23:20:17 +10:00
|
|
|
case DST_ALG_ECDSA256:
|
|
|
|
case DST_ALG_ECDSA384:
|
2017-07-31 15:26:00 +02:00
|
|
|
case DST_ALG_ED25519:
|
|
|
|
case DST_ALG_ED448:
|
2018-04-17 08:29:14 -07:00
|
|
|
show_progress = true;
|
2000-04-25 17:57:10 +00:00
|
|
|
break;
|
1999-09-10 19:52:56 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 21:06:41 +00:00
|
|
|
if ((flags & DNS_KEYFLAG_TYPEMASK) == DNS_KEYTYPE_NOKEY)
|
2018-04-17 08:29:14 -07:00
|
|
|
null_key = true;
|
2000-05-15 21:06:41 +00:00
|
|
|
|
|
|
|
isc_buffer_init(&buf, filename, sizeof(filename) - 1);
|
|
|
|
|
2000-08-01 01:33:37 +00:00
|
|
|
do {
|
2018-04-17 08:29:14 -07:00
|
|
|
conflict = false;
|
2000-05-10 17:57:53 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (!ctx->quiet && show_progress) {
|
2009-10-28 00:27:10 +00:00
|
|
|
fprintf(stderr, "Generating key pair.");
|
2019-09-11 10:51:36 +02:00
|
|
|
ret = dst_key_generate(name, ctx->alg, ctx->size,
|
|
|
|
param, flags, ctx->protocol,
|
|
|
|
ctx->rdclass, mctx, &key,
|
2018-04-04 09:44:50 +02:00
|
|
|
&progress);
|
2009-10-28 00:27:10 +00:00
|
|
|
putc('\n', stderr);
|
|
|
|
fflush(stderr);
|
|
|
|
} else {
|
2019-09-11 10:51:36 +02:00
|
|
|
ret = dst_key_generate(name, ctx->alg, ctx->size,
|
|
|
|
param, flags, ctx->protocol,
|
|
|
|
ctx->rdclass, mctx, &key, NULL);
|
2009-10-28 00:27:10 +00:00
|
|
|
}
|
|
|
|
|
2000-05-10 17:57:53 +00:00
|
|
|
if (ret != ISC_R_SUCCESS) {
|
2000-08-14 04:43:17 +00:00
|
|
|
char namestr[DNS_NAME_FORMATSIZE];
|
2001-09-19 23:08:24 +00:00
|
|
|
dns_name_format(name, namestr, sizeof(namestr));
|
2000-06-10 01:28:11 +00:00
|
|
|
fatal("failed to generate key %s/%s: %s\n",
|
2001-10-04 23:48:16 +00:00
|
|
|
namestr, algstr, isc_result_totext(ret));
|
2000-05-10 17:57:53 +00:00
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
dst_key_setbits(key, ctx->dbits);
|
2006-01-27 02:35:15 +00:00
|
|
|
|
2009-07-19 04:18:05 +00:00
|
|
|
/*
|
2009-09-02 06:29:01 +00:00
|
|
|
* Set key timing metadata (unless using -C)
|
2009-09-14 18:45:45 +00:00
|
|
|
*
|
2010-08-16 22:21:07 +00:00
|
|
|
* Creation date is always set to "now".
|
|
|
|
*
|
|
|
|
* For a new key without an explicit predecessor, publish
|
|
|
|
* and activation dates are set to "now" by default, but
|
|
|
|
* can both be overridden.
|
|
|
|
*
|
|
|
|
* For a successor key, activation is set to match the
|
|
|
|
* predecessor's inactivation date. Publish is set to 30
|
|
|
|
* days earlier than that (XXX: this should be configurable).
|
|
|
|
* If either of the resulting dates are in the past, that's
|
|
|
|
* an error; the inactivation date of the predecessor key
|
|
|
|
* must be updated before a successor key can be created.
|
2009-07-19 04:18:05 +00:00
|
|
|
*/
|
2019-09-11 10:51:36 +02:00
|
|
|
if (!ctx->oldstyle) {
|
|
|
|
dst_key_settime(key, DST_TIME_CREATED, ctx->now);
|
2009-09-02 06:29:01 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->genonly && (ctx->setpub || ctx->setact))
|
2009-09-14 18:45:45 +00:00
|
|
|
fatal("cannot use -G together with "
|
|
|
|
"-P or -A options");
|
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setpub)
|
|
|
|
dst_key_settime(key, DST_TIME_PUBLISH,
|
|
|
|
ctx->publish);
|
|
|
|
else if (ctx->setact && !ctx->unsetpub)
|
2009-11-23 02:55:41 +00:00
|
|
|
dst_key_settime(key, DST_TIME_PUBLISH,
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->activate - ctx->prepub);
|
|
|
|
else if (!ctx->genonly && !ctx->unsetpub)
|
|
|
|
dst_key_settime(key, DST_TIME_PUBLISH,
|
|
|
|
ctx->now);
|
2009-09-14 18:45:45 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setact)
|
|
|
|
dst_key_settime(key, DST_TIME_ACTIVATE,
|
|
|
|
ctx->activate);
|
|
|
|
else if (!ctx->genonly && !ctx->unsetact)
|
2009-09-02 06:29:01 +00:00
|
|
|
dst_key_settime(key, DST_TIME_ACTIVATE,
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->now);
|
2009-09-14 18:45:45 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setrev) {
|
|
|
|
if (ctx->kskflag == 0)
|
2009-09-23 16:01:57 +00:00
|
|
|
fprintf(stderr, "%s: warning: Key is "
|
|
|
|
"not flagged as a KSK, but -R "
|
|
|
|
"was used. Revoking a ZSK is "
|
|
|
|
"legal, but undefined.\n",
|
|
|
|
program);
|
2019-09-11 10:51:36 +02:00
|
|
|
dst_key_settime(key, DST_TIME_REVOKE,
|
|
|
|
ctx->revokekey);
|
2009-09-23 16:01:57 +00:00
|
|
|
}
|
2009-09-14 18:45:45 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setinact)
|
2009-09-14 18:45:45 +00:00
|
|
|
dst_key_settime(key, DST_TIME_INACTIVE,
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->inactive);
|
2009-09-14 18:45:45 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setdel) {
|
|
|
|
if (ctx->setinact &&
|
|
|
|
ctx->deltime < ctx->inactive)
|
|
|
|
{
|
2013-01-17 10:59:16 -06:00
|
|
|
fprintf(stderr, "%s: warning: Key is "
|
|
|
|
"scheduled to be deleted "
|
|
|
|
"before it is scheduled to be "
|
|
|
|
"made inactive.\n",
|
|
|
|
program);
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
|
|
|
dst_key_settime(key, DST_TIME_DELETE,
|
|
|
|
ctx->deltime);
|
2013-01-17 10:59:16 -06:00
|
|
|
}
|
2015-11-05 12:09:48 +11:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setsyncadd)
|
2015-11-05 12:09:48 +11:00
|
|
|
dst_key_settime(key, DST_TIME_SYNCPUBLISH,
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->syncadd);
|
2015-11-05 12:09:48 +11:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setsyncdel)
|
2015-11-05 12:09:48 +11:00
|
|
|
dst_key_settime(key, DST_TIME_SYNCDELETE,
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->syncdel);
|
2015-11-05 12:09:48 +11:00
|
|
|
|
2009-09-02 06:29:01 +00:00
|
|
|
} else {
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setpub || ctx->setact || ctx->setrev ||
|
|
|
|
ctx->setinact || ctx->setdel || ctx->unsetpub ||
|
|
|
|
ctx->unsetact || ctx->unsetrev ||
|
|
|
|
ctx->unsetinact || ctx->unsetdel || ctx->genonly ||
|
|
|
|
ctx->setsyncadd || ctx->setsyncdel)
|
|
|
|
{
|
2009-09-02 06:29:01 +00:00
|
|
|
fatal("cannot use -C together with "
|
2009-09-14 18:45:45 +00:00
|
|
|
"-P, -A, -R, -I, -D, or -G options");
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
2009-09-02 06:29:01 +00:00
|
|
|
/*
|
2009-09-02 23:48:03 +00:00
|
|
|
* Compatibility mode: Private-key-format
|
2009-09-02 06:29:01 +00:00
|
|
|
* should be set to 1.2.
|
|
|
|
*/
|
|
|
|
dst_key_setprivateformat(key, 1, 2);
|
2009-07-19 04:18:05 +00:00
|
|
|
}
|
|
|
|
|
2011-03-17 01:40:40 +00:00
|
|
|
/* Set the default key TTL */
|
2019-09-11 10:51:36 +02:00
|
|
|
if (ctx->setttl)
|
|
|
|
dst_key_setttl(key, ctx->ttl);
|
2011-03-17 01:40:40 +00:00
|
|
|
|
2000-05-15 21:06:41 +00:00
|
|
|
/*
|
2010-01-19 20:26:07 +00:00
|
|
|
* Do not overwrite an existing key, or create a key
|
|
|
|
* if there is a risk of ID collision due to this key
|
|
|
|
* or another key being revoked.
|
2000-05-10 17:57:53 +00:00
|
|
|
*/
|
2019-09-11 10:51:36 +02:00
|
|
|
if (key_collision(key, name, ctx->directory, mctx, NULL)) {
|
2018-04-17 08:29:14 -07:00
|
|
|
conflict = true;
|
2010-01-19 20:26:07 +00:00
|
|
|
if (null_key) {
|
2010-01-19 23:48:56 +00:00
|
|
|
dst_key_free(&key);
|
2000-05-15 21:06:41 +00:00
|
|
|
break;
|
2010-01-19 23:48:56 +00:00
|
|
|
}
|
2010-01-19 20:26:07 +00:00
|
|
|
|
2000-05-24 17:13:29 +00:00
|
|
|
if (verbose > 0) {
|
|
|
|
isc_buffer_clear(&buf);
|
2011-03-11 06:11:27 +00:00
|
|
|
ret = dst_key_buildfilename(key, 0,
|
2019-09-11 10:51:36 +02:00
|
|
|
ctx->directory,
|
|
|
|
&buf);
|
2011-03-11 06:11:27 +00:00
|
|
|
if (ret == ISC_R_SUCCESS)
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: %s already exists, or "
|
|
|
|
"might collide with another "
|
|
|
|
"key upon revokation. "
|
|
|
|
"Generating a new key\n",
|
|
|
|
program, filename);
|
2000-05-24 17:13:29 +00:00
|
|
|
}
|
2010-01-19 20:26:07 +00:00
|
|
|
|
2000-06-01 02:32:12 +00:00
|
|
|
dst_key_free(&key);
|
2000-05-24 17:13:29 +00:00
|
|
|
}
|
2018-04-17 08:29:14 -07:00
|
|
|
} while (conflict == true);
|
2000-05-10 17:57:53 +00:00
|
|
|
|
2000-05-15 21:06:41 +00:00
|
|
|
if (conflict)
|
2010-01-19 20:26:07 +00:00
|
|
|
fatal("cannot generate a null key due to possible key ID "
|
|
|
|
"collision");
|
2000-05-10 17:57:53 +00:00
|
|
|
|
2019-09-11 10:51:36 +02:00
|
|
|
ret = dst_key_tofile(key, ctx->options, ctx->directory);
|
2000-08-14 04:43:17 +00:00
|
|
|
if (ret != ISC_R_SUCCESS) {
|
2009-10-12 20:48:12 +00:00
|
|
|
char keystr[DST_KEY_FORMATSIZE];
|
|
|
|
dst_key_format(key, keystr, sizeof(keystr));
|
2000-08-14 04:43:17 +00:00
|
|
|
fatal("failed to write key %s: %s\n", keystr,
|
|
|
|
isc_result_totext(ret));
|
|
|
|
}
|
2000-05-15 21:06:41 +00:00
|
|
|
|
|
|
|
isc_buffer_clear(&buf);
|
2000-06-06 22:01:49 +00:00
|
|
|
ret = dst_key_buildfilename(key, 0, NULL, &buf);
|
2011-03-11 06:11:27 +00:00
|
|
|
if (ret != ISC_R_SUCCESS)
|
|
|
|
fatal("dst_key_buildfilename returned: %s\n",
|
|
|
|
isc_result_totext(ret));
|
2000-05-15 21:06:41 +00:00
|
|
|
printf("%s\n", filename);
|
2000-05-19 00:20:59 +00:00
|
|
|
dst_key_free(&key);
|
2019-09-11 10:51:36 +02:00
|
|
|
if (prevkey != NULL) {
|
2010-08-16 22:21:07 +00:00
|
|
|
dst_key_free(&prevkey);
|
2019-09-11 10:51:36 +02:00
|
|
|
}
|
1999-09-10 19:52:56 +00:00
|
|
|
}
|