blob: cb375c85ea2c20e7c3c9ef2bd5da9959ee786333 [file] [log] [blame]
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001/* $OpenBSD: dns.c,v 1.38 2018/02/23 15:58:37 markus Exp $ */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002
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
28#include "includes.h"
29
30#include <sys/types.h>
31#include <sys/socket.h>
32
33#include <netdb.h>
34#include <stdarg.h>
35#include <stdio.h>
36#include <string.h>
Adam Langleyd0592972015-03-30 14:49:51 -070037#include <stdlib.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080038
39#include "xmalloc.h"
Adam Langleyd0592972015-03-30 14:49:51 -070040#include "sshkey.h"
41#include "ssherr.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080042#include "dns.h"
43#include "log.h"
Adam Langleyd0592972015-03-30 14:49:51 -070044#include "digest.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080045
46static const char *errset_text[] = {
47 "success", /* 0 ERRSET_SUCCESS */
48 "out of memory", /* 1 ERRSET_NOMEMORY */
49 "general failure", /* 2 ERRSET_FAIL */
50 "invalid parameter", /* 3 ERRSET_INVAL */
51 "name does not exist", /* 4 ERRSET_NONAME */
52 "data does not exist", /* 5 ERRSET_NODATA */
53};
54
55static const char *
56dns_result_totext(unsigned int res)
57{
58 switch (res) {
59 case ERRSET_SUCCESS:
60 return errset_text[ERRSET_SUCCESS];
61 case ERRSET_NOMEMORY:
62 return errset_text[ERRSET_NOMEMORY];
63 case ERRSET_FAIL:
64 return errset_text[ERRSET_FAIL];
65 case ERRSET_INVAL:
66 return errset_text[ERRSET_INVAL];
67 case ERRSET_NONAME:
68 return errset_text[ERRSET_NONAME];
69 case ERRSET_NODATA:
70 return errset_text[ERRSET_NODATA];
71 default:
72 return "unknown error";
73 }
74}
75
76/*
77 * Read SSHFP parameters from key buffer.
78 */
79static int
80dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
Adam Langleyd0592972015-03-30 14:49:51 -070081 u_char **digest, size_t *digest_len, struct sshkey *key)
Greg Hartmanbd77cf72015-02-25 13:21:06 -080082{
Adam Langleyd0592972015-03-30 14:49:51 -070083 int r, success = 0;
84 int fp_alg = -1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -080085
86 switch (key->type) {
87 case KEY_RSA:
88 *algorithm = SSHFP_KEY_RSA;
Adam Langleyd0592972015-03-30 14:49:51 -070089 if (!*digest_type)
90 *digest_type = SSHFP_HASH_SHA1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -080091 break;
92 case KEY_DSA:
93 *algorithm = SSHFP_KEY_DSA;
Adam Langleyd0592972015-03-30 14:49:51 -070094 if (!*digest_type)
95 *digest_type = SSHFP_HASH_SHA1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -080096 break;
Adam Langleyd0592972015-03-30 14:49:51 -070097 case KEY_ECDSA:
98 *algorithm = SSHFP_KEY_ECDSA;
99 if (!*digest_type)
100 *digest_type = SSHFP_HASH_SHA256;
101 break;
102 case KEY_ED25519:
103 *algorithm = SSHFP_KEY_ED25519;
104 if (!*digest_type)
105 *digest_type = SSHFP_HASH_SHA256;
106 break;
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000107 case KEY_XMSS:
108 *algorithm = SSHFP_KEY_XMSS;
109 if (!*digest_type)
110 *digest_type = SSHFP_HASH_SHA256;
111 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800112 default:
113 *algorithm = SSHFP_KEY_RESERVED; /* 0 */
Adam Langleyd0592972015-03-30 14:49:51 -0700114 *digest_type = SSHFP_HASH_RESERVED; /* 0 */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800115 }
116
Adam Langleyd0592972015-03-30 14:49:51 -0700117 switch (*digest_type) {
118 case SSHFP_HASH_SHA1:
119 fp_alg = SSH_DIGEST_SHA1;
120 break;
121 case SSHFP_HASH_SHA256:
122 fp_alg = SSH_DIGEST_SHA256;
123 break;
124 default:
125 *digest_type = SSHFP_HASH_RESERVED; /* 0 */
126 }
127
128 if (*algorithm && *digest_type) {
129 if ((r = sshkey_fingerprint_raw(key, fp_alg, digest,
130 digest_len)) != 0)
131 fatal("%s: sshkey_fingerprint_raw: %s", __func__,
132 ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800133 success = 1;
134 } else {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800135 *digest = NULL;
136 *digest_len = 0;
137 success = 0;
138 }
139
140 return success;
141}
142
143/*
144 * Read SSHFP parameters from rdata buffer.
145 */
146static int
147dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
Adam Langleyd0592972015-03-30 14:49:51 -0700148 u_char **digest, size_t *digest_len, u_char *rdata, int rdata_len)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800149{
150 int success = 0;
151
152 *algorithm = SSHFP_KEY_RESERVED;
153 *digest_type = SSHFP_HASH_RESERVED;
154
155 if (rdata_len >= 2) {
156 *algorithm = rdata[0];
157 *digest_type = rdata[1];
158 *digest_len = rdata_len - 2;
159
160 if (*digest_len > 0) {
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +0000161 *digest = xmalloc(*digest_len);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800162 memcpy(*digest, rdata + 2, *digest_len);
163 } else {
164 *digest = (u_char *)xstrdup("");
165 }
166
167 success = 1;
168 }
169
170 return success;
171}
172
173/*
174 * Check if hostname is numerical.
175 * Returns -1 if hostname is numeric, 0 otherwise
176 */
177static int
178is_numeric_hostname(const char *hostname)
179{
180 struct addrinfo hints, *ai;
181
182 /*
183 * We shouldn't ever get a null host but if we do then log an error
184 * and return -1 which stops DNS key fingerprint processing.
185 */
186 if (hostname == NULL) {
187 error("is_numeric_hostname called with NULL hostname");
188 return -1;
189 }
190
191 memset(&hints, 0, sizeof(hints));
192 hints.ai_socktype = SOCK_DGRAM;
193 hints.ai_flags = AI_NUMERICHOST;
194
195 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
196 freeaddrinfo(ai);
197 return -1;
198 }
199
200 return 0;
201}
202
203/*
204 * Verify the given hostname, address and host key using DNS.
205 * Returns 0 if lookup succeeds, -1 otherwise
206 */
207int
208verify_host_key_dns(const char *hostname, struct sockaddr *address,
Adam Langleyd0592972015-03-30 14:49:51 -0700209 struct sshkey *hostkey, int *flags)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800210{
211 u_int counter;
212 int result;
213 struct rrsetinfo *fingerprints = NULL;
214
215 u_int8_t hostkey_algorithm;
Adam Langleyd0592972015-03-30 14:49:51 -0700216 u_int8_t hostkey_digest_type = SSHFP_HASH_RESERVED;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800217 u_char *hostkey_digest;
Adam Langleyd0592972015-03-30 14:49:51 -0700218 size_t hostkey_digest_len;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800219
220 u_int8_t dnskey_algorithm;
221 u_int8_t dnskey_digest_type;
222 u_char *dnskey_digest;
Adam Langleyd0592972015-03-30 14:49:51 -0700223 size_t dnskey_digest_len;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800224
225 *flags = 0;
226
227 debug3("verify_host_key_dns");
228 if (hostkey == NULL)
229 fatal("No key to look up!");
230
231 if (is_numeric_hostname(hostname)) {
232 debug("skipped DNS lookup for numerical hostname");
233 return -1;
234 }
235
Adam Langleyd0592972015-03-30 14:49:51 -0700236#if !defined(ANDROID)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800237 result = getrrsetbyname(hostname, DNS_RDATACLASS_IN,
238 DNS_RDATATYPE_SSHFP, 0, &fingerprints);
239#else
Adam Langleyd0592972015-03-30 14:49:51 -0700240 /* unsupported in Android. */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800241 result = -1;
242#endif
Adam Langleyd0592972015-03-30 14:49:51 -0700243
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800244 if (result) {
245 verbose("DNS lookup error: %s", dns_result_totext(result));
246 return -1;
247 }
248
249 if (fingerprints->rri_flags & RRSET_VALIDATED) {
250 *flags |= DNS_VERIFY_SECURE;
251 debug("found %d secure fingerprints in DNS",
252 fingerprints->rri_nrdatas);
253 } else {
254 debug("found %d insecure fingerprints in DNS",
255 fingerprints->rri_nrdatas);
256 }
257
Adam Langleyd0592972015-03-30 14:49:51 -0700258 /* Initialize default host key parameters */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800259 if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type,
260 &hostkey_digest, &hostkey_digest_len, hostkey)) {
261 error("Error calculating host key fingerprint.");
Adam Langleyd0592972015-03-30 14:49:51 -0700262#if !defined(ANDROID)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800263 freerrset(fingerprints);
264#endif
265 return -1;
266 }
267
268 if (fingerprints->rri_nrdatas)
269 *flags |= DNS_VERIFY_FOUND;
270
271 for (counter = 0; counter < fingerprints->rri_nrdatas; counter++) {
272 /*
273 * Extract the key from the answer. Ignore any badly
274 * formatted fingerprints.
275 */
276 if (!dns_read_rdata(&dnskey_algorithm, &dnskey_digest_type,
277 &dnskey_digest, &dnskey_digest_len,
278 fingerprints->rri_rdatas[counter].rdi_data,
279 fingerprints->rri_rdatas[counter].rdi_length)) {
280 verbose("Error parsing fingerprint from DNS.");
281 continue;
282 }
283
Adam Langleyd0592972015-03-30 14:49:51 -0700284 if (hostkey_digest_type != dnskey_digest_type) {
285 hostkey_digest_type = dnskey_digest_type;
286 free(hostkey_digest);
287
288 /* Initialize host key parameters */
289 if (!dns_read_key(&hostkey_algorithm,
290 &hostkey_digest_type, &hostkey_digest,
291 &hostkey_digest_len, hostkey)) {
292 error("Error calculating key fingerprint.");
293#if !defined(ANDROID)
294 freerrset(fingerprints);
295#endif
296 return -1;
297 }
298 }
299
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800300 /* Check if the current key is the same as the given key */
301 if (hostkey_algorithm == dnskey_algorithm &&
302 hostkey_digest_type == dnskey_digest_type) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800303 if (hostkey_digest_len == dnskey_digest_len &&
Adam Langleyd0592972015-03-30 14:49:51 -0700304 timingsafe_bcmp(hostkey_digest, dnskey_digest,
305 hostkey_digest_len) == 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800306 *flags |= DNS_VERIFY_MATCH;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800307 }
Adam Langleyd0592972015-03-30 14:49:51 -0700308 free(dnskey_digest);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800309 }
310
Adam Langleyd0592972015-03-30 14:49:51 -0700311 free(hostkey_digest); /* from sshkey_fingerprint_raw() */
312#if !defined(ANDROID)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800313 freerrset(fingerprints);
314#endif
315
316 if (*flags & DNS_VERIFY_FOUND)
317 if (*flags & DNS_VERIFY_MATCH)
318 debug("matching host key fingerprint found in DNS");
319 else
320 debug("mismatching host key fingerprint found in DNS");
321 else
322 debug("no host key fingerprint found in DNS");
323
324 return 0;
325}
326
327/*
328 * Export the fingerprint of a key as a DNS resource record
329 */
330int
Adam Langleyd0592972015-03-30 14:49:51 -0700331export_dns_rr(const char *hostname, struct sshkey *key, FILE *f, int generic)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800332{
333 u_int8_t rdata_pubkey_algorithm = 0;
Adam Langleyd0592972015-03-30 14:49:51 -0700334 u_int8_t rdata_digest_type = SSHFP_HASH_RESERVED;
335 u_int8_t dtype;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800336 u_char *rdata_digest;
Adam Langleyd0592972015-03-30 14:49:51 -0700337 size_t i, rdata_digest_len;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800338 int success = 0;
339
Adam Langleyd0592972015-03-30 14:49:51 -0700340 for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) {
341 rdata_digest_type = dtype;
342 if (dns_read_key(&rdata_pubkey_algorithm, &rdata_digest_type,
343 &rdata_digest, &rdata_digest_len, key)) {
344 if (generic) {
345 fprintf(f, "%s IN TYPE%d \\# %zu %02x %02x ",
346 hostname, DNS_RDATATYPE_SSHFP,
347 2 + rdata_digest_len,
348 rdata_pubkey_algorithm, rdata_digest_type);
349 } else {
350 fprintf(f, "%s IN SSHFP %d %d ", hostname,
351 rdata_pubkey_algorithm, rdata_digest_type);
352 }
353 for (i = 0; i < rdata_digest_len; i++)
354 fprintf(f, "%02x", rdata_digest[i]);
355 fprintf(f, "\n");
356 free(rdata_digest); /* from sshkey_fingerprint_raw() */
357 success = 1;
358 }
359 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800360
Adam Langleyd0592972015-03-30 14:49:51 -0700361 /* No SSHFP record was generated at all */
362 if (success == 0) {
363 error("%s: unsupported algorithm and/or digest_type", __func__);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800364 }
365
366 return success;
367}