1 /* $OpenBSD: dns.c,v 1.35 2015/08/20 22:32:42 deraadt 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>
47 static const char *errset_text
[] = {
48 "success", /* 0 ERRSET_SUCCESS */
49 "out of memory", /* 1 ERRSET_NOMEMORY */
50 "general failure", /* 2 ERRSET_FAIL */
51 "invalid parameter", /* 3 ERRSET_INVAL */
52 "name does not exist", /* 4 ERRSET_NONAME */
53 "data does not exist", /* 5 ERRSET_NODATA */
57 dns_result_totext(unsigned int res
)
61 return errset_text
[ERRSET_SUCCESS
];
63 return errset_text
[ERRSET_NOMEMORY
];
65 return errset_text
[ERRSET_FAIL
];
67 return errset_text
[ERRSET_INVAL
];
69 return errset_text
[ERRSET_NONAME
];
71 return errset_text
[ERRSET_NODATA
];
73 return "unknown error";
78 * Read SSHFP parameters from key buffer.
81 dns_read_key(u_int8_t
*algorithm
, u_int8_t
*digest_type
,
82 u_char
**digest
, size_t *digest_len
, struct sshkey
*key
)
89 *algorithm
= SSHFP_KEY_RSA
;
91 *digest_type
= SSHFP_HASH_SHA1
;
94 *algorithm
= SSHFP_KEY_DSA
;
96 *digest_type
= SSHFP_HASH_SHA1
;
99 *algorithm
= SSHFP_KEY_ECDSA
;
101 *digest_type
= SSHFP_HASH_SHA256
;
104 *algorithm
= SSHFP_KEY_ED25519
;
106 *digest_type
= SSHFP_HASH_SHA256
;
109 *algorithm
= SSHFP_KEY_RESERVED
; /* 0 */
110 *digest_type
= SSHFP_HASH_RESERVED
; /* 0 */
113 switch (*digest_type
) {
114 case SSHFP_HASH_SHA1
:
115 fp_alg
= SSH_DIGEST_SHA1
;
117 case SSHFP_HASH_SHA256
:
118 fp_alg
= SSH_DIGEST_SHA256
;
121 *digest_type
= SSHFP_HASH_RESERVED
; /* 0 */
124 if (*algorithm
&& *digest_type
) {
125 if ((r
= sshkey_fingerprint_raw(key
, fp_alg
, digest
,
127 fatal("%s: sshkey_fingerprint_raw: %s", __func__
,
140 * Read SSHFP parameters from rdata buffer.
143 dns_read_rdata(u_int8_t
*algorithm
, u_int8_t
*digest_type
,
144 u_char
**digest
, size_t *digest_len
, u_char
*rdata
, int rdata_len
)
148 *algorithm
= SSHFP_KEY_RESERVED
;
149 *digest_type
= SSHFP_HASH_RESERVED
;
151 if (rdata_len
>= 2) {
152 *algorithm
= rdata
[0];
153 *digest_type
= rdata
[1];
154 *digest_len
= rdata_len
- 2;
156 if (*digest_len
> 0) {
157 *digest
= xmalloc(*digest_len
);
158 memcpy(*digest
, rdata
+ 2, *digest_len
);
160 *digest
= (u_char
*)xstrdup("");
170 * Check if hostname is numerical.
171 * Returns -1 if hostname is numeric, 0 otherwise
174 is_numeric_hostname(const char *hostname
)
176 struct addrinfo hints
, *ai
;
179 * We shouldn't ever get a null host but if we do then log an error
180 * and return -1 which stops DNS key fingerprint processing.
182 if (hostname
== NULL
) {
183 error("is_numeric_hostname called with NULL hostname");
187 memset(&hints
, 0, sizeof(hints
));
188 hints
.ai_socktype
= SOCK_DGRAM
;
189 hints
.ai_flags
= AI_NUMERICHOST
;
191 if (getaddrinfo(hostname
, NULL
, &hints
, &ai
) == 0) {
200 * Verify the given hostname, address and host key using DNS.
201 * Returns 0 if lookup succeeds, -1 otherwise
204 verify_host_key_dns(const char *hostname
, struct sockaddr
*address
,
205 struct sshkey
*hostkey
, int *flags
)
209 struct rrsetinfo
*fingerprints
= NULL
;
211 u_int8_t hostkey_algorithm
;
212 u_int8_t hostkey_digest_type
= SSHFP_HASH_RESERVED
;
213 u_char
*hostkey_digest
;
214 size_t hostkey_digest_len
;
216 u_int8_t dnskey_algorithm
;
217 u_int8_t dnskey_digest_type
;
218 u_char
*dnskey_digest
;
219 size_t dnskey_digest_len
;
223 debug3("verify_host_key_dns");
225 fatal("No key to look up!");
227 if (is_numeric_hostname(hostname
)) {
228 debug("skipped DNS lookup for numerical hostname");
232 result
= getrrsetbyname(hostname
, DNS_RDATACLASS_IN
,
233 DNS_RDATATYPE_SSHFP
, 0, &fingerprints
);
235 verbose("DNS lookup error: %s", dns_result_totext(result
));
239 if (fingerprints
->rri_flags
& RRSET_VALIDATED
) {
240 *flags
|= DNS_VERIFY_SECURE
;
241 debug("found %d secure fingerprints in DNS",
242 fingerprints
->rri_nrdatas
);
244 debug("found %d insecure fingerprints in DNS",
245 fingerprints
->rri_nrdatas
);
248 /* Initialize default host key parameters */
249 if (!dns_read_key(&hostkey_algorithm
, &hostkey_digest_type
,
250 &hostkey_digest
, &hostkey_digest_len
, hostkey
)) {
251 error("Error calculating host key fingerprint.");
252 freerrset(fingerprints
);
256 if (fingerprints
->rri_nrdatas
)
257 *flags
|= DNS_VERIFY_FOUND
;
259 for (counter
= 0; counter
< fingerprints
->rri_nrdatas
; counter
++) {
261 * Extract the key from the answer. Ignore any badly
262 * formatted fingerprints.
264 if (!dns_read_rdata(&dnskey_algorithm
, &dnskey_digest_type
,
265 &dnskey_digest
, &dnskey_digest_len
,
266 fingerprints
->rri_rdatas
[counter
].rdi_data
,
267 fingerprints
->rri_rdatas
[counter
].rdi_length
)) {
268 verbose("Error parsing fingerprint from DNS.");
272 if (hostkey_digest_type
!= dnskey_digest_type
) {
273 hostkey_digest_type
= dnskey_digest_type
;
274 free(hostkey_digest
);
276 /* Initialize host key parameters */
277 if (!dns_read_key(&hostkey_algorithm
,
278 &hostkey_digest_type
, &hostkey_digest
,
279 &hostkey_digest_len
, hostkey
)) {
280 error("Error calculating key fingerprint.");
281 freerrset(fingerprints
);
286 /* Check if the current key is the same as the given key */
287 if (hostkey_algorithm
== dnskey_algorithm
&&
288 hostkey_digest_type
== dnskey_digest_type
) {
289 if (hostkey_digest_len
== dnskey_digest_len
&&
290 timingsafe_bcmp(hostkey_digest
, dnskey_digest
,
291 hostkey_digest_len
) == 0)
292 *flags
|= DNS_VERIFY_MATCH
;
297 free(hostkey_digest
); /* from sshkey_fingerprint_raw() */
298 freerrset(fingerprints
);
300 if (*flags
& DNS_VERIFY_FOUND
)
301 if (*flags
& DNS_VERIFY_MATCH
)
302 debug("matching host key fingerprint found in DNS");
304 debug("mismatching host key fingerprint found in DNS");
306 debug("no host key fingerprint found in DNS");
312 * Export the fingerprint of a key as a DNS resource record
315 export_dns_rr(const char *hostname
, struct sshkey
*key
, FILE *f
, int generic
)
317 u_int8_t rdata_pubkey_algorithm
= 0;
318 u_int8_t rdata_digest_type
= SSHFP_HASH_RESERVED
;
320 u_char
*rdata_digest
;
321 size_t i
, rdata_digest_len
;
324 for (dtype
= SSHFP_HASH_SHA1
; dtype
< SSHFP_HASH_MAX
; dtype
++) {
325 rdata_digest_type
= dtype
;
326 if (dns_read_key(&rdata_pubkey_algorithm
, &rdata_digest_type
,
327 &rdata_digest
, &rdata_digest_len
, key
)) {
329 fprintf(f
, "%s IN TYPE%d \\# %zu %02x %02x ",
330 hostname
, DNS_RDATATYPE_SSHFP
,
331 2 + rdata_digest_len
,
332 rdata_pubkey_algorithm
, rdata_digest_type
);
334 fprintf(f
, "%s IN SSHFP %d %d ", hostname
,
335 rdata_pubkey_algorithm
, rdata_digest_type
);
337 for (i
= 0; i
< rdata_digest_len
; i
++)
338 fprintf(f
, "%02x", rdata_digest
[i
]);
340 free(rdata_digest
); /* from sshkey_fingerprint_raw() */
345 /* No SSHFP record was generated at all */
347 error("%s: unsupported algorithm and/or digest_type", __func__
);