1 /* $OpenBSD: dns.c,v 1.24 2007/01/03 03:01:40 stevesk Exp $ */
4 * Copyright (c) 2003 Wesley Griffin. All rights reserved.
5 * Copyright (c) 2003 Jakob Schlyter. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include <sys/types.h>
31 #include <sys/socket.h>
43 static const char *errset_text
[] = {
44 "success", /* 0 ERRSET_SUCCESS */
45 "out of memory", /* 1 ERRSET_NOMEMORY */
46 "general failure", /* 2 ERRSET_FAIL */
47 "invalid parameter", /* 3 ERRSET_INVAL */
48 "name does not exist", /* 4 ERRSET_NONAME */
49 "data does not exist", /* 5 ERRSET_NODATA */
53 dns_result_totext(unsigned int res
)
57 return errset_text
[ERRSET_SUCCESS
];
59 return errset_text
[ERRSET_NOMEMORY
];
61 return errset_text
[ERRSET_FAIL
];
63 return errset_text
[ERRSET_INVAL
];
65 return errset_text
[ERRSET_NONAME
];
67 return errset_text
[ERRSET_NODATA
];
69 return "unknown error";
74 * Read SSHFP parameters from key buffer.
77 dns_read_key(u_int8_t
*algorithm
, u_int8_t
*digest_type
,
78 u_char
**digest
, u_int
*digest_len
, const Key
*key
)
84 *algorithm
= SSHFP_KEY_RSA
;
87 *algorithm
= SSHFP_KEY_DSA
;
90 *algorithm
= SSHFP_KEY_RESERVED
; /* 0 */
94 *digest_type
= SSHFP_HASH_SHA1
;
95 *digest
= key_fingerprint_raw(key
, SSH_FP_SHA1
, digest_len
);
97 fatal("dns_read_key: null from key_fingerprint_raw()");
100 *digest_type
= SSHFP_HASH_RESERVED
;
110 * Read SSHFP parameters from rdata buffer.
113 dns_read_rdata(u_int8_t
*algorithm
, u_int8_t
*digest_type
,
114 u_char
**digest
, u_int
*digest_len
, u_char
*rdata
, int rdata_len
)
118 *algorithm
= SSHFP_KEY_RESERVED
;
119 *digest_type
= SSHFP_HASH_RESERVED
;
121 if (rdata_len
>= 2) {
122 *algorithm
= rdata
[0];
123 *digest_type
= rdata
[1];
124 *digest_len
= rdata_len
- 2;
126 if (*digest_len
> 0) {
127 *digest
= (u_char
*) xmalloc(*digest_len
);
128 memcpy(*digest
, rdata
+ 2, *digest_len
);
130 *digest
= (u_char
*)xstrdup("");
140 * Check if hostname is numerical.
141 * Returns -1 if hostname is numeric, 0 otherwise
144 is_numeric_hostname(const char *hostname
)
146 struct addrinfo hints
, *ai
;
148 memset(&hints
, 0, sizeof(hints
));
149 hints
.ai_socktype
= SOCK_DGRAM
;
150 hints
.ai_flags
= AI_NUMERICHOST
;
152 if (getaddrinfo(hostname
, "0", &hints
, &ai
) == 0) {
161 * Verify the given hostname, address and host key using DNS.
162 * Returns 0 if lookup succeeds, -1 otherwise
165 verify_host_key_dns(const char *hostname
, struct sockaddr
*address
,
166 const Key
*hostkey
, int *flags
)
170 struct rrsetinfo
*fingerprints
= NULL
;
172 u_int8_t hostkey_algorithm
;
173 u_int8_t hostkey_digest_type
;
174 u_char
*hostkey_digest
;
175 u_int hostkey_digest_len
;
177 u_int8_t dnskey_algorithm
;
178 u_int8_t dnskey_digest_type
;
179 u_char
*dnskey_digest
;
180 u_int dnskey_digest_len
;
184 debug3("verify_host_key_dns");
186 fatal("No key to look up!");
188 if (is_numeric_hostname(hostname
)) {
189 debug("skipped DNS lookup for numerical hostname");
193 result
= getrrsetbyname(hostname
, DNS_RDATACLASS_IN
,
194 DNS_RDATATYPE_SSHFP
, 0, &fingerprints
);
196 verbose("DNS lookup error: %s", dns_result_totext(result
));
200 if (fingerprints
->rri_flags
& RRSET_VALIDATED
) {
201 *flags
|= DNS_VERIFY_SECURE
;
202 debug("found %d secure fingerprints in DNS",
203 fingerprints
->rri_nrdatas
);
205 debug("found %d insecure fingerprints in DNS",
206 fingerprints
->rri_nrdatas
);
209 /* Initialize host key parameters */
210 if (!dns_read_key(&hostkey_algorithm
, &hostkey_digest_type
,
211 &hostkey_digest
, &hostkey_digest_len
, hostkey
)) {
212 error("Error calculating host key fingerprint.");
213 freerrset(fingerprints
);
217 if (fingerprints
->rri_nrdatas
)
218 *flags
|= DNS_VERIFY_FOUND
;
220 for (counter
= 0; counter
< fingerprints
->rri_nrdatas
; counter
++) {
222 * Extract the key from the answer. Ignore any badly
223 * formatted fingerprints.
225 if (!dns_read_rdata(&dnskey_algorithm
, &dnskey_digest_type
,
226 &dnskey_digest
, &dnskey_digest_len
,
227 fingerprints
->rri_rdatas
[counter
].rdi_data
,
228 fingerprints
->rri_rdatas
[counter
].rdi_length
)) {
229 verbose("Error parsing fingerprint from DNS.");
233 /* Check if the current key is the same as the given key */
234 if (hostkey_algorithm
== dnskey_algorithm
&&
235 hostkey_digest_type
== dnskey_digest_type
) {
237 if (hostkey_digest_len
== dnskey_digest_len
&&
238 memcmp(hostkey_digest
, dnskey_digest
,
239 hostkey_digest_len
) == 0) {
241 *flags
|= DNS_VERIFY_MATCH
;
244 xfree(dnskey_digest
);
247 xfree(hostkey_digest
); /* from key_fingerprint_raw() */
248 freerrset(fingerprints
);
250 if (*flags
& DNS_VERIFY_FOUND
)
251 if (*flags
& DNS_VERIFY_MATCH
)
252 debug("matching host key fingerprint found in DNS");
254 debug("mismatching host key fingerprint found in DNS");
256 debug("no host key fingerprint found in DNS");
262 * Export the fingerprint of a key as a DNS resource record
265 export_dns_rr(const char *hostname
, const Key
*key
, FILE *f
, int generic
)
267 u_int8_t rdata_pubkey_algorithm
= 0;
268 u_int8_t rdata_digest_type
= SSHFP_HASH_SHA1
;
269 u_char
*rdata_digest
;
270 u_int rdata_digest_len
;
275 if (dns_read_key(&rdata_pubkey_algorithm
, &rdata_digest_type
,
276 &rdata_digest
, &rdata_digest_len
, key
)) {
279 fprintf(f
, "%s IN TYPE%d \\# %d %02x %02x ", hostname
,
280 DNS_RDATATYPE_SSHFP
, 2 + rdata_digest_len
,
281 rdata_pubkey_algorithm
, rdata_digest_type
);
283 fprintf(f
, "%s IN SSHFP %d %d ", hostname
,
284 rdata_pubkey_algorithm
, rdata_digest_type
);
286 for (i
= 0; i
< rdata_digest_len
; i
++)
287 fprintf(f
, "%02x", rdata_digest
[i
]);
289 xfree(rdata_digest
); /* from key_fingerprint_raw() */
292 error("export_dns_rr: unsupported algorithm");