blob: c780f8ba7797218c8c743f0af629350b09d14f16 [file] [log] [blame]
Damien Miller16cd3922014-05-15 13:45:58 +10001/* $OpenBSD: dns.c,v 1.30 2014/04/20 09:24:26 logan Exp $ */
Damien Miller37876e92003-05-15 10:19:46 +10002
3/*
4 * Copyright (c) 2003 Wesley Griffin. All rights reserved.
5 * Copyright (c) 2003 Jakob Schlyter. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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.
15 *
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.
26 */
27
Damien Miller37876e92003-05-15 10:19:46 +100028#include "includes.h"
29
Damien Millere3b60b52006-07-10 21:08:03 +100030#include <sys/types.h>
31#include <sys/socket.h>
32
Damien Millerb8fe89c2006-07-24 14:51:00 +100033#include <netdb.h>
Damien Millerded319c2006-09-01 15:38:36 +100034#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036#include <string.h>
Damien Miller37876e92003-05-15 10:19:46 +100037
38#include "xmalloc.h"
39#include "key.h"
40#include "dns.h"
41#include "log.h"
Damien Miller37876e92003-05-15 10:19:46 +100042
Damien Miller37876e92003-05-15 10:19:46 +100043static 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 */
50};
51
52static const char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100053dns_result_totext(unsigned int res)
Damien Miller37876e92003-05-15 10:19:46 +100054{
Darren Tucker3f9fdc72004-06-22 12:56:01 +100055 switch (res) {
Damien Miller37876e92003-05-15 10:19:46 +100056 case ERRSET_SUCCESS:
57 return errset_text[ERRSET_SUCCESS];
58 case ERRSET_NOMEMORY:
59 return errset_text[ERRSET_NOMEMORY];
60 case ERRSET_FAIL:
61 return errset_text[ERRSET_FAIL];
62 case ERRSET_INVAL:
63 return errset_text[ERRSET_INVAL];
64 case ERRSET_NONAME:
65 return errset_text[ERRSET_NONAME];
66 case ERRSET_NODATA:
67 return errset_text[ERRSET_NODATA];
68 default:
69 return "unknown error";
70 }
71}
Damien Miller37876e92003-05-15 10:19:46 +100072
73/*
74 * Read SSHFP parameters from key buffer.
75 */
76static int
77dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
Damien Miller0a80ca12010-02-27 07:55:05 +110078 u_char **digest, u_int *digest_len, Key *key)
Damien Miller37876e92003-05-15 10:19:46 +100079{
80 int success = 0;
Damien Miller3bde12a2012-06-20 21:51:11 +100081 enum fp_type fp_type = 0;
Damien Miller37876e92003-05-15 10:19:46 +100082
83 switch (key->type) {
84 case KEY_RSA:
85 *algorithm = SSHFP_KEY_RSA;
Damien Miller3bde12a2012-06-20 21:51:11 +100086 if (!*digest_type)
87 *digest_type = SSHFP_HASH_SHA1;
Damien Miller37876e92003-05-15 10:19:46 +100088 break;
89 case KEY_DSA:
90 *algorithm = SSHFP_KEY_DSA;
Damien Miller3bde12a2012-06-20 21:51:11 +100091 if (!*digest_type)
92 *digest_type = SSHFP_HASH_SHA1;
Damien Miller37876e92003-05-15 10:19:46 +100093 break;
Damien Miller3bde12a2012-06-20 21:51:11 +100094 case KEY_ECDSA:
95 *algorithm = SSHFP_KEY_ECDSA;
96 if (!*digest_type)
97 *digest_type = SSHFP_HASH_SHA256;
98 break;
Damien Miller16cd3922014-05-15 13:45:58 +100099 case KEY_ED25519:
100 *algorithm = SSHFP_KEY_ED25519;
101 if (!*digest_type)
102 *digest_type = SSHFP_HASH_SHA256;
103 break;
Damien Miller37876e92003-05-15 10:19:46 +1000104 default:
Damien Miller65712492005-11-05 15:09:27 +1100105 *algorithm = SSHFP_KEY_RESERVED; /* 0 */
Damien Miller3bde12a2012-06-20 21:51:11 +1000106 *digest_type = SSHFP_HASH_RESERVED; /* 0 */
Damien Miller37876e92003-05-15 10:19:46 +1000107 }
108
Damien Miller3bde12a2012-06-20 21:51:11 +1000109 switch (*digest_type) {
110 case SSHFP_HASH_SHA1:
111 fp_type = SSH_FP_SHA1;
112 break;
113 case SSHFP_HASH_SHA256:
114 fp_type = SSH_FP_SHA256;
115 break;
116 default:
117 *digest_type = SSHFP_HASH_RESERVED; /* 0 */
118 }
119
120 if (*algorithm && *digest_type) {
121 *digest = key_fingerprint_raw(key, fp_type, digest_len);
Damien Miller65712492005-11-05 15:09:27 +1100122 if (*digest == NULL)
123 fatal("dns_read_key: null from key_fingerprint_raw()");
Damien Miller37876e92003-05-15 10:19:46 +1000124 success = 1;
125 } else {
Damien Miller37876e92003-05-15 10:19:46 +1000126 *digest = NULL;
127 *digest_len = 0;
128 success = 0;
129 }
130
131 return success;
132}
133
134/*
135 * Read SSHFP parameters from rdata buffer.
136 */
137static int
138dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
139 u_char **digest, u_int *digest_len, u_char *rdata, int rdata_len)
140{
141 int success = 0;
142
143 *algorithm = SSHFP_KEY_RESERVED;
144 *digest_type = SSHFP_HASH_RESERVED;
145
146 if (rdata_len >= 2) {
147 *algorithm = rdata[0];
148 *digest_type = rdata[1];
149 *digest_len = rdata_len - 2;
150
151 if (*digest_len > 0) {
152 *digest = (u_char *) xmalloc(*digest_len);
153 memcpy(*digest, rdata + 2, *digest_len);
154 } else {
Damien Miller59962942006-03-26 00:06:48 +1100155 *digest = (u_char *)xstrdup("");
Damien Miller37876e92003-05-15 10:19:46 +1000156 }
157
158 success = 1;
159 }
160
161 return success;
162}
163
Damien Millera31c9292005-05-26 12:03:31 +1000164/*
165 * Check if hostname is numerical.
166 * Returns -1 if hostname is numeric, 0 otherwise
167 */
168static int
169is_numeric_hostname(const char *hostname)
170{
171 struct addrinfo hints, *ai;
172
Darren Tucker30ac73b2008-06-13 04:46:45 +1000173 /*
174 * We shouldn't ever get a null host but if we do then log an error
175 * and return -1 which stops DNS key fingerprint processing.
176 */
177 if (hostname == NULL) {
178 error("is_numeric_hostname called with NULL hostname");
179 return -1;
180 }
181
Damien Millera31c9292005-05-26 12:03:31 +1000182 memset(&hints, 0, sizeof(hints));
183 hints.ai_socktype = SOCK_DGRAM;
184 hints.ai_flags = AI_NUMERICHOST;
185
Darren Tucker30ac73b2008-06-13 04:46:45 +1000186 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
Damien Millera31c9292005-05-26 12:03:31 +1000187 freeaddrinfo(ai);
188 return -1;
189 }
190
191 return 0;
192}
Damien Miller37876e92003-05-15 10:19:46 +1000193
194/*
195 * Verify the given hostname, address and host key using DNS.
Damien Millera8e06ce2003-11-21 23:48:55 +1100196 * Returns 0 if lookup succeeds, -1 otherwise
Damien Miller37876e92003-05-15 10:19:46 +1000197 */
198int
199verify_host_key_dns(const char *hostname, struct sockaddr *address,
Damien Miller0a80ca12010-02-27 07:55:05 +1100200 Key *hostkey, int *flags)
Damien Miller37876e92003-05-15 10:19:46 +1000201{
Damien Millereccb9de2005-06-17 12:59:34 +1000202 u_int counter;
Damien Miller37876e92003-05-15 10:19:46 +1000203 int result;
204 struct rrsetinfo *fingerprints = NULL;
Damien Miller37876e92003-05-15 10:19:46 +1000205
206 u_int8_t hostkey_algorithm;
Damien Miller3bde12a2012-06-20 21:51:11 +1000207 u_int8_t hostkey_digest_type = SSHFP_HASH_RESERVED;
Damien Miller37876e92003-05-15 10:19:46 +1000208 u_char *hostkey_digest;
209 u_int hostkey_digest_len;
210
211 u_int8_t dnskey_algorithm;
212 u_int8_t dnskey_digest_type;
213 u_char *dnskey_digest;
214 u_int dnskey_digest_len;
215
Damien Miller150b5572003-11-17 21:19:29 +1100216 *flags = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000217
Damien Miller319550a2005-11-05 15:11:15 +1100218 debug3("verify_host_key_dns");
Damien Miller37876e92003-05-15 10:19:46 +1000219 if (hostkey == NULL)
220 fatal("No key to look up!");
221
Damien Millera31c9292005-05-26 12:03:31 +1000222 if (is_numeric_hostname(hostname)) {
223 debug("skipped DNS lookup for numerical hostname");
224 return -1;
225 }
226
Damien Miller37876e92003-05-15 10:19:46 +1000227 result = getrrsetbyname(hostname, DNS_RDATACLASS_IN,
228 DNS_RDATATYPE_SSHFP, 0, &fingerprints);
229 if (result) {
230 verbose("DNS lookup error: %s", dns_result_totext(result));
Damien Miller150b5572003-11-17 21:19:29 +1100231 return -1;
Damien Miller37876e92003-05-15 10:19:46 +1000232 }
233
Damien Miller150b5572003-11-17 21:19:29 +1100234 if (fingerprints->rri_flags & RRSET_VALIDATED) {
235 *flags |= DNS_VERIFY_SECURE;
236 debug("found %d secure fingerprints in DNS",
237 fingerprints->rri_nrdatas);
238 } else {
239 debug("found %d insecure fingerprints in DNS",
240 fingerprints->rri_nrdatas);
Damien Miller37876e92003-05-15 10:19:46 +1000241 }
Damien Miller37876e92003-05-15 10:19:46 +1000242
Damien Miller3bde12a2012-06-20 21:51:11 +1000243 /* Initialize default host key parameters */
Damien Miller37876e92003-05-15 10:19:46 +1000244 if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type,
245 &hostkey_digest, &hostkey_digest_len, hostkey)) {
246 error("Error calculating host key fingerprint.");
Damien Millerb0622652003-05-15 13:27:28 +1000247 freerrset(fingerprints);
Damien Miller150b5572003-11-17 21:19:29 +1100248 return -1;
Damien Miller37876e92003-05-15 10:19:46 +1000249 }
250
Damien Miller150b5572003-11-17 21:19:29 +1100251 if (fingerprints->rri_nrdatas)
252 *flags |= DNS_VERIFY_FOUND;
253
Damien Miller80163902007-01-05 16:30:16 +1100254 for (counter = 0; counter < fingerprints->rri_nrdatas; counter++) {
Damien Miller37876e92003-05-15 10:19:46 +1000255 /*
256 * Extract the key from the answer. Ignore any badly
257 * formatted fingerprints.
258 */
259 if (!dns_read_rdata(&dnskey_algorithm, &dnskey_digest_type,
260 &dnskey_digest, &dnskey_digest_len,
261 fingerprints->rri_rdatas[counter].rdi_data,
262 fingerprints->rri_rdatas[counter].rdi_length)) {
263 verbose("Error parsing fingerprint from DNS.");
264 continue;
265 }
266
Damien Miller3bde12a2012-06-20 21:51:11 +1000267 if (hostkey_digest_type != dnskey_digest_type) {
268 hostkey_digest_type = dnskey_digest_type;
Darren Tuckera627d422013-06-02 07:31:17 +1000269 free(hostkey_digest);
Damien Miller3bde12a2012-06-20 21:51:11 +1000270
271 /* Initialize host key parameters */
272 if (!dns_read_key(&hostkey_algorithm,
273 &hostkey_digest_type, &hostkey_digest,
274 &hostkey_digest_len, hostkey)) {
275 error("Error calculating key fingerprint.");
276 freerrset(fingerprints);
277 return -1;
278 }
279 }
280
Damien Miller37876e92003-05-15 10:19:46 +1000281 /* Check if the current key is the same as the given key */
282 if (hostkey_algorithm == dnskey_algorithm &&
283 hostkey_digest_type == dnskey_digest_type) {
Damien Miller37876e92003-05-15 10:19:46 +1000284 if (hostkey_digest_len == dnskey_digest_len &&
Damien Miller3bde12a2012-06-20 21:51:11 +1000285 timingsafe_bcmp(hostkey_digest, dnskey_digest,
286 hostkey_digest_len) == 0)
Damien Miller150b5572003-11-17 21:19:29 +1100287 *flags |= DNS_VERIFY_MATCH;
Damien Miller37876e92003-05-15 10:19:46 +1000288 }
Darren Tuckera627d422013-06-02 07:31:17 +1000289 free(dnskey_digest);
Damien Miller37876e92003-05-15 10:19:46 +1000290 }
291
Darren Tuckera627d422013-06-02 07:31:17 +1000292 free(hostkey_digest); /* from key_fingerprint_raw() */
Damien Miller37876e92003-05-15 10:19:46 +1000293 freerrset(fingerprints);
294
Damien Miller150b5572003-11-17 21:19:29 +1100295 if (*flags & DNS_VERIFY_FOUND)
296 if (*flags & DNS_VERIFY_MATCH)
297 debug("matching host key fingerprint found in DNS");
298 else
299 debug("mismatching host key fingerprint found in DNS");
300 else
301 debug("no host key fingerprint found in DNS");
Damien Miller37876e92003-05-15 10:19:46 +1000302
Damien Miller150b5572003-11-17 21:19:29 +1100303 return 0;
Damien Miller37876e92003-05-15 10:19:46 +1000304}
305
Damien Miller37876e92003-05-15 10:19:46 +1000306/*
307 * Export the fingerprint of a key as a DNS resource record
308 */
309int
Damien Miller0a80ca12010-02-27 07:55:05 +1100310export_dns_rr(const char *hostname, Key *key, FILE *f, int generic)
Damien Miller37876e92003-05-15 10:19:46 +1000311{
312 u_int8_t rdata_pubkey_algorithm = 0;
Damien Miller3bde12a2012-06-20 21:51:11 +1000313 u_int8_t rdata_digest_type = SSHFP_HASH_RESERVED;
314 u_int8_t dtype;
Damien Miller37876e92003-05-15 10:19:46 +1000315 u_char *rdata_digest;
Damien Miller3bde12a2012-06-20 21:51:11 +1000316 u_int i, rdata_digest_len;
Damien Miller37876e92003-05-15 10:19:46 +1000317 int success = 0;
318
Damien Miller3bde12a2012-06-20 21:51:11 +1000319 for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) {
320 rdata_digest_type = dtype;
321 if (dns_read_key(&rdata_pubkey_algorithm, &rdata_digest_type,
322 &rdata_digest, &rdata_digest_len, key)) {
323 if (generic) {
324 fprintf(f, "%s IN TYPE%d \\# %d %02x %02x ",
325 hostname, DNS_RDATATYPE_SSHFP,
326 2 + rdata_digest_len,
327 rdata_pubkey_algorithm, rdata_digest_type);
328 } else {
329 fprintf(f, "%s IN SSHFP %d %d ", hostname,
330 rdata_pubkey_algorithm, rdata_digest_type);
331 }
332 for (i = 0; i < rdata_digest_len; i++)
333 fprintf(f, "%02x", rdata_digest[i]);
334 fprintf(f, "\n");
Darren Tuckera627d422013-06-02 07:31:17 +1000335 free(rdata_digest); /* from key_fingerprint_raw() */
Damien Miller3bde12a2012-06-20 21:51:11 +1000336 success = 1;
337 }
338 }
Damien Miller37876e92003-05-15 10:19:46 +1000339
Damien Miller3bde12a2012-06-20 21:51:11 +1000340 /* No SSHFP record was generated at all */
341 if (success == 0) {
342 error("%s: unsupported algorithm and/or digest_type", __func__);
Damien Miller37876e92003-05-15 10:19:46 +1000343 }
344
345 return success;
346}