dst_api.c revision 0020640ff6898138074aac6900746f69b876f702
/*
* Portions Copyright (C) 1999-2002 Internet Software Consortium.
* Portions Copyright (C) 1995-2000 by Network Associates, Inc.
*
* 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 INTERNET SOFTWARE CONSORTIUM AND
* NETWORK ASSOCIATES DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE CONSORTIUM OR NETWORK
* ASSOCIATES 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.
*/
/*
* Principal Author: Brian Wellington
* $Id: dst_api.c,v 1.105 2002/12/13 02:37:34 marka Exp $
*/
#include <config.h>
#include <stdlib.h>
#include <isc/fsaccess.h>
#include <dns/fixedname.h>
#include <dns/keyvalues.h>
#include <dns/rdataclass.h>
#include "dst_internal.h"
static unsigned int dst_entropy_flags = 0;
/*
* Static functions.
*/
unsigned int alg,
unsigned int flags,
unsigned int protocol,
unsigned int bits,
const char *directory);
unsigned int alg,
unsigned int type,
const char *directory,
isc_buffer_t *out);
unsigned int alg,
unsigned int flags,
unsigned int protocol,
#define RETERR(x) \
do { \
result = (x); \
if (result != ISC_R_SUCCESS) \
goto out; \
} while (0)
#define RETERR2(x) \
do { \
result = (x); \
if (result != ISC_R_SUCCESS && \
result != ISC_R_NOTIMPLEMENTED) \
goto out; \
} while (0)
do { \
isc_result_t _r; \
if (_r != ISC_R_SUCCESS) \
return (_r); \
} while (0); \
return (ISC_R_SUCCESS);
out:
return (result);
}
void
dst_lib_destroy(void) {
int i;
for (i = 0; i < DST_MAX_ALGS; i++)
dst_t_func[i]->cleanup();
if (dst__memory_pool != NULL)
if (dst_entropy_pool != NULL)
}
dst_algorithm_supported(unsigned int alg) {
return (ISC_FALSE);
return (ISC_TRUE);
}
return (DST_R_UNSUPPORTEDALG);
return (DST_R_NULLKEY);
return (ISC_R_NOMEMORY);
if (result != ISC_R_SUCCESS) {
return (result);
}
return (ISC_R_SUCCESS);
}
void
}
}
return (DST_R_NULLKEY);
return (DST_R_NOTPRIVATEKEY);
return (DST_R_NOTPRIVATEKEY);
}
return (DST_R_NULLKEY);
return (DST_R_NOTPUBLICKEY);
}
{
return (DST_R_NULLKEY);
return (DST_R_KEYCANNOTCOMPUTESECRET);
return (DST_R_NOTPRIVATEKEY);
}
return (DST_R_UNSUPPORTEDALG);
if (type & DST_TYPE_PUBLIC) {
if (ret != ISC_R_SUCCESS)
return (ret);
}
if ((type & DST_TYPE_PRIVATE) &&
else
return (ISC_R_SUCCESS);
}
{
char filename[ISC_DIR_NAMEMAX];
isc_buffer_t b;
if (result != ISC_R_SUCCESS)
return (result);
if (result != ISC_R_SUCCESS)
return (result);
if (result != ISC_R_SUCCESS) {
dst_key_free(&key);
return (result);
}
{
dst_key_free(&key);
return (DST_R_INVALIDPRIVATEKEY);
}
return (ISC_R_SUCCESS);
}
{
char *newfilename = NULL;
int newfilenamelen = 0;
if (result != ISC_R_SUCCESS)
return (result);
if (type == DST_TYPE_PUBLIC ||
{
if (result != ISC_R_SUCCESS) {
return (result);
}
return (ISC_R_SUCCESS);
}
if (result != ISC_R_SUCCESS) {
return (result);
}
return (ISC_R_NOMEMORY);
if (newfilename == NULL)
return (ISC_R_SUCCESS);
out:
if (newfilename != NULL)
dst_key_free(&key);
return (result);
}
return (DST_R_UNSUPPORTEDALG);
return (ISC_R_NOSPACE);
return (ISC_R_NOSPACE);
& 0xffff));
}
return (ISC_R_SUCCESS);
}
{
isc_region_t r;
return (DST_R_INVALIDPUBLICKEY);
if (flags & DNS_KEYFLAG_EXTENDED) {
return (DST_R_INVALIDPUBLICKEY);
}
if (result != ISC_R_SUCCESS)
return (result);
return (ISC_R_SUCCESS);
}
{
if (result != ISC_R_SUCCESS)
return (result);
if (result != ISC_R_SUCCESS) {
dst_key_free(&key);
return (result);
}
return (ISC_R_SUCCESS);
}
return (DST_R_UNSUPPORTEDALG);
}
out:
return (result);
}
{
0, dns_rdataclass_in, mctx);
return (ISC_R_NOMEMORY);
return (ISC_R_SUCCESS);
}
{
return (ISC_R_NOMEMORY);
if (bits == 0) { /* NULL KEY */
return (ISC_R_SUCCESS);
}
dst_key_free(&key);
return (DST_R_UNSUPPORTEDALG);
}
if (ret != ISC_R_SUCCESS) {
dst_key_free(&key);
return (ret);
}
if (ret != ISC_R_SUCCESS) {
dst_key_free(&key);
return (ret);
}
return (ISC_R_SUCCESS);
}
return (ISC_TRUE);
return (ISC_FALSE);
return (ISC_TRUE);
else
return (ISC_FALSE);
}
return (ISC_TRUE);
return (ISC_FALSE);
return (ISC_TRUE);
else
return (ISC_FALSE);
}
void
}
}
}
type == 0);
}
case DST_ALG_RSAMD5:
case DST_ALG_RSASHA1:
break;
case DST_ALG_DSA:
*n = DNS_SIG_DSASIGSIZE;
break;
case DST_ALG_HMACMD5:
*n = 16;
break;
case DST_ALG_GSSAPI:
*n = 128; /* XXX */
break;
case DST_ALG_DH:
default:
return (DST_R_UNSUPPORTEDALG);
}
return (ISC_R_SUCCESS);
}
case DST_ALG_DH:
break;
case DST_ALG_RSAMD5:
case DST_ALG_RSASHA1:
case DST_ALG_DSA:
case DST_ALG_HMACMD5:
default:
return (DST_R_UNSUPPORTEDALG);
}
return (ISC_R_SUCCESS);
}
/***
*** Static methods
***/
/*
* Allocates a key structure and fills in some of the fields.
*/
static dst_key_t *
{
return (NULL);
return (NULL);
}
if (result != ISC_R_SUCCESS) {
return (NULL);
}
return (key);
}
/*
* Reads a public key from disk
*/
static isc_result_t
isc_buffer_t b;
unsigned int opt = ISC_LEXOPT_DNSMULTILINE;
char *newfilename;
unsigned int newfilenamelen;
if (newfilename == NULL)
return (ISC_R_NOMEMORY);
/*
* Open the file and read its formatted contents
* File format:
* domain.name [ttl] [class] KEY <flags> <protocol> <algorithm> <key>
*/
/* 1500 should be large enough for any key */
if (ret != ISC_R_SUCCESS)
goto cleanup;
if (ret != ISC_R_SUCCESS)
goto cleanup;
if (ret != ISC_R_SUCCESS) \
goto cleanup; \
}
#define BADTOKEN() { \
ret = ISC_R_UNEXPECTEDTOKEN; \
goto cleanup; \
}
/* Read the domain name */
BADTOKEN();
if (ret != ISC_R_SUCCESS)
goto cleanup;
/* Read the next word: either TTL, class, or 'KEY' */
/* If it's a TTL, read the next one */
if (result == ISC_R_SUCCESS)
BADTOKEN();
if (ret == ISC_R_SUCCESS)
BADTOKEN();
BADTOKEN();
if (ret != ISC_R_SUCCESS)
goto cleanup;
keyp);
if (ret != ISC_R_SUCCESS)
goto cleanup;
return (ret);
}
static isc_boolean_t
case DST_ALG_RSAMD5:
case DST_ALG_RSASHA1:
case DST_ALG_DSA:
case DST_ALG_DH:
return (ISC_FALSE);
case DST_ALG_HMACMD5:
case DST_ALG_GSSAPI:
return (ISC_TRUE);
default:
return (ISC_FALSE);
}
}
/*
* Writes a public key to disk in DNS format.
*/
static isc_result_t
isc_region_t r;
char filename[ISC_DIR_NAMEMAX];
unsigned char key_array[DST_KEY_MAXSIZE];
char text_array[DST_KEY_MAXTEXTSIZE];
char class_array[10];
if (ret != ISC_R_SUCCESS)
return (ret);
isc_buffer_usedregion(&keyb, &r);
if (ret != ISC_R_SUCCESS)
return (DST_R_INVALIDPUBLICKEY);
if (ret != ISC_R_SUCCESS)
return (DST_R_INVALIDPUBLICKEY);
/*
* Make the filename.
*/
if (ret != ISC_R_SUCCESS)
return (ret);
/*
* Create public key file.
*/
return (DST_R_WRITEERROR);
if (issymmetric(key)) {
access = 0;
&access);
}
if (ret != ISC_R_SUCCESS)
return (ret);
isc_buffer_usedregion(&classb, &r);
isc_buffer_usedregion(&textb, &r);
return (ISC_R_SUCCESS);
}
static isc_result_t
{
const char *suffix = "";
unsigned int len;
if ((type & DST_TYPE_PRIVATE) != 0)
suffix = ".private";
else if (type == DST_TYPE_PUBLIC)
suffix = ".key";
return (ISC_R_NOSPACE);
}
return (ISC_R_NOSPACE);
if (result != ISC_R_SUCCESS)
return (result);
return (ISC_R_NOSPACE);
return (ISC_R_SUCCESS);
}
static isc_result_t
unsigned char dns_array[DST_KEY_MAXSIZE];
isc_region_t r;
if (ret != ISC_R_SUCCESS)
return (ret);
isc_buffer_usedregion(&dnsbuf, &r);
return (ISC_R_SUCCESS);
}
static isc_result_t
{
return (ISC_R_NOMEMORY);
if (isc_buffer_remaininglength(source) > 0) {
if (ret != ISC_R_SUCCESS) {
dst_key_free(&key);
return (ret);
}
dst_key_free(&key);
return (DST_R_UNSUPPORTEDALG);
}
if (ret != ISC_R_SUCCESS) {
dst_key_free(&key);
return (ret);
}
}
return (ISC_R_SUCCESS);
}
static isc_result_t
algorithm_status(unsigned int alg) {
if (dst_algorithm_supported(alg))
return (ISC_R_SUCCESS);
alg == DST_ALG_HMACMD5)
return (DST_R_NOCRYPTO);
return (DST_R_UNSUPPORTEDALG);
}
const char *suffix)
{
int n;
olen -= 1;
olen -= 8;
olen -= 4;
if (n < 0)
return (ISC_R_NOSPACE);
return (ISC_R_SUCCESS);
}
unsigned int flags = dst_entropy_flags;
if (pseudo)
}