4 static const char rcsid
[] = "Header: /proj/cvs/prod/libbind/dst/dst_api.c,v 1.17 2007/09/24 17:18:25 each Exp";
8 * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc.
10 * Permission to use, copy modify, and distribute this software for any
11 * purpose with or without fee is hereby granted, provided that the above
12 * copyright notice and this permission notice appear in all copies.
14 * THE SOFTWARE IS PROVIDED "AS IS" AND TRUSTED INFORMATION SYSTEMS
15 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
17 * TRUSTED INFORMATION SYSTEMS BE LIABLE FOR ANY SPECIAL, DIRECT,
18 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
19 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
20 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
21 * WITH THE USE OR PERFORMANCE OF THE SOFTWARE.
24 * This file contains the interface between the DST API and the crypto API.
25 * This is the only file that needs to be changed if the crypto system is
26 * changed. Exported functions are:
27 * void dst_init() Initialize the toolkit
28 * int dst_check_algorithm() Function to determines if alg is suppored.
29 * int dst_compare_keys() Function to compare two keys for equality.
30 * int dst_sign_data() Incremental signing routine.
31 * int dst_verify_data() Incremental verify routine.
32 * int dst_generate_key() Function to generate new KEY
33 * DST_KEY *dst_read_key() Function to retrieve private/public KEY.
34 * void dst_write_key() Function to write out a key.
35 * DST_KEY *dst_dnskey_to_key() Function to convert DNS KEY RR to a DST
37 * int dst_key_to_dnskey() Function to return a public key in DNS
39 * DST_KEY *dst_buffer_to_key() Converst a data in buffer to KEY
40 * int *dst_key_to_buffer() Writes out DST_KEY key matterial in buffer
41 * void dst_free_key() Releases all memory referenced by key structure
44 #include "port_before.h"
54 #include <sys/param.h>
56 #include <sys/socket.h>
57 #include <netinet/in.h>
58 #include <arpa/nameser.h>
61 #include "dst_internal.h"
62 #include "port_after.h"
64 /* static variables */
65 static int done_init
= 0;
66 dst_func
*dst_t_func
[DST_MAX_ALGS
];
67 const char *key_file_fmt_str
= "Private-key-format: v%s\nAlgorithm: %d (%s)\n";
68 const char *dst_path
= "";
70 /* internal I/O functions */
71 static DST_KEY
*dst_s_read_public_key(const char *in_name
,
72 const u_int16_t in_id
, int in_alg
);
73 static int dst_s_read_private_key_file(char *name
, DST_KEY
*pk_key
,
74 u_int16_t in_id
, int in_alg
);
75 static int dst_s_write_public_key(const DST_KEY
*key
);
76 static int dst_s_write_private_key(const DST_KEY
*key
);
78 /* internal function to set up data structure */
79 static DST_KEY
*dst_s_get_key_struct(const char *name
, const int alg
,
80 const int flags
, const int protocol
,
85 * This function initializes the Digital Signature Toolkit.
86 * Right now, it just checks the DSTKEYPATH environment variable.
102 s
= getenv("DSTKEYPATH");
108 if (len
> PATH_MAX
) {
109 EREPORT(("%s is longer than %d characters, ignoring\n",
111 } else if (stat(s
, &statbuf
) != 0 || !S_ISDIR(statbuf
.st_mode
)) {
112 EREPORT(("%s is not a valid directory\n", s
));
115 tmp
= (char *) malloc(len
+ 2);
116 memcpy(tmp
, s
, len
+ 1);
117 if (tmp
[strlen(tmp
) - 1] != '/') {
118 tmp
[strlen(tmp
) + 1] = 0;
119 tmp
[strlen(tmp
)] = '/';
124 memset(dst_t_func
, 0, sizeof(dst_t_func
));
125 /* first one is selected */
130 * dst_check_algorithm
131 * This function determines if the crypto system for the specified
132 * algorithm is present.
137 * future algorithms TBD and registered with IANA.
139 * 1 - The algorithm is available.
140 * 0 - The algorithm is not available.
143 dst_check_algorithm(const int alg
)
145 return (dst_t_func
[alg
] != NULL
);
149 * dst_s_get_key_struct
150 * This function allocates key structure and fills in some of the
151 * fields of the structure.
153 * name: the name of the key
154 * alg: the algorithm number
155 * flags: the dns flags of the key
156 * protocol: the dns protocol of the key
157 * bits: the size of the key
160 * valid pointer otherwise
163 dst_s_get_key_struct(const char *name
, const int alg
, const int flags
,
164 const int protocol
, const int bits
)
166 DST_KEY
*new_key
= NULL
;
168 if (dst_check_algorithm(alg
)) /*%< make sure alg is available */
169 new_key
= (DST_KEY
*) malloc(sizeof(*new_key
));
173 memset(new_key
, 0, sizeof(*new_key
));
174 new_key
->dk_key_name
= strdup(name
);
175 if (new_key
->dk_key_name
== NULL
) {
179 new_key
->dk_alg
= alg
;
180 new_key
->dk_flags
= flags
;
181 new_key
->dk_proto
= protocol
;
182 new_key
->dk_KEY_struct
= NULL
;
183 new_key
->dk_key_size
= bits
;
184 new_key
->dk_func
= dst_t_func
[alg
];
190 * Compares two keys for equality.
192 * key1, key2 Two keys to be compared.
194 * 0 The keys are equal.
195 * non-zero The keys are not equal.
199 dst_compare_keys(const DST_KEY
*key1
, const DST_KEY
*key2
)
203 if (key1
== NULL
|| key2
== NULL
)
205 if (key1
->dk_alg
!= key2
->dk_alg
)
207 if (key1
->dk_key_size
!= key2
->dk_key_size
)
209 if (key1
->dk_id
!= key2
->dk_id
)
211 return (key1
->dk_func
->compare(key1
, key2
));
216 * An incremental signing function. Data is signed in steps.
217 * First the context must be initialized (SIG_MODE_INIT).
218 * Then data is hashed (SIG_MODE_UPDATE). Finally the signature
219 * itself is created (SIG_MODE_FINAL). This function can be called
220 * once with INIT, UPDATE and FINAL modes all set, or it can be
221 * called separately with a different mode set for each step. The
222 * UPDATE step can be repeated.
224 * mode A bit mask used to specify operation(s) to be performed.
225 * SIG_MODE_INIT 1 Initialize digest
226 * SIG_MODE_UPDATE 2 Add data to digest
227 * SIG_MODE_FINAL 4 Generate signature
229 * SIG_MODE_ALL (SIG_MODE_INIT,SIG_MODE_UPDATE,SIG_MODE_FINAL
230 * data Data to be signed.
231 * len The length in bytes of data to be signed.
232 * in_key Contains a private key to sign with.
233 * KEY structures should be handled (created, converted,
234 * compared, stored, freed) by the DST.
236 * The location to which the signature will be written.
237 * sig_len Length of the signature field in bytes.
239 * 0 Successfull INIT or Update operation
240 * >0 success FINAL (sign) operation
245 dst_sign_data(const int mode
, DST_KEY
*in_key
, void **context
,
246 const u_char
*data
, const int len
,
247 u_char
*signature
, const int sig_len
)
249 DUMP(data
, mode
, len
, "dst_sign_data()");
251 if (mode
& SIG_MODE_FINAL
&&
252 (in_key
->dk_KEY_struct
== NULL
|| signature
== NULL
))
253 return (MISSING_KEY_OR_SIGNATURE
);
255 if (in_key
->dk_func
&& in_key
->dk_func
->sign
)
256 return (in_key
->dk_func
->sign(mode
, in_key
, context
, data
, len
,
257 signature
, sig_len
));
258 return (UNKNOWN_KEYALG
);
263 * An incremental verify function. Data is verified in steps.
264 * First the context must be initialized (SIG_MODE_INIT).
265 * Then data is hashed (SIG_MODE_UPDATE). Finally the signature
266 * is verified (SIG_MODE_FINAL). This function can be called
267 * once with INIT, UPDATE and FINAL modes all set, or it can be
268 * called separately with a different mode set for each step. The
269 * UPDATE step can be repeated.
271 * mode Operations to perform this time.
272 * SIG_MODE_INIT 1 Initialize digest
273 * SIG_MODE_UPDATE 2 add data to digest
274 * SIG_MODE_FINAL 4 verify signature
276 * (SIG_MODE_INIT,SIG_MODE_UPDATE,SIG_MODE_FINAL)
277 * data Data to pass through the hash function.
278 * len Length of the data in bytes.
279 * in_key Key for verification.
280 * signature Location of signature.
281 * sig_len Length of the signature in bytes.
284 * Non-Zero Verify Failure
288 dst_verify_data(const int mode
, DST_KEY
*in_key
, void **context
,
289 const u_char
*data
, const int len
,
290 const u_char
*signature
, const int sig_len
)
292 DUMP(data
, mode
, len
, "dst_verify_data()");
293 if (mode
& SIG_MODE_FINAL
&&
294 (in_key
->dk_KEY_struct
== NULL
|| signature
== NULL
))
295 return (MISSING_KEY_OR_SIGNATURE
);
297 if (in_key
->dk_func
== NULL
|| in_key
->dk_func
->verify
== NULL
)
298 return (UNSUPPORTED_KEYALG
);
299 return (in_key
->dk_func
->verify(mode
, in_key
, context
, data
, len
,
300 signature
, sig_len
));
304 * dst_read_private_key
305 * Access a private key. First the list of private keys that have
306 * already been read in is searched, then the key accessed on disk.
307 * If the private key can be found, it is returned. If the key cannot
308 * be found, a null pointer is returned. The options specify required
309 * key characteristics. If the private key requested does not have
310 * these characteristics, it will not be read.
312 * in_keyname The private key name.
313 * in_id The id of the private key.
314 * options DST_FORCE_READ Read from disk - don't use a previously
316 * DST_CAN_SIGN The key must be useable for signing.
317 * DST_NO_AUTHEN The key must be useable for authentication.
318 * DST_STANDARD Return any key
320 * NULL If there is no key found in the current directory or
321 * this key has not been loaded before.
322 * !NULL Success - KEY structure returned.
326 dst_read_key(const char *in_keyname
, const u_int16_t in_id
,
327 const int in_alg
, const int type
)
329 char keyname
[PATH_MAX
];
330 DST_KEY
*dg_key
= NULL
, *pubkey
= NULL
;
332 if (!dst_check_algorithm(in_alg
)) { /*%< make sure alg is available */
333 EREPORT(("dst_read_private_key(): Algorithm %d not suppored\n",
337 if ((type
& (DST_PUBLIC
| DST_PRIVATE
)) == 0)
339 if (in_keyname
== NULL
) {
340 EREPORT(("dst_read_private_key(): Null key name passed in\n"));
342 } else if (strlen(in_keyname
) >= sizeof(keyname
)) {
343 EREPORT(("dst_read_private_key(): keyname too big\n"));
346 strcpy(keyname
, in_keyname
);
348 /* before I read in the public key, check if it is allowed to sign */
349 if ((pubkey
= dst_s_read_public_key(keyname
, in_id
, in_alg
)) == NULL
)
352 if (type
== DST_PUBLIC
)
355 if (!(dg_key
= dst_s_get_key_struct(keyname
, pubkey
->dk_alg
,
356 pubkey
->dk_flags
, pubkey
->dk_proto
,
359 /* Fill in private key and some fields in the general key structure */
360 if (dst_s_read_private_key_file(keyname
, dg_key
, pubkey
->dk_id
,
361 pubkey
->dk_alg
) == 0)
362 dg_key
= dst_free_key(dg_key
);
364 (void)dst_free_key(pubkey
);
369 dst_write_key(const DST_KEY
*key
, const int type
)
371 int pub
= 0, priv
= 0;
375 if (!dst_check_algorithm(key
->dk_alg
)) { /*%< make sure alg is available */
376 EREPORT(("dst_write_key(): Algorithm %d not suppored\n",
378 return (UNSUPPORTED_KEYALG
);
380 if ((type
& (DST_PRIVATE
|DST_PUBLIC
)) == 0)
383 if (type
& DST_PUBLIC
)
384 if ((pub
= dst_s_write_public_key(key
)) < 0)
386 if (type
& DST_PRIVATE
)
387 if ((priv
= dst_s_write_private_key(key
)) < 0)
393 * dst_write_private_key
394 * Write a private key to disk. The filename will be of the form:
395 * K<key->dk_name>+<key->dk_alg+><key-d>k_id.><private key suffix>.
396 * If there is already a file with this name, an error is returned.
399 * key A DST managed key structure that contains
400 * all information needed about a key.
402 * >= 0 Correct behavior. Returns length of encoded key value
408 dst_s_write_private_key(const DST_KEY
*key
)
410 u_char encoded_block
[RAW_KEY_SIZE
];
415 /* First encode the key into the portable key format */
418 if (key
->dk_KEY_struct
== NULL
)
419 return (0); /*%< null key has no private key */
420 if (key
->dk_func
== NULL
|| key
->dk_func
->to_file_fmt
== NULL
) {
421 EREPORT(("dst_write_private_key(): Unsupported operation %d\n",
424 } else if ((len
= key
->dk_func
->to_file_fmt(key
, (char *)encoded_block
,
425 sizeof(encoded_block
))) <= 0) {
426 EREPORT(("dst_write_private_key(): Failed encoding private RSA bsafe key %d\n", len
));
429 /* Now I can create the file I want to use */
430 dst_s_build_filename(file
, key
->dk_key_name
, key
->dk_id
, key
->dk_alg
,
431 PRIVATE_KEY
, PATH_MAX
);
433 /* Do not overwrite an existing file */
434 if ((fp
= dst_s_fopen(file
, "w", 0600)) != NULL
) {
436 if ((nn
= fwrite(encoded_block
, 1, len
, fp
)) != len
) {
437 EREPORT(("dst_write_private_key(): Write failure on %s %d != %d errno=%d\n",
438 file
, len
, nn
, errno
));
444 EREPORT(("dst_write_private_key(): Can not create file %s\n"
448 memset(encoded_block
, 0, len
);
454 * dst_read_public_key
455 * Read a public key from disk and store in a DST key structure.
457 * in_name K<in_name><in_id>.<public key suffix> is the
458 * filename of the key file to be read.
460 * NULL If the key does not exist or no name is supplied.
461 * NON-NULL Initialized key structure if the key exists.
465 dst_s_read_public_key(const char *in_name
, const u_int16_t in_id
, int in_alg
)
467 int flags
, proto
, alg
, len
, dlen
;
469 char name
[PATH_MAX
], enckey
[RAW_KEY_SIZE
], *notspace
;
470 u_char deckey
[RAW_KEY_SIZE
];
473 if (in_name
== NULL
) {
474 EREPORT(("dst_read_public_key(): No key name given\n"));
477 if (dst_s_build_filename(name
, in_name
, in_id
, in_alg
, PUBLIC_KEY
,
479 EREPORT(("dst_read_public_key(): Cannot make filename from %s, %d, and %s\n",
480 in_name
, in_id
, PUBLIC_KEY
));
484 * Open the file and read it's formatted contents up to key
486 * domain.name [ttl] [IN] KEY <flags> <protocol> <algorithm> <key>
487 * flags, proto, alg stored as decimal (or hex numbers FIXME).
488 * (FIXME: handle parentheses for line continuation.)
490 if ((fp
= dst_s_fopen(name
, "r", 0)) == NULL
) {
491 EREPORT(("dst_read_public_key(): Public Key not found %s\n",
495 /* Skip domain name, which ends at first blank */
496 while ((c
= getc(fp
)) != EOF
)
499 /* Skip blank to get to next field */
500 while ((c
= getc(fp
)) != EOF
)
504 /* Skip optional TTL -- if initial digit, skip whole word. */
506 while ((c
= getc(fp
)) != EOF
)
509 while ((c
= getc(fp
)) != EOF
)
513 /* Skip optional "IN" */
514 if (c
== 'I' || c
== 'i') {
515 while ((c
= getc(fp
)) != EOF
)
518 while ((c
= getc(fp
)) != EOF
)
522 /* Locate and skip "KEY" */
523 if (c
!= 'K' && c
!= 'k') {
524 EREPORT(("\"KEY\" doesn't appear in file: %s", name
));
527 while ((c
= getc(fp
)) != EOF
)
530 while ((c
= getc(fp
)) != EOF
)
533 ungetc(c
, fp
); /*%< return the charcter to the input field */
534 /* Handle hex!! FIXME. */
536 if (fscanf(fp
, "%d %d %d", &flags
, &proto
, &alg
) != 3) {
537 EREPORT(("dst_read_public_key(): Can not read flag/proto/alg field from %s\n"
541 /* read in the key string */
542 fgets(enckey
, sizeof(enckey
), fp
);
544 /* If we aren't at end-of-file, something is wrong. */
545 while ((c
= getc(fp
)) != EOF
)
549 EREPORT(("Key too long in file: %s", name
));
554 if ((len
= strlen(enckey
)) <= 0)
558 enckey
[--len
] = '\0';
560 /* remove leading spaces */
561 for (notspace
= (char *) enckey
; isspace((*notspace
)&0xff); len
--)
564 dlen
= b64_pton(notspace
, deckey
, sizeof(deckey
));
566 EREPORT(("dst_read_public_key: bad return from b64_pton = %d",
570 /* store key and info in a key structure that is returned */
571 /* return dst_store_public_key(in_name, alg, proto, 666, flags, deckey,
573 return dst_buffer_to_key(in_name
, alg
, flags
, proto
, deckey
, dlen
);
577 * dst_write_public_key
578 * Write a key to disk in DNS format.
580 * key Pointer to a DST key structure.
587 dst_s_write_public_key(const DST_KEY
*key
)
590 char filename
[PATH_MAX
];
591 u_char out_key
[RAW_KEY_SIZE
];
592 char enc_key
[RAW_KEY_SIZE
];
596 memset(out_key
, 0, sizeof(out_key
));
598 EREPORT(("dst_write_public_key(): No key specified \n"));
600 } else if ((len
= dst_key_to_dnskey(key
, out_key
, sizeof(out_key
)))< 0)
603 /* Make the filename */
604 if (dst_s_build_filename(filename
, key
->dk_key_name
, key
->dk_id
,
605 key
->dk_alg
, PUBLIC_KEY
, PATH_MAX
) == -1) {
606 EREPORT(("dst_write_public_key(): Cannot make filename from %s, %d, and %s\n",
607 key
->dk_key_name
, key
->dk_id
, PUBLIC_KEY
));
610 /* XXX in general this should be a check for symmetric keys */
611 mode
= (key
->dk_alg
== KEY_HMAC_MD5
) ? 0600 : 0644;
612 /* create public key file */
613 if ((fp
= dst_s_fopen(filename
, "w+", mode
)) == NULL
) {
614 EREPORT(("DST_write_public_key: open of file:%s failed (errno=%d)\n",
618 /*write out key first base64 the key data */
619 if (key
->dk_flags
& DST_EXTEND_FLAG
)
620 b64_ntop(&out_key
[6], len
- 6, enc_key
, sizeof(enc_key
));
622 b64_ntop(&out_key
[4], len
- 4, enc_key
, sizeof(enc_key
));
623 fprintf(fp
, "%s IN KEY %d %d %d %s\n",
625 key
->dk_flags
, key
->dk_proto
, key
->dk_alg
, enc_key
);
631 * dst_dnskey_to_public_key
632 * This function converts the contents of a DNS KEY RR into a DST
635 * len Length of the RDATA of the KEY RR RDATA
636 * rdata A pointer to the the KEY RR RDATA.
637 * in_name Key name to be stored in key structure.
640 * NON-NULL Success. Pointer to key structure.
641 * Caller's responsibility to free() it.
645 dst_dnskey_to_key(const char *in_name
, const u_char
*rdata
, const int len
)
649 int start
= DST_KEY_START
;
651 if (rdata
== NULL
|| len
<= DST_KEY_ALG
) /*%< no data */
653 alg
= (u_int8_t
) rdata
[DST_KEY_ALG
];
654 if (!dst_check_algorithm(alg
)) { /*%< make sure alg is available */
655 EREPORT(("dst_dnskey_to_key(): Algorithm %d not suppored\n",
663 if ((key_st
= dst_s_get_key_struct(in_name
, alg
, 0, 0, 0)) == NULL
)
666 key_st
->dk_id
= dst_s_dns_key_id(rdata
, len
);
667 key_st
->dk_flags
= dst_s_get_int16(rdata
);
668 key_st
->dk_proto
= (u_int16_t
) rdata
[DST_KEY_PROT
];
669 if (key_st
->dk_flags
& DST_EXTEND_FLAG
) {
671 ext_flags
= (u_int32_t
) dst_s_get_int16(&rdata
[DST_EXT_FLAG
]);
672 key_st
->dk_flags
= key_st
->dk_flags
| (ext_flags
<< 16);
676 * now point to the begining of the data representing the encoding
679 if (key_st
->dk_func
&& key_st
->dk_func
->from_dns_key
) {
680 if (key_st
->dk_func
->from_dns_key(key_st
, &rdata
[start
],
684 EREPORT(("dst_dnskey_to_public_key(): unsuppored alg %d\n",
692 * dst_public_key_to_dnskey
693 * Function to encode a public key into DNS KEY wire format
695 * key Key structure to encode.
696 * out_storage Location to write the encoded key to.
697 * out_len Size of the output array.
700 * >=0 Number of bytes written to out_storage
704 dst_key_to_dnskey(const DST_KEY
*key
, u_char
*out_storage
,
713 if (!dst_check_algorithm(key
->dk_alg
)) { /*%< make sure alg is available */
714 EREPORT(("dst_key_to_dnskey(): Algorithm %d not suppored\n",
716 return (UNSUPPORTED_KEYALG
);
718 memset(out_storage
, 0, out_len
);
719 val
= (u_int16_t
)(key
->dk_flags
& 0xffff);
720 dst_s_put_int16(out_storage
, val
);
723 out_storage
[loc
++] = (u_char
) key
->dk_proto
;
724 out_storage
[loc
++] = (u_char
) key
->dk_alg
;
726 if (key
->dk_flags
> 0xffff) { /*%< Extended flags */
727 val
= (u_int16_t
)((key
->dk_flags
>> 16) & 0xffff);
728 dst_s_put_int16(&out_storage
[loc
], val
);
731 if (key
->dk_KEY_struct
== NULL
)
733 if (key
->dk_func
&& key
->dk_func
->to_dns_key
) {
734 enc_len
= key
->dk_func
->to_dns_key(key
,
735 (u_char
*) &out_storage
[loc
],
738 return (enc_len
+ loc
);
742 EREPORT(("dst_key_to_dnskey(): Unsupported ALG %d\n",
749 * Function to encode a string of raw data into a DST key
751 * alg The algorithm (HMAC only)
752 * key A pointer to the data
753 * keylen The length of the data
755 * NULL an error occurred
756 * NON-NULL the DST key
759 dst_buffer_to_key(const char *key_name
, /*!< name of the key */
760 const int alg
, /*!< algorithm */
761 const int flags
, /*!< dns flags */
762 const int protocol
, /*!< dns protocol */
763 const u_char
*key_buf
, /*!< key in dns wire fmt */
764 const int key_len
) /*!< size of key */
767 DST_KEY
*dkey
= NULL
;
771 if (!dst_check_algorithm(alg
)) { /*%< make sure alg is available */
772 EREPORT(("dst_buffer_to_key(): Algorithm %d not suppored\n", alg
));
776 dkey
= dst_s_get_key_struct(key_name
, alg
, flags
, protocol
, -1);
778 if (dkey
== NULL
|| dkey
->dk_func
== NULL
||
779 dkey
->dk_func
->from_dns_key
== NULL
)
780 return (dst_free_key(dkey
));
782 if (dkey
->dk_func
->from_dns_key(dkey
, key_buf
, key_len
) < 0) {
783 EREPORT(("dst_buffer_to_key(): dst_buffer_to_hmac failed\n"));
784 return (dst_free_key(dkey
));
787 dnslen
= dst_key_to_dnskey(dkey
, dns
, sizeof(dns
));
788 dkey
->dk_id
= dst_s_dns_key_id(dns
, dnslen
);
793 dst_key_to_buffer(DST_KEY
*key
, u_char
*out_buff
, int buf_len
)
796 /* this function will extrac the secret of HMAC into a buffer */
799 if (key
->dk_func
!= NULL
&& key
->dk_func
->to_dns_key
!= NULL
) {
800 len
= key
->dk_func
->to_dns_key(key
, out_buff
, buf_len
);
809 * dst_s_read_private_key_file
810 * Function reads in private key from a file.
811 * Fills out the KEY structure.
813 * name Name of the key to be read.
814 * pk_key Structure that the key is returned in.
815 * in_id Key identifier (tag)
817 * 1 if everthing works
818 * 0 if there is any problem
822 dst_s_read_private_key_file(char *name
, DST_KEY
*pk_key
, u_int16_t in_id
,
825 int cnt
, alg
, len
, major
, minor
, file_major
, file_minor
;
827 char filename
[PATH_MAX
];
828 u_char in_buff
[RAW_KEY_SIZE
], *p
;
833 if (name
== NULL
|| pk_key
== NULL
) {
834 EREPORT(("dst_read_private_key_file(): No key name given\n"));
837 /* Make the filename */
838 if (dst_s_build_filename(filename
, name
, in_id
, in_alg
, PRIVATE_KEY
,
840 EREPORT(("dst_read_private_key(): Cannot make filename from %s, %d, and %s\n",
841 name
, in_id
, PRIVATE_KEY
));
844 /* first check if we can find the key file */
845 if ((fp
= dst_s_fopen(filename
, "r", 0)) == NULL
) {
846 EREPORT(("dst_s_read_private_key_file: Could not open file %s in directory %s\n",
847 filename
, dst_path
[0] ? dst_path
:
848 (char *) getcwd(NULL
, PATH_MAX
- 1)));
851 /* now read the header info from the file */
852 if ((cnt
= fread(in_buff
, 1, sizeof(in_buff
), fp
)) < 5) {
854 EREPORT(("dst_s_read_private_key_file: error reading file %s (empty file)\n",
860 if (memcmp(in_buff
, "Private-key-format: v", 20) != 0)
865 if (!dst_s_verify_str((const char **) (void *)&p
,
866 "Private-key-format: v")) {
867 EREPORT(("dst_s_read_private_key_file(): Not a Key file/Decrypt failed %s\n", name
));
870 /* read in file format */
871 sscanf((char *)p
, "%d.%d", &file_major
, &file_minor
);
872 sscanf(KEY_FILE_FORMAT
, "%d.%d", &major
, &minor
);
873 if (file_major
< 1) {
874 EREPORT(("dst_s_read_private_key_file(): Unknown keyfile %d.%d version for %s\n",
875 file_major
, file_minor
, name
));
877 } else if (file_major
> major
|| file_minor
> minor
)
879 "dst_s_read_private_key_file(): Keyfile %s version higher than mine %d.%d MAY FAIL\n",
880 name
, file_major
, file_minor
));
882 while (*p
++ != '\n') ; /*%< skip to end of line */
884 if (!dst_s_verify_str((const char **) (void *)&p
, "Algorithm: "))
887 if (sscanf((char *)p
, "%d", &alg
) != 1)
889 while (*p
++ != '\n') ; /*%< skip to end of line */
891 if (pk_key
->dk_key_name
&& !strcmp(pk_key
->dk_key_name
, name
))
892 SAFE_FREE2(pk_key
->dk_key_name
, strlen(pk_key
->dk_key_name
));
893 pk_key
->dk_key_name
= (char *) strdup(name
);
895 /* allocate and fill in key structure */
896 if (pk_key
->dk_func
== NULL
|| pk_key
->dk_func
->from_file_fmt
== NULL
)
899 ret
= pk_key
->dk_func
->from_file_fmt(pk_key
, (char *)p
, &in_buff
[len
] - p
);
903 dnslen
= dst_key_to_dnskey(pk_key
, dns
, sizeof(dns
));
904 id
= dst_s_dns_key_id(dns
, dnslen
);
906 /* Make sure the actual key tag matches the input tag used in the filename
909 EREPORT(("dst_s_read_private_key_file(): actual tag of key read %d != input tag used to build filename %d.\n", id
, in_id
));
912 pk_key
->dk_id
= (u_int16_t
) id
;
913 pk_key
->dk_alg
= alg
;
914 memset(in_buff
, 0, cnt
);
918 memset(in_buff
, 0, cnt
);
923 * Generate and store a public/private keypair.
924 * Keys will be stored in formatted files.
928 *\par name Name of the new key. Used to create key files
929 *\li K<name>+<alg>+<id>.public and K<name>+<alg>+<id>.private.
930 *\par bits Size of the new key in bits.
931 *\par exp What exponent to use:
932 *\li 0 use exponent 3
933 *\li non-zero use Fermant4
934 *\par flags The default value of the DNS Key flags.
935 *\li The DNS Key RR Flag field is defined in RFC2065,
936 * section 3.3. The field has 16 bits.
938 *\li Default value of the DNS Key protocol field.
939 *\li The DNS Key protocol field is defined in RFC2065,
940 * section 3.4. The field has 8 bits.
941 *\par alg What algorithm to use. Currently defined:
945 *\par out_id The key tag is returned.
949 *\li non-NULL the generated key pair
950 * Caller frees the result, and its dk_name pointer.
953 dst_generate_key(const char *name
, const int bits
, const int exp
,
954 const int flags
, const int protocol
, const int alg
)
956 DST_KEY
*new_key
= NULL
;
963 if (!dst_check_algorithm(alg
)) { /*%< make sure alg is available */
964 EREPORT(("dst_generate_key(): Algorithm %d not suppored\n", alg
));
968 new_key
= dst_s_get_key_struct(name
, alg
, flags
, protocol
, bits
);
971 if (bits
== 0) /*%< null key we are done */
973 if (new_key
->dk_func
== NULL
|| new_key
->dk_func
->generate
== NULL
) {
974 EREPORT(("dst_generate_key_pair():Unsupported algorithm %d\n",
976 return (dst_free_key(new_key
));
978 if (new_key
->dk_func
->generate(new_key
, exp
) <= 0) {
979 EREPORT(("dst_generate_key_pair(): Key generation failure %s %d %d %d\n",
980 new_key
->dk_key_name
, new_key
->dk_alg
,
981 new_key
->dk_key_size
, exp
));
982 return (dst_free_key(new_key
));
985 dnslen
= dst_key_to_dnskey(new_key
, dns
, sizeof(dns
));
986 if (dnslen
!= UNSUPPORTED_KEYALG
)
987 new_key
->dk_id
= dst_s_dns_key_id(dns
, dnslen
);
995 * Release all data structures pointed to by a key structure.
998 *\li f_key Key structure to be freed.
1002 dst_free_key(DST_KEY
*f_key
)
1007 if (f_key
->dk_func
&& f_key
->dk_func
->destroy
)
1008 f_key
->dk_KEY_struct
=
1009 f_key
->dk_func
->destroy(f_key
->dk_KEY_struct
);
1011 EREPORT(("dst_free_key(): Unknown key alg %d\n",
1014 if (f_key
->dk_KEY_struct
) {
1015 free(f_key
->dk_KEY_struct
);
1016 f_key
->dk_KEY_struct
= NULL
;
1018 if (f_key
->dk_key_name
)
1019 SAFE_FREE(f_key
->dk_key_name
);
1025 * Return the maximim size of signature from the key specified in bytes
1034 dst_sig_size(DST_KEY
*key
) {
1035 switch (key
->dk_alg
) {
1041 return (key
->dk_key_size
+ 7) / 8;
1045 EREPORT(("dst_sig_size(): Unknown key alg %d\n", key
->dk_alg
));