markus@openbsd.org | 1b11ea7 | 2018-02-23 15:58:37 +0000 | [diff] [blame] | 1 | /* $OpenBSD: dns.c,v 1.38 2018/02/23 15:58:37 markus Exp $ */ |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 2 | |
| 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 Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 37 | #include <stdlib.h> |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 38 | |
| 39 | #include "xmalloc.h" |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 40 | #include "sshkey.h" |
| 41 | #include "ssherr.h" |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 42 | #include "dns.h" |
| 43 | #include "log.h" |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 44 | #include "digest.h" |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 45 | |
| 46 | static 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 | |
| 55 | static const char * |
| 56 | dns_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 | */ |
| 79 | static int |
| 80 | dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type, |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 81 | u_char **digest, size_t *digest_len, struct sshkey *key) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 82 | { |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 83 | int r, success = 0; |
| 84 | int fp_alg = -1; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 85 | |
| 86 | switch (key->type) { |
| 87 | case KEY_RSA: |
| 88 | *algorithm = SSHFP_KEY_RSA; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 89 | if (!*digest_type) |
| 90 | *digest_type = SSHFP_HASH_SHA1; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 91 | break; |
| 92 | case KEY_DSA: |
| 93 | *algorithm = SSHFP_KEY_DSA; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 94 | if (!*digest_type) |
| 95 | *digest_type = SSHFP_HASH_SHA1; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 96 | break; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 97 | 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.org | 1b11ea7 | 2018-02-23 15:58:37 +0000 | [diff] [blame] | 107 | case KEY_XMSS: |
| 108 | *algorithm = SSHFP_KEY_XMSS; |
| 109 | if (!*digest_type) |
| 110 | *digest_type = SSHFP_HASH_SHA256; |
| 111 | break; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 112 | default: |
| 113 | *algorithm = SSHFP_KEY_RESERVED; /* 0 */ |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 114 | *digest_type = SSHFP_HASH_RESERVED; /* 0 */ |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 115 | } |
| 116 | |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 117 | 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 Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 133 | success = 1; |
| 134 | } else { |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 135 | *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 | */ |
| 146 | static int |
| 147 | dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type, |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 148 | u_char **digest, size_t *digest_len, u_char *rdata, int rdata_len) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 149 | { |
| 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.org | ce445b0 | 2015-08-20 22:32:42 +0000 | [diff] [blame] | 161 | *digest = xmalloc(*digest_len); |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 162 | 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 | */ |
| 177 | static int |
| 178 | is_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 | */ |
| 207 | int |
| 208 | verify_host_key_dns(const char *hostname, struct sockaddr *address, |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 209 | struct sshkey *hostkey, int *flags) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 210 | { |
| 211 | u_int counter; |
| 212 | int result; |
| 213 | struct rrsetinfo *fingerprints = NULL; |
| 214 | |
| 215 | u_int8_t hostkey_algorithm; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 216 | u_int8_t hostkey_digest_type = SSHFP_HASH_RESERVED; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 217 | u_char *hostkey_digest; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 218 | size_t hostkey_digest_len; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 219 | |
| 220 | u_int8_t dnskey_algorithm; |
| 221 | u_int8_t dnskey_digest_type; |
| 222 | u_char *dnskey_digest; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 223 | size_t dnskey_digest_len; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 224 | |
| 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 Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 236 | #if !defined(ANDROID) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 237 | result = getrrsetbyname(hostname, DNS_RDATACLASS_IN, |
| 238 | DNS_RDATATYPE_SSHFP, 0, &fingerprints); |
| 239 | #else |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 240 | /* unsupported in Android. */ |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 241 | result = -1; |
| 242 | #endif |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 243 | |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 244 | 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 Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 258 | /* Initialize default host key parameters */ |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 259 | if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type, |
| 260 | &hostkey_digest, &hostkey_digest_len, hostkey)) { |
| 261 | error("Error calculating host key fingerprint."); |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 262 | #if !defined(ANDROID) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 263 | 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 Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 284 | 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 Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 300 | /* 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 Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 303 | if (hostkey_digest_len == dnskey_digest_len && |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 304 | timingsafe_bcmp(hostkey_digest, dnskey_digest, |
| 305 | hostkey_digest_len) == 0) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 306 | *flags |= DNS_VERIFY_MATCH; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 307 | } |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 308 | free(dnskey_digest); |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 309 | } |
| 310 | |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 311 | free(hostkey_digest); /* from sshkey_fingerprint_raw() */ |
| 312 | #if !defined(ANDROID) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 313 | 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 | */ |
| 330 | int |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 331 | export_dns_rr(const char *hostname, struct sshkey *key, FILE *f, int generic) |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 332 | { |
| 333 | u_int8_t rdata_pubkey_algorithm = 0; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 334 | u_int8_t rdata_digest_type = SSHFP_HASH_RESERVED; |
| 335 | u_int8_t dtype; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 336 | u_char *rdata_digest; |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 337 | size_t i, rdata_digest_len; |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 338 | int success = 0; |
| 339 | |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 340 | 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 Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 360 | |
Adam Langley | d059297 | 2015-03-30 14:49:51 -0700 | [diff] [blame] | 361 | /* No SSHFP record was generated at all */ |
| 362 | if (success == 0) { |
| 363 | error("%s: unsupported algorithm and/or digest_type", __func__); |
Greg Hartman | bd77cf7 | 2015-02-25 13:21:06 -0800 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | return success; |
| 367 | } |