blob: c4d073cf50fa4e107fec507b00686737424b3320 [file] [log] [blame]
Damien Miller86687062014-07-02 15:28:02 +10001/* $OpenBSD: dns.c,v 1.31 2014/06/24 01:13:21 djm 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 Miller86687062014-07-02 15:28:02 +100037#include <stdarg.h>
38#include <stdlib.h>
Damien Miller37876e92003-05-15 10:19:46 +100039
40#include "xmalloc.h"
41#include "key.h"
42#include "dns.h"
43#include "log.h"
Damien Miller37876e92003-05-15 10:19:46 +100044
Damien Miller37876e92003-05-15 10:19:46 +100045static const char *errset_text[] = {
46 "success", /* 0 ERRSET_SUCCESS */
47 "out of memory", /* 1 ERRSET_NOMEMORY */
48 "general failure", /* 2 ERRSET_FAIL */
49 "invalid parameter", /* 3 ERRSET_INVAL */
50 "name does not exist", /* 4 ERRSET_NONAME */
51 "data does not exist", /* 5 ERRSET_NODATA */
52};
53
54static const char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100055dns_result_totext(unsigned int res)
Damien Miller37876e92003-05-15 10:19:46 +100056{
Darren Tucker3f9fdc72004-06-22 12:56:01 +100057 switch (res) {
Damien Miller37876e92003-05-15 10:19:46 +100058 case ERRSET_SUCCESS:
59 return errset_text[ERRSET_SUCCESS];
60 case ERRSET_NOMEMORY:
61 return errset_text[ERRSET_NOMEMORY];
62 case ERRSET_FAIL:
63 return errset_text[ERRSET_FAIL];
64 case ERRSET_INVAL:
65 return errset_text[ERRSET_INVAL];
66 case ERRSET_NONAME:
67 return errset_text[ERRSET_NONAME];
68 case ERRSET_NODATA:
69 return errset_text[ERRSET_NODATA];
70 default:
71 return "unknown error";
72 }
73}
Damien Miller37876e92003-05-15 10:19:46 +100074
75/*
76 * Read SSHFP parameters from key buffer.
77 */
78static int
79dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
Damien Miller0a80ca12010-02-27 07:55:05 +110080 u_char **digest, u_int *digest_len, Key *key)
Damien Miller37876e92003-05-15 10:19:46 +100081{
82 int success = 0;
Damien Miller3bde12a2012-06-20 21:51:11 +100083 enum fp_type fp_type = 0;
Damien Miller37876e92003-05-15 10:19:46 +100084
85 switch (key->type) {
86 case KEY_RSA:
87 *algorithm = SSHFP_KEY_RSA;
Damien Miller3bde12a2012-06-20 21:51:11 +100088 if (!*digest_type)
89 *digest_type = SSHFP_HASH_SHA1;
Damien Miller37876e92003-05-15 10:19:46 +100090 break;
91 case KEY_DSA:
92 *algorithm = SSHFP_KEY_DSA;
Damien Miller3bde12a2012-06-20 21:51:11 +100093 if (!*digest_type)
94 *digest_type = SSHFP_HASH_SHA1;
Damien Miller37876e92003-05-15 10:19:46 +100095 break;
Damien Miller3bde12a2012-06-20 21:51:11 +100096 case KEY_ECDSA:
97 *algorithm = SSHFP_KEY_ECDSA;
98 if (!*digest_type)
99 *digest_type = SSHFP_HASH_SHA256;
100 break;
Damien Miller16cd3922014-05-15 13:45:58 +1000101 case KEY_ED25519:
102 *algorithm = SSHFP_KEY_ED25519;
103 if (!*digest_type)
104 *digest_type = SSHFP_HASH_SHA256;
105 break;
Damien Miller37876e92003-05-15 10:19:46 +1000106 default:
Damien Miller65712492005-11-05 15:09:27 +1100107 *algorithm = SSHFP_KEY_RESERVED; /* 0 */
Damien Miller3bde12a2012-06-20 21:51:11 +1000108 *digest_type = SSHFP_HASH_RESERVED; /* 0 */
Damien Miller37876e92003-05-15 10:19:46 +1000109 }
110
Damien Miller3bde12a2012-06-20 21:51:11 +1000111 switch (*digest_type) {
112 case SSHFP_HASH_SHA1:
113 fp_type = SSH_FP_SHA1;
114 break;
115 case SSHFP_HASH_SHA256:
116 fp_type = SSH_FP_SHA256;
117 break;
118 default:
119 *digest_type = SSHFP_HASH_RESERVED; /* 0 */
120 }
121
122 if (*algorithm && *digest_type) {
123 *digest = key_fingerprint_raw(key, fp_type, digest_len);
Damien Miller65712492005-11-05 15:09:27 +1100124 if (*digest == NULL)
125 fatal("dns_read_key: null from key_fingerprint_raw()");
Damien Miller37876e92003-05-15 10:19:46 +1000126 success = 1;
127 } else {
Damien Miller37876e92003-05-15 10:19:46 +1000128 *digest = NULL;
129 *digest_len = 0;
130 success = 0;
131 }
132
133 return success;
134}
135
136/*
137 * Read SSHFP parameters from rdata buffer.
138 */
139static int
140dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
141 u_char **digest, u_int *digest_len, u_char *rdata, int rdata_len)
142{
143 int success = 0;
144
145 *algorithm = SSHFP_KEY_RESERVED;
146 *digest_type = SSHFP_HASH_RESERVED;
147
148 if (rdata_len >= 2) {
149 *algorithm = rdata[0];
150 *digest_type = rdata[1];
151 *digest_len = rdata_len - 2;
152
153 if (*digest_len > 0) {
154 *digest = (u_char *) xmalloc(*digest_len);
155 memcpy(*digest, rdata + 2, *digest_len);
156 } else {
Damien Miller59962942006-03-26 00:06:48 +1100157 *digest = (u_char *)xstrdup("");
Damien Miller37876e92003-05-15 10:19:46 +1000158 }
159
160 success = 1;
161 }
162
163 return success;
164}
165
Damien Millera31c9292005-05-26 12:03:31 +1000166/*
167 * Check if hostname is numerical.
168 * Returns -1 if hostname is numeric, 0 otherwise
169 */
170static int
171is_numeric_hostname(const char *hostname)
172{
173 struct addrinfo hints, *ai;
174
Darren Tucker30ac73b2008-06-13 04:46:45 +1000175 /*
176 * We shouldn't ever get a null host but if we do then log an error
177 * and return -1 which stops DNS key fingerprint processing.
178 */
179 if (hostname == NULL) {
180 error("is_numeric_hostname called with NULL hostname");
181 return -1;
182 }
183
Damien Millera31c9292005-05-26 12:03:31 +1000184 memset(&hints, 0, sizeof(hints));
185 hints.ai_socktype = SOCK_DGRAM;
186 hints.ai_flags = AI_NUMERICHOST;
187
Darren Tucker30ac73b2008-06-13 04:46:45 +1000188 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
Damien Millera31c9292005-05-26 12:03:31 +1000189 freeaddrinfo(ai);
190 return -1;
191 }
192
193 return 0;
194}
Damien Miller37876e92003-05-15 10:19:46 +1000195
196/*
197 * Verify the given hostname, address and host key using DNS.
Damien Millera8e06ce2003-11-21 23:48:55 +1100198 * Returns 0 if lookup succeeds, -1 otherwise
Damien Miller37876e92003-05-15 10:19:46 +1000199 */
200int
201verify_host_key_dns(const char *hostname, struct sockaddr *address,
Damien Miller0a80ca12010-02-27 07:55:05 +1100202 Key *hostkey, int *flags)
Damien Miller37876e92003-05-15 10:19:46 +1000203{
Damien Millereccb9de2005-06-17 12:59:34 +1000204 u_int counter;
Damien Miller37876e92003-05-15 10:19:46 +1000205 int result;
206 struct rrsetinfo *fingerprints = NULL;
Damien Miller37876e92003-05-15 10:19:46 +1000207
208 u_int8_t hostkey_algorithm;
Damien Miller3bde12a2012-06-20 21:51:11 +1000209 u_int8_t hostkey_digest_type = SSHFP_HASH_RESERVED;
Damien Miller37876e92003-05-15 10:19:46 +1000210 u_char *hostkey_digest;
211 u_int hostkey_digest_len;
212
213 u_int8_t dnskey_algorithm;
214 u_int8_t dnskey_digest_type;
215 u_char *dnskey_digest;
216 u_int dnskey_digest_len;
217
Damien Miller150b5572003-11-17 21:19:29 +1100218 *flags = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000219
Damien Miller319550a2005-11-05 15:11:15 +1100220 debug3("verify_host_key_dns");
Damien Miller37876e92003-05-15 10:19:46 +1000221 if (hostkey == NULL)
222 fatal("No key to look up!");
223
Damien Millera31c9292005-05-26 12:03:31 +1000224 if (is_numeric_hostname(hostname)) {
225 debug("skipped DNS lookup for numerical hostname");
226 return -1;
227 }
228
Damien Miller37876e92003-05-15 10:19:46 +1000229 result = getrrsetbyname(hostname, DNS_RDATACLASS_IN,
230 DNS_RDATATYPE_SSHFP, 0, &fingerprints);
231 if (result) {
232 verbose("DNS lookup error: %s", dns_result_totext(result));
Damien Miller150b5572003-11-17 21:19:29 +1100233 return -1;
Damien Miller37876e92003-05-15 10:19:46 +1000234 }
235
Damien Miller150b5572003-11-17 21:19:29 +1100236 if (fingerprints->rri_flags & RRSET_VALIDATED) {
237 *flags |= DNS_VERIFY_SECURE;
238 debug("found %d secure fingerprints in DNS",
239 fingerprints->rri_nrdatas);
240 } else {
241 debug("found %d insecure fingerprints in DNS",
242 fingerprints->rri_nrdatas);
Damien Miller37876e92003-05-15 10:19:46 +1000243 }
Damien Miller37876e92003-05-15 10:19:46 +1000244
Damien Miller3bde12a2012-06-20 21:51:11 +1000245 /* Initialize default host key parameters */
Damien Miller37876e92003-05-15 10:19:46 +1000246 if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type,
247 &hostkey_digest, &hostkey_digest_len, hostkey)) {
248 error("Error calculating host key fingerprint.");
Damien Millerb0622652003-05-15 13:27:28 +1000249 freerrset(fingerprints);
Damien Miller150b5572003-11-17 21:19:29 +1100250 return -1;
Damien Miller37876e92003-05-15 10:19:46 +1000251 }
252
Damien Miller150b5572003-11-17 21:19:29 +1100253 if (fingerprints->rri_nrdatas)
254 *flags |= DNS_VERIFY_FOUND;
255
Damien Miller80163902007-01-05 16:30:16 +1100256 for (counter = 0; counter < fingerprints->rri_nrdatas; counter++) {
Damien Miller37876e92003-05-15 10:19:46 +1000257 /*
258 * Extract the key from the answer. Ignore any badly
259 * formatted fingerprints.
260 */
261 if (!dns_read_rdata(&dnskey_algorithm, &dnskey_digest_type,
262 &dnskey_digest, &dnskey_digest_len,
263 fingerprints->rri_rdatas[counter].rdi_data,
264 fingerprints->rri_rdatas[counter].rdi_length)) {
265 verbose("Error parsing fingerprint from DNS.");
266 continue;
267 }
268
Damien Miller3bde12a2012-06-20 21:51:11 +1000269 if (hostkey_digest_type != dnskey_digest_type) {
270 hostkey_digest_type = dnskey_digest_type;
Darren Tuckera627d422013-06-02 07:31:17 +1000271 free(hostkey_digest);
Damien Miller3bde12a2012-06-20 21:51:11 +1000272
273 /* Initialize host key parameters */
274 if (!dns_read_key(&hostkey_algorithm,
275 &hostkey_digest_type, &hostkey_digest,
276 &hostkey_digest_len, hostkey)) {
277 error("Error calculating key fingerprint.");
278 freerrset(fingerprints);
279 return -1;
280 }
281 }
282
Damien Miller37876e92003-05-15 10:19:46 +1000283 /* Check if the current key is the same as the given key */
284 if (hostkey_algorithm == dnskey_algorithm &&
285 hostkey_digest_type == dnskey_digest_type) {
Damien Miller37876e92003-05-15 10:19:46 +1000286 if (hostkey_digest_len == dnskey_digest_len &&
Damien Miller3bde12a2012-06-20 21:51:11 +1000287 timingsafe_bcmp(hostkey_digest, dnskey_digest,
288 hostkey_digest_len) == 0)
Damien Miller150b5572003-11-17 21:19:29 +1100289 *flags |= DNS_VERIFY_MATCH;
Damien Miller37876e92003-05-15 10:19:46 +1000290 }
Darren Tuckera627d422013-06-02 07:31:17 +1000291 free(dnskey_digest);
Damien Miller37876e92003-05-15 10:19:46 +1000292 }
293
Darren Tuckera627d422013-06-02 07:31:17 +1000294 free(hostkey_digest); /* from key_fingerprint_raw() */
Damien Miller37876e92003-05-15 10:19:46 +1000295 freerrset(fingerprints);
296
Damien Miller150b5572003-11-17 21:19:29 +1100297 if (*flags & DNS_VERIFY_FOUND)
298 if (*flags & DNS_VERIFY_MATCH)
299 debug("matching host key fingerprint found in DNS");
300 else
301 debug("mismatching host key fingerprint found in DNS");
302 else
303 debug("no host key fingerprint found in DNS");
Damien Miller37876e92003-05-15 10:19:46 +1000304
Damien Miller150b5572003-11-17 21:19:29 +1100305 return 0;
Damien Miller37876e92003-05-15 10:19:46 +1000306}
307
Damien Miller37876e92003-05-15 10:19:46 +1000308/*
309 * Export the fingerprint of a key as a DNS resource record
310 */
311int
Damien Miller0a80ca12010-02-27 07:55:05 +1100312export_dns_rr(const char *hostname, Key *key, FILE *f, int generic)
Damien Miller37876e92003-05-15 10:19:46 +1000313{
314 u_int8_t rdata_pubkey_algorithm = 0;
Damien Miller3bde12a2012-06-20 21:51:11 +1000315 u_int8_t rdata_digest_type = SSHFP_HASH_RESERVED;
316 u_int8_t dtype;
Damien Miller37876e92003-05-15 10:19:46 +1000317 u_char *rdata_digest;
Damien Miller3bde12a2012-06-20 21:51:11 +1000318 u_int i, rdata_digest_len;
Damien Miller37876e92003-05-15 10:19:46 +1000319 int success = 0;
320
Damien Miller3bde12a2012-06-20 21:51:11 +1000321 for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) {
322 rdata_digest_type = dtype;
323 if (dns_read_key(&rdata_pubkey_algorithm, &rdata_digest_type,
324 &rdata_digest, &rdata_digest_len, key)) {
325 if (generic) {
326 fprintf(f, "%s IN TYPE%d \\# %d %02x %02x ",
327 hostname, DNS_RDATATYPE_SSHFP,
328 2 + rdata_digest_len,
329 rdata_pubkey_algorithm, rdata_digest_type);
330 } else {
331 fprintf(f, "%s IN SSHFP %d %d ", hostname,
332 rdata_pubkey_algorithm, rdata_digest_type);
333 }
334 for (i = 0; i < rdata_digest_len; i++)
335 fprintf(f, "%02x", rdata_digest[i]);
336 fprintf(f, "\n");
Darren Tuckera627d422013-06-02 07:31:17 +1000337 free(rdata_digest); /* from key_fingerprint_raw() */
Damien Miller3bde12a2012-06-20 21:51:11 +1000338 success = 1;
339 }
340 }
Damien Miller37876e92003-05-15 10:19:46 +1000341
Damien Miller3bde12a2012-06-20 21:51:11 +1000342 /* No SSHFP record was generated at all */
343 if (success == 0) {
344 error("%s: unsupported algorithm and/or digest_type", __func__);
Damien Miller37876e92003-05-15 10:19:46 +1000345 }
346
347 return success;
348}