2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00
bind/bin/dnssec/dnssec-keygen.c

352 lines
9.4 KiB
C
Raw Normal View History

1999-09-10 19:52:56 +00:00
/*
* Portions Copyright (c) 1995-2000 by Network Associates, Inc.
1999-09-10 19:52:56 +00:00
*
* Permission to use, copy modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND NETWORK ASSOCIATES
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
* TRUSTED INFORMATION SYSTEMS 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 THE SOFTWARE.
*/
/* $Id: dnssec-keygen.c,v 1.17 2000/05/10 17:57:53 ogud Exp $ */
1999-09-10 19:52:56 +00:00
#include <config.h>
#include <stdlib.h>
#include <isc/commandline.h>
1999-09-10 19:52:56 +00:00
#include <isc/mem.h>
#include <isc/region.h>
#include <isc/string.h>
2000-04-28 01:12:23 +00:00
#include <isc/util.h>
1999-09-10 19:52:56 +00:00
#include <dns/keyvalues.h>
2000-04-25 17:57:10 +00:00
#include <dns/secalg.h>
1999-09-10 19:52:56 +00:00
#include <dst/dst.h>
#include <dst/result.h>
static isc_boolean_t dsa_size_ok(int size);
static void die(char *str);
static void usage(char *prog);
static int verbose;
#define MAX_RSA 2048 /* XXX ogud update this when rsa library is updated */
1999-09-10 19:52:56 +00:00
int
main(int argc, char **argv) {
char *algname = NULL, *nametype = NULL, *type = NULL;
char *prog, *endp;
dst_key_t *key, *old_keyp;
char *name = NULL;
isc_uint16_t flags = 0;
dns_secalg_t alg;
isc_boolean_t conflict = ISC_FALSE, null_key = ISC_FALSE;
isc_mem_t *mctx = NULL;
int ch, rsa_exp = 0, generator = 0, param = 0;
int protocol = -1, size = -1, signatory = 0;
isc_result_t ret;
isc_textregion_t r;
1999-09-10 19:52:56 +00:00
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
if ((prog = strrchr(argv[0],'/')) == NULL)
2000-04-25 17:57:10 +00:00
prog = isc_mem_strdup(mctx, argv[0]);
1999-09-10 19:52:56 +00:00
else
2000-04-25 17:57:10 +00:00
prog = isc_mem_strdup(mctx, ++prog);
if (prog == NULL)
die("strdup failure");
if (argc == 1)
usage(prog);
1999-09-10 19:52:56 +00:00
while ((ch = isc_commandline_parse(argc, argv,
"a:b:eg:n:t:p:s:hv:")) != -1)
2000-04-25 17:57:10 +00:00
{
1999-09-10 19:52:56 +00:00
switch (ch) {
case 'a':
2000-04-25 17:57:10 +00:00
algname = isc_mem_strdup(mctx,
isc_commandline_argument);
if (algname == NULL)
die("strdup failure");
1999-09-10 19:52:56 +00:00
break;
2000-04-25 17:57:10 +00:00
case 'b':
size = strtol(isc_commandline_argument, &endp, 10);
if (*endp != '\0' || size < 0)
die("-b requires a non-negative number");
1999-09-10 19:52:56 +00:00
break;
2000-04-25 17:57:10 +00:00
case 'e':
rsa_exp = 1;
1999-09-10 19:52:56 +00:00
break;
1999-09-27 17:11:41 +00:00
case 'g':
2000-04-25 17:57:10 +00:00
generator = strtol(isc_commandline_argument, &endp, 10);
if (*endp != '\0' || generator <= 0)
die("-g requires a positive number");
break;
case 'n':
nametype = isc_mem_strdup(mctx,
isc_commandline_argument);
if (nametype == NULL)
die("strdup failure");
break;
case 't':
type = isc_mem_strdup(mctx, isc_commandline_argument);
if (type == NULL)
die("strdup failure");
1999-09-27 17:11:41 +00:00
break;
1999-09-10 19:52:56 +00:00
case 'p':
2000-04-25 17:57:10 +00:00
protocol = strtol(isc_commandline_argument, &endp, 10);
if (*endp != '\0' || protocol < 0 || protocol > 255)
die("-p must be followed by "
"a number [0..255]");
1999-09-10 19:52:56 +00:00
break;
case 's':
signatory = strtol(isc_commandline_argument,
&endp, 10);
2000-04-25 17:57:10 +00:00
if (*endp != '\0' || signatory < 0 || signatory > 15)
die("-s must be followed by a number [0..15]");
1999-09-10 19:52:56 +00:00
break;
case 'v':
endp = NULL;
verbose = strtol(isc_commandline_argument, &endp, 0);
if (*endp != '\0')
die("-v must be followed by a number");
break;
1999-09-10 19:52:56 +00:00
case 'h':
2000-04-25 17:57:10 +00:00
usage(prog);
1999-09-10 19:52:56 +00:00
default:
printf("invalid argument -%c\n", ch);
usage(prog);
}
}
if (argc < isc_commandline_index + 1)
die("Must specify a domain name");
if (argc > isc_commandline_index + 1)
2000-04-25 17:57:10 +00:00
die("Extraneous arguments");
1999-09-10 19:52:56 +00:00
2000-04-25 17:57:10 +00:00
if (algname == NULL)
1999-09-10 19:52:56 +00:00
die("No algorithm specified");
2000-04-25 17:57:10 +00:00
if (strcasecmp(algname, "RSA") == 0)
alg = DNS_KEYALG_RSA;
else if (strcasecmp(algname, "HMAC-MD5") == 0)
alg = DST_ALG_HMACMD5;
else {
r.base = algname;
r.length = strlen(algname);
ret = dns_secalg_fromtext(&alg, &r);
if (ret != ISC_R_SUCCESS)
die("Unknown algorithm");
}
1999-09-10 19:52:56 +00:00
if (dst_supported_algorithm(alg) == ISC_FALSE)
die("Unsupported algorithm");
2000-04-25 17:57:10 +00:00
if (type != NULL) {
if (strcasecmp(type, "NOAUTH") == 0)
flags |= DNS_KEYTYPE_NOAUTH;
else if (strcasecmp(type, "NOCONF") == 0)
flags |= DNS_KEYTYPE_NOCONF;
else if (strcasecmp(type, "NOAUTHCONF") == 0) {
2000-04-25 17:57:10 +00:00
flags |= (DNS_KEYTYPE_NOAUTH | DNS_KEYTYPE_NOCONF);
if (size < 0)
size = 0;
}
2000-04-25 17:57:10 +00:00
else if (strcasecmp(type, "AUTHCONF") == 0)
/* nothing */;
else
die("Invalid type");
}
if (size < 0)
die("Must specify key size (-b option)");
2000-04-25 17:57:10 +00:00
switch (alg) {
case DNS_KEYALG_RSA:
if (size != 0 && (size < 512 || size > MAX_RSA))
2000-04-25 17:57:10 +00:00
die("RSA key size out of range");
break;
case DNS_KEYALG_DH:
if (size != 0 && (size < 128 || size > 4096))
die("DH key size out of range");
break;
case DNS_KEYALG_DSA:
if (size != 0 && !dsa_size_ok(size))
2000-04-25 17:57:10 +00:00
die("Invalid DSS key size");
break;
case DST_ALG_HMACMD5:
if (size < 1 || size > 512)
die("Invalid HMAC-MD5 key size");
break;
}
if (alg != DNS_KEYALG_RSA && rsa_exp != 0)
die("Cannot specify RSA exponent without RSA");
if (alg != DNS_KEYALG_DH && generator != 0)
die("Cannot specify DH generator without DH");
if (nametype == NULL)
die("No nametype specified");
if (strcasecmp(nametype, "zone") == 0)
flags |= DNS_KEYOWNER_ZONE;
else if (strcasecmp(nametype, "host") == 0 ||
strcasecmp(nametype, "entity") == 0)
flags |= DNS_KEYOWNER_ENTITY;
else if (strcasecmp(nametype, "user") == 0)
flags |= DNS_KEYOWNER_USER;
else
die("Invalid nametype");
flags |= signatory;
1999-09-10 19:52:56 +00:00
if (protocol == -1) {
if ((flags & DNS_KEYFLAG_OWNERMASK) == DNS_KEYOWNER_USER)
protocol = DNS_KEYPROTO_EMAIL;
else
protocol = DNS_KEYPROTO_DNSSEC;
}
if ((flags & DNS_KEYFLAG_TYPEMASK) == DNS_KEYTYPE_NOKEY) {
if (size > 0)
die("Specified null key with non-zero size");
if ((flags & DNS_KEYFLAG_SIGNATORYMASK) != 0)
die("Specified null key with signing authority");
}
2000-04-25 17:57:10 +00:00
name = isc_mem_allocate(mctx, strlen(argv[isc_commandline_index]) + 2);
if (name == NULL)
die("strdup failure");
strcpy(name, argv[isc_commandline_index]);
if (name[strlen(name) - 1] != '.') {
strcat(name, ".");
printf("** Added a trailing dot to fully qualify the name\n");
1999-09-10 19:52:56 +00:00
}
2000-04-25 17:57:10 +00:00
printf("Generating %d bit %s key for %s\n", size, algname, name);
1999-09-10 19:52:56 +00:00
switch(alg) {
2000-04-25 17:57:10 +00:00
case DNS_KEYALG_RSA:
param = rsa_exp;
break;
case DNS_KEYALG_DH:
param = generator;
break;
case DNS_KEYALG_DSA:
case DST_ALG_HMACMD5:
param = 0;
break;
1999-09-10 19:52:56 +00:00
}
2000-03-06 20:04:15 +00:00
dst_result_register();
do {
conflict = ISC_FALSE;
/* generate the key */
ret = dst_key_generate(name, alg, size, param, flags, protocol,
mctx, &key);
if (ret != ISC_R_SUCCESS) {
printf("Failed to generate key: %s\n",
dst_result_totext(ret));
exit(-1);
}
/* now try to read a key with same name, alg and id from file
* if there is one we must continue generating a new one
* unless we were asked to generate a null-key.
*/
if ((dst_key_flags(key) & DNS_KEYFLAG_TYPEMASK) ==DNS_KEYTYPE_NOKEY)
null_key = ISC_TRUE;
else if (dst_key_id(key) == 0) {
/* non null key can not have id == 0 */
conflict = ISC_TRUE;
}
else {
ret = dst_key_fromfile( name, dst_key_id(key), alg,
DST_TYPE_PRIVATE, mctx, &old_keyp);
/* we are not allowed to overwrite an existing key */
if (ret == ISC_R_SUCCESS) {
printf("Detected conflict %d\n", dst_key_id(key));
if (ret == ISC_R_SUCCESS)
dst_key_free(old_keyp);
conflict = ISC_TRUE;
}
}
if (conflict == ISC_TRUE && null_key == ISC_FALSE)
/* non-null keys can not have id == 0 */
dst_key_free(key);
} while ((conflict == ISC_TRUE) && (null_key == ISC_FALSE));
if (conflict == ISC_FALSE) { /* write file */
ret = dst_key_tofile(key, DST_TYPE_PUBLIC | DST_TYPE_PRIVATE);
if (ret != ISC_R_SUCCESS) {
printf("Failed to write key %s(%d)\n", name,
dst_key_id(key));
exit(-1);
}
printf("Generated %d bit key %s: id=%d alg=%d flags=%d\n\n",
size, name, dst_key_id(key), dst_key_alg(key),
dst_key_flags(key));
1999-09-10 19:52:56 +00:00
}
2000-04-25 17:57:10 +00:00
isc_mem_free(mctx, name);
isc_mem_free(mctx, algname);
isc_mem_free(mctx, nametype);
isc_mem_free(mctx, prog);
if (type != NULL)
isc_mem_free(mctx, type);
dst_key_free(key);
isc_mem_destroy(&mctx);
return (0);
1999-09-10 19:52:56 +00:00
}
static isc_boolean_t
dsa_size_ok(int size) {
return (ISC_TF(size >= 512 && size <= 1024 && size % 64 == 0));
1999-09-10 19:52:56 +00:00
}
static void
die(char *str) {
printf("%s\n", str);
exit(-1);
}
static void
usage(char *prog) {
2000-04-25 17:57:10 +00:00
printf("Usage:\n");
printf(" %s [options] name\n\n", prog);
printf("Required options:\n");
2000-04-25 17:57:10 +00:00
printf(" -a algorithm: RSA | RSAMD5 | DH | DSA | HMAC-MD5\n");
printf(" -b key size, in bits:\n");
printf(" RSA:\t\t[512..%d]\n", MAX_RSA);
2000-04-25 17:57:10 +00:00
printf(" DH:\t\t[128..4096]\n");
printf(" DSA:\t\t[512..1024] and dividable by 64\n");
2000-04-25 17:57:10 +00:00
printf(" HMAC-MD5:\t[1..512]\n");
printf(" -n nametype: ZONE | HOST | ENTITY | USER\n");
printf(" name: owner of the key\n");
printf("Other options:\n");
2000-04-25 17:57:10 +00:00
printf(" -e use large exponent (RSA only)\n");
printf(" -g use specified generator (DH only)\n");
printf(" -t type: AUTHCONF | NOAUTHCONF | NOAUTH | NOCONF\n");
printf(" default: AUTHCONF\n");
printf(" -p protocol value\n");
printf(" default: 2 (email) for User keys, "
"3 (dnssec) for all others\n");
2000-04-25 17:57:10 +00:00
printf(" -s strength value this key signs DNS records with\n");
printf(" default: 0\n");
printf(" -v verbose level\n");
1999-09-10 19:52:56 +00:00
exit (-1);
}