dst_api.c revision 1.6 1 1.5 christos /* $NetBSD: dst_api.c,v 1.6 2020/05/24 19:46:22 christos Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Portions Copyright (C) Internet Systems Consortium, Inc. ("ISC")
5 1.1 christos *
6 1.1 christos * This Source Code Form is subject to the terms of the Mozilla Public
7 1.1 christos * License, v. 2.0. If a copy of the MPL was not distributed with this
8 1.1 christos * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 1.1 christos *
10 1.1 christos * See the COPYRIGHT file distributed with this work for additional
11 1.1 christos * information regarding copyright ownership.
12 1.1 christos *
13 1.1 christos * Portions Copyright (C) Network Associates, Inc.
14 1.1 christos *
15 1.1 christos * Permission to use, copy, modify, and/or distribute this software for any
16 1.1 christos * purpose with or without fee is hereby granted, provided that the above
17 1.1 christos * copyright notice and this permission notice appear in all copies.
18 1.1 christos *
19 1.1 christos * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NETWORK ASSOCIATES DISCLAIMS
20 1.1 christos * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
21 1.1 christos * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE
22 1.1 christos * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
23 1.1 christos * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
24 1.1 christos * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
25 1.1 christos * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 1.1 christos */
27 1.1 christos
28 1.1 christos /*! \file */
29 1.1 christos
30 1.3 christos #include <inttypes.h>
31 1.3 christos #include <stdbool.h>
32 1.1 christos #include <stdlib.h>
33 1.1 christos #include <time.h>
34 1.1 christos
35 1.1 christos #include <isc/buffer.h>
36 1.1 christos #include <isc/dir.h>
37 1.6 christos #include <isc/file.h>
38 1.1 christos #include <isc/fsaccess.h>
39 1.1 christos #include <isc/lex.h>
40 1.1 christos #include <isc/mem.h>
41 1.1 christos #include <isc/once.h>
42 1.1 christos #include <isc/platform.h>
43 1.1 christos #include <isc/print.h>
44 1.6 christos #include <isc/random.h>
45 1.1 christos #include <isc/refcount.h>
46 1.1 christos #include <isc/safe.h>
47 1.1 christos #include <isc/string.h>
48 1.1 christos #include <isc/time.h>
49 1.1 christos #include <isc/util.h>
50 1.1 christos
51 1.1 christos #include <pk11/site.h>
52 1.1 christos
53 1.1 christos #define DST_KEY_INTERNAL
54 1.1 christos
55 1.1 christos #include <dns/fixedname.h>
56 1.1 christos #include <dns/keyvalues.h>
57 1.1 christos #include <dns/name.h>
58 1.1 christos #include <dns/rdata.h>
59 1.1 christos #include <dns/rdataclass.h>
60 1.1 christos #include <dns/ttl.h>
61 1.1 christos #include <dns/types.h>
62 1.1 christos
63 1.1 christos #include <dst/result.h>
64 1.1 christos
65 1.1 christos #include "dst_internal.h"
66 1.1 christos
67 1.1 christos #define DST_AS_STR(t) ((t).value.as_textregion.base)
68 1.1 christos
69 1.6 christos #define NEXTTOKEN(lex, opt, token) \
70 1.6 christos { \
71 1.6 christos ret = isc_lex_gettoken(lex, opt, token); \
72 1.6 christos if (ret != ISC_R_SUCCESS) \
73 1.6 christos goto cleanup; \
74 1.6 christos }
75 1.6 christos
76 1.6 christos #define NEXTTOKEN_OR_EOF(lex, opt, token) \
77 1.6 christos do { \
78 1.6 christos ret = isc_lex_gettoken(lex, opt, token); \
79 1.6 christos if (ret == ISC_R_EOF) \
80 1.6 christos break; \
81 1.6 christos if (ret != ISC_R_SUCCESS) \
82 1.6 christos goto cleanup; \
83 1.6 christos } while ((*token).type == isc_tokentype_eol);
84 1.6 christos
85 1.6 christos #define READLINE(lex, opt, token) \
86 1.6 christos do { \
87 1.6 christos ret = isc_lex_gettoken(lex, opt, token); \
88 1.6 christos if (ret == ISC_R_EOF) \
89 1.6 christos break; \
90 1.6 christos if (ret != ISC_R_SUCCESS) \
91 1.6 christos goto cleanup; \
92 1.6 christos } while ((*token).type != isc_tokentype_eol)
93 1.6 christos
94 1.6 christos #define BADTOKEN() \
95 1.6 christos { \
96 1.6 christos ret = ISC_R_UNEXPECTEDTOKEN; \
97 1.6 christos goto cleanup; \
98 1.6 christos }
99 1.6 christos
100 1.6 christos #define NUMERIC_NTAGS (DST_MAX_NUMERIC + 1)
101 1.6 christos static const char *numerictags[NUMERIC_NTAGS] = {
102 1.6 christos "Predecessor:", "Successor:", "MaxTTL:", "RollPeriod:", "Lifetime:"
103 1.6 christos };
104 1.6 christos
105 1.6 christos #define BOOLEAN_NTAGS (DST_MAX_BOOLEAN + 1)
106 1.6 christos static const char *booleantags[BOOLEAN_NTAGS] = { "KSK:", "ZSK:" };
107 1.6 christos
108 1.6 christos #define TIMING_NTAGS (DST_MAX_TIMES + 1)
109 1.6 christos static const char *timingtags[TIMING_NTAGS] = {
110 1.6 christos "Generated:", "Published:", "Active:", "Revoked:",
111 1.6 christos "Retired:", "Removed:",
112 1.6 christos
113 1.6 christos "DSPublish:", "SyncPublish:", "SyncDelete:",
114 1.6 christos
115 1.6 christos "DNSKEYChange:", "ZRRSIGChange:", "KRRSIGChange:", "DSChange:"
116 1.6 christos };
117 1.6 christos
118 1.6 christos #define KEYSTATES_NTAGS (DST_MAX_KEYSTATES + 1)
119 1.6 christos static const char *keystatestags[KEYSTATES_NTAGS] = {
120 1.6 christos "DNSKEYState:", "ZRRSIGState:", "KRRSIGState:", "DSState:", "GoalState:"
121 1.6 christos };
122 1.6 christos
123 1.6 christos #define KEYSTATES_NVALUES 4
124 1.6 christos static const char *keystates[KEYSTATES_NVALUES] = {
125 1.6 christos "hidden",
126 1.6 christos "rumoured",
127 1.6 christos "omnipresent",
128 1.6 christos "unretentive",
129 1.6 christos };
130 1.6 christos
131 1.6 christos #define STATE_ALGORITHM_STR "Algorithm:"
132 1.6 christos #define STATE_LENGTH_STR "Length:"
133 1.6 christos #define MAX_NTAGS \
134 1.6 christos (DST_MAX_NUMERIC + DST_MAX_BOOLEAN + DST_MAX_TIMES + DST_MAX_KEYSTATES)
135 1.6 christos
136 1.1 christos static dst_func_t *dst_t_func[DST_MAX_ALGS];
137 1.1 christos
138 1.3 christos static bool dst_initialized = false;
139 1.1 christos
140 1.6 christos void
141 1.6 christos gss_log(int level, const char *fmt, ...) ISC_FORMAT_PRINTF(2, 3);
142 1.1 christos
143 1.1 christos /*
144 1.1 christos * Static functions.
145 1.1 christos */
146 1.6 christos static dst_key_t *
147 1.6 christos get_key_struct(const dns_name_t *name, unsigned int alg, unsigned int flags,
148 1.6 christos unsigned int protocol, unsigned int bits,
149 1.6 christos dns_rdataclass_t rdclass, dns_ttl_t ttl, isc_mem_t *mctx);
150 1.6 christos static isc_result_t
151 1.6 christos write_public_key(const dst_key_t *key, int type, const char *directory);
152 1.6 christos static isc_result_t
153 1.6 christos write_key_state(const dst_key_t *key, int type, const char *directory);
154 1.6 christos static isc_result_t
155 1.6 christos buildfilename(dns_name_t *name, dns_keytag_t id, unsigned int alg,
156 1.6 christos unsigned int type, const char *directory, isc_buffer_t *out);
157 1.6 christos static isc_result_t
158 1.6 christos computeid(dst_key_t *key);
159 1.6 christos static isc_result_t
160 1.6 christos frombuffer(const dns_name_t *name, unsigned int alg, unsigned int flags,
161 1.6 christos unsigned int protocol, dns_rdataclass_t rdclass,
162 1.6 christos isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp);
163 1.6 christos
164 1.6 christos static isc_result_t
165 1.6 christos algorithm_status(unsigned int alg);
166 1.6 christos
167 1.6 christos static isc_result_t
168 1.6 christos addsuffix(char *filename, int len, const char *dirname, const char *ofilename,
169 1.6 christos const char *suffix);
170 1.6 christos
171 1.6 christos #define RETERR(x) \
172 1.6 christos do { \
173 1.6 christos result = (x); \
174 1.6 christos if (result != ISC_R_SUCCESS) \
175 1.6 christos goto out; \
176 1.2 christos } while (/*CONSTCOND*/0)
177 1.1 christos
178 1.6 christos #define CHECKALG(alg) \
179 1.6 christos do { \
180 1.6 christos isc_result_t _r; \
181 1.6 christos _r = algorithm_status(alg); \
182 1.6 christos if (_r != ISC_R_SUCCESS) \
183 1.6 christos return ((_r)); \
184 1.6 christos } while (/*CONSTCOND*/0)
185 1.1 christos
186 1.1 christos isc_result_t
187 1.3 christos dst_lib_init(isc_mem_t *mctx, const char *engine) {
188 1.1 christos isc_result_t result;
189 1.1 christos
190 1.1 christos REQUIRE(mctx != NULL);
191 1.3 christos REQUIRE(dst_initialized == false);
192 1.1 christos
193 1.1 christos UNUSED(engine);
194 1.1 christos
195 1.1 christos dst_result_register();
196 1.1 christos
197 1.1 christos memset(dst_t_func, 0, sizeof(dst_t_func));
198 1.1 christos RETERR(dst__hmacmd5_init(&dst_t_func[DST_ALG_HMACMD5]));
199 1.1 christos RETERR(dst__hmacsha1_init(&dst_t_func[DST_ALG_HMACSHA1]));
200 1.1 christos RETERR(dst__hmacsha224_init(&dst_t_func[DST_ALG_HMACSHA224]));
201 1.1 christos RETERR(dst__hmacsha256_init(&dst_t_func[DST_ALG_HMACSHA256]));
202 1.1 christos RETERR(dst__hmacsha384_init(&dst_t_func[DST_ALG_HMACSHA384]));
203 1.1 christos RETERR(dst__hmacsha512_init(&dst_t_func[DST_ALG_HMACSHA512]));
204 1.3 christos RETERR(dst__openssl_init(mctx, engine));
205 1.3 christos RETERR(dst__openssldh_init(&dst_t_func[DST_ALG_DH]));
206 1.3 christos #if USE_OPENSSL
207 1.1 christos RETERR(dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA1],
208 1.1 christos DST_ALG_RSASHA1));
209 1.1 christos RETERR(dst__opensslrsa_init(&dst_t_func[DST_ALG_NSEC3RSASHA1],
210 1.1 christos DST_ALG_NSEC3RSASHA1));
211 1.1 christos RETERR(dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA256],
212 1.1 christos DST_ALG_RSASHA256));
213 1.1 christos RETERR(dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA512],
214 1.1 christos DST_ALG_RSASHA512));
215 1.1 christos RETERR(dst__opensslecdsa_init(&dst_t_func[DST_ALG_ECDSA256]));
216 1.1 christos RETERR(dst__opensslecdsa_init(&dst_t_func[DST_ALG_ECDSA384]));
217 1.1 christos #ifdef HAVE_OPENSSL_ED25519
218 1.1 christos RETERR(dst__openssleddsa_init(&dst_t_func[DST_ALG_ED25519]));
219 1.6 christos #endif /* ifdef HAVE_OPENSSL_ED25519 */
220 1.1 christos #ifdef HAVE_OPENSSL_ED448
221 1.1 christos RETERR(dst__openssleddsa_init(&dst_t_func[DST_ALG_ED448]));
222 1.6 christos #endif /* ifdef HAVE_OPENSSL_ED448 */
223 1.3 christos #endif /* USE_OPENSSL */
224 1.3 christos
225 1.3 christos #if USE_PKCS11
226 1.1 christos RETERR(dst__pkcs11_init(mctx, engine));
227 1.1 christos RETERR(dst__pkcs11rsa_init(&dst_t_func[DST_ALG_RSASHA1]));
228 1.1 christos RETERR(dst__pkcs11rsa_init(&dst_t_func[DST_ALG_NSEC3RSASHA1]));
229 1.1 christos RETERR(dst__pkcs11rsa_init(&dst_t_func[DST_ALG_RSASHA256]));
230 1.1 christos RETERR(dst__pkcs11rsa_init(&dst_t_func[DST_ALG_RSASHA512]));
231 1.1 christos RETERR(dst__pkcs11ecdsa_init(&dst_t_func[DST_ALG_ECDSA256]));
232 1.1 christos RETERR(dst__pkcs11ecdsa_init(&dst_t_func[DST_ALG_ECDSA384]));
233 1.1 christos RETERR(dst__pkcs11eddsa_init(&dst_t_func[DST_ALG_ED25519]));
234 1.1 christos RETERR(dst__pkcs11eddsa_init(&dst_t_func[DST_ALG_ED448]));
235 1.3 christos #endif /* USE_PKCS11 */
236 1.1 christos #ifdef GSSAPI
237 1.1 christos RETERR(dst__gssapi_init(&dst_t_func[DST_ALG_GSSAPI]));
238 1.6 christos #endif /* ifdef GSSAPI */
239 1.3 christos
240 1.3 christos dst_initialized = true;
241 1.1 christos return (ISC_R_SUCCESS);
242 1.1 christos
243 1.6 christos out:
244 1.1 christos /* avoid immediate crash! */
245 1.3 christos dst_initialized = true;
246 1.1 christos dst_lib_destroy();
247 1.1 christos return (result);
248 1.1 christos }
249 1.1 christos
250 1.1 christos void
251 1.1 christos dst_lib_destroy(void) {
252 1.1 christos int i;
253 1.3 christos RUNTIME_CHECK(dst_initialized == true);
254 1.3 christos dst_initialized = false;
255 1.1 christos
256 1.6 christos for (i = 0; i < DST_MAX_ALGS; i++) {
257 1.6 christos if (dst_t_func[i] != NULL && dst_t_func[i]->cleanup != NULL) {
258 1.1 christos dst_t_func[i]->cleanup();
259 1.6 christos }
260 1.6 christos }
261 1.1 christos dst__openssl_destroy();
262 1.3 christos #if USE_PKCS11
263 1.6 christos (void)dst__pkcs11_destroy();
264 1.3 christos #endif /* USE_PKCS11 */
265 1.1 christos }
266 1.1 christos
267 1.3 christos bool
268 1.1 christos dst_algorithm_supported(unsigned int alg) {
269 1.3 christos REQUIRE(dst_initialized == true);
270 1.1 christos
271 1.6 christos if (alg >= DST_MAX_ALGS || dst_t_func[alg] == NULL) {
272 1.3 christos return (false);
273 1.6 christos }
274 1.3 christos return (true);
275 1.1 christos }
276 1.1 christos
277 1.3 christos bool
278 1.1 christos dst_ds_digest_supported(unsigned int digest_type) {
279 1.6 christos return (digest_type == DNS_DSDIGEST_SHA1 ||
280 1.6 christos digest_type == DNS_DSDIGEST_SHA256 ||
281 1.6 christos digest_type == DNS_DSDIGEST_SHA384);
282 1.1 christos }
283 1.1 christos
284 1.1 christos isc_result_t
285 1.6 christos dst_context_create(dst_key_t *key, isc_mem_t *mctx, isc_logcategory_t *category,
286 1.6 christos bool useforsigning, int maxbits, dst_context_t **dctxp) {
287 1.1 christos dst_context_t *dctx;
288 1.1 christos isc_result_t result;
289 1.1 christos
290 1.3 christos REQUIRE(dst_initialized == true);
291 1.1 christos REQUIRE(VALID_KEY(key));
292 1.1 christos REQUIRE(mctx != NULL);
293 1.1 christos REQUIRE(dctxp != NULL && *dctxp == NULL);
294 1.1 christos
295 1.6 christos if (key->func->createctx == NULL && key->func->createctx2 == NULL) {
296 1.1 christos return (DST_R_UNSUPPORTEDALG);
297 1.6 christos }
298 1.6 christos if (key->keydata.generic == NULL) {
299 1.1 christos return (DST_R_NULLKEY);
300 1.6 christos }
301 1.1 christos
302 1.1 christos dctx = isc_mem_get(mctx, sizeof(dst_context_t));
303 1.1 christos memset(dctx, 0, sizeof(*dctx));
304 1.1 christos dst_key_attach(key, &dctx->key);
305 1.1 christos isc_mem_attach(mctx, &dctx->mctx);
306 1.1 christos dctx->category = category;
307 1.6 christos if (useforsigning) {
308 1.1 christos dctx->use = DO_SIGN;
309 1.6 christos } else {
310 1.1 christos dctx->use = DO_VERIFY;
311 1.6 christos }
312 1.6 christos if (key->func->createctx2 != NULL) {
313 1.1 christos result = key->func->createctx2(key, maxbits, dctx);
314 1.6 christos } else {
315 1.1 christos result = key->func->createctx(key, dctx);
316 1.6 christos }
317 1.1 christos if (result != ISC_R_SUCCESS) {
318 1.6 christos if (dctx->key != NULL) {
319 1.1 christos dst_key_free(&dctx->key);
320 1.6 christos }
321 1.1 christos isc_mem_putanddetach(&dctx->mctx, dctx, sizeof(dst_context_t));
322 1.1 christos return (result);
323 1.1 christos }
324 1.1 christos dctx->magic = CTX_MAGIC;
325 1.1 christos *dctxp = dctx;
326 1.1 christos return (ISC_R_SUCCESS);
327 1.1 christos }
328 1.1 christos
329 1.1 christos void
330 1.1 christos dst_context_destroy(dst_context_t **dctxp) {
331 1.1 christos dst_context_t *dctx;
332 1.1 christos
333 1.1 christos REQUIRE(dctxp != NULL && VALID_CTX(*dctxp));
334 1.1 christos
335 1.1 christos dctx = *dctxp;
336 1.6 christos *dctxp = NULL;
337 1.1 christos INSIST(dctx->key->func->destroyctx != NULL);
338 1.1 christos dctx->key->func->destroyctx(dctx);
339 1.6 christos if (dctx->key != NULL) {
340 1.1 christos dst_key_free(&dctx->key);
341 1.6 christos }
342 1.1 christos dctx->magic = 0;
343 1.1 christos isc_mem_putanddetach(&dctx->mctx, dctx, sizeof(dst_context_t));
344 1.1 christos }
345 1.1 christos
346 1.1 christos isc_result_t
347 1.1 christos dst_context_adddata(dst_context_t *dctx, const isc_region_t *data) {
348 1.1 christos REQUIRE(VALID_CTX(dctx));
349 1.1 christos REQUIRE(data != NULL);
350 1.1 christos INSIST(dctx->key->func->adddata != NULL);
351 1.1 christos
352 1.1 christos return (dctx->key->func->adddata(dctx, data));
353 1.1 christos }
354 1.1 christos
355 1.1 christos isc_result_t
356 1.1 christos dst_context_sign(dst_context_t *dctx, isc_buffer_t *sig) {
357 1.1 christos dst_key_t *key;
358 1.1 christos
359 1.1 christos REQUIRE(VALID_CTX(dctx));
360 1.1 christos REQUIRE(sig != NULL);
361 1.1 christos
362 1.1 christos key = dctx->key;
363 1.1 christos CHECKALG(key->key_alg);
364 1.6 christos if (key->keydata.generic == NULL) {
365 1.1 christos return (DST_R_NULLKEY);
366 1.6 christos }
367 1.1 christos
368 1.6 christos if (key->func->sign == NULL) {
369 1.1 christos return (DST_R_NOTPRIVATEKEY);
370 1.6 christos }
371 1.6 christos if (key->func->isprivate == NULL || key->func->isprivate(key) == false)
372 1.6 christos {
373 1.1 christos return (DST_R_NOTPRIVATEKEY);
374 1.6 christos }
375 1.1 christos
376 1.1 christos return (key->func->sign(dctx, sig));
377 1.1 christos }
378 1.1 christos
379 1.1 christos isc_result_t
380 1.1 christos dst_context_verify(dst_context_t *dctx, isc_region_t *sig) {
381 1.1 christos REQUIRE(VALID_CTX(dctx));
382 1.1 christos REQUIRE(sig != NULL);
383 1.1 christos
384 1.1 christos CHECKALG(dctx->key->key_alg);
385 1.6 christos if (dctx->key->keydata.generic == NULL) {
386 1.1 christos return (DST_R_NULLKEY);
387 1.6 christos }
388 1.6 christos if (dctx->key->func->verify == NULL) {
389 1.1 christos return (DST_R_NOTPUBLICKEY);
390 1.6 christos }
391 1.1 christos
392 1.1 christos return (dctx->key->func->verify(dctx, sig));
393 1.1 christos }
394 1.1 christos
395 1.1 christos isc_result_t
396 1.1 christos dst_context_verify2(dst_context_t *dctx, unsigned int maxbits,
397 1.6 christos isc_region_t *sig) {
398 1.1 christos REQUIRE(VALID_CTX(dctx));
399 1.1 christos REQUIRE(sig != NULL);
400 1.1 christos
401 1.1 christos CHECKALG(dctx->key->key_alg);
402 1.6 christos if (dctx->key->keydata.generic == NULL) {
403 1.1 christos return (DST_R_NULLKEY);
404 1.6 christos }
405 1.6 christos if (dctx->key->func->verify == NULL && dctx->key->func->verify2 == NULL)
406 1.6 christos {
407 1.1 christos return (DST_R_NOTPUBLICKEY);
408 1.6 christos }
409 1.1 christos
410 1.6 christos return (dctx->key->func->verify2 != NULL
411 1.6 christos ? dctx->key->func->verify2(dctx, maxbits, sig)
412 1.6 christos : dctx->key->func->verify(dctx, sig));
413 1.1 christos }
414 1.1 christos
415 1.1 christos isc_result_t
416 1.1 christos dst_key_computesecret(const dst_key_t *pub, const dst_key_t *priv,
417 1.6 christos isc_buffer_t *secret) {
418 1.3 christos REQUIRE(dst_initialized == true);
419 1.1 christos REQUIRE(VALID_KEY(pub) && VALID_KEY(priv));
420 1.1 christos REQUIRE(secret != NULL);
421 1.1 christos
422 1.1 christos CHECKALG(pub->key_alg);
423 1.1 christos CHECKALG(priv->key_alg);
424 1.1 christos
425 1.6 christos if (pub->keydata.generic == NULL || priv->keydata.generic == NULL) {
426 1.1 christos return (DST_R_NULLKEY);
427 1.6 christos }
428 1.1 christos
429 1.6 christos if (pub->key_alg != priv->key_alg || pub->func->computesecret == NULL ||
430 1.1 christos priv->func->computesecret == NULL)
431 1.6 christos {
432 1.1 christos return (DST_R_KEYCANNOTCOMPUTESECRET);
433 1.6 christos }
434 1.1 christos
435 1.6 christos if (dst_key_isprivate(priv) == false) {
436 1.1 christos return (DST_R_NOTPRIVATEKEY);
437 1.6 christos }
438 1.1 christos
439 1.1 christos return (pub->func->computesecret(pub, priv, secret));
440 1.1 christos }
441 1.1 christos
442 1.1 christos isc_result_t
443 1.1 christos dst_key_tofile(const dst_key_t *key, int type, const char *directory) {
444 1.1 christos isc_result_t ret = ISC_R_SUCCESS;
445 1.1 christos
446 1.3 christos REQUIRE(dst_initialized == true);
447 1.1 christos REQUIRE(VALID_KEY(key));
448 1.6 christos REQUIRE((type &
449 1.6 christos (DST_TYPE_PRIVATE | DST_TYPE_PUBLIC | DST_TYPE_STATE)) != 0);
450 1.1 christos
451 1.1 christos CHECKALG(key->key_alg);
452 1.1 christos
453 1.6 christos if (key->func->tofile == NULL) {
454 1.1 christos return (DST_R_UNSUPPORTEDALG);
455 1.6 christos }
456 1.1 christos
457 1.3 christos if ((type & DST_TYPE_PUBLIC) != 0) {
458 1.1 christos ret = write_public_key(key, type, directory);
459 1.6 christos if (ret != ISC_R_SUCCESS) {
460 1.6 christos return (ret);
461 1.6 christos }
462 1.6 christos }
463 1.6 christos
464 1.6 christos if ((type & DST_TYPE_STATE) != 0) {
465 1.6 christos ret = write_key_state(key, type, directory);
466 1.6 christos if (ret != ISC_R_SUCCESS) {
467 1.1 christos return (ret);
468 1.6 christos }
469 1.1 christos }
470 1.1 christos
471 1.3 christos if (((type & DST_TYPE_PRIVATE) != 0) &&
472 1.1 christos (key->key_flags & DNS_KEYFLAG_TYPEMASK) != DNS_KEYTYPE_NOKEY)
473 1.6 christos {
474 1.1 christos return (key->func->tofile(key, directory));
475 1.6 christos }
476 1.6 christos return (ISC_R_SUCCESS);
477 1.1 christos }
478 1.1 christos
479 1.1 christos void
480 1.3 christos dst_key_setexternal(dst_key_t *key, bool value) {
481 1.1 christos key->external = value;
482 1.1 christos }
483 1.1 christos
484 1.3 christos bool
485 1.1 christos dst_key_isexternal(dst_key_t *key) {
486 1.1 christos return (key->external);
487 1.1 christos }
488 1.1 christos
489 1.1 christos isc_result_t
490 1.6 christos dst_key_getfilename(dns_name_t *name, dns_keytag_t id, unsigned int alg,
491 1.6 christos int type, const char *directory, isc_mem_t *mctx,
492 1.6 christos isc_buffer_t *buf) {
493 1.1 christos isc_result_t result;
494 1.1 christos
495 1.3 christos REQUIRE(dst_initialized == true);
496 1.1 christos REQUIRE(dns_name_isabsolute(name));
497 1.6 christos REQUIRE((type &
498 1.6 christos (DST_TYPE_PRIVATE | DST_TYPE_PUBLIC | DST_TYPE_STATE)) != 0);
499 1.1 christos REQUIRE(mctx != NULL);
500 1.1 christos REQUIRE(buf != NULL);
501 1.1 christos
502 1.1 christos CHECKALG(alg);
503 1.1 christos
504 1.1 christos result = buildfilename(name, id, alg, type, directory, buf);
505 1.1 christos if (result == ISC_R_SUCCESS) {
506 1.6 christos if (isc_buffer_availablelength(buf) > 0) {
507 1.1 christos isc_buffer_putuint8(buf, 0);
508 1.6 christos } else {
509 1.1 christos result = ISC_R_NOSPACE;
510 1.6 christos }
511 1.1 christos }
512 1.1 christos
513 1.1 christos return (result);
514 1.1 christos }
515 1.1 christos
516 1.1 christos isc_result_t
517 1.6 christos dst_key_fromfile(dns_name_t *name, dns_keytag_t id, unsigned int alg, int type,
518 1.6 christos const char *directory, isc_mem_t *mctx, dst_key_t **keyp) {
519 1.1 christos isc_result_t result;
520 1.3 christos char filename[NAME_MAX];
521 1.1 christos isc_buffer_t buf;
522 1.1 christos dst_key_t *key;
523 1.1 christos
524 1.3 christos REQUIRE(dst_initialized == true);
525 1.1 christos REQUIRE(dns_name_isabsolute(name));
526 1.1 christos REQUIRE((type & (DST_TYPE_PRIVATE | DST_TYPE_PUBLIC)) != 0);
527 1.1 christos REQUIRE(mctx != NULL);
528 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
529 1.1 christos
530 1.1 christos CHECKALG(alg);
531 1.1 christos
532 1.1 christos key = NULL;
533 1.1 christos
534 1.3 christos isc_buffer_init(&buf, filename, NAME_MAX);
535 1.1 christos result = dst_key_getfilename(name, id, alg, type, NULL, mctx, &buf);
536 1.6 christos if (result != ISC_R_SUCCESS) {
537 1.1 christos goto out;
538 1.6 christos }
539 1.1 christos
540 1.1 christos result = dst_key_fromnamedfile(filename, directory, type, mctx, &key);
541 1.6 christos if (result != ISC_R_SUCCESS) {
542 1.1 christos goto out;
543 1.6 christos }
544 1.1 christos
545 1.1 christos result = computeid(key);
546 1.6 christos if (result != ISC_R_SUCCESS) {
547 1.1 christos goto out;
548 1.6 christos }
549 1.1 christos
550 1.1 christos if (!dns_name_equal(name, key->key_name) || id != key->key_id ||
551 1.6 christos alg != key->key_alg)
552 1.6 christos {
553 1.1 christos result = DST_R_INVALIDPRIVATEKEY;
554 1.1 christos goto out;
555 1.1 christos }
556 1.1 christos
557 1.1 christos *keyp = key;
558 1.1 christos result = ISC_R_SUCCESS;
559 1.1 christos
560 1.6 christos out:
561 1.6 christos if ((key != NULL) && (result != ISC_R_SUCCESS)) {
562 1.1 christos dst_key_free(&key);
563 1.6 christos }
564 1.1 christos
565 1.1 christos return (result);
566 1.1 christos }
567 1.1 christos
568 1.1 christos isc_result_t
569 1.6 christos dst_key_fromnamedfile(const char *filename, const char *dirname, int type,
570 1.6 christos isc_mem_t *mctx, dst_key_t **keyp) {
571 1.1 christos isc_result_t result;
572 1.1 christos dst_key_t *pubkey = NULL, *key = NULL;
573 1.1 christos char *newfilename = NULL;
574 1.1 christos int newfilenamelen = 0;
575 1.1 christos isc_lex_t *lex = NULL;
576 1.1 christos
577 1.3 christos REQUIRE(dst_initialized == true);
578 1.1 christos REQUIRE(filename != NULL);
579 1.1 christos REQUIRE((type & (DST_TYPE_PRIVATE | DST_TYPE_PUBLIC)) != 0);
580 1.1 christos REQUIRE(mctx != NULL);
581 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
582 1.1 christos
583 1.1 christos /* If an absolute path is specified, don't use the key directory */
584 1.1 christos #ifndef WIN32
585 1.6 christos if (filename[0] == '/') {
586 1.1 christos dirname = NULL;
587 1.6 christos }
588 1.6 christos #else /* WIN32 */
589 1.6 christos if (filename[0] == '/' || filename[0] == '\\') {
590 1.1 christos dirname = NULL;
591 1.6 christos }
592 1.6 christos #endif /* ifndef WIN32 */
593 1.1 christos
594 1.1 christos newfilenamelen = strlen(filename) + 5;
595 1.6 christos if (dirname != NULL) {
596 1.1 christos newfilenamelen += strlen(dirname) + 1;
597 1.6 christos }
598 1.1 christos newfilename = isc_mem_get(mctx, newfilenamelen);
599 1.6 christos result = addsuffix(newfilename, newfilenamelen, dirname, filename,
600 1.6 christos ".key");
601 1.1 christos INSIST(result == ISC_R_SUCCESS);
602 1.1 christos
603 1.1 christos result = dst_key_read_public(newfilename, type, mctx, &pubkey);
604 1.1 christos isc_mem_put(mctx, newfilename, newfilenamelen);
605 1.1 christos newfilename = NULL;
606 1.1 christos RETERR(result);
607 1.1 christos
608 1.1 christos if ((type & (DST_TYPE_PRIVATE | DST_TYPE_PUBLIC)) == DST_TYPE_PUBLIC ||
609 1.6 christos (pubkey->key_flags & DNS_KEYFLAG_TYPEMASK) == DNS_KEYTYPE_NOKEY)
610 1.6 christos {
611 1.1 christos result = computeid(pubkey);
612 1.1 christos if (result != ISC_R_SUCCESS) {
613 1.1 christos dst_key_free(&pubkey);
614 1.1 christos return (result);
615 1.1 christos }
616 1.1 christos
617 1.1 christos *keyp = pubkey;
618 1.1 christos return (ISC_R_SUCCESS);
619 1.1 christos }
620 1.1 christos
621 1.1 christos result = algorithm_status(pubkey->key_alg);
622 1.1 christos if (result != ISC_R_SUCCESS) {
623 1.1 christos dst_key_free(&pubkey);
624 1.1 christos return (result);
625 1.1 christos }
626 1.1 christos
627 1.1 christos key = get_key_struct(pubkey->key_name, pubkey->key_alg,
628 1.6 christos pubkey->key_flags, pubkey->key_proto,
629 1.6 christos pubkey->key_size, pubkey->key_class,
630 1.6 christos pubkey->key_ttl, mctx);
631 1.1 christos if (key == NULL) {
632 1.1 christos dst_key_free(&pubkey);
633 1.1 christos return (ISC_R_NOMEMORY);
634 1.1 christos }
635 1.1 christos
636 1.6 christos if (key->func->parse == NULL) {
637 1.1 christos RETERR(DST_R_UNSUPPORTEDALG);
638 1.6 christos }
639 1.6 christos
640 1.6 christos /*
641 1.6 christos * Read the state file, if requested by type.
642 1.6 christos */
643 1.6 christos if ((type & DST_TYPE_STATE) != 0) {
644 1.6 christos newfilenamelen = strlen(filename) + 7;
645 1.6 christos if (dirname != NULL) {
646 1.6 christos newfilenamelen += strlen(dirname) + 1;
647 1.6 christos }
648 1.6 christos newfilename = isc_mem_get(mctx, newfilenamelen);
649 1.6 christos result = addsuffix(newfilename, newfilenamelen, dirname,
650 1.6 christos filename, ".state");
651 1.6 christos INSIST(result == ISC_R_SUCCESS);
652 1.6 christos
653 1.6 christos result = dst_key_read_state(newfilename, mctx, &key);
654 1.6 christos if (result == ISC_R_FILENOTFOUND) {
655 1.6 christos /* Having no state is valid. */
656 1.6 christos result = ISC_R_SUCCESS;
657 1.6 christos }
658 1.6 christos
659 1.6 christos isc_mem_put(mctx, newfilename, newfilenamelen);
660 1.6 christos newfilename = NULL;
661 1.6 christos RETERR(result);
662 1.6 christos }
663 1.1 christos
664 1.1 christos newfilenamelen = strlen(filename) + 9;
665 1.6 christos if (dirname != NULL) {
666 1.1 christos newfilenamelen += strlen(dirname) + 1;
667 1.6 christos }
668 1.1 christos newfilename = isc_mem_get(mctx, newfilenamelen);
669 1.6 christos result = addsuffix(newfilename, newfilenamelen, dirname, filename,
670 1.6 christos ".private");
671 1.1 christos INSIST(result == ISC_R_SUCCESS);
672 1.1 christos
673 1.1 christos RETERR(isc_lex_create(mctx, 1500, &lex));
674 1.1 christos RETERR(isc_lex_openfile(lex, newfilename));
675 1.1 christos isc_mem_put(mctx, newfilename, newfilenamelen);
676 1.1 christos
677 1.1 christos RETERR(key->func->parse(key, lex, pubkey));
678 1.1 christos isc_lex_destroy(&lex);
679 1.1 christos
680 1.1 christos RETERR(computeid(key));
681 1.1 christos
682 1.6 christos if (pubkey->key_id != key->key_id) {
683 1.1 christos RETERR(DST_R_INVALIDPRIVATEKEY);
684 1.6 christos }
685 1.1 christos dst_key_free(&pubkey);
686 1.1 christos
687 1.1 christos *keyp = key;
688 1.1 christos return (ISC_R_SUCCESS);
689 1.1 christos
690 1.6 christos out:
691 1.6 christos if (pubkey != NULL) {
692 1.1 christos dst_key_free(&pubkey);
693 1.6 christos }
694 1.6 christos if (newfilename != NULL) {
695 1.1 christos isc_mem_put(mctx, newfilename, newfilenamelen);
696 1.6 christos }
697 1.6 christos if (lex != NULL) {
698 1.1 christos isc_lex_destroy(&lex);
699 1.6 christos }
700 1.6 christos if (key != NULL) {
701 1.1 christos dst_key_free(&key);
702 1.6 christos }
703 1.1 christos return (result);
704 1.1 christos }
705 1.1 christos
706 1.1 christos isc_result_t
707 1.1 christos dst_key_todns(const dst_key_t *key, isc_buffer_t *target) {
708 1.3 christos REQUIRE(dst_initialized == true);
709 1.1 christos REQUIRE(VALID_KEY(key));
710 1.1 christos REQUIRE(target != NULL);
711 1.1 christos
712 1.1 christos CHECKALG(key->key_alg);
713 1.1 christos
714 1.6 christos if (key->func->todns == NULL) {
715 1.1 christos return (DST_R_UNSUPPORTEDALG);
716 1.6 christos }
717 1.1 christos
718 1.6 christos if (isc_buffer_availablelength(target) < 4) {
719 1.1 christos return (ISC_R_NOSPACE);
720 1.6 christos }
721 1.3 christos isc_buffer_putuint16(target, (uint16_t)(key->key_flags & 0xffff));
722 1.3 christos isc_buffer_putuint8(target, (uint8_t)key->key_proto);
723 1.3 christos isc_buffer_putuint8(target, (uint8_t)key->key_alg);
724 1.1 christos
725 1.3 christos if ((key->key_flags & DNS_KEYFLAG_EXTENDED) != 0) {
726 1.6 christos if (isc_buffer_availablelength(target) < 2) {
727 1.1 christos return (ISC_R_NOSPACE);
728 1.6 christos }
729 1.6 christos isc_buffer_putuint16(
730 1.6 christos target, (uint16_t)((key->key_flags >> 16) & 0xffff));
731 1.1 christos }
732 1.1 christos
733 1.6 christos if (key->keydata.generic == NULL) { /*%< NULL KEY */
734 1.1 christos return (ISC_R_SUCCESS);
735 1.6 christos }
736 1.1 christos
737 1.1 christos return (key->func->todns(key, target));
738 1.1 christos }
739 1.1 christos
740 1.1 christos isc_result_t
741 1.1 christos dst_key_fromdns(const dns_name_t *name, dns_rdataclass_t rdclass,
742 1.6 christos isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp) {
743 1.3 christos uint8_t alg, proto;
744 1.3 christos uint32_t flags, extflags;
745 1.1 christos dst_key_t *key = NULL;
746 1.1 christos dns_keytag_t id, rid;
747 1.1 christos isc_region_t r;
748 1.1 christos isc_result_t result;
749 1.1 christos
750 1.1 christos REQUIRE(dst_initialized);
751 1.1 christos
752 1.1 christos isc_buffer_remainingregion(source, &r);
753 1.1 christos
754 1.6 christos if (isc_buffer_remaininglength(source) < 4) {
755 1.1 christos return (DST_R_INVALIDPUBLICKEY);
756 1.6 christos }
757 1.1 christos flags = isc_buffer_getuint16(source);
758 1.1 christos proto = isc_buffer_getuint8(source);
759 1.1 christos alg = isc_buffer_getuint8(source);
760 1.1 christos
761 1.4 christos id = dst_region_computeid(&r);
762 1.4 christos rid = dst_region_computerid(&r);
763 1.1 christos
764 1.3 christos if ((flags & DNS_KEYFLAG_EXTENDED) != 0) {
765 1.6 christos if (isc_buffer_remaininglength(source) < 2) {
766 1.1 christos return (DST_R_INVALIDPUBLICKEY);
767 1.6 christos }
768 1.1 christos extflags = isc_buffer_getuint16(source);
769 1.1 christos flags |= (extflags << 16);
770 1.1 christos }
771 1.1 christos
772 1.6 christos result = frombuffer(name, alg, flags, proto, rdclass, source, mctx,
773 1.6 christos &key);
774 1.6 christos if (result != ISC_R_SUCCESS) {
775 1.1 christos return (result);
776 1.6 christos }
777 1.1 christos key->key_id = id;
778 1.1 christos key->key_rid = rid;
779 1.1 christos
780 1.1 christos *keyp = key;
781 1.1 christos return (ISC_R_SUCCESS);
782 1.1 christos }
783 1.1 christos
784 1.1 christos isc_result_t
785 1.6 christos dst_key_frombuffer(const dns_name_t *name, unsigned int alg, unsigned int flags,
786 1.6 christos unsigned int protocol, dns_rdataclass_t rdclass,
787 1.6 christos isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp) {
788 1.1 christos dst_key_t *key = NULL;
789 1.1 christos isc_result_t result;
790 1.1 christos
791 1.1 christos REQUIRE(dst_initialized);
792 1.1 christos
793 1.6 christos result = frombuffer(name, alg, flags, protocol, rdclass, source, mctx,
794 1.6 christos &key);
795 1.6 christos if (result != ISC_R_SUCCESS) {
796 1.1 christos return (result);
797 1.6 christos }
798 1.1 christos
799 1.1 christos result = computeid(key);
800 1.1 christos if (result != ISC_R_SUCCESS) {
801 1.1 christos dst_key_free(&key);
802 1.1 christos return (result);
803 1.1 christos }
804 1.1 christos
805 1.1 christos *keyp = key;
806 1.1 christos return (ISC_R_SUCCESS);
807 1.1 christos }
808 1.1 christos
809 1.1 christos isc_result_t
810 1.1 christos dst_key_tobuffer(const dst_key_t *key, isc_buffer_t *target) {
811 1.3 christos REQUIRE(dst_initialized == true);
812 1.1 christos REQUIRE(VALID_KEY(key));
813 1.1 christos REQUIRE(target != NULL);
814 1.1 christos
815 1.1 christos CHECKALG(key->key_alg);
816 1.1 christos
817 1.6 christos if (key->func->todns == NULL) {
818 1.1 christos return (DST_R_UNSUPPORTEDALG);
819 1.6 christos }
820 1.1 christos
821 1.1 christos return (key->func->todns(key, target));
822 1.1 christos }
823 1.1 christos
824 1.1 christos isc_result_t
825 1.1 christos dst_key_privatefrombuffer(dst_key_t *key, isc_buffer_t *buffer) {
826 1.1 christos isc_lex_t *lex = NULL;
827 1.1 christos isc_result_t result = ISC_R_SUCCESS;
828 1.1 christos
829 1.3 christos REQUIRE(dst_initialized == true);
830 1.1 christos REQUIRE(VALID_KEY(key));
831 1.1 christos REQUIRE(!dst_key_isprivate(key));
832 1.1 christos REQUIRE(buffer != NULL);
833 1.1 christos
834 1.6 christos if (key->func->parse == NULL) {
835 1.1 christos RETERR(DST_R_UNSUPPORTEDALG);
836 1.6 christos }
837 1.1 christos
838 1.1 christos RETERR(isc_lex_create(key->mctx, 1500, &lex));
839 1.1 christos RETERR(isc_lex_openbuffer(lex, buffer));
840 1.1 christos RETERR(key->func->parse(key, lex, NULL));
841 1.6 christos out:
842 1.6 christos if (lex != NULL) {
843 1.1 christos isc_lex_destroy(&lex);
844 1.6 christos }
845 1.1 christos return (result);
846 1.1 christos }
847 1.1 christos
848 1.1 christos gss_ctx_id_t
849 1.6 christos dst_key_getgssctx(const dst_key_t *key) {
850 1.1 christos REQUIRE(key != NULL);
851 1.1 christos
852 1.1 christos return (key->keydata.gssctx);
853 1.1 christos }
854 1.1 christos
855 1.1 christos isc_result_t
856 1.6 christos dst_key_fromgssapi(const dns_name_t *name, gss_ctx_id_t gssctx, isc_mem_t *mctx,
857 1.6 christos dst_key_t **keyp, isc_region_t *intoken) {
858 1.1 christos dst_key_t *key;
859 1.1 christos isc_result_t result;
860 1.1 christos
861 1.1 christos REQUIRE(gssctx != NULL);
862 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
863 1.1 christos
864 1.6 christos key = get_key_struct(name, DST_ALG_GSSAPI, 0, DNS_KEYPROTO_DNSSEC, 0,
865 1.6 christos dns_rdataclass_in, 0, mctx);
866 1.6 christos if (key == NULL) {
867 1.1 christos return (ISC_R_NOMEMORY);
868 1.6 christos }
869 1.1 christos
870 1.1 christos if (intoken != NULL) {
871 1.1 christos /*
872 1.1 christos * Keep the token for use by external ssu rules. They may need
873 1.1 christos * to examine the PAC in the kerberos ticket.
874 1.1 christos */
875 1.6 christos isc_buffer_allocate(key->mctx, &key->key_tkeytoken,
876 1.6 christos intoken->length);
877 1.1 christos RETERR(isc_buffer_copyregion(key->key_tkeytoken, intoken));
878 1.1 christos }
879 1.1 christos
880 1.1 christos key->keydata.gssctx = gssctx;
881 1.1 christos *keyp = key;
882 1.1 christos result = ISC_R_SUCCESS;
883 1.1 christos out:
884 1.3 christos if (result != ISC_R_SUCCESS) {
885 1.3 christos dst_key_free(&key);
886 1.3 christos }
887 1.6 christos return (result);
888 1.1 christos }
889 1.1 christos
890 1.1 christos isc_result_t
891 1.1 christos dst_key_buildinternal(const dns_name_t *name, unsigned int alg,
892 1.1 christos unsigned int bits, unsigned int flags,
893 1.1 christos unsigned int protocol, dns_rdataclass_t rdclass,
894 1.6 christos void *data, isc_mem_t *mctx, dst_key_t **keyp) {
895 1.1 christos dst_key_t *key;
896 1.1 christos isc_result_t result;
897 1.1 christos
898 1.3 christos REQUIRE(dst_initialized == true);
899 1.1 christos REQUIRE(dns_name_isabsolute(name));
900 1.1 christos REQUIRE(mctx != NULL);
901 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
902 1.1 christos REQUIRE(data != NULL);
903 1.1 christos
904 1.1 christos CHECKALG(alg);
905 1.1 christos
906 1.6 christos key = get_key_struct(name, alg, flags, protocol, bits, rdclass, 0,
907 1.6 christos mctx);
908 1.6 christos if (key == NULL) {
909 1.1 christos return (ISC_R_NOMEMORY);
910 1.6 christos }
911 1.1 christos
912 1.1 christos key->keydata.generic = data;
913 1.1 christos
914 1.1 christos result = computeid(key);
915 1.1 christos if (result != ISC_R_SUCCESS) {
916 1.1 christos dst_key_free(&key);
917 1.1 christos return (result);
918 1.1 christos }
919 1.1 christos
920 1.1 christos *keyp = key;
921 1.1 christos return (ISC_R_SUCCESS);
922 1.1 christos }
923 1.1 christos
924 1.1 christos isc_result_t
925 1.1 christos dst_key_fromlabel(const dns_name_t *name, int alg, unsigned int flags,
926 1.1 christos unsigned int protocol, dns_rdataclass_t rdclass,
927 1.1 christos const char *engine, const char *label, const char *pin,
928 1.6 christos isc_mem_t *mctx, dst_key_t **keyp) {
929 1.1 christos dst_key_t *key;
930 1.1 christos isc_result_t result;
931 1.1 christos
932 1.3 christos REQUIRE(dst_initialized == true);
933 1.1 christos REQUIRE(dns_name_isabsolute(name));
934 1.1 christos REQUIRE(mctx != NULL);
935 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
936 1.1 christos REQUIRE(label != NULL);
937 1.1 christos
938 1.1 christos CHECKALG(alg);
939 1.1 christos
940 1.1 christos key = get_key_struct(name, alg, flags, protocol, 0, rdclass, 0, mctx);
941 1.6 christos if (key == NULL) {
942 1.1 christos return (ISC_R_NOMEMORY);
943 1.6 christos }
944 1.1 christos
945 1.1 christos if (key->func->fromlabel == NULL) {
946 1.1 christos dst_key_free(&key);
947 1.1 christos return (DST_R_UNSUPPORTEDALG);
948 1.1 christos }
949 1.1 christos
950 1.1 christos result = key->func->fromlabel(key, engine, label, pin);
951 1.1 christos if (result != ISC_R_SUCCESS) {
952 1.1 christos dst_key_free(&key);
953 1.1 christos return (result);
954 1.1 christos }
955 1.1 christos
956 1.1 christos result = computeid(key);
957 1.1 christos if (result != ISC_R_SUCCESS) {
958 1.1 christos dst_key_free(&key);
959 1.1 christos return (result);
960 1.1 christos }
961 1.1 christos
962 1.1 christos *keyp = key;
963 1.1 christos return (ISC_R_SUCCESS);
964 1.1 christos }
965 1.1 christos
966 1.1 christos isc_result_t
967 1.6 christos dst_key_generate(const dns_name_t *name, unsigned int alg, unsigned int bits,
968 1.6 christos unsigned int param, unsigned int flags, unsigned int protocol,
969 1.6 christos dns_rdataclass_t rdclass, isc_mem_t *mctx, dst_key_t **keyp,
970 1.6 christos void (*callback)(int)) {
971 1.1 christos dst_key_t *key;
972 1.1 christos isc_result_t ret;
973 1.1 christos
974 1.3 christos REQUIRE(dst_initialized == true);
975 1.1 christos REQUIRE(dns_name_isabsolute(name));
976 1.1 christos REQUIRE(mctx != NULL);
977 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
978 1.1 christos
979 1.1 christos CHECKALG(alg);
980 1.1 christos
981 1.6 christos key = get_key_struct(name, alg, flags, protocol, bits, rdclass, 0,
982 1.6 christos mctx);
983 1.6 christos if (key == NULL) {
984 1.1 christos return (ISC_R_NOMEMORY);
985 1.6 christos }
986 1.1 christos
987 1.1 christos if (bits == 0) { /*%< NULL KEY */
988 1.1 christos key->key_flags |= DNS_KEYTYPE_NOKEY;
989 1.1 christos *keyp = key;
990 1.1 christos return (ISC_R_SUCCESS);
991 1.1 christos }
992 1.1 christos
993 1.1 christos if (key->func->generate == NULL) {
994 1.1 christos dst_key_free(&key);
995 1.1 christos return (DST_R_UNSUPPORTEDALG);
996 1.1 christos }
997 1.1 christos
998 1.1 christos ret = key->func->generate(key, param, callback);
999 1.1 christos if (ret != ISC_R_SUCCESS) {
1000 1.1 christos dst_key_free(&key);
1001 1.1 christos return (ret);
1002 1.1 christos }
1003 1.1 christos
1004 1.1 christos ret = computeid(key);
1005 1.1 christos if (ret != ISC_R_SUCCESS) {
1006 1.1 christos dst_key_free(&key);
1007 1.1 christos return (ret);
1008 1.1 christos }
1009 1.1 christos
1010 1.1 christos *keyp = key;
1011 1.1 christos return (ISC_R_SUCCESS);
1012 1.1 christos }
1013 1.1 christos
1014 1.1 christos isc_result_t
1015 1.6 christos dst_key_getbool(const dst_key_t *key, int type, bool *valuep) {
1016 1.6 christos REQUIRE(VALID_KEY(key));
1017 1.6 christos REQUIRE(valuep != NULL);
1018 1.6 christos REQUIRE(type <= DST_MAX_BOOLEAN);
1019 1.6 christos if (!key->boolset[type]) {
1020 1.6 christos return (ISC_R_NOTFOUND);
1021 1.6 christos }
1022 1.6 christos *valuep = key->bools[type];
1023 1.6 christos return (ISC_R_SUCCESS);
1024 1.6 christos }
1025 1.6 christos
1026 1.6 christos void
1027 1.6 christos dst_key_setbool(dst_key_t *key, int type, bool value) {
1028 1.6 christos REQUIRE(VALID_KEY(key));
1029 1.6 christos REQUIRE(type <= DST_MAX_BOOLEAN);
1030 1.6 christos key->bools[type] = value;
1031 1.6 christos key->boolset[type] = true;
1032 1.6 christos }
1033 1.6 christos
1034 1.6 christos void
1035 1.6 christos dst_key_unsetbool(dst_key_t *key, int type) {
1036 1.6 christos REQUIRE(VALID_KEY(key));
1037 1.6 christos REQUIRE(type <= DST_MAX_BOOLEAN);
1038 1.6 christos key->boolset[type] = false;
1039 1.6 christos }
1040 1.6 christos
1041 1.6 christos isc_result_t
1042 1.6 christos dst_key_getnum(const dst_key_t *key, int type, uint32_t *valuep) {
1043 1.1 christos REQUIRE(VALID_KEY(key));
1044 1.1 christos REQUIRE(valuep != NULL);
1045 1.1 christos REQUIRE(type <= DST_MAX_NUMERIC);
1046 1.6 christos if (!key->numset[type]) {
1047 1.1 christos return (ISC_R_NOTFOUND);
1048 1.6 christos }
1049 1.1 christos *valuep = key->nums[type];
1050 1.1 christos return (ISC_R_SUCCESS);
1051 1.1 christos }
1052 1.1 christos
1053 1.1 christos void
1054 1.6 christos dst_key_setnum(dst_key_t *key, int type, uint32_t value) {
1055 1.1 christos REQUIRE(VALID_KEY(key));
1056 1.1 christos REQUIRE(type <= DST_MAX_NUMERIC);
1057 1.1 christos key->nums[type] = value;
1058 1.3 christos key->numset[type] = true;
1059 1.1 christos }
1060 1.1 christos
1061 1.1 christos void
1062 1.6 christos dst_key_unsetnum(dst_key_t *key, int type) {
1063 1.1 christos REQUIRE(VALID_KEY(key));
1064 1.1 christos REQUIRE(type <= DST_MAX_NUMERIC);
1065 1.3 christos key->numset[type] = false;
1066 1.1 christos }
1067 1.1 christos
1068 1.1 christos isc_result_t
1069 1.1 christos dst_key_gettime(const dst_key_t *key, int type, isc_stdtime_t *timep) {
1070 1.1 christos REQUIRE(VALID_KEY(key));
1071 1.1 christos REQUIRE(timep != NULL);
1072 1.1 christos REQUIRE(type <= DST_MAX_TIMES);
1073 1.6 christos if (!key->timeset[type]) {
1074 1.1 christos return (ISC_R_NOTFOUND);
1075 1.6 christos }
1076 1.1 christos *timep = key->times[type];
1077 1.1 christos return (ISC_R_SUCCESS);
1078 1.1 christos }
1079 1.1 christos
1080 1.1 christos void
1081 1.1 christos dst_key_settime(dst_key_t *key, int type, isc_stdtime_t when) {
1082 1.1 christos REQUIRE(VALID_KEY(key));
1083 1.1 christos REQUIRE(type <= DST_MAX_TIMES);
1084 1.1 christos key->times[type] = when;
1085 1.3 christos key->timeset[type] = true;
1086 1.1 christos }
1087 1.1 christos
1088 1.1 christos void
1089 1.1 christos dst_key_unsettime(dst_key_t *key, int type) {
1090 1.1 christos REQUIRE(VALID_KEY(key));
1091 1.1 christos REQUIRE(type <= DST_MAX_TIMES);
1092 1.3 christos key->timeset[type] = false;
1093 1.1 christos }
1094 1.1 christos
1095 1.1 christos isc_result_t
1096 1.6 christos dst_key_getstate(const dst_key_t *key, int type, dst_key_state_t *statep) {
1097 1.6 christos REQUIRE(VALID_KEY(key));
1098 1.6 christos REQUIRE(statep != NULL);
1099 1.6 christos REQUIRE(type <= DST_MAX_KEYSTATES);
1100 1.6 christos if (!key->keystateset[type]) {
1101 1.6 christos return (ISC_R_NOTFOUND);
1102 1.6 christos }
1103 1.6 christos *statep = key->keystates[type];
1104 1.6 christos return (ISC_R_SUCCESS);
1105 1.6 christos }
1106 1.6 christos
1107 1.6 christos void
1108 1.6 christos dst_key_setstate(dst_key_t *key, int type, dst_key_state_t state) {
1109 1.6 christos REQUIRE(VALID_KEY(key));
1110 1.6 christos REQUIRE(type <= DST_MAX_KEYSTATES);
1111 1.6 christos key->keystates[type] = state;
1112 1.6 christos key->keystateset[type] = true;
1113 1.6 christos }
1114 1.6 christos
1115 1.6 christos void
1116 1.6 christos dst_key_unsetstate(dst_key_t *key, int type) {
1117 1.6 christos REQUIRE(VALID_KEY(key));
1118 1.6 christos REQUIRE(type <= DST_MAX_KEYSTATES);
1119 1.6 christos key->keystateset[type] = false;
1120 1.6 christos }
1121 1.6 christos
1122 1.6 christos isc_result_t
1123 1.1 christos dst_key_getprivateformat(const dst_key_t *key, int *majorp, int *minorp) {
1124 1.1 christos REQUIRE(VALID_KEY(key));
1125 1.1 christos REQUIRE(majorp != NULL);
1126 1.1 christos REQUIRE(minorp != NULL);
1127 1.1 christos *majorp = key->fmt_major;
1128 1.1 christos *minorp = key->fmt_minor;
1129 1.1 christos return (ISC_R_SUCCESS);
1130 1.1 christos }
1131 1.1 christos
1132 1.1 christos void
1133 1.1 christos dst_key_setprivateformat(dst_key_t *key, int major, int minor) {
1134 1.1 christos REQUIRE(VALID_KEY(key));
1135 1.1 christos key->fmt_major = major;
1136 1.1 christos key->fmt_minor = minor;
1137 1.1 christos }
1138 1.1 christos
1139 1.3 christos static bool
1140 1.1 christos comparekeys(const dst_key_t *key1, const dst_key_t *key2,
1141 1.3 christos bool match_revoked_key,
1142 1.6 christos bool (*compare)(const dst_key_t *key1, const dst_key_t *key2)) {
1143 1.3 christos REQUIRE(dst_initialized == true);
1144 1.1 christos REQUIRE(VALID_KEY(key1));
1145 1.1 christos REQUIRE(VALID_KEY(key2));
1146 1.1 christos
1147 1.6 christos if (key1 == key2) {
1148 1.3 christos return (true);
1149 1.6 christos }
1150 1.1 christos
1151 1.6 christos if (key1->key_alg != key2->key_alg) {
1152 1.3 christos return (false);
1153 1.6 christos }
1154 1.1 christos
1155 1.1 christos if (key1->key_id != key2->key_id) {
1156 1.6 christos if (!match_revoked_key) {
1157 1.3 christos return (false);
1158 1.6 christos }
1159 1.1 christos if ((key1->key_flags & DNS_KEYFLAG_REVOKE) ==
1160 1.1 christos (key2->key_flags & DNS_KEYFLAG_REVOKE))
1161 1.6 christos {
1162 1.3 christos return (false);
1163 1.6 christos }
1164 1.1 christos if (key1->key_id != key2->key_rid &&
1165 1.6 christos key1->key_rid != key2->key_id) {
1166 1.3 christos return (false);
1167 1.6 christos }
1168 1.1 christos }
1169 1.1 christos
1170 1.6 christos if (compare != NULL) {
1171 1.1 christos return (compare(key1, key2));
1172 1.6 christos } else {
1173 1.3 christos return (false);
1174 1.6 christos }
1175 1.1 christos }
1176 1.1 christos
1177 1.1 christos /*
1178 1.1 christos * Compares only the public portion of two keys, by converting them
1179 1.1 christos * both to wire format and comparing the results.
1180 1.1 christos */
1181 1.3 christos static bool
1182 1.1 christos pub_compare(const dst_key_t *key1, const dst_key_t *key2) {
1183 1.1 christos isc_result_t result;
1184 1.1 christos unsigned char buf1[DST_KEY_MAXSIZE], buf2[DST_KEY_MAXSIZE];
1185 1.1 christos isc_buffer_t b1, b2;
1186 1.1 christos isc_region_t r1, r2;
1187 1.1 christos
1188 1.1 christos isc_buffer_init(&b1, buf1, sizeof(buf1));
1189 1.1 christos result = dst_key_todns(key1, &b1);
1190 1.6 christos if (result != ISC_R_SUCCESS) {
1191 1.3 christos return (false);
1192 1.6 christos }
1193 1.1 christos /* Zero out flags. */
1194 1.1 christos buf1[0] = buf1[1] = 0;
1195 1.6 christos if ((key1->key_flags & DNS_KEYFLAG_EXTENDED) != 0) {
1196 1.1 christos isc_buffer_subtract(&b1, 2);
1197 1.6 christos }
1198 1.1 christos
1199 1.1 christos isc_buffer_init(&b2, buf2, sizeof(buf2));
1200 1.1 christos result = dst_key_todns(key2, &b2);
1201 1.6 christos if (result != ISC_R_SUCCESS) {
1202 1.3 christos return (false);
1203 1.6 christos }
1204 1.1 christos /* Zero out flags. */
1205 1.1 christos buf2[0] = buf2[1] = 0;
1206 1.6 christos if ((key2->key_flags & DNS_KEYFLAG_EXTENDED) != 0) {
1207 1.1 christos isc_buffer_subtract(&b2, 2);
1208 1.6 christos }
1209 1.1 christos
1210 1.1 christos isc_buffer_usedregion(&b1, &r1);
1211 1.1 christos /* Remove extended flags. */
1212 1.1 christos if ((key1->key_flags & DNS_KEYFLAG_EXTENDED) != 0) {
1213 1.1 christos memmove(&buf1[4], &buf1[6], r1.length - 6);
1214 1.1 christos r1.length -= 2;
1215 1.1 christos }
1216 1.1 christos
1217 1.1 christos isc_buffer_usedregion(&b2, &r2);
1218 1.1 christos /* Remove extended flags. */
1219 1.1 christos if ((key2->key_flags & DNS_KEYFLAG_EXTENDED) != 0) {
1220 1.1 christos memmove(&buf2[4], &buf2[6], r2.length - 6);
1221 1.1 christos r2.length -= 2;
1222 1.1 christos }
1223 1.3 christos return (isc_region_compare(&r1, &r2) == 0);
1224 1.1 christos }
1225 1.1 christos
1226 1.3 christos bool
1227 1.1 christos dst_key_compare(const dst_key_t *key1, const dst_key_t *key2) {
1228 1.3 christos return (comparekeys(key1, key2, false, key1->func->compare));
1229 1.1 christos }
1230 1.1 christos
1231 1.3 christos bool
1232 1.1 christos dst_key_pubcompare(const dst_key_t *key1, const dst_key_t *key2,
1233 1.6 christos bool match_revoked_key) {
1234 1.1 christos return (comparekeys(key1, key2, match_revoked_key, pub_compare));
1235 1.1 christos }
1236 1.1 christos
1237 1.3 christos bool
1238 1.1 christos dst_key_paramcompare(const dst_key_t *key1, const dst_key_t *key2) {
1239 1.3 christos REQUIRE(dst_initialized == true);
1240 1.1 christos REQUIRE(VALID_KEY(key1));
1241 1.1 christos REQUIRE(VALID_KEY(key2));
1242 1.1 christos
1243 1.6 christos if (key1 == key2) {
1244 1.3 christos return (true);
1245 1.6 christos }
1246 1.1 christos if (key1->key_alg == key2->key_alg &&
1247 1.1 christos key1->func->paramcompare != NULL &&
1248 1.3 christos key1->func->paramcompare(key1, key2) == true)
1249 1.6 christos {
1250 1.3 christos return (true);
1251 1.6 christos } else {
1252 1.3 christos return (false);
1253 1.6 christos }
1254 1.1 christos }
1255 1.1 christos
1256 1.1 christos void
1257 1.1 christos dst_key_attach(dst_key_t *source, dst_key_t **target) {
1258 1.3 christos REQUIRE(dst_initialized == true);
1259 1.1 christos REQUIRE(target != NULL && *target == NULL);
1260 1.1 christos REQUIRE(VALID_KEY(source));
1261 1.1 christos
1262 1.3 christos isc_refcount_increment(&source->refs);
1263 1.1 christos *target = source;
1264 1.1 christos }
1265 1.1 christos
1266 1.1 christos void
1267 1.1 christos dst_key_free(dst_key_t **keyp) {
1268 1.3 christos REQUIRE(dst_initialized == true);
1269 1.1 christos REQUIRE(keyp != NULL && VALID_KEY(*keyp));
1270 1.3 christos dst_key_t *key = *keyp;
1271 1.3 christos *keyp = NULL;
1272 1.1 christos
1273 1.3 christos if (isc_refcount_decrement(&key->refs) == 1) {
1274 1.3 christos isc_refcount_destroy(&key->refs);
1275 1.3 christos isc_mem_t *mctx = key->mctx;
1276 1.3 christos if (key->keydata.generic != NULL) {
1277 1.3 christos INSIST(key->func->destroy != NULL);
1278 1.3 christos key->func->destroy(key);
1279 1.3 christos }
1280 1.6 christos if (key->engine != NULL) {
1281 1.3 christos isc_mem_free(mctx, key->engine);
1282 1.6 christos }
1283 1.6 christos if (key->label != NULL) {
1284 1.3 christos isc_mem_free(mctx, key->label);
1285 1.6 christos }
1286 1.3 christos dns_name_free(key->key_name, mctx);
1287 1.3 christos isc_mem_put(mctx, key->key_name, sizeof(dns_name_t));
1288 1.3 christos if (key->key_tkeytoken) {
1289 1.3 christos isc_buffer_free(&key->key_tkeytoken);
1290 1.3 christos }
1291 1.3 christos isc_safe_memwipe(key, sizeof(*key));
1292 1.3 christos isc_mem_putanddetach(&mctx, key, sizeof(*key));
1293 1.1 christos }
1294 1.1 christos }
1295 1.1 christos
1296 1.3 christos bool
1297 1.1 christos dst_key_isprivate(const dst_key_t *key) {
1298 1.1 christos REQUIRE(VALID_KEY(key));
1299 1.1 christos INSIST(key->func->isprivate != NULL);
1300 1.1 christos return (key->func->isprivate(key));
1301 1.1 christos }
1302 1.1 christos
1303 1.1 christos isc_result_t
1304 1.6 christos dst_key_buildfilename(const dst_key_t *key, int type, const char *directory,
1305 1.6 christos isc_buffer_t *out) {
1306 1.1 christos REQUIRE(VALID_KEY(key));
1307 1.1 christos REQUIRE(type == DST_TYPE_PRIVATE || type == DST_TYPE_PUBLIC ||
1308 1.6 christos type == DST_TYPE_STATE || type == 0);
1309 1.1 christos
1310 1.6 christos return (buildfilename(key->key_name, key->key_id, key->key_alg, type,
1311 1.6 christos directory, out));
1312 1.1 christos }
1313 1.1 christos
1314 1.1 christos isc_result_t
1315 1.1 christos dst_key_sigsize(const dst_key_t *key, unsigned int *n) {
1316 1.3 christos REQUIRE(dst_initialized == true);
1317 1.1 christos REQUIRE(VALID_KEY(key));
1318 1.1 christos REQUIRE(n != NULL);
1319 1.1 christos
1320 1.1 christos /* XXXVIX this switch statement is too sparse to gen a jump table. */
1321 1.1 christos switch (key->key_alg) {
1322 1.1 christos case DST_ALG_RSASHA1:
1323 1.1 christos case DST_ALG_NSEC3RSASHA1:
1324 1.1 christos case DST_ALG_RSASHA256:
1325 1.1 christos case DST_ALG_RSASHA512:
1326 1.1 christos *n = (key->key_size + 7) / 8;
1327 1.1 christos break;
1328 1.1 christos case DST_ALG_ECDSA256:
1329 1.1 christos *n = DNS_SIG_ECDSA256SIZE;
1330 1.1 christos break;
1331 1.1 christos case DST_ALG_ECDSA384:
1332 1.1 christos *n = DNS_SIG_ECDSA384SIZE;
1333 1.1 christos break;
1334 1.1 christos case DST_ALG_ED25519:
1335 1.1 christos *n = DNS_SIG_ED25519SIZE;
1336 1.1 christos break;
1337 1.1 christos case DST_ALG_ED448:
1338 1.1 christos *n = DNS_SIG_ED448SIZE;
1339 1.1 christos break;
1340 1.1 christos case DST_ALG_HMACMD5:
1341 1.3 christos *n = isc_md_type_get_size(ISC_MD_MD5);
1342 1.1 christos break;
1343 1.1 christos case DST_ALG_HMACSHA1:
1344 1.3 christos *n = isc_md_type_get_size(ISC_MD_SHA1);
1345 1.1 christos break;
1346 1.1 christos case DST_ALG_HMACSHA224:
1347 1.3 christos *n = isc_md_type_get_size(ISC_MD_SHA224);
1348 1.1 christos break;
1349 1.1 christos case DST_ALG_HMACSHA256:
1350 1.3 christos *n = isc_md_type_get_size(ISC_MD_SHA256);
1351 1.1 christos break;
1352 1.1 christos case DST_ALG_HMACSHA384:
1353 1.3 christos *n = isc_md_type_get_size(ISC_MD_SHA384);
1354 1.1 christos break;
1355 1.1 christos case DST_ALG_HMACSHA512:
1356 1.3 christos *n = isc_md_type_get_size(ISC_MD_SHA512);
1357 1.1 christos break;
1358 1.1 christos case DST_ALG_GSSAPI:
1359 1.1 christos *n = 128; /*%< XXX */
1360 1.1 christos break;
1361 1.1 christos case DST_ALG_DH:
1362 1.1 christos default:
1363 1.1 christos return (DST_R_UNSUPPORTEDALG);
1364 1.1 christos }
1365 1.1 christos return (ISC_R_SUCCESS);
1366 1.1 christos }
1367 1.1 christos
1368 1.1 christos isc_result_t
1369 1.1 christos dst_key_secretsize(const dst_key_t *key, unsigned int *n) {
1370 1.3 christos REQUIRE(dst_initialized == true);
1371 1.1 christos REQUIRE(VALID_KEY(key));
1372 1.1 christos REQUIRE(n != NULL);
1373 1.1 christos
1374 1.3 christos if (key->key_alg == DST_ALG_DH) {
1375 1.1 christos *n = (key->key_size + 7) / 8;
1376 1.3 christos return (ISC_R_SUCCESS);
1377 1.3 christos }
1378 1.3 christos return (DST_R_UNSUPPORTEDALG);
1379 1.1 christos }
1380 1.1 christos
1381 1.1 christos /*%
1382 1.1 christos * Set the flags on a key, then recompute the key ID
1383 1.1 christos */
1384 1.1 christos isc_result_t
1385 1.3 christos dst_key_setflags(dst_key_t *key, uint32_t flags) {
1386 1.1 christos REQUIRE(VALID_KEY(key));
1387 1.1 christos key->key_flags = flags;
1388 1.1 christos return (computeid(key));
1389 1.1 christos }
1390 1.1 christos
1391 1.1 christos void
1392 1.1 christos dst_key_format(const dst_key_t *key, char *cp, unsigned int size) {
1393 1.1 christos char namestr[DNS_NAME_FORMATSIZE];
1394 1.1 christos char algstr[DNS_NAME_FORMATSIZE];
1395 1.1 christos
1396 1.1 christos dns_name_format(dst_key_name(key), namestr, sizeof(namestr));
1397 1.6 christos dns_secalg_format((dns_secalg_t)dst_key_alg(key), algstr,
1398 1.1 christos sizeof(algstr));
1399 1.1 christos snprintf(cp, size, "%s/%s/%d", namestr, algstr, dst_key_id(key));
1400 1.1 christos }
1401 1.1 christos
1402 1.1 christos isc_result_t
1403 1.1 christos dst_key_dump(dst_key_t *key, isc_mem_t *mctx, char **buffer, int *length) {
1404 1.1 christos REQUIRE(buffer != NULL && *buffer == NULL);
1405 1.1 christos REQUIRE(length != NULL && *length == 0);
1406 1.1 christos REQUIRE(VALID_KEY(key));
1407 1.1 christos
1408 1.6 christos if (key->func->dump == NULL) {
1409 1.1 christos return (ISC_R_NOTIMPLEMENTED);
1410 1.6 christos }
1411 1.1 christos return (key->func->dump(key, mctx, buffer, length));
1412 1.1 christos }
1413 1.1 christos
1414 1.1 christos isc_result_t
1415 1.1 christos dst_key_restore(dns_name_t *name, unsigned int alg, unsigned int flags,
1416 1.1 christos unsigned int protocol, dns_rdataclass_t rdclass,
1417 1.6 christos isc_mem_t *mctx, const char *keystr, dst_key_t **keyp) {
1418 1.1 christos isc_result_t result;
1419 1.1 christos dst_key_t *key;
1420 1.1 christos
1421 1.3 christos REQUIRE(dst_initialized == true);
1422 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
1423 1.1 christos
1424 1.6 christos if (alg >= DST_MAX_ALGS || dst_t_func[alg] == NULL) {
1425 1.1 christos return (DST_R_UNSUPPORTEDALG);
1426 1.6 christos }
1427 1.1 christos
1428 1.6 christos if (dst_t_func[alg]->restore == NULL) {
1429 1.1 christos return (ISC_R_NOTIMPLEMENTED);
1430 1.6 christos }
1431 1.1 christos
1432 1.1 christos key = get_key_struct(name, alg, flags, protocol, 0, rdclass, 0, mctx);
1433 1.6 christos if (key == NULL) {
1434 1.1 christos return (ISC_R_NOMEMORY);
1435 1.6 christos }
1436 1.1 christos
1437 1.1 christos result = (dst_t_func[alg]->restore)(key, keystr);
1438 1.6 christos if (result == ISC_R_SUCCESS) {
1439 1.1 christos *keyp = key;
1440 1.6 christos } else {
1441 1.1 christos dst_key_free(&key);
1442 1.6 christos }
1443 1.1 christos
1444 1.1 christos return (result);
1445 1.1 christos }
1446 1.1 christos
1447 1.1 christos /***
1448 1.1 christos *** Static methods
1449 1.1 christos ***/
1450 1.1 christos
1451 1.1 christos /*%
1452 1.1 christos * Allocates a key structure and fills in some of the fields.
1453 1.1 christos */
1454 1.1 christos static dst_key_t *
1455 1.6 christos get_key_struct(const dns_name_t *name, unsigned int alg, unsigned int flags,
1456 1.6 christos unsigned int protocol, unsigned int bits,
1457 1.6 christos dns_rdataclass_t rdclass, dns_ttl_t ttl, isc_mem_t *mctx) {
1458 1.1 christos dst_key_t *key;
1459 1.1 christos int i;
1460 1.1 christos
1461 1.6 christos key = isc_mem_get(mctx, sizeof(dst_key_t));
1462 1.1 christos
1463 1.1 christos memset(key, 0, sizeof(dst_key_t));
1464 1.1 christos
1465 1.1 christos key->key_name = isc_mem_get(mctx, sizeof(dns_name_t));
1466 1.1 christos
1467 1.1 christos dns_name_init(key->key_name, NULL);
1468 1.6 christos dns_name_dup(name, mctx, key->key_name);
1469 1.1 christos
1470 1.3 christos isc_refcount_init(&key->refs, 1);
1471 1.1 christos isc_mem_attach(mctx, &key->mctx);
1472 1.1 christos key->key_alg = alg;
1473 1.1 christos key->key_flags = flags;
1474 1.1 christos key->key_proto = protocol;
1475 1.1 christos key->keydata.generic = NULL;
1476 1.1 christos key->key_size = bits;
1477 1.1 christos key->key_class = rdclass;
1478 1.1 christos key->key_ttl = ttl;
1479 1.1 christos key->func = dst_t_func[alg];
1480 1.1 christos key->fmt_major = 0;
1481 1.1 christos key->fmt_minor = 0;
1482 1.1 christos for (i = 0; i < (DST_MAX_TIMES + 1); i++) {
1483 1.1 christos key->times[i] = 0;
1484 1.3 christos key->timeset[i] = false;
1485 1.1 christos }
1486 1.3 christos key->inactive = false;
1487 1.1 christos key->magic = KEY_MAGIC;
1488 1.1 christos return (key);
1489 1.1 christos }
1490 1.1 christos
1491 1.3 christos bool
1492 1.1 christos dst_key_inactive(const dst_key_t *key) {
1493 1.1 christos REQUIRE(VALID_KEY(key));
1494 1.1 christos
1495 1.1 christos return (key->inactive);
1496 1.1 christos }
1497 1.1 christos
1498 1.1 christos void
1499 1.3 christos dst_key_setinactive(dst_key_t *key, bool inactive) {
1500 1.1 christos REQUIRE(VALID_KEY(key));
1501 1.1 christos
1502 1.1 christos key->inactive = inactive;
1503 1.1 christos }
1504 1.1 christos
1505 1.1 christos /*%
1506 1.6 christos * Reads a public key from disk.
1507 1.1 christos */
1508 1.1 christos isc_result_t
1509 1.6 christos dst_key_read_public(const char *filename, int type, isc_mem_t *mctx,
1510 1.6 christos dst_key_t **keyp) {
1511 1.1 christos u_char rdatabuf[DST_KEY_MAXSIZE];
1512 1.1 christos isc_buffer_t b;
1513 1.1 christos dns_fixedname_t name;
1514 1.1 christos isc_lex_t *lex = NULL;
1515 1.1 christos isc_token_t token;
1516 1.1 christos isc_result_t ret;
1517 1.1 christos dns_rdata_t rdata = DNS_RDATA_INIT;
1518 1.1 christos unsigned int opt = ISC_LEXOPT_DNSMULTILINE;
1519 1.1 christos dns_rdataclass_t rdclass = dns_rdataclass_in;
1520 1.1 christos isc_lexspecials_t specials;
1521 1.3 christos uint32_t ttl = 0;
1522 1.1 christos isc_result_t result;
1523 1.1 christos dns_rdatatype_t keytype;
1524 1.1 christos
1525 1.1 christos /*
1526 1.1 christos * Open the file and read its formatted contents
1527 1.1 christos * File format:
1528 1.6 christos * domain.name [ttl] [class] [KEY|DNSKEY] <flags> <protocol>
1529 1.6 christos * <algorithm> <key>
1530 1.1 christos */
1531 1.1 christos
1532 1.1 christos /* 1500 should be large enough for any key */
1533 1.1 christos ret = isc_lex_create(mctx, 1500, &lex);
1534 1.6 christos if (ret != ISC_R_SUCCESS) {
1535 1.1 christos goto cleanup;
1536 1.6 christos }
1537 1.1 christos
1538 1.1 christos memset(specials, 0, sizeof(specials));
1539 1.1 christos specials['('] = 1;
1540 1.1 christos specials[')'] = 1;
1541 1.1 christos specials['"'] = 1;
1542 1.1 christos isc_lex_setspecials(lex, specials);
1543 1.1 christos isc_lex_setcomments(lex, ISC_LEXCOMMENT_DNSMASTERFILE);
1544 1.1 christos
1545 1.1 christos ret = isc_lex_openfile(lex, filename);
1546 1.6 christos if (ret != ISC_R_SUCCESS) {
1547 1.1 christos goto cleanup;
1548 1.1 christos }
1549 1.1 christos
1550 1.1 christos /* Read the domain name */
1551 1.1 christos NEXTTOKEN(lex, opt, &token);
1552 1.6 christos if (token.type != isc_tokentype_string) {
1553 1.1 christos BADTOKEN();
1554 1.6 christos }
1555 1.1 christos
1556 1.1 christos /*
1557 1.1 christos * We don't support "@" in .key files.
1558 1.1 christos */
1559 1.6 christos if (!strcmp(DST_AS_STR(token), "@")) {
1560 1.1 christos BADTOKEN();
1561 1.6 christos }
1562 1.1 christos
1563 1.1 christos dns_fixedname_init(&name);
1564 1.1 christos isc_buffer_init(&b, DST_AS_STR(token), strlen(DST_AS_STR(token)));
1565 1.1 christos isc_buffer_add(&b, strlen(DST_AS_STR(token)));
1566 1.6 christos ret = dns_name_fromtext(dns_fixedname_name(&name), &b, dns_rootname, 0,
1567 1.6 christos NULL);
1568 1.6 christos if (ret != ISC_R_SUCCESS) {
1569 1.1 christos goto cleanup;
1570 1.6 christos }
1571 1.1 christos
1572 1.1 christos /* Read the next word: either TTL, class, or 'KEY' */
1573 1.1 christos NEXTTOKEN(lex, opt, &token);
1574 1.1 christos
1575 1.6 christos if (token.type != isc_tokentype_string) {
1576 1.1 christos BADTOKEN();
1577 1.6 christos }
1578 1.1 christos
1579 1.1 christos /* If it's a TTL, read the next one */
1580 1.1 christos result = dns_ttl_fromtext(&token.value.as_textregion, &ttl);
1581 1.6 christos if (result == ISC_R_SUCCESS) {
1582 1.1 christos NEXTTOKEN(lex, opt, &token);
1583 1.6 christos }
1584 1.1 christos
1585 1.6 christos if (token.type != isc_tokentype_string) {
1586 1.1 christos BADTOKEN();
1587 1.6 christos }
1588 1.1 christos
1589 1.1 christos ret = dns_rdataclass_fromtext(&rdclass, &token.value.as_textregion);
1590 1.6 christos if (ret == ISC_R_SUCCESS) {
1591 1.1 christos NEXTTOKEN(lex, opt, &token);
1592 1.6 christos }
1593 1.1 christos
1594 1.6 christos if (token.type != isc_tokentype_string) {
1595 1.1 christos BADTOKEN();
1596 1.6 christos }
1597 1.1 christos
1598 1.6 christos if (strcasecmp(DST_AS_STR(token), "DNSKEY") == 0) {
1599 1.1 christos keytype = dns_rdatatype_dnskey;
1600 1.6 christos } else if (strcasecmp(DST_AS_STR(token), "KEY") == 0) {
1601 1.1 christos keytype = dns_rdatatype_key; /*%< SIG(0), TKEY */
1602 1.6 christos } else {
1603 1.1 christos BADTOKEN();
1604 1.6 christos }
1605 1.1 christos
1606 1.1 christos if (((type & DST_TYPE_KEY) != 0 && keytype != dns_rdatatype_key) ||
1607 1.6 christos ((type & DST_TYPE_KEY) == 0 && keytype != dns_rdatatype_dnskey))
1608 1.6 christos {
1609 1.1 christos ret = DST_R_BADKEYTYPE;
1610 1.1 christos goto cleanup;
1611 1.1 christos }
1612 1.1 christos
1613 1.1 christos isc_buffer_init(&b, rdatabuf, sizeof(rdatabuf));
1614 1.6 christos ret = dns_rdata_fromtext(&rdata, rdclass, keytype, lex, NULL, false,
1615 1.6 christos mctx, &b, NULL);
1616 1.6 christos if (ret != ISC_R_SUCCESS) {
1617 1.1 christos goto cleanup;
1618 1.6 christos }
1619 1.1 christos
1620 1.1 christos ret = dst_key_fromdns(dns_fixedname_name(&name), rdclass, &b, mctx,
1621 1.1 christos keyp);
1622 1.6 christos if (ret != ISC_R_SUCCESS) {
1623 1.1 christos goto cleanup;
1624 1.6 christos }
1625 1.1 christos
1626 1.1 christos dst_key_setttl(*keyp, ttl);
1627 1.1 christos
1628 1.6 christos cleanup:
1629 1.6 christos if (lex != NULL) {
1630 1.1 christos isc_lex_destroy(&lex);
1631 1.6 christos }
1632 1.1 christos return (ret);
1633 1.1 christos }
1634 1.1 christos
1635 1.6 christos static int
1636 1.6 christos find_metadata(const char *s, const char *tags[], int ntags) {
1637 1.6 christos for (int i = 0; i < ntags; i++) {
1638 1.6 christos if (tags[i] != NULL && strcasecmp(s, tags[i]) == 0) {
1639 1.6 christos return (i);
1640 1.6 christos }
1641 1.6 christos }
1642 1.6 christos return (-1);
1643 1.6 christos }
1644 1.6 christos
1645 1.6 christos static int
1646 1.6 christos find_numericdata(const char *s) {
1647 1.6 christos return (find_metadata(s, numerictags, NUMERIC_NTAGS));
1648 1.6 christos }
1649 1.6 christos
1650 1.6 christos static int
1651 1.6 christos find_booleandata(const char *s) {
1652 1.6 christos return (find_metadata(s, booleantags, BOOLEAN_NTAGS));
1653 1.6 christos }
1654 1.6 christos
1655 1.6 christos static int
1656 1.6 christos find_timingdata(const char *s) {
1657 1.6 christos return (find_metadata(s, timingtags, TIMING_NTAGS));
1658 1.6 christos }
1659 1.6 christos
1660 1.6 christos static int
1661 1.6 christos find_keystatedata(const char *s) {
1662 1.6 christos return (find_metadata(s, keystatestags, KEYSTATES_NTAGS));
1663 1.6 christos }
1664 1.1 christos
1665 1.6 christos static isc_result_t
1666 1.6 christos keystate_fromtext(const char *s, dst_key_state_t *state) {
1667 1.6 christos for (int i = 0; i < KEYSTATES_NVALUES; i++) {
1668 1.6 christos if (keystates[i] != NULL && strcasecmp(s, keystates[i]) == 0) {
1669 1.6 christos *state = (dst_key_state_t)i;
1670 1.6 christos return (ISC_R_SUCCESS);
1671 1.6 christos }
1672 1.1 christos }
1673 1.6 christos return (ISC_R_NOTFOUND);
1674 1.1 christos }
1675 1.1 christos
1676 1.1 christos /*%
1677 1.6 christos * Reads a key state from disk.
1678 1.1 christos */
1679 1.6 christos isc_result_t
1680 1.6 christos dst_key_read_state(const char *filename, isc_mem_t *mctx, dst_key_t **keyp) {
1681 1.6 christos isc_lex_t *lex = NULL;
1682 1.6 christos isc_token_t token;
1683 1.6 christos isc_result_t ret;
1684 1.6 christos unsigned int opt = ISC_LEXOPT_EOL;
1685 1.6 christos
1686 1.6 christos ret = isc_lex_create(mctx, 1500, &lex);
1687 1.6 christos if (ret != ISC_R_SUCCESS) {
1688 1.6 christos goto cleanup;
1689 1.6 christos }
1690 1.6 christos isc_lex_setcomments(lex, ISC_LEXCOMMENT_DNSMASTERFILE);
1691 1.6 christos
1692 1.6 christos ret = isc_lex_openfile(lex, filename);
1693 1.6 christos if (ret != ISC_R_SUCCESS) {
1694 1.6 christos goto cleanup;
1695 1.6 christos }
1696 1.6 christos
1697 1.6 christos /*
1698 1.6 christos * Read the comment line.
1699 1.6 christos */
1700 1.6 christos READLINE(lex, opt, &token);
1701 1.6 christos
1702 1.6 christos /*
1703 1.6 christos * Read the algorithm line.
1704 1.6 christos */
1705 1.6 christos NEXTTOKEN(lex, opt, &token);
1706 1.6 christos if (token.type != isc_tokentype_string ||
1707 1.6 christos strcmp(DST_AS_STR(token), STATE_ALGORITHM_STR) != 0)
1708 1.6 christos {
1709 1.6 christos BADTOKEN();
1710 1.6 christos }
1711 1.6 christos
1712 1.6 christos NEXTTOKEN(lex, opt | ISC_LEXOPT_NUMBER, &token);
1713 1.6 christos if (token.type != isc_tokentype_number ||
1714 1.6 christos token.value.as_ulong != (unsigned long)dst_key_alg(*keyp))
1715 1.6 christos {
1716 1.6 christos BADTOKEN();
1717 1.6 christos }
1718 1.6 christos
1719 1.6 christos READLINE(lex, opt, &token);
1720 1.6 christos
1721 1.6 christos /*
1722 1.6 christos * Read the length line.
1723 1.6 christos */
1724 1.6 christos NEXTTOKEN(lex, opt, &token);
1725 1.6 christos if (token.type != isc_tokentype_string ||
1726 1.6 christos strcmp(DST_AS_STR(token), STATE_LENGTH_STR) != 0)
1727 1.6 christos {
1728 1.6 christos BADTOKEN();
1729 1.6 christos }
1730 1.6 christos
1731 1.6 christos NEXTTOKEN(lex, opt | ISC_LEXOPT_NUMBER, &token);
1732 1.6 christos if (token.type != isc_tokentype_number ||
1733 1.6 christos token.value.as_ulong != (unsigned long)dst_key_size(*keyp))
1734 1.6 christos {
1735 1.6 christos BADTOKEN();
1736 1.6 christos }
1737 1.6 christos
1738 1.6 christos READLINE(lex, opt, &token);
1739 1.6 christos
1740 1.6 christos /*
1741 1.6 christos * Read the metadata.
1742 1.6 christos */
1743 1.6 christos for (int n = 0; n < MAX_NTAGS; n++) {
1744 1.6 christos int tag;
1745 1.6 christos
1746 1.6 christos NEXTTOKEN_OR_EOF(lex, opt, &token);
1747 1.6 christos if (ret == ISC_R_EOF) {
1748 1.6 christos break;
1749 1.6 christos }
1750 1.6 christos if (token.type != isc_tokentype_string) {
1751 1.6 christos BADTOKEN();
1752 1.6 christos }
1753 1.6 christos
1754 1.6 christos /* Numeric metadata */
1755 1.6 christos tag = find_numericdata(DST_AS_STR(token));
1756 1.6 christos if (tag >= 0) {
1757 1.6 christos INSIST(tag < NUMERIC_NTAGS);
1758 1.6 christos
1759 1.6 christos NEXTTOKEN(lex, opt | ISC_LEXOPT_NUMBER, &token);
1760 1.6 christos if (token.type != isc_tokentype_number) {
1761 1.6 christos BADTOKEN();
1762 1.6 christos }
1763 1.6 christos
1764 1.6 christos dst_key_setnum(*keyp, tag, token.value.as_ulong);
1765 1.6 christos goto next;
1766 1.6 christos }
1767 1.6 christos
1768 1.6 christos /* Boolean metadata */
1769 1.6 christos tag = find_booleandata(DST_AS_STR(token));
1770 1.6 christos if (tag >= 0) {
1771 1.6 christos INSIST(tag < BOOLEAN_NTAGS);
1772 1.6 christos
1773 1.6 christos NEXTTOKEN(lex, opt, &token);
1774 1.6 christos if (token.type != isc_tokentype_string) {
1775 1.6 christos BADTOKEN();
1776 1.6 christos }
1777 1.6 christos
1778 1.6 christos if (strcmp(DST_AS_STR(token), "yes") == 0) {
1779 1.6 christos dst_key_setbool(*keyp, tag, true);
1780 1.6 christos } else if (strcmp(DST_AS_STR(token), "no") == 0) {
1781 1.6 christos dst_key_setbool(*keyp, tag, false);
1782 1.6 christos } else {
1783 1.6 christos BADTOKEN();
1784 1.6 christos }
1785 1.6 christos goto next;
1786 1.6 christos }
1787 1.6 christos
1788 1.6 christos /* Timing metadata */
1789 1.6 christos tag = find_timingdata(DST_AS_STR(token));
1790 1.6 christos if (tag >= 0) {
1791 1.6 christos uint32_t when;
1792 1.6 christos
1793 1.6 christos INSIST(tag < TIMING_NTAGS);
1794 1.6 christos
1795 1.6 christos NEXTTOKEN(lex, opt, &token);
1796 1.6 christos if (token.type != isc_tokentype_string) {
1797 1.6 christos BADTOKEN();
1798 1.6 christos }
1799 1.6 christos
1800 1.6 christos ret = dns_time32_fromtext(DST_AS_STR(token), &when);
1801 1.6 christos if (ret != ISC_R_SUCCESS) {
1802 1.6 christos goto cleanup;
1803 1.6 christos }
1804 1.6 christos
1805 1.6 christos dst_key_settime(*keyp, tag, when);
1806 1.6 christos goto next;
1807 1.6 christos }
1808 1.6 christos
1809 1.6 christos /* Keystate metadata */
1810 1.6 christos tag = find_keystatedata(DST_AS_STR(token));
1811 1.6 christos if (tag >= 0) {
1812 1.6 christos dst_key_state_t state;
1813 1.6 christos
1814 1.6 christos INSIST(tag < KEYSTATES_NTAGS);
1815 1.6 christos
1816 1.6 christos NEXTTOKEN(lex, opt, &token);
1817 1.6 christos if (token.type != isc_tokentype_string) {
1818 1.6 christos BADTOKEN();
1819 1.6 christos }
1820 1.6 christos
1821 1.6 christos ret = keystate_fromtext(DST_AS_STR(token), &state);
1822 1.6 christos if (ret != ISC_R_SUCCESS) {
1823 1.6 christos goto cleanup;
1824 1.6 christos }
1825 1.6 christos
1826 1.6 christos dst_key_setstate(*keyp, tag, state);
1827 1.6 christos goto next;
1828 1.6 christos }
1829 1.6 christos
1830 1.6 christos next:
1831 1.6 christos READLINE(lex, opt, &token);
1832 1.6 christos }
1833 1.6 christos
1834 1.6 christos /* Done, successfully parsed the whole file. */
1835 1.6 christos ret = ISC_R_SUCCESS;
1836 1.6 christos
1837 1.6 christos cleanup:
1838 1.6 christos if (lex != NULL) {
1839 1.6 christos isc_lex_destroy(&lex);
1840 1.6 christos }
1841 1.6 christos return (ret);
1842 1.6 christos }
1843 1.6 christos
1844 1.6 christos static bool
1845 1.6 christos issymmetric(const dst_key_t *key) {
1846 1.6 christos REQUIRE(dst_initialized == true);
1847 1.6 christos REQUIRE(VALID_KEY(key));
1848 1.6 christos
1849 1.6 christos /* XXXVIX this switch statement is too sparse to gen a jump table. */
1850 1.6 christos switch (key->key_alg) {
1851 1.6 christos case DST_ALG_RSASHA1:
1852 1.6 christos case DST_ALG_NSEC3RSASHA1:
1853 1.6 christos case DST_ALG_RSASHA256:
1854 1.6 christos case DST_ALG_RSASHA512:
1855 1.6 christos case DST_ALG_DH:
1856 1.6 christos case DST_ALG_ECDSA256:
1857 1.6 christos case DST_ALG_ECDSA384:
1858 1.6 christos case DST_ALG_ED25519:
1859 1.6 christos case DST_ALG_ED448:
1860 1.6 christos return (false);
1861 1.6 christos case DST_ALG_HMACMD5:
1862 1.6 christos case DST_ALG_HMACSHA1:
1863 1.6 christos case DST_ALG_HMACSHA224:
1864 1.6 christos case DST_ALG_HMACSHA256:
1865 1.6 christos case DST_ALG_HMACSHA384:
1866 1.6 christos case DST_ALG_HMACSHA512:
1867 1.6 christos case DST_ALG_GSSAPI:
1868 1.6 christos return (true);
1869 1.6 christos default:
1870 1.6 christos return (false);
1871 1.6 christos }
1872 1.6 christos }
1873 1.6 christos
1874 1.6 christos /*%
1875 1.6 christos * Write key boolean metadata to a file pointer, preceded by 'tag'
1876 1.6 christos */
1877 1.6 christos static void
1878 1.6 christos printbool(const dst_key_t *key, int type, const char *tag, FILE *stream) {
1879 1.6 christos isc_result_t result;
1880 1.6 christos bool value = 0;
1881 1.6 christos
1882 1.6 christos result = dst_key_getbool(key, type, &value);
1883 1.6 christos if (result != ISC_R_SUCCESS) {
1884 1.6 christos return;
1885 1.6 christos }
1886 1.6 christos fprintf(stream, "%s: %s\n", tag, value ? "yes" : "no");
1887 1.6 christos }
1888 1.6 christos
1889 1.6 christos /*%
1890 1.6 christos * Write key numeric metadata to a file pointer, preceded by 'tag'
1891 1.6 christos */
1892 1.6 christos static void
1893 1.6 christos printnum(const dst_key_t *key, int type, const char *tag, FILE *stream) {
1894 1.6 christos isc_result_t result;
1895 1.6 christos uint32_t value = 0;
1896 1.6 christos
1897 1.6 christos result = dst_key_getnum(key, type, &value);
1898 1.6 christos if (result != ISC_R_SUCCESS) {
1899 1.6 christos return;
1900 1.6 christos }
1901 1.6 christos fprintf(stream, "%s: %u\n", tag, value);
1902 1.6 christos }
1903 1.6 christos
1904 1.6 christos /*%
1905 1.6 christos * Write key timing metadata to a file pointer, preceded by 'tag'
1906 1.6 christos */
1907 1.6 christos static void
1908 1.6 christos printtime(const dst_key_t *key, int type, const char *tag, FILE *stream) {
1909 1.6 christos isc_result_t result;
1910 1.6 christos char output[26]; /* Minimum buffer as per ctime_r() specification. */
1911 1.6 christos isc_stdtime_t when;
1912 1.6 christos time_t t;
1913 1.6 christos char utc[sizeof("YYYYMMDDHHSSMM")];
1914 1.6 christos isc_buffer_t b;
1915 1.6 christos isc_region_t r;
1916 1.1 christos
1917 1.1 christos result = dst_key_gettime(key, type, &when);
1918 1.6 christos if (result == ISC_R_NOTFOUND) {
1919 1.1 christos return;
1920 1.6 christos }
1921 1.1 christos
1922 1.1 christos /* time_t and isc_stdtime_t might be different sizes */
1923 1.1 christos t = when;
1924 1.1 christos #ifdef WIN32
1925 1.6 christos if (ctime_s(output, sizeof(output), &t) != 0) {
1926 1.1 christos goto error;
1927 1.6 christos }
1928 1.6 christos #else /* ifdef WIN32 */
1929 1.6 christos if (ctime_r(&t, output) == NULL) {
1930 1.1 christos goto error;
1931 1.6 christos }
1932 1.6 christos #endif /* ifdef WIN32 */
1933 1.1 christos
1934 1.1 christos isc_buffer_init(&b, utc, sizeof(utc));
1935 1.1 christos result = dns_time32_totext(when, &b);
1936 1.6 christos if (result != ISC_R_SUCCESS) {
1937 1.1 christos goto error;
1938 1.6 christos }
1939 1.1 christos
1940 1.1 christos isc_buffer_usedregion(&b, &r);
1941 1.1 christos fprintf(stream, "%s: %.*s (%.*s)\n", tag, (int)r.length, r.base,
1942 1.6 christos (int)strlen(output) - 1, output);
1943 1.1 christos return;
1944 1.1 christos
1945 1.6 christos error:
1946 1.1 christos fprintf(stream, "%s: (set, unable to display)\n", tag);
1947 1.1 christos }
1948 1.1 christos
1949 1.1 christos /*%
1950 1.6 christos * Write key state metadata to a file pointer, preceded by 'tag'
1951 1.6 christos */
1952 1.6 christos static void
1953 1.6 christos printstate(const dst_key_t *key, int type, const char *tag, FILE *stream) {
1954 1.6 christos isc_result_t result;
1955 1.6 christos dst_key_state_t value = 0;
1956 1.6 christos
1957 1.6 christos result = dst_key_getstate(key, type, &value);
1958 1.6 christos if (result != ISC_R_SUCCESS) {
1959 1.6 christos return;
1960 1.6 christos }
1961 1.6 christos fprintf(stream, "%s: %s\n", tag, keystates[value]);
1962 1.6 christos }
1963 1.6 christos
1964 1.6 christos /*%
1965 1.6 christos * Writes a key state to disk.
1966 1.6 christos */
1967 1.6 christos static isc_result_t
1968 1.6 christos write_key_state(const dst_key_t *key, int type, const char *directory) {
1969 1.6 christos FILE *fp;
1970 1.6 christos isc_buffer_t fileb;
1971 1.6 christos char filename[NAME_MAX];
1972 1.6 christos isc_result_t ret;
1973 1.6 christos isc_fsaccess_t access;
1974 1.6 christos
1975 1.6 christos REQUIRE(VALID_KEY(key));
1976 1.6 christos
1977 1.6 christos /*
1978 1.6 christos * Make the filename.
1979 1.6 christos */
1980 1.6 christos isc_buffer_init(&fileb, filename, sizeof(filename));
1981 1.6 christos ret = dst_key_buildfilename(key, DST_TYPE_STATE, directory, &fileb);
1982 1.6 christos if (ret != ISC_R_SUCCESS) {
1983 1.6 christos return (ret);
1984 1.6 christos }
1985 1.6 christos
1986 1.6 christos /*
1987 1.6 christos * Create public key file.
1988 1.6 christos */
1989 1.6 christos if ((fp = fopen(filename, "w")) == NULL) {
1990 1.6 christos return (DST_R_WRITEERROR);
1991 1.6 christos }
1992 1.6 christos
1993 1.6 christos if (issymmetric(key)) {
1994 1.6 christos access = 0;
1995 1.6 christos isc_fsaccess_add(ISC_FSACCESS_OWNER,
1996 1.6 christos ISC_FSACCESS_READ | ISC_FSACCESS_WRITE,
1997 1.6 christos &access);
1998 1.6 christos (void)isc_fsaccess_set(filename, access);
1999 1.6 christos }
2000 1.6 christos
2001 1.6 christos /* Write key state */
2002 1.6 christos if ((type & DST_TYPE_KEY) == 0) {
2003 1.6 christos fprintf(fp, "; This is the state of key %d, for ", key->key_id);
2004 1.6 christos ret = dns_name_print(key->key_name, fp);
2005 1.6 christos if (ret != ISC_R_SUCCESS) {
2006 1.6 christos fclose(fp);
2007 1.6 christos return (ret);
2008 1.6 christos }
2009 1.6 christos fputc('\n', fp);
2010 1.6 christos
2011 1.6 christos fprintf(fp, "Algorithm: %u\n", key->key_alg);
2012 1.6 christos fprintf(fp, "Length: %u\n", key->key_size);
2013 1.6 christos
2014 1.6 christos printnum(key, DST_NUM_LIFETIME, "Lifetime", fp);
2015 1.6 christos printnum(key, DST_NUM_PREDECESSOR, "Predecessor", fp);
2016 1.6 christos printnum(key, DST_NUM_SUCCESSOR, "Successor", fp);
2017 1.6 christos
2018 1.6 christos printbool(key, DST_BOOL_KSK, "KSK", fp);
2019 1.6 christos printbool(key, DST_BOOL_ZSK, "ZSK", fp);
2020 1.6 christos
2021 1.6 christos printtime(key, DST_TIME_CREATED, "Generated", fp);
2022 1.6 christos printtime(key, DST_TIME_PUBLISH, "Published", fp);
2023 1.6 christos printtime(key, DST_TIME_ACTIVATE, "Active", fp);
2024 1.6 christos printtime(key, DST_TIME_INACTIVE, "Retired", fp);
2025 1.6 christos printtime(key, DST_TIME_REVOKE, "Revoked", fp);
2026 1.6 christos printtime(key, DST_TIME_DELETE, "Removed", fp);
2027 1.6 christos
2028 1.6 christos printtime(key, DST_TIME_DNSKEY, "DNSKEYChange", fp);
2029 1.6 christos printtime(key, DST_TIME_ZRRSIG, "ZRRSIGChange", fp);
2030 1.6 christos printtime(key, DST_TIME_KRRSIG, "KRRSIGChange", fp);
2031 1.6 christos printtime(key, DST_TIME_DS, "DSChange", fp);
2032 1.6 christos
2033 1.6 christos printstate(key, DST_KEY_DNSKEY, "DNSKEYState", fp);
2034 1.6 christos printstate(key, DST_KEY_ZRRSIG, "ZRRSIGState", fp);
2035 1.6 christos printstate(key, DST_KEY_KRRSIG, "KRRSIGState", fp);
2036 1.6 christos printstate(key, DST_KEY_DS, "DSState", fp);
2037 1.6 christos printstate(key, DST_KEY_GOAL, "GoalState", fp);
2038 1.6 christos }
2039 1.6 christos
2040 1.6 christos fflush(fp);
2041 1.6 christos if (ferror(fp)) {
2042 1.6 christos ret = DST_R_WRITEERROR;
2043 1.6 christos }
2044 1.6 christos fclose(fp);
2045 1.6 christos
2046 1.6 christos return (ret);
2047 1.6 christos }
2048 1.6 christos
2049 1.6 christos /*%
2050 1.1 christos * Writes a public key to disk in DNS format.
2051 1.1 christos */
2052 1.1 christos static isc_result_t
2053 1.1 christos write_public_key(const dst_key_t *key, int type, const char *directory) {
2054 1.1 christos FILE *fp;
2055 1.1 christos isc_buffer_t keyb, textb, fileb, classb;
2056 1.1 christos isc_region_t r;
2057 1.3 christos char filename[NAME_MAX];
2058 1.1 christos unsigned char key_array[DST_KEY_MAXSIZE];
2059 1.1 christos char text_array[DST_KEY_MAXTEXTSIZE];
2060 1.1 christos char class_array[10];
2061 1.1 christos isc_result_t ret;
2062 1.1 christos dns_rdata_t rdata = DNS_RDATA_INIT;
2063 1.1 christos isc_fsaccess_t access;
2064 1.1 christos
2065 1.1 christos REQUIRE(VALID_KEY(key));
2066 1.1 christos
2067 1.1 christos isc_buffer_init(&keyb, key_array, sizeof(key_array));
2068 1.1 christos isc_buffer_init(&textb, text_array, sizeof(text_array));
2069 1.1 christos isc_buffer_init(&classb, class_array, sizeof(class_array));
2070 1.1 christos
2071 1.1 christos ret = dst_key_todns(key, &keyb);
2072 1.6 christos if (ret != ISC_R_SUCCESS) {
2073 1.1 christos return (ret);
2074 1.6 christos }
2075 1.1 christos
2076 1.1 christos isc_buffer_usedregion(&keyb, &r);
2077 1.1 christos dns_rdata_fromregion(&rdata, key->key_class, dns_rdatatype_dnskey, &r);
2078 1.1 christos
2079 1.6 christos ret = dns_rdata_totext(&rdata, (dns_name_t *)NULL, &textb);
2080 1.6 christos if (ret != ISC_R_SUCCESS) {
2081 1.1 christos return (DST_R_INVALIDPUBLICKEY);
2082 1.6 christos }
2083 1.1 christos
2084 1.1 christos ret = dns_rdataclass_totext(key->key_class, &classb);
2085 1.6 christos if (ret != ISC_R_SUCCESS) {
2086 1.1 christos return (DST_R_INVALIDPUBLICKEY);
2087 1.6 christos }
2088 1.1 christos
2089 1.1 christos /*
2090 1.1 christos * Make the filename.
2091 1.1 christos */
2092 1.1 christos isc_buffer_init(&fileb, filename, sizeof(filename));
2093 1.1 christos ret = dst_key_buildfilename(key, DST_TYPE_PUBLIC, directory, &fileb);
2094 1.6 christos if (ret != ISC_R_SUCCESS) {
2095 1.1 christos return (ret);
2096 1.6 christos }
2097 1.1 christos
2098 1.1 christos /*
2099 1.1 christos * Create public key file.
2100 1.1 christos */
2101 1.6 christos if ((fp = fopen(filename, "w")) == NULL) {
2102 1.1 christos return (DST_R_WRITEERROR);
2103 1.6 christos }
2104 1.1 christos
2105 1.1 christos if (issymmetric(key)) {
2106 1.1 christos access = 0;
2107 1.1 christos isc_fsaccess_add(ISC_FSACCESS_OWNER,
2108 1.1 christos ISC_FSACCESS_READ | ISC_FSACCESS_WRITE,
2109 1.1 christos &access);
2110 1.1 christos (void)isc_fsaccess_set(filename, access);
2111 1.1 christos }
2112 1.1 christos
2113 1.1 christos /* Write key information in comments */
2114 1.1 christos if ((type & DST_TYPE_KEY) == 0) {
2115 1.1 christos fprintf(fp, "; This is a %s%s-signing key, keyid %d, for ",
2116 1.6 christos (key->key_flags & DNS_KEYFLAG_REVOKE) != 0 ? "revoked "
2117 1.6 christos : "",
2118 1.6 christos (key->key_flags & DNS_KEYFLAG_KSK) != 0 ? "key"
2119 1.6 christos : "zone",
2120 1.1 christos key->key_id);
2121 1.1 christos ret = dns_name_print(key->key_name, fp);
2122 1.1 christos if (ret != ISC_R_SUCCESS) {
2123 1.1 christos fclose(fp);
2124 1.1 christos return (ret);
2125 1.1 christos }
2126 1.1 christos fputc('\n', fp);
2127 1.1 christos
2128 1.1 christos printtime(key, DST_TIME_CREATED, "; Created", fp);
2129 1.1 christos printtime(key, DST_TIME_PUBLISH, "; Publish", fp);
2130 1.1 christos printtime(key, DST_TIME_ACTIVATE, "; Activate", fp);
2131 1.1 christos printtime(key, DST_TIME_REVOKE, "; Revoke", fp);
2132 1.1 christos printtime(key, DST_TIME_INACTIVE, "; Inactive", fp);
2133 1.1 christos printtime(key, DST_TIME_DELETE, "; Delete", fp);
2134 1.6 christos printtime(key, DST_TIME_SYNCPUBLISH, "; SyncPublish", fp);
2135 1.6 christos printtime(key, DST_TIME_SYNCDELETE, "; SyncDelete", fp);
2136 1.1 christos }
2137 1.1 christos
2138 1.1 christos /* Now print the actual key */
2139 1.1 christos ret = dns_name_print(key->key_name, fp);
2140 1.1 christos fprintf(fp, " ");
2141 1.1 christos
2142 1.6 christos if (key->key_ttl != 0) {
2143 1.1 christos fprintf(fp, "%u ", key->key_ttl);
2144 1.6 christos }
2145 1.1 christos
2146 1.1 christos isc_buffer_usedregion(&classb, &r);
2147 1.6 christos if ((unsigned)fwrite(r.base, 1, r.length, fp) != r.length) {
2148 1.6 christos ret = DST_R_WRITEERROR;
2149 1.6 christos }
2150 1.1 christos
2151 1.6 christos if ((type & DST_TYPE_KEY) != 0) {
2152 1.1 christos fprintf(fp, " KEY ");
2153 1.6 christos } else {
2154 1.1 christos fprintf(fp, " DNSKEY ");
2155 1.6 christos }
2156 1.1 christos
2157 1.1 christos isc_buffer_usedregion(&textb, &r);
2158 1.6 christos if ((unsigned)fwrite(r.base, 1, r.length, fp) != r.length) {
2159 1.6 christos ret = DST_R_WRITEERROR;
2160 1.6 christos }
2161 1.1 christos
2162 1.1 christos fputc('\n', fp);
2163 1.1 christos fflush(fp);
2164 1.6 christos if (ferror(fp)) {
2165 1.1 christos ret = DST_R_WRITEERROR;
2166 1.6 christos }
2167 1.1 christos fclose(fp);
2168 1.1 christos
2169 1.1 christos return (ret);
2170 1.1 christos }
2171 1.1 christos
2172 1.1 christos static isc_result_t
2173 1.6 christos buildfilename(dns_name_t *name, dns_keytag_t id, unsigned int alg,
2174 1.6 christos unsigned int type, const char *directory, isc_buffer_t *out) {
2175 1.1 christos const char *suffix = "";
2176 1.1 christos isc_result_t result;
2177 1.1 christos
2178 1.1 christos REQUIRE(out != NULL);
2179 1.6 christos if ((type & DST_TYPE_PRIVATE) != 0) {
2180 1.1 christos suffix = ".private";
2181 1.6 christos } else if ((type & DST_TYPE_PUBLIC) != 0) {
2182 1.1 christos suffix = ".key";
2183 1.6 christos } else if ((type & DST_TYPE_STATE) != 0) {
2184 1.6 christos suffix = ".state";
2185 1.6 christos }
2186 1.6 christos
2187 1.1 christos if (directory != NULL) {
2188 1.6 christos if (isc_buffer_availablelength(out) < strlen(directory)) {
2189 1.1 christos return (ISC_R_NOSPACE);
2190 1.6 christos }
2191 1.1 christos isc_buffer_putstr(out, directory);
2192 1.1 christos if (strlen(directory) > 0U &&
2193 1.6 christos directory[strlen(directory) - 1] != '/') {
2194 1.1 christos isc_buffer_putstr(out, "/");
2195 1.6 christos }
2196 1.1 christos }
2197 1.6 christos if (isc_buffer_availablelength(out) < 1) {
2198 1.1 christos return (ISC_R_NOSPACE);
2199 1.6 christos }
2200 1.1 christos isc_buffer_putstr(out, "K");
2201 1.3 christos result = dns_name_tofilenametext(name, false, out);
2202 1.6 christos if (result != ISC_R_SUCCESS) {
2203 1.1 christos return (result);
2204 1.6 christos }
2205 1.1 christos
2206 1.1 christos return (isc_buffer_printf(out, "+%03d+%05d%s", alg, id, suffix));
2207 1.1 christos }
2208 1.1 christos
2209 1.1 christos static isc_result_t
2210 1.1 christos computeid(dst_key_t *key) {
2211 1.1 christos isc_buffer_t dnsbuf;
2212 1.1 christos unsigned char dns_array[DST_KEY_MAXSIZE];
2213 1.1 christos isc_region_t r;
2214 1.1 christos isc_result_t ret;
2215 1.1 christos
2216 1.1 christos isc_buffer_init(&dnsbuf, dns_array, sizeof(dns_array));
2217 1.1 christos ret = dst_key_todns(key, &dnsbuf);
2218 1.6 christos if (ret != ISC_R_SUCCESS) {
2219 1.1 christos return (ret);
2220 1.6 christos }
2221 1.1 christos
2222 1.1 christos isc_buffer_usedregion(&dnsbuf, &r);
2223 1.4 christos key->key_id = dst_region_computeid(&r);
2224 1.4 christos key->key_rid = dst_region_computerid(&r);
2225 1.1 christos return (ISC_R_SUCCESS);
2226 1.1 christos }
2227 1.1 christos
2228 1.1 christos static isc_result_t
2229 1.1 christos frombuffer(const dns_name_t *name, unsigned int alg, unsigned int flags,
2230 1.1 christos unsigned int protocol, dns_rdataclass_t rdclass,
2231 1.6 christos isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp) {
2232 1.1 christos dst_key_t *key;
2233 1.1 christos isc_result_t ret;
2234 1.1 christos
2235 1.1 christos REQUIRE(dns_name_isabsolute(name));
2236 1.1 christos REQUIRE(source != NULL);
2237 1.1 christos REQUIRE(mctx != NULL);
2238 1.1 christos REQUIRE(keyp != NULL && *keyp == NULL);
2239 1.1 christos
2240 1.1 christos key = get_key_struct(name, alg, flags, protocol, 0, rdclass, 0, mctx);
2241 1.6 christos if (key == NULL) {
2242 1.1 christos return (ISC_R_NOMEMORY);
2243 1.6 christos }
2244 1.1 christos
2245 1.1 christos if (isc_buffer_remaininglength(source) > 0) {
2246 1.1 christos ret = algorithm_status(alg);
2247 1.1 christos if (ret != ISC_R_SUCCESS) {
2248 1.1 christos dst_key_free(&key);
2249 1.1 christos return (ret);
2250 1.1 christos }
2251 1.1 christos if (key->func->fromdns == NULL) {
2252 1.1 christos dst_key_free(&key);
2253 1.1 christos return (DST_R_UNSUPPORTEDALG);
2254 1.1 christos }
2255 1.1 christos
2256 1.1 christos ret = key->func->fromdns(key, source);
2257 1.1 christos if (ret != ISC_R_SUCCESS) {
2258 1.1 christos dst_key_free(&key);
2259 1.1 christos return (ret);
2260 1.1 christos }
2261 1.1 christos }
2262 1.1 christos
2263 1.1 christos *keyp = key;
2264 1.1 christos return (ISC_R_SUCCESS);
2265 1.1 christos }
2266 1.1 christos
2267 1.1 christos static isc_result_t
2268 1.1 christos algorithm_status(unsigned int alg) {
2269 1.3 christos REQUIRE(dst_initialized == true);
2270 1.1 christos
2271 1.3 christos if (dst_algorithm_supported(alg)) {
2272 1.1 christos return (ISC_R_SUCCESS);
2273 1.3 christos }
2274 1.1 christos return (DST_R_UNSUPPORTEDALG);
2275 1.1 christos }
2276 1.1 christos
2277 1.1 christos static isc_result_t
2278 1.6 christos addsuffix(char *filename, int len, const char *odirname, const char *ofilename,
2279 1.6 christos const char *suffix) {
2280 1.1 christos int olen = strlen(ofilename);
2281 1.1 christos int n;
2282 1.1 christos
2283 1.6 christos if (olen > 1 && ofilename[olen - 1] == '.') {
2284 1.1 christos olen -= 1;
2285 1.6 christos } else if (olen > 8 && strcmp(ofilename + olen - 8, ".private") == 0) {
2286 1.1 christos olen -= 8;
2287 1.6 christos } else if (olen > 4 && strcmp(ofilename + olen - 4, ".key") == 0) {
2288 1.1 christos olen -= 4;
2289 1.6 christos }
2290 1.1 christos
2291 1.6 christos if (odirname == NULL) {
2292 1.1 christos n = snprintf(filename, len, "%.*s%s", olen, ofilename, suffix);
2293 1.6 christos } else {
2294 1.6 christos n = snprintf(filename, len, "%s/%.*s%s", odirname, olen,
2295 1.6 christos ofilename, suffix);
2296 1.6 christos }
2297 1.6 christos if (n < 0) {
2298 1.1 christos return (ISC_R_FAILURE);
2299 1.6 christos }
2300 1.6 christos if (n >= len) {
2301 1.1 christos return (ISC_R_NOSPACE);
2302 1.6 christos }
2303 1.1 christos return (ISC_R_SUCCESS);
2304 1.1 christos }
2305 1.1 christos
2306 1.1 christos isc_buffer_t *
2307 1.1 christos dst_key_tkeytoken(const dst_key_t *key) {
2308 1.1 christos REQUIRE(VALID_KEY(key));
2309 1.1 christos return (key->key_tkeytoken);
2310 1.1 christos }
2311 1.6 christos
2312 1.6 christos /*
2313 1.6 christos * A key is considered unused if it does not have any timing metadata set
2314 1.6 christos * other than "Created".
2315 1.6 christos *
2316 1.6 christos */
2317 1.6 christos bool
2318 1.6 christos dst_key_is_unused(dst_key_t *key) {
2319 1.6 christos isc_stdtime_t val;
2320 1.6 christos dst_key_state_t st;
2321 1.6 christos int state_type;
2322 1.6 christos bool state_type_set;
2323 1.6 christos
2324 1.6 christos REQUIRE(VALID_KEY(key));
2325 1.6 christos
2326 1.6 christos /*
2327 1.6 christos * None of the key timing metadata, except Created, may be set. Key
2328 1.6 christos * state times may be set only if their respective state is HIDDEN.
2329 1.6 christos */
2330 1.6 christos for (int i = 0; i < DST_MAX_TIMES + 1; i++) {
2331 1.6 christos state_type_set = false;
2332 1.6 christos
2333 1.6 christos switch (i) {
2334 1.6 christos case DST_TIME_CREATED:
2335 1.6 christos break;
2336 1.6 christos case DST_TIME_DNSKEY:
2337 1.6 christos state_type = DST_KEY_DNSKEY;
2338 1.6 christos state_type_set = true;
2339 1.6 christos break;
2340 1.6 christos case DST_TIME_ZRRSIG:
2341 1.6 christos state_type = DST_KEY_ZRRSIG;
2342 1.6 christos state_type_set = true;
2343 1.6 christos break;
2344 1.6 christos case DST_TIME_KRRSIG:
2345 1.6 christos state_type = DST_KEY_KRRSIG;
2346 1.6 christos state_type_set = true;
2347 1.6 christos break;
2348 1.6 christos case DST_TIME_DS:
2349 1.6 christos state_type = DST_KEY_DS;
2350 1.6 christos state_type_set = true;
2351 1.6 christos break;
2352 1.6 christos default:
2353 1.6 christos break;
2354 1.6 christos }
2355 1.6 christos
2356 1.6 christos /* Created is fine. */
2357 1.6 christos if (i == DST_TIME_CREATED) {
2358 1.6 christos continue;
2359 1.6 christos }
2360 1.6 christos /* No such timing metadata found, that is fine too. */
2361 1.6 christos if (dst_key_gettime(key, i, &val) == ISC_R_NOTFOUND) {
2362 1.6 christos continue;
2363 1.6 christos }
2364 1.6 christos /*
2365 1.6 christos * Found timing metadata and it is not related to key states.
2366 1.6 christos * This key is used.
2367 1.6 christos */
2368 1.6 christos if (!state_type_set) {
2369 1.6 christos return (false);
2370 1.6 christos }
2371 1.6 christos /*
2372 1.6 christos * If the state is not HIDDEN, the key is in use.
2373 1.6 christos * If the state is not set, this is odd and we default to NA.
2374 1.6 christos */
2375 1.6 christos if (dst_key_getstate(key, state_type, &st) != ISC_R_SUCCESS) {
2376 1.6 christos st = DST_KEY_STATE_NA;
2377 1.6 christos }
2378 1.6 christos if (st != DST_KEY_STATE_HIDDEN) {
2379 1.6 christos return (false);
2380 1.6 christos }
2381 1.6 christos }
2382 1.6 christos /* This key is unused. */
2383 1.6 christos return (true);
2384 1.6 christos }
2385 1.6 christos
2386 1.6 christos static void
2387 1.6 christos get_ksk_zsk(dst_key_t *key, bool *ksk, bool *zsk) {
2388 1.6 christos bool k = false, z = false;
2389 1.6 christos
2390 1.6 christos if (dst_key_getbool(key, DST_BOOL_KSK, &k) == ISC_R_SUCCESS) {
2391 1.6 christos *ksk = k;
2392 1.6 christos } else {
2393 1.6 christos *ksk = ((dst_key_flags(key) & DNS_KEYFLAG_KSK) != 0);
2394 1.6 christos }
2395 1.6 christos if (dst_key_getbool(key, DST_BOOL_ZSK, &z) == ISC_R_SUCCESS) {
2396 1.6 christos *zsk = z;
2397 1.6 christos } else {
2398 1.6 christos *zsk = ((dst_key_flags(key) & DNS_KEYFLAG_KSK) == 0);
2399 1.6 christos }
2400 1.6 christos }
2401 1.6 christos
2402 1.6 christos /* Hints on key whether it can be published and/or used for signing. */
2403 1.6 christos
2404 1.6 christos bool
2405 1.6 christos dst_key_is_published(dst_key_t *key, isc_stdtime_t now,
2406 1.6 christos isc_stdtime_t *publish) {
2407 1.6 christos dst_key_state_t state;
2408 1.6 christos isc_result_t result;
2409 1.6 christos isc_stdtime_t when;
2410 1.6 christos bool state_ok = true, time_ok = false;
2411 1.6 christos
2412 1.6 christos REQUIRE(VALID_KEY(key));
2413 1.6 christos
2414 1.6 christos result = dst_key_gettime(key, DST_TIME_PUBLISH, &when);
2415 1.6 christos if (result == ISC_R_SUCCESS) {
2416 1.6 christos *publish = when;
2417 1.6 christos time_ok = (when <= now);
2418 1.6 christos }
2419 1.6 christos
2420 1.6 christos /* Check key states:
2421 1.6 christos * If the DNSKEY state is RUMOURED or OMNIPRESENT, it means it
2422 1.6 christos * should be published.
2423 1.6 christos */
2424 1.6 christos result = dst_key_getstate(key, DST_KEY_DNSKEY, &state);
2425 1.6 christos if (result == ISC_R_SUCCESS) {
2426 1.6 christos state_ok = ((state == DST_KEY_STATE_RUMOURED) ||
2427 1.6 christos (state == DST_KEY_STATE_OMNIPRESENT));
2428 1.6 christos /*
2429 1.6 christos * Key states trump timing metadata.
2430 1.6 christos * Ignore inactive time.
2431 1.6 christos */
2432 1.6 christos time_ok = true;
2433 1.6 christos }
2434 1.6 christos
2435 1.6 christos return (state_ok && time_ok);
2436 1.6 christos }
2437 1.6 christos
2438 1.6 christos bool
2439 1.6 christos dst_key_is_active(dst_key_t *key, isc_stdtime_t now) {
2440 1.6 christos dst_key_state_t state;
2441 1.6 christos isc_result_t result;
2442 1.6 christos isc_stdtime_t when = 0;
2443 1.6 christos bool ksk = false, zsk = false, inactive = false;
2444 1.6 christos bool ds_ok = true, zrrsig_ok = true, time_ok = false;
2445 1.6 christos
2446 1.6 christos REQUIRE(VALID_KEY(key));
2447 1.6 christos
2448 1.6 christos result = dst_key_gettime(key, DST_TIME_INACTIVE, &when);
2449 1.6 christos if (result == ISC_R_SUCCESS) {
2450 1.6 christos inactive = (when <= now);
2451 1.6 christos }
2452 1.6 christos
2453 1.6 christos result = dst_key_gettime(key, DST_TIME_ACTIVATE, &when);
2454 1.6 christos if (result == ISC_R_SUCCESS) {
2455 1.6 christos time_ok = (when <= now);
2456 1.6 christos }
2457 1.6 christos
2458 1.6 christos get_ksk_zsk(key, &ksk, &zsk);
2459 1.6 christos
2460 1.6 christos /* Check key states:
2461 1.6 christos * KSK: If the DS is RUMOURED or OMNIPRESENT the key is considered
2462 1.6 christos * active.
2463 1.6 christos */
2464 1.6 christos if (ksk) {
2465 1.6 christos result = dst_key_getstate(key, DST_KEY_DS, &state);
2466 1.6 christos if (result == ISC_R_SUCCESS) {
2467 1.6 christos ds_ok = ((state == DST_KEY_STATE_RUMOURED) ||
2468 1.6 christos (state == DST_KEY_STATE_OMNIPRESENT));
2469 1.6 christos /*
2470 1.6 christos * Key states trump timing metadata.
2471 1.6 christos * Ignore inactive time.
2472 1.6 christos */
2473 1.6 christos time_ok = true;
2474 1.6 christos inactive = false;
2475 1.6 christos }
2476 1.6 christos }
2477 1.6 christos /*
2478 1.6 christos * ZSK: If the ZRRSIG state is RUMOURED or OMNIPRESENT, it means the
2479 1.6 christos * key is active.
2480 1.6 christos */
2481 1.6 christos if (zsk) {
2482 1.6 christos result = dst_key_getstate(key, DST_KEY_ZRRSIG, &state);
2483 1.6 christos if (result == ISC_R_SUCCESS) {
2484 1.6 christos zrrsig_ok = ((state == DST_KEY_STATE_RUMOURED) ||
2485 1.6 christos (state == DST_KEY_STATE_OMNIPRESENT));
2486 1.6 christos /*
2487 1.6 christos * Key states trump timing metadata.
2488 1.6 christos * Ignore inactive time.
2489 1.6 christos */
2490 1.6 christos time_ok = true;
2491 1.6 christos inactive = false;
2492 1.6 christos }
2493 1.6 christos }
2494 1.6 christos return (ds_ok && zrrsig_ok && time_ok && !inactive);
2495 1.6 christos }
2496 1.6 christos
2497 1.6 christos bool
2498 1.6 christos dst_key_is_signing(dst_key_t *key, int role, isc_stdtime_t now,
2499 1.6 christos isc_stdtime_t *active) {
2500 1.6 christos dst_key_state_t state;
2501 1.6 christos isc_result_t result;
2502 1.6 christos isc_stdtime_t when = 0;
2503 1.6 christos bool ksk = false, zsk = false, inactive = false;
2504 1.6 christos bool krrsig_ok = true, zrrsig_ok = true, time_ok = false;
2505 1.6 christos
2506 1.6 christos REQUIRE(VALID_KEY(key));
2507 1.6 christos
2508 1.6 christos result = dst_key_gettime(key, DST_TIME_INACTIVE, &when);
2509 1.6 christos if (result == ISC_R_SUCCESS) {
2510 1.6 christos inactive = (when <= now);
2511 1.6 christos }
2512 1.6 christos
2513 1.6 christos result = dst_key_gettime(key, DST_TIME_ACTIVATE, &when);
2514 1.6 christos if (result == ISC_R_SUCCESS) {
2515 1.6 christos *active = when;
2516 1.6 christos time_ok = (when <= now);
2517 1.6 christos }
2518 1.6 christos
2519 1.6 christos get_ksk_zsk(key, &ksk, &zsk);
2520 1.6 christos
2521 1.6 christos /* Check key states:
2522 1.6 christos * If the RRSIG state is RUMOURED or OMNIPRESENT, it means the key
2523 1.6 christos * is active.
2524 1.6 christos */
2525 1.6 christos if (ksk && role == DST_BOOL_KSK) {
2526 1.6 christos result = dst_key_getstate(key, DST_KEY_KRRSIG, &state);
2527 1.6 christos if (result == ISC_R_SUCCESS) {
2528 1.6 christos krrsig_ok = ((state == DST_KEY_STATE_RUMOURED) ||
2529 1.6 christos (state == DST_KEY_STATE_OMNIPRESENT));
2530 1.6 christos /*
2531 1.6 christos * Key states trump timing metadata.
2532 1.6 christos * Ignore inactive time.
2533 1.6 christos */
2534 1.6 christos time_ok = true;
2535 1.6 christos inactive = false;
2536 1.6 christos }
2537 1.6 christos } else if (zsk && role == DST_BOOL_ZSK) {
2538 1.6 christos result = dst_key_getstate(key, DST_KEY_ZRRSIG, &state);
2539 1.6 christos if (result == ISC_R_SUCCESS) {
2540 1.6 christos zrrsig_ok = ((state == DST_KEY_STATE_RUMOURED) ||
2541 1.6 christos (state == DST_KEY_STATE_OMNIPRESENT));
2542 1.6 christos /*
2543 1.6 christos * Key states trump timing metadata.
2544 1.6 christos * Ignore inactive time.
2545 1.6 christos */
2546 1.6 christos time_ok = true;
2547 1.6 christos inactive = false;
2548 1.6 christos }
2549 1.6 christos }
2550 1.6 christos return (krrsig_ok && zrrsig_ok && time_ok && !inactive);
2551 1.6 christos }
2552 1.6 christos
2553 1.6 christos bool
2554 1.6 christos dst_key_is_revoked(dst_key_t *key, isc_stdtime_t now, isc_stdtime_t *revoke) {
2555 1.6 christos isc_result_t result;
2556 1.6 christos isc_stdtime_t when = 0;
2557 1.6 christos bool time_ok = false;
2558 1.6 christos
2559 1.6 christos REQUIRE(VALID_KEY(key));
2560 1.6 christos
2561 1.6 christos result = dst_key_gettime(key, DST_TIME_REVOKE, &when);
2562 1.6 christos if (result == ISC_R_SUCCESS) {
2563 1.6 christos *revoke = when;
2564 1.6 christos time_ok = (when <= now);
2565 1.6 christos }
2566 1.6 christos
2567 1.6 christos return (time_ok);
2568 1.6 christos }
2569 1.6 christos
2570 1.6 christos bool
2571 1.6 christos dst_key_is_removed(dst_key_t *key, isc_stdtime_t now, isc_stdtime_t *remove) {
2572 1.6 christos dst_key_state_t state;
2573 1.6 christos isc_result_t result;
2574 1.6 christos isc_stdtime_t when = 0;
2575 1.6 christos bool state_ok = true, time_ok = false;
2576 1.6 christos
2577 1.6 christos REQUIRE(VALID_KEY(key));
2578 1.6 christos
2579 1.6 christos if (dst_key_is_unused(key)) {
2580 1.6 christos /* This key was never used. */
2581 1.6 christos return (false);
2582 1.6 christos }
2583 1.6 christos
2584 1.6 christos result = dst_key_gettime(key, DST_TIME_DELETE, &when);
2585 1.6 christos if (result == ISC_R_SUCCESS) {
2586 1.6 christos *remove = when;
2587 1.6 christos time_ok = (when <= now);
2588 1.6 christos }
2589 1.6 christos
2590 1.6 christos /* Check key states:
2591 1.6 christos * If the DNSKEY state is UNRETENTIVE or HIDDEN, it means the key
2592 1.6 christos * should not be published.
2593 1.6 christos */
2594 1.6 christos result = dst_key_getstate(key, DST_KEY_DNSKEY, &state);
2595 1.6 christos if (result == ISC_R_SUCCESS) {
2596 1.6 christos state_ok = ((state == DST_KEY_STATE_UNRETENTIVE) ||
2597 1.6 christos (state == DST_KEY_STATE_HIDDEN));
2598 1.6 christos /*
2599 1.6 christos * Key states trump timing metadata.
2600 1.6 christos * Ignore delete time.
2601 1.6 christos */
2602 1.6 christos time_ok = true;
2603 1.6 christos }
2604 1.6 christos
2605 1.6 christos return (state_ok && time_ok);
2606 1.6 christos }
2607 1.6 christos
2608 1.6 christos dst_key_state_t
2609 1.6 christos dst_key_goal(dst_key_t *key) {
2610 1.6 christos dst_key_state_t state;
2611 1.6 christos isc_result_t result;
2612 1.6 christos
2613 1.6 christos result = dst_key_getstate(key, DST_KEY_GOAL, &state);
2614 1.6 christos if (result == ISC_R_SUCCESS) {
2615 1.6 christos return (state);
2616 1.6 christos }
2617 1.6 christos return (DST_KEY_STATE_HIDDEN);
2618 1.6 christos }
2619 1.6 christos
2620 1.6 christos void
2621 1.6 christos dst_key_copy_metadata(dst_key_t *to, dst_key_t *from) {
2622 1.6 christos dst_key_state_t state;
2623 1.6 christos isc_stdtime_t when;
2624 1.6 christos uint32_t num;
2625 1.6 christos bool yesno;
2626 1.6 christos isc_result_t result;
2627 1.6 christos
2628 1.6 christos REQUIRE(VALID_KEY(to));
2629 1.6 christos REQUIRE(VALID_KEY(from));
2630 1.6 christos
2631 1.6 christos for (int i = 0; i < DST_MAX_TIMES + 1; i++) {
2632 1.6 christos result = dst_key_gettime(from, i, &when);
2633 1.6 christos if (result == ISC_R_SUCCESS) {
2634 1.6 christos dst_key_settime(to, i, when);
2635 1.6 christos } else {
2636 1.6 christos dst_key_unsettime(to, i);
2637 1.6 christos }
2638 1.6 christos }
2639 1.6 christos
2640 1.6 christos for (int i = 0; i < DST_MAX_NUMERIC + 1; i++) {
2641 1.6 christos result = dst_key_getnum(from, i, &num);
2642 1.6 christos if (result == ISC_R_SUCCESS) {
2643 1.6 christos dst_key_setnum(to, i, num);
2644 1.6 christos } else {
2645 1.6 christos dst_key_unsetnum(to, i);
2646 1.6 christos }
2647 1.6 christos }
2648 1.6 christos
2649 1.6 christos for (int i = 0; i < DST_MAX_BOOLEAN + 1; i++) {
2650 1.6 christos result = dst_key_getbool(from, i, &yesno);
2651 1.6 christos if (result == ISC_R_SUCCESS) {
2652 1.6 christos dst_key_setbool(to, i, yesno);
2653 1.6 christos } else {
2654 1.6 christos dst_key_unsetnum(to, i);
2655 1.6 christos }
2656 1.6 christos }
2657 1.6 christos
2658 1.6 christos for (int i = 0; i < DST_MAX_KEYSTATES + 1; i++) {
2659 1.6 christos result = dst_key_getstate(from, i, &state);
2660 1.6 christos if (result == ISC_R_SUCCESS) {
2661 1.6 christos dst_key_setstate(to, i, state);
2662 1.6 christos } else {
2663 1.6 christos dst_key_unsetstate(to, i);
2664 1.6 christos }
2665 1.6 christos }
2666 1.6 christos }
2667