blob: c9368b96bcde226619bf6f528dd9470671020999 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: dns.c,v 1.21 2006/07/22 20:48:23 stevesk 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 Millere3476ed2006-07-24 14:13:33 +100034#include <string.h>
Damien Miller37876e92003-05-15 10:19:46 +100035
36#include "xmalloc.h"
37#include "key.h"
38#include "dns.h"
39#include "log.h"
Damien Miller37876e92003-05-15 10:19:46 +100040
Damien Miller37876e92003-05-15 10:19:46 +100041static const char *errset_text[] = {
42 "success", /* 0 ERRSET_SUCCESS */
43 "out of memory", /* 1 ERRSET_NOMEMORY */
44 "general failure", /* 2 ERRSET_FAIL */
45 "invalid parameter", /* 3 ERRSET_INVAL */
46 "name does not exist", /* 4 ERRSET_NONAME */
47 "data does not exist", /* 5 ERRSET_NODATA */
48};
49
50static const char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100051dns_result_totext(unsigned int res)
Damien Miller37876e92003-05-15 10:19:46 +100052{
Darren Tucker3f9fdc72004-06-22 12:56:01 +100053 switch (res) {
Damien Miller37876e92003-05-15 10:19:46 +100054 case ERRSET_SUCCESS:
55 return errset_text[ERRSET_SUCCESS];
56 case ERRSET_NOMEMORY:
57 return errset_text[ERRSET_NOMEMORY];
58 case ERRSET_FAIL:
59 return errset_text[ERRSET_FAIL];
60 case ERRSET_INVAL:
61 return errset_text[ERRSET_INVAL];
62 case ERRSET_NONAME:
63 return errset_text[ERRSET_NONAME];
64 case ERRSET_NODATA:
65 return errset_text[ERRSET_NODATA];
66 default:
67 return "unknown error";
68 }
69}
Damien Miller37876e92003-05-15 10:19:46 +100070
71/*
72 * Read SSHFP parameters from key buffer.
73 */
74static int
75dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
Damien Miller150b5572003-11-17 21:19:29 +110076 u_char **digest, u_int *digest_len, const Key *key)
Damien Miller37876e92003-05-15 10:19:46 +100077{
78 int success = 0;
79
80 switch (key->type) {
81 case KEY_RSA:
82 *algorithm = SSHFP_KEY_RSA;
83 break;
84 case KEY_DSA:
85 *algorithm = SSHFP_KEY_DSA;
86 break;
87 default:
Damien Miller65712492005-11-05 15:09:27 +110088 *algorithm = SSHFP_KEY_RESERVED; /* 0 */
Damien Miller37876e92003-05-15 10:19:46 +100089 }
90
91 if (*algorithm) {
92 *digest_type = SSHFP_HASH_SHA1;
93 *digest = key_fingerprint_raw(key, SSH_FP_SHA1, digest_len);
Damien Miller65712492005-11-05 15:09:27 +110094 if (*digest == NULL)
95 fatal("dns_read_key: null from key_fingerprint_raw()");
Damien Miller37876e92003-05-15 10:19:46 +100096 success = 1;
97 } else {
98 *digest_type = SSHFP_HASH_RESERVED;
99 *digest = NULL;
100 *digest_len = 0;
101 success = 0;
102 }
103
104 return success;
105}
106
107/*
108 * Read SSHFP parameters from rdata buffer.
109 */
110static int
111dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
112 u_char **digest, u_int *digest_len, u_char *rdata, int rdata_len)
113{
114 int success = 0;
115
116 *algorithm = SSHFP_KEY_RESERVED;
117 *digest_type = SSHFP_HASH_RESERVED;
118
119 if (rdata_len >= 2) {
120 *algorithm = rdata[0];
121 *digest_type = rdata[1];
122 *digest_len = rdata_len - 2;
123
124 if (*digest_len > 0) {
125 *digest = (u_char *) xmalloc(*digest_len);
126 memcpy(*digest, rdata + 2, *digest_len);
127 } else {
Damien Miller59962942006-03-26 00:06:48 +1100128 *digest = (u_char *)xstrdup("");
Damien Miller37876e92003-05-15 10:19:46 +1000129 }
130
131 success = 1;
132 }
133
134 return success;
135}
136
Damien Millera31c9292005-05-26 12:03:31 +1000137/*
138 * Check if hostname is numerical.
139 * Returns -1 if hostname is numeric, 0 otherwise
140 */
141static int
142is_numeric_hostname(const char *hostname)
143{
144 struct addrinfo hints, *ai;
145
146 memset(&hints, 0, sizeof(hints));
147 hints.ai_socktype = SOCK_DGRAM;
148 hints.ai_flags = AI_NUMERICHOST;
149
150 if (getaddrinfo(hostname, "0", &hints, &ai) == 0) {
151 freeaddrinfo(ai);
152 return -1;
153 }
154
155 return 0;
156}
Damien Miller37876e92003-05-15 10:19:46 +1000157
158/*
159 * Verify the given hostname, address and host key using DNS.
Damien Millera8e06ce2003-11-21 23:48:55 +1100160 * Returns 0 if lookup succeeds, -1 otherwise
Damien Miller37876e92003-05-15 10:19:46 +1000161 */
162int
163verify_host_key_dns(const char *hostname, struct sockaddr *address,
Damien Miller150b5572003-11-17 21:19:29 +1100164 const Key *hostkey, int *flags)
Damien Miller37876e92003-05-15 10:19:46 +1000165{
Damien Millereccb9de2005-06-17 12:59:34 +1000166 u_int counter;
Damien Miller37876e92003-05-15 10:19:46 +1000167 int result;
168 struct rrsetinfo *fingerprints = NULL;
Damien Miller37876e92003-05-15 10:19:46 +1000169
170 u_int8_t hostkey_algorithm;
171 u_int8_t hostkey_digest_type;
172 u_char *hostkey_digest;
173 u_int hostkey_digest_len;
174
175 u_int8_t dnskey_algorithm;
176 u_int8_t dnskey_digest_type;
177 u_char *dnskey_digest;
178 u_int dnskey_digest_len;
179
Damien Miller150b5572003-11-17 21:19:29 +1100180 *flags = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000181
Damien Miller319550a2005-11-05 15:11:15 +1100182 debug3("verify_host_key_dns");
Damien Miller37876e92003-05-15 10:19:46 +1000183 if (hostkey == NULL)
184 fatal("No key to look up!");
185
Damien Millera31c9292005-05-26 12:03:31 +1000186 if (is_numeric_hostname(hostname)) {
187 debug("skipped DNS lookup for numerical hostname");
188 return -1;
189 }
190
Damien Miller37876e92003-05-15 10:19:46 +1000191 result = getrrsetbyname(hostname, DNS_RDATACLASS_IN,
192 DNS_RDATATYPE_SSHFP, 0, &fingerprints);
193 if (result) {
194 verbose("DNS lookup error: %s", dns_result_totext(result));
Damien Miller150b5572003-11-17 21:19:29 +1100195 return -1;
Damien Miller37876e92003-05-15 10:19:46 +1000196 }
197
Damien Miller150b5572003-11-17 21:19:29 +1100198 if (fingerprints->rri_flags & RRSET_VALIDATED) {
199 *flags |= DNS_VERIFY_SECURE;
200 debug("found %d secure fingerprints in DNS",
201 fingerprints->rri_nrdatas);
202 } else {
203 debug("found %d insecure fingerprints in DNS",
204 fingerprints->rri_nrdatas);
Damien Miller37876e92003-05-15 10:19:46 +1000205 }
Damien Miller37876e92003-05-15 10:19:46 +1000206
207 /* Initialize host key parameters */
208 if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type,
209 &hostkey_digest, &hostkey_digest_len, hostkey)) {
210 error("Error calculating host key fingerprint.");
Damien Millerb0622652003-05-15 13:27:28 +1000211 freerrset(fingerprints);
Damien Miller150b5572003-11-17 21:19:29 +1100212 return -1;
Damien Miller37876e92003-05-15 10:19:46 +1000213 }
214
Damien Miller150b5572003-11-17 21:19:29 +1100215 if (fingerprints->rri_nrdatas)
216 *flags |= DNS_VERIFY_FOUND;
217
Damien Miller20afc242005-11-05 15:06:38 +1100218 for (counter = 0; counter < fingerprints->rri_nrdatas; counter++) {
Damien Miller37876e92003-05-15 10:19:46 +1000219 /*
220 * Extract the key from the answer. Ignore any badly
221 * formatted fingerprints.
222 */
223 if (!dns_read_rdata(&dnskey_algorithm, &dnskey_digest_type,
224 &dnskey_digest, &dnskey_digest_len,
225 fingerprints->rri_rdatas[counter].rdi_data,
226 fingerprints->rri_rdatas[counter].rdi_length)) {
227 verbose("Error parsing fingerprint from DNS.");
228 continue;
229 }
230
231 /* Check if the current key is the same as the given key */
232 if (hostkey_algorithm == dnskey_algorithm &&
233 hostkey_digest_type == dnskey_digest_type) {
234
235 if (hostkey_digest_len == dnskey_digest_len &&
236 memcmp(hostkey_digest, dnskey_digest,
237 hostkey_digest_len) == 0) {
238
Damien Miller150b5572003-11-17 21:19:29 +1100239 *flags |= DNS_VERIFY_MATCH;
Damien Miller37876e92003-05-15 10:19:46 +1000240 }
241 }
Damien Miller65712492005-11-05 15:09:27 +1100242 xfree(dnskey_digest);
Damien Miller37876e92003-05-15 10:19:46 +1000243 }
244
Damien Miller65712492005-11-05 15:09:27 +1100245 xfree(hostkey_digest); /* from key_fingerprint_raw() */
Damien Miller37876e92003-05-15 10:19:46 +1000246 freerrset(fingerprints);
247
Damien Miller150b5572003-11-17 21:19:29 +1100248 if (*flags & DNS_VERIFY_FOUND)
249 if (*flags & DNS_VERIFY_MATCH)
250 debug("matching host key fingerprint found in DNS");
251 else
252 debug("mismatching host key fingerprint found in DNS");
253 else
254 debug("no host key fingerprint found in DNS");
Damien Miller37876e92003-05-15 10:19:46 +1000255
Damien Miller150b5572003-11-17 21:19:29 +1100256 return 0;
Damien Miller37876e92003-05-15 10:19:46 +1000257}
258
Damien Miller37876e92003-05-15 10:19:46 +1000259/*
260 * Export the fingerprint of a key as a DNS resource record
261 */
262int
Damien Miller150b5572003-11-17 21:19:29 +1100263export_dns_rr(const char *hostname, const Key *key, FILE *f, int generic)
Damien Miller37876e92003-05-15 10:19:46 +1000264{
265 u_int8_t rdata_pubkey_algorithm = 0;
266 u_int8_t rdata_digest_type = SSHFP_HASH_SHA1;
267 u_char *rdata_digest;
268 u_int rdata_digest_len;
269
Damien Millereccb9de2005-06-17 12:59:34 +1000270 u_int i;
Damien Miller37876e92003-05-15 10:19:46 +1000271 int success = 0;
272
273 if (dns_read_key(&rdata_pubkey_algorithm, &rdata_digest_type,
Damien Miller319550a2005-11-05 15:11:15 +1100274 &rdata_digest, &rdata_digest_len, key)) {
Damien Miller37876e92003-05-15 10:19:46 +1000275
276 if (generic)
277 fprintf(f, "%s IN TYPE%d \\# %d %02x %02x ", hostname,
278 DNS_RDATATYPE_SSHFP, 2 + rdata_digest_len,
279 rdata_pubkey_algorithm, rdata_digest_type);
280 else
281 fprintf(f, "%s IN SSHFP %d %d ", hostname,
282 rdata_pubkey_algorithm, rdata_digest_type);
283
284 for (i = 0; i < rdata_digest_len; i++)
285 fprintf(f, "%02x", rdata_digest[i]);
286 fprintf(f, "\n");
Damien Miller65712492005-11-05 15:09:27 +1100287 xfree(rdata_digest); /* from key_fingerprint_raw() */
Damien Miller37876e92003-05-15 10:19:46 +1000288 success = 1;
289 } else {
Damien Miller319550a2005-11-05 15:11:15 +1100290 error("export_dns_rr: unsupported algorithm");
Damien Miller37876e92003-05-15 10:19:46 +1000291 }
292
293 return success;
294}