dst_internal.h revision 254897
1/*
2 * Portions Copyright (C) 2004-2012  Internet Systems Consortium, Inc. ("ISC")
3 * Portions Copyright (C) 2000-2002  Internet Software Consortium.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NETWORK ASSOCIATES DISCLAIMS
10 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11 * WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE
12 * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 *
17 * Portions Copyright (C) 1995-2000 by Network Associates, Inc.
18 *
19 * Permission to use, copy, modify, and/or distribute this software for any
20 * purpose with or without fee is hereby granted, provided that the above
21 * copyright notice and this permission notice appear in all copies.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NETWORK ASSOCIATES DISCLAIMS
24 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
25 * WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE
26 * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
27 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
28 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
29 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
30 */
31
32/* $Id: dst_internal.h,v 1.31 2011/10/20 21:20:02 marka Exp $ */
33
34#ifndef DST_DST_INTERNAL_H
35#define DST_DST_INTERNAL_H 1
36
37#include <isc/lang.h>
38#include <isc/buffer.h>
39#include <isc/int.h>
40#include <isc/magic.h>
41#include <isc/region.h>
42#include <isc/types.h>
43#include <isc/md5.h>
44#include <isc/refcount.h>
45#include <isc/sha1.h>
46#include <isc/sha2.h>
47#include <isc/stdtime.h>
48#include <isc/hmacmd5.h>
49#include <isc/hmacsha.h>
50
51#include <dns/time.h>
52
53#include <dst/dst.h>
54
55#ifdef OPENSSL
56#include <openssl/dh.h>
57#include <openssl/dsa.h>
58#include <openssl/err.h>
59#include <openssl/evp.h>
60#include <openssl/objects.h>
61#include <openssl/rsa.h>
62#endif
63
64ISC_LANG_BEGINDECLS
65
66#define KEY_MAGIC	ISC_MAGIC('D','S','T','K')
67#define CTX_MAGIC	ISC_MAGIC('D','S','T','C')
68
69#define VALID_KEY(x) ISC_MAGIC_VALID(x, KEY_MAGIC)
70#define VALID_CTX(x) ISC_MAGIC_VALID(x, CTX_MAGIC)
71
72extern isc_mem_t *dst__memory_pool;
73
74/***
75 *** Types
76 ***/
77
78typedef struct dst_func dst_func_t;
79
80typedef struct dst_hmacmd5_key	  dst_hmacmd5_key_t;
81typedef struct dst_hmacsha1_key   dst_hmacsha1_key_t;
82typedef struct dst_hmacsha224_key dst_hmacsha224_key_t;
83typedef struct dst_hmacsha256_key dst_hmacsha256_key_t;
84typedef struct dst_hmacsha384_key dst_hmacsha384_key_t;
85typedef struct dst_hmacsha512_key dst_hmacsha512_key_t;
86
87/*% DST Key Structure */
88struct dst_key {
89	unsigned int	magic;
90	isc_refcount_t	refs;
91	dns_name_t *	key_name;	/*%< name of the key */
92	unsigned int	key_size;	/*%< size of the key in bits */
93	unsigned int	key_proto;	/*%< protocols this key is used for */
94	unsigned int	key_alg;	/*%< algorithm of the key */
95	isc_uint32_t	key_flags;	/*%< flags of the public key */
96	isc_uint16_t	key_id;		/*%< identifier of the key */
97	isc_uint16_t	key_rid;	/*%< identifier of the key when
98					     revoked */
99	isc_uint16_t	key_bits;	/*%< hmac digest bits */
100	dns_rdataclass_t key_class;	/*%< class of the key record */
101	dns_ttl_t	key_ttl;	/*%< default/initial dnskey ttl */
102	isc_mem_t	*mctx;		/*%< memory context */
103	char		*engine;	/*%< engine name (HSM) */
104	char		*label;		/*%< engine label (HSM) */
105	union {
106		void *generic;
107		gss_ctx_id_t gssctx;
108#ifdef OPENSSL
109#if !defined(USE_EVP) || !USE_EVP
110		RSA *rsa;
111#endif
112		DSA *dsa;
113		DH *dh;
114		EVP_PKEY *pkey;
115#endif
116		dst_hmacmd5_key_t *hmacmd5;
117		dst_hmacsha1_key_t *hmacsha1;
118		dst_hmacsha224_key_t *hmacsha224;
119		dst_hmacsha256_key_t *hmacsha256;
120		dst_hmacsha384_key_t *hmacsha384;
121		dst_hmacsha512_key_t *hmacsha512;
122
123	} keydata;			/*%< pointer to key in crypto pkg fmt */
124
125	isc_stdtime_t	times[DST_MAX_TIMES + 1];    /*%< timing metadata */
126	isc_boolean_t	timeset[DST_MAX_TIMES + 1];  /*%< data set? */
127	isc_stdtime_t	nums[DST_MAX_NUMERIC + 1];   /*%< numeric metadata */
128	isc_boolean_t	numset[DST_MAX_NUMERIC + 1]; /*%< data set? */
129
130	int		fmt_major;     /*%< private key format, major version */
131	int		fmt_minor;     /*%< private key format, minor version */
132
133	dst_func_t *    func;	       /*%< crypto package specific functions */
134	isc_buffer_t   *key_tkeytoken; /*%< TKEY token data */
135};
136
137struct dst_context {
138	unsigned int magic;
139	dst_key_t *key;
140	isc_mem_t *mctx;
141	isc_logcategory_t *category;
142	union {
143		void *generic;
144		dst_gssapi_signverifyctx_t *gssctx;
145		isc_md5_t *md5ctx;
146		isc_sha1_t *sha1ctx;
147		isc_sha256_t *sha256ctx;
148		isc_sha512_t *sha512ctx;
149		isc_hmacmd5_t *hmacmd5ctx;
150		isc_hmacsha1_t *hmacsha1ctx;
151		isc_hmacsha224_t *hmacsha224ctx;
152		isc_hmacsha256_t *hmacsha256ctx;
153		isc_hmacsha384_t *hmacsha384ctx;
154		isc_hmacsha512_t *hmacsha512ctx;
155#ifdef OPENSSL
156		EVP_MD_CTX *evp_md_ctx;
157#endif
158	} ctxdata;
159};
160
161struct dst_func {
162	/*
163	 * Context functions
164	 */
165	isc_result_t (*createctx)(dst_key_t *key, dst_context_t *dctx);
166	void (*destroyctx)(dst_context_t *dctx);
167	isc_result_t (*adddata)(dst_context_t *dctx, const isc_region_t *data);
168
169	/*
170	 * Key operations
171	 */
172	isc_result_t (*sign)(dst_context_t *dctx, isc_buffer_t *sig);
173	isc_result_t (*verify)(dst_context_t *dctx, const isc_region_t *sig);
174	isc_result_t (*verify2)(dst_context_t *dctx, int maxbits,
175				const isc_region_t *sig);
176	isc_result_t (*computesecret)(const dst_key_t *pub,
177				      const dst_key_t *priv,
178				      isc_buffer_t *secret);
179	isc_boolean_t (*compare)(const dst_key_t *key1, const dst_key_t *key2);
180	isc_boolean_t (*paramcompare)(const dst_key_t *key1,
181				      const dst_key_t *key2);
182	isc_result_t (*generate)(dst_key_t *key, int parms,
183				 void (*callback)(int));
184	isc_boolean_t (*isprivate)(const dst_key_t *key);
185	void (*destroy)(dst_key_t *key);
186
187	/* conversion functions */
188	isc_result_t (*todns)(const dst_key_t *key, isc_buffer_t *data);
189	isc_result_t (*fromdns)(dst_key_t *key, isc_buffer_t *data);
190	isc_result_t (*tofile)(const dst_key_t *key, const char *directory);
191	isc_result_t (*parse)(dst_key_t *key,
192			      isc_lex_t *lexer,
193			      dst_key_t *pub);
194
195	/* cleanup */
196	void (*cleanup)(void);
197
198	isc_result_t (*fromlabel)(dst_key_t *key, const char *engine,
199				  const char *label, const char *pin);
200	isc_result_t (*dump)(dst_key_t *key, isc_mem_t *mctx, char **buffer,
201			     int *length);
202	isc_result_t (*restore)(dst_key_t *key, const char *keystr);
203};
204
205/*%
206 * Initializers
207 */
208isc_result_t dst__openssl_init(const char *engine);
209
210isc_result_t dst__hmacmd5_init(struct dst_func **funcp);
211isc_result_t dst__hmacsha1_init(struct dst_func **funcp);
212isc_result_t dst__hmacsha224_init(struct dst_func **funcp);
213isc_result_t dst__hmacsha256_init(struct dst_func **funcp);
214isc_result_t dst__hmacsha384_init(struct dst_func **funcp);
215isc_result_t dst__hmacsha512_init(struct dst_func **funcp);
216isc_result_t dst__opensslrsa_init(struct dst_func **funcp,
217				  unsigned char algorithm);
218isc_result_t dst__openssldsa_init(struct dst_func **funcp);
219isc_result_t dst__openssldh_init(struct dst_func **funcp);
220isc_result_t dst__gssapi_init(struct dst_func **funcp);
221#ifdef HAVE_OPENSSL_GOST
222isc_result_t dst__opensslgost_init(struct dst_func **funcp);
223#endif
224#ifdef HAVE_OPENSSL_ECDSA
225isc_result_t dst__opensslecdsa_init(struct dst_func **funcp);
226#endif
227
228/*%
229 * Destructors
230 */
231void dst__openssl_destroy(void);
232
233/*%
234 * Memory allocators using the DST memory pool.
235 */
236void * dst__mem_alloc(size_t size);
237void   dst__mem_free(void *ptr);
238void * dst__mem_realloc(void *ptr, size_t size);
239
240/*%
241 * Entropy retriever using the DST entropy pool.
242 */
243isc_result_t dst__entropy_getdata(void *buf, unsigned int len,
244				  isc_boolean_t pseudo);
245
246/*
247 * Entropy status hook.
248 */
249unsigned int dst__entropy_status(void);
250
251ISC_LANG_ENDDECLS
252
253#endif /* DST_DST_INTERNAL_H */
254/*! \file */
255