blob: 2fff1b802dad75b30038fab4cbcf1cf2be6f88ef [file] [log] [blame]
Darren Tuckerdda19d62003-10-15 16:00:47 +10001/* $OpenBSD: dns.c,v 1.7 2003/10/14 19:42:10 jakob 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
28
29#include "includes.h"
30
Damien Miller37876e92003-05-15 10:19:46 +100031#include <openssl/bn.h>
32#ifdef LWRES
33#include <lwres/netdb.h>
34#include <dns/result.h>
35#else /* LWRES */
36#include <netdb.h>
37#endif /* LWRES */
38
39#include "xmalloc.h"
40#include "key.h"
41#include "dns.h"
42#include "log.h"
43#include "uuencode.h"
44
45extern char *__progname;
Darren Tuckerdda19d62003-10-15 16:00:47 +100046RCSID("$OpenBSD: dns.c,v 1.7 2003/10/14 19:42:10 jakob Exp $");
Damien Miller37876e92003-05-15 10:19:46 +100047
48#ifndef LWRES
49static const char *errset_text[] = {
50 "success", /* 0 ERRSET_SUCCESS */
51 "out of memory", /* 1 ERRSET_NOMEMORY */
52 "general failure", /* 2 ERRSET_FAIL */
53 "invalid parameter", /* 3 ERRSET_INVAL */
54 "name does not exist", /* 4 ERRSET_NONAME */
55 "data does not exist", /* 5 ERRSET_NODATA */
56};
57
58static const char *
59dns_result_totext(unsigned int error)
60{
61 switch (error) {
62 case ERRSET_SUCCESS:
63 return errset_text[ERRSET_SUCCESS];
64 case ERRSET_NOMEMORY:
65 return errset_text[ERRSET_NOMEMORY];
66 case ERRSET_FAIL:
67 return errset_text[ERRSET_FAIL];
68 case ERRSET_INVAL:
69 return errset_text[ERRSET_INVAL];
70 case ERRSET_NONAME:
71 return errset_text[ERRSET_NONAME];
72 case ERRSET_NODATA:
73 return errset_text[ERRSET_NODATA];
74 default:
75 return "unknown error";
76 }
77}
78#endif /* LWRES */
79
80
81/*
82 * Read SSHFP parameters from key buffer.
83 */
84static int
85dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
86 u_char **digest, u_int *digest_len, Key *key)
87{
88 int success = 0;
89
90 switch (key->type) {
91 case KEY_RSA:
92 *algorithm = SSHFP_KEY_RSA;
93 break;
94 case KEY_DSA:
95 *algorithm = SSHFP_KEY_DSA;
96 break;
97 default:
98 *algorithm = SSHFP_KEY_RESERVED;
99 }
100
101 if (*algorithm) {
102 *digest_type = SSHFP_HASH_SHA1;
103 *digest = key_fingerprint_raw(key, SSH_FP_SHA1, digest_len);
104 success = 1;
105 } else {
106 *digest_type = SSHFP_HASH_RESERVED;
107 *digest = NULL;
108 *digest_len = 0;
109 success = 0;
110 }
111
112 return success;
113}
114
115/*
116 * Read SSHFP parameters from rdata buffer.
117 */
118static int
119dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
120 u_char **digest, u_int *digest_len, u_char *rdata, int rdata_len)
121{
122 int success = 0;
123
124 *algorithm = SSHFP_KEY_RESERVED;
125 *digest_type = SSHFP_HASH_RESERVED;
126
127 if (rdata_len >= 2) {
128 *algorithm = rdata[0];
129 *digest_type = rdata[1];
130 *digest_len = rdata_len - 2;
131
132 if (*digest_len > 0) {
133 *digest = (u_char *) xmalloc(*digest_len);
134 memcpy(*digest, rdata + 2, *digest_len);
135 } else {
136 *digest = NULL;
137 }
138
139 success = 1;
140 }
141
142 return success;
143}
144
145
146/*
147 * Verify the given hostname, address and host key using DNS.
148 * Returns 0 if key verifies or -1 if key does NOT verify
149 */
150int
151verify_host_key_dns(const char *hostname, struct sockaddr *address,
152 Key *hostkey)
153{
154 int counter;
155 int result;
156 struct rrsetinfo *fingerprints = NULL;
157 int failures = 0;
158
159 u_int8_t hostkey_algorithm;
160 u_int8_t hostkey_digest_type;
161 u_char *hostkey_digest;
162 u_int hostkey_digest_len;
163
164 u_int8_t dnskey_algorithm;
165 u_int8_t dnskey_digest_type;
166 u_char *dnskey_digest;
167 u_int dnskey_digest_len;
168
169
170 debug3("verify_hostkey_dns");
171 if (hostkey == NULL)
172 fatal("No key to look up!");
173
174 result = getrrsetbyname(hostname, DNS_RDATACLASS_IN,
175 DNS_RDATATYPE_SSHFP, 0, &fingerprints);
176 if (result) {
177 verbose("DNS lookup error: %s", dns_result_totext(result));
178 return DNS_VERIFY_ERROR;
179 }
180
181#ifdef DNSSEC
182 /* Only accept validated answers */
183 if (!fingerprints->rri_flags & RRSET_VALIDATED) {
184 error("Ignored unvalidated fingerprint from DNS.");
Damien Millerb0622652003-05-15 13:27:28 +1000185 freerrset(fingerprints);
Damien Miller37876e92003-05-15 10:19:46 +1000186 return DNS_VERIFY_ERROR;
187 }
188#endif
189
190 debug("found %d fingerprints in DNS", fingerprints->rri_nrdatas);
191
192 /* Initialize host key parameters */
193 if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type,
194 &hostkey_digest, &hostkey_digest_len, hostkey)) {
195 error("Error calculating host key fingerprint.");
Damien Millerb0622652003-05-15 13:27:28 +1000196 freerrset(fingerprints);
Damien Miller37876e92003-05-15 10:19:46 +1000197 return DNS_VERIFY_ERROR;
198 }
199
200 for (counter = 0 ; counter < fingerprints->rri_nrdatas ; counter++) {
201 /*
202 * Extract the key from the answer. Ignore any badly
203 * formatted fingerprints.
204 */
205 if (!dns_read_rdata(&dnskey_algorithm, &dnskey_digest_type,
206 &dnskey_digest, &dnskey_digest_len,
207 fingerprints->rri_rdatas[counter].rdi_data,
208 fingerprints->rri_rdatas[counter].rdi_length)) {
209 verbose("Error parsing fingerprint from DNS.");
210 continue;
211 }
212
213 /* Check if the current key is the same as the given key */
214 if (hostkey_algorithm == dnskey_algorithm &&
215 hostkey_digest_type == dnskey_digest_type) {
216
217 if (hostkey_digest_len == dnskey_digest_len &&
218 memcmp(hostkey_digest, dnskey_digest,
219 hostkey_digest_len) == 0) {
220
221 /* Matching algoritm and digest. */
222 freerrset(fingerprints);
Damien Miller37876e92003-05-15 10:19:46 +1000223 debug("matching host key fingerprint found in DNS");
224 return DNS_VERIFY_OK;
Damien Miller37876e92003-05-15 10:19:46 +1000225 } else {
226 /* Correct algorithm but bad digest */
227 debug("verify_hostkey_dns: failed");
228 failures++;
229 }
230 }
231 }
232
233 freerrset(fingerprints);
234
235 if (failures) {
236 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
237 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
238 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
239 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
240 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
241 error("It is also possible that the %s host key has just been changed.",
242 key_type(hostkey));
243 error("Please contact your system administrator.");
244 return DNS_VERIFY_FAILED;
245 }
246
247 debug("fingerprints found in DNS, but none of them matched");
248
249 return DNS_VERIFY_ERROR;
250}
251
252
253/*
254 * Export the fingerprint of a key as a DNS resource record
255 */
256int
257export_dns_rr(const char *hostname, Key *key, FILE *f, int generic)
258{
259 u_int8_t rdata_pubkey_algorithm = 0;
260 u_int8_t rdata_digest_type = SSHFP_HASH_SHA1;
261 u_char *rdata_digest;
262 u_int rdata_digest_len;
263
264 int i;
265 int success = 0;
266
267 if (dns_read_key(&rdata_pubkey_algorithm, &rdata_digest_type,
268 &rdata_digest, &rdata_digest_len, key)) {
269
270 if (generic)
271 fprintf(f, "%s IN TYPE%d \\# %d %02x %02x ", hostname,
272 DNS_RDATATYPE_SSHFP, 2 + rdata_digest_len,
273 rdata_pubkey_algorithm, rdata_digest_type);
274 else
275 fprintf(f, "%s IN SSHFP %d %d ", hostname,
276 rdata_pubkey_algorithm, rdata_digest_type);
277
278 for (i = 0; i < rdata_digest_len; i++)
279 fprintf(f, "%02x", rdata_digest[i]);
280 fprintf(f, "\n");
281 success = 1;
282 } else {
283 error("dns_export_rr: unsupported algorithm");
284 }
285
286 return success;
287}