[BACK]Return to dns.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/dns.c, Revision 1.38

1.38    ! markus      1: /* $OpenBSD: dns.c,v 1.37 2017/09/14 04:32:21 djm Exp $ */
1.1       jakob       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:  */
1.20      stevesk    27:
                     28: #include <sys/types.h>
                     29: #include <sys/socket.h>
1.1       jakob      30:
                     31: #include <netdb.h>
1.22      stevesk    32: #include <stdio.h>
1.21      stevesk    33: #include <string.h>
1.31      djm        34: #include <stdarg.h>
                     35: #include <stdlib.h>
1.1       jakob      36:
                     37: #include "xmalloc.h"
1.33      djm        38: #include "sshkey.h"
                     39: #include "ssherr.h"
1.1       jakob      40: #include "dns.h"
                     41: #include "log.h"
1.32      djm        42: #include "digest.h"
1.1       jakob      43:
                     44: static const char *errset_text[] = {
                     45:        "success",              /* 0 ERRSET_SUCCESS */
                     46:        "out of memory",        /* 1 ERRSET_NOMEMORY */
                     47:        "general failure",      /* 2 ERRSET_FAIL */
                     48:        "invalid parameter",    /* 3 ERRSET_INVAL */
                     49:        "name does not exist",  /* 4 ERRSET_NONAME */
                     50:        "data does not exist",  /* 5 ERRSET_NODATA */
                     51: };
                     52:
                     53: static const char *
1.10      avsm       54: dns_result_totext(unsigned int res)
1.1       jakob      55: {
1.10      avsm       56:        switch (res) {
1.1       jakob      57:        case ERRSET_SUCCESS:
                     58:                return errset_text[ERRSET_SUCCESS];
                     59:        case ERRSET_NOMEMORY:
                     60:                return errset_text[ERRSET_NOMEMORY];
                     61:        case ERRSET_FAIL:
                     62:                return errset_text[ERRSET_FAIL];
                     63:        case ERRSET_INVAL:
                     64:                return errset_text[ERRSET_INVAL];
                     65:        case ERRSET_NONAME:
                     66:                return errset_text[ERRSET_NONAME];
                     67:        case ERRSET_NODATA:
                     68:                return errset_text[ERRSET_NODATA];
                     69:        default:
                     70:                return "unknown error";
                     71:        }
                     72: }
                     73:
                     74: /*
                     75:  * Read SSHFP parameters from key buffer.
                     76:  */
                     77: static int
                     78: dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
1.33      djm        79:     u_char **digest, size_t *digest_len, struct sshkey *key)
1.1       jakob      80: {
1.33      djm        81:        int r, success = 0;
1.32      djm        82:        int fp_alg = -1;
1.1       jakob      83:
                     84:        switch (key->type) {
                     85:        case KEY_RSA:
1.3       jakob      86:                *algorithm = SSHFP_KEY_RSA;
1.28      djm        87:                if (!*digest_type)
                     88:                        *digest_type = SSHFP_HASH_SHA1;
1.1       jakob      89:                break;
                     90:        case KEY_DSA:
1.3       jakob      91:                *algorithm = SSHFP_KEY_DSA;
1.28      djm        92:                if (!*digest_type)
                     93:                        *digest_type = SSHFP_HASH_SHA1;
                     94:                break;
                     95:        case KEY_ECDSA:
                     96:                *algorithm = SSHFP_KEY_ECDSA;
1.30      logan      97:                if (!*digest_type)
                     98:                        *digest_type = SSHFP_HASH_SHA256;
                     99:                break;
                    100:        case KEY_ED25519:
                    101:                *algorithm = SSHFP_KEY_ED25519;
1.38    ! markus    102:                if (!*digest_type)
        !           103:                        *digest_type = SSHFP_HASH_SHA256;
        !           104:                break;
        !           105:        case KEY_XMSS:
        !           106:                *algorithm = SSHFP_KEY_XMSS;
1.28      djm       107:                if (!*digest_type)
                    108:                        *digest_type = SSHFP_HASH_SHA256;
1.1       jakob     109:                break;
                    110:        default:
1.14      stevesk   111:                *algorithm = SSHFP_KEY_RESERVED; /* 0 */
1.28      djm       112:                *digest_type = SSHFP_HASH_RESERVED; /* 0 */
                    113:        }
                    114:
                    115:        switch (*digest_type) {
                    116:        case SSHFP_HASH_SHA1:
1.32      djm       117:                fp_alg = SSH_DIGEST_SHA1;
1.28      djm       118:                break;
                    119:        case SSHFP_HASH_SHA256:
1.32      djm       120:                fp_alg = SSH_DIGEST_SHA256;
1.28      djm       121:                break;
                    122:        default:
                    123:                *digest_type = SSHFP_HASH_RESERVED; /* 0 */
1.1       jakob     124:        }
                    125:
1.28      djm       126:        if (*algorithm && *digest_type) {
1.33      djm       127:                if ((r = sshkey_fingerprint_raw(key, fp_alg, digest,
                    128:                    digest_len)) != 0)
                    129:                        fatal("%s: sshkey_fingerprint_raw: %s", __func__,
                    130:                           ssh_err(r));
1.1       jakob     131:                success = 1;
                    132:        } else {
                    133:                *digest = NULL;
                    134:                *digest_len = 0;
                    135:                success = 0;
                    136:        }
                    137:
                    138:        return success;
                    139: }
                    140:
                    141: /*
                    142:  * Read SSHFP parameters from rdata buffer.
                    143:  */
                    144: static int
                    145: dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
1.33      djm       146:     u_char **digest, size_t *digest_len, u_char *rdata, int rdata_len)
1.1       jakob     147: {
                    148:        int success = 0;
                    149:
1.3       jakob     150:        *algorithm = SSHFP_KEY_RESERVED;
                    151:        *digest_type = SSHFP_HASH_RESERVED;
1.1       jakob     152:
                    153:        if (rdata_len >= 2) {
                    154:                *algorithm = rdata[0];
                    155:                *digest_type = rdata[1];
                    156:                *digest_len = rdata_len - 2;
                    157:
                    158:                if (*digest_len > 0) {
1.35      deraadt   159:                        *digest = xmalloc(*digest_len);
1.1       jakob     160:                        memcpy(*digest, rdata + 2, *digest_len);
                    161:                } else {
1.18      deraadt   162:                        *digest = (u_char *)xstrdup("");
1.1       jakob     163:                }
                    164:
                    165:                success = 1;
                    166:        }
                    167:
                    168:        return success;
                    169: }
                    170:
1.11      jakob     171: /*
                    172:  * Check if hostname is numerical.
                    173:  * Returns -1 if hostname is numeric, 0 otherwise
                    174:  */
                    175: static int
                    176: is_numeric_hostname(const char *hostname)
                    177: {
                    178:        struct addrinfo hints, *ai;
                    179:
1.25      dtucker   180:        /*
                    181:         * We shouldn't ever get a null host but if we do then log an error
                    182:         * and return -1 which stops DNS key fingerprint processing.
                    183:         */
                    184:        if (hostname == NULL) {
                    185:                error("is_numeric_hostname called with NULL hostname");
                    186:                return -1;
                    187:        }
                    188:
1.11      jakob     189:        memset(&hints, 0, sizeof(hints));
                    190:        hints.ai_socktype = SOCK_DGRAM;
                    191:        hints.ai_flags = AI_NUMERICHOST;
                    192:
1.25      dtucker   193:        if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
1.11      jakob     194:                freeaddrinfo(ai);
                    195:                return -1;
                    196:        }
                    197:
                    198:        return 0;
                    199: }
1.1       jakob     200:
                    201: /*
                    202:  * Verify the given hostname, address and host key using DNS.
1.9       djm       203:  * Returns 0 if lookup succeeds, -1 otherwise
1.1       jakob     204:  */
                    205: int
                    206: verify_host_key_dns(const char *hostname, struct sockaddr *address,
1.33      djm       207:     struct sshkey *hostkey, int *flags)
1.1       jakob     208: {
1.12      djm       209:        u_int counter;
1.1       jakob     210:        int result;
1.4       jakob     211:        struct rrsetinfo *fingerprints = NULL;
1.1       jakob     212:
                    213:        u_int8_t hostkey_algorithm;
1.28      djm       214:        u_int8_t hostkey_digest_type = SSHFP_HASH_RESERVED;
1.1       jakob     215:        u_char *hostkey_digest;
1.33      djm       216:        size_t hostkey_digest_len;
1.1       jakob     217:
                    218:        u_int8_t dnskey_algorithm;
                    219:        u_int8_t dnskey_digest_type;
                    220:        u_char *dnskey_digest;
1.33      djm       221:        size_t dnskey_digest_len;
1.1       jakob     222:
1.8       jakob     223:        *flags = 0;
1.1       jakob     224:
1.16      stevesk   225:        debug3("verify_host_key_dns");
1.1       jakob     226:        if (hostkey == NULL)
                    227:                fatal("No key to look up!");
1.11      jakob     228:
                    229:        if (is_numeric_hostname(hostname)) {
                    230:                debug("skipped DNS lookup for numerical hostname");
                    231:                return -1;
                    232:        }
1.1       jakob     233:
                    234:        result = getrrsetbyname(hostname, DNS_RDATACLASS_IN,
1.4       jakob     235:            DNS_RDATATYPE_SSHFP, 0, &fingerprints);
1.1       jakob     236:        if (result) {
                    237:                verbose("DNS lookup error: %s", dns_result_totext(result));
1.8       jakob     238:                return -1;
1.1       jakob     239:        }
                    240:
1.8       jakob     241:        if (fingerprints->rri_flags & RRSET_VALIDATED) {
                    242:                *flags |= DNS_VERIFY_SECURE;
                    243:                debug("found %d secure fingerprints in DNS",
                    244:                    fingerprints->rri_nrdatas);
                    245:        } else {
                    246:                debug("found %d insecure fingerprints in DNS",
                    247:                    fingerprints->rri_nrdatas);
1.1       jakob     248:        }
                    249:
1.28      djm       250:        /* Initialize default host key parameters */
1.1       jakob     251:        if (!dns_read_key(&hostkey_algorithm, &hostkey_digest_type,
                    252:            &hostkey_digest, &hostkey_digest_len, hostkey)) {
                    253:                error("Error calculating host key fingerprint.");
1.5       jakob     254:                freerrset(fingerprints);
1.8       jakob     255:                return -1;
1.1       jakob     256:        }
                    257:
1.8       jakob     258:        if (fingerprints->rri_nrdatas)
                    259:                *flags |= DNS_VERIFY_FOUND;
                    260:
1.24      stevesk   261:        for (counter = 0; counter < fingerprints->rri_nrdatas; counter++) {
1.1       jakob     262:                /*
                    263:                 * Extract the key from the answer. Ignore any badly
1.4       jakob     264:                 * formatted fingerprints.
1.1       jakob     265:                 */
                    266:                if (!dns_read_rdata(&dnskey_algorithm, &dnskey_digest_type,
                    267:                    &dnskey_digest, &dnskey_digest_len,
1.4       jakob     268:                    fingerprints->rri_rdatas[counter].rdi_data,
                    269:                    fingerprints->rri_rdatas[counter].rdi_length)) {
1.1       jakob     270:                        verbose("Error parsing fingerprint from DNS.");
                    271:                        continue;
                    272:                }
                    273:
1.28      djm       274:                if (hostkey_digest_type != dnskey_digest_type) {
                    275:                        hostkey_digest_type = dnskey_digest_type;
1.29      djm       276:                        free(hostkey_digest);
1.28      djm       277:
                    278:                        /* Initialize host key parameters */
                    279:                        if (!dns_read_key(&hostkey_algorithm,
                    280:                            &hostkey_digest_type, &hostkey_digest,
                    281:                            &hostkey_digest_len, hostkey)) {
                    282:                                error("Error calculating key fingerprint.");
                    283:                                freerrset(fingerprints);
                    284:                                return -1;
                    285:                        }
                    286:                }
                    287:
1.1       jakob     288:                /* Check if the current key is the same as the given key */
                    289:                if (hostkey_algorithm == dnskey_algorithm &&
                    290:                    hostkey_digest_type == dnskey_digest_type) {
                    291:                        if (hostkey_digest_len == dnskey_digest_len &&
1.28      djm       292:                            timingsafe_bcmp(hostkey_digest, dnskey_digest,
                    293:                            hostkey_digest_len) == 0)
1.8       jakob     294:                                *flags |= DNS_VERIFY_MATCH;
1.1       jakob     295:                }
1.29      djm       296:                free(dnskey_digest);
1.1       jakob     297:        }
                    298:
1.37      djm       299:        free(hostkey_digest); /* from sshkey_fingerprint_raw() */
                    300:        freerrset(fingerprints);
                    301:
                    302:        if (*flags & DNS_VERIFY_FOUND)
1.8       jakob     303:                if (*flags & DNS_VERIFY_MATCH)
                    304:                        debug("matching host key fingerprint found in DNS");
                    305:                else
                    306:                        debug("mismatching host key fingerprint found in DNS");
1.37      djm       307:        else
1.8       jakob     308:                debug("no host key fingerprint found in DNS");
1.1       jakob     309:
1.8       jakob     310:        return 0;
1.1       jakob     311: }
                    312:
                    313: /*
                    314:  * Export the fingerprint of a key as a DNS resource record
                    315:  */
                    316: int
1.33      djm       317: export_dns_rr(const char *hostname, struct sshkey *key, FILE *f, int generic)
1.1       jakob     318: {
                    319:        u_int8_t rdata_pubkey_algorithm = 0;
1.28      djm       320:        u_int8_t rdata_digest_type = SSHFP_HASH_RESERVED;
                    321:        u_int8_t dtype;
1.1       jakob     322:        u_char *rdata_digest;
1.33      djm       323:        size_t i, rdata_digest_len;
1.1       jakob     324:        int success = 0;
                    325:
1.28      djm       326:        for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) {
                    327:                rdata_digest_type = dtype;
                    328:                if (dns_read_key(&rdata_pubkey_algorithm, &rdata_digest_type,
                    329:                    &rdata_digest, &rdata_digest_len, key)) {
                    330:                        if (generic) {
1.33      djm       331:                                fprintf(f, "%s IN TYPE%d \\# %zu %02x %02x ",
1.28      djm       332:                                    hostname, DNS_RDATATYPE_SSHFP,
                    333:                                    2 + rdata_digest_len,
                    334:                                    rdata_pubkey_algorithm, rdata_digest_type);
                    335:                        } else {
                    336:                                fprintf(f, "%s IN SSHFP %d %d ", hostname,
                    337:                                    rdata_pubkey_algorithm, rdata_digest_type);
                    338:                        }
                    339:                        for (i = 0; i < rdata_digest_len; i++)
                    340:                                fprintf(f, "%02x", rdata_digest[i]);
                    341:                        fprintf(f, "\n");
1.34      djm       342:                        free(rdata_digest); /* from sshkey_fingerprint_raw() */
1.28      djm       343:                        success = 1;
                    344:                }
                    345:        }
1.1       jakob     346:
1.28      djm       347:        /* No SSHFP record was generated at all */
                    348:        if (success == 0) {
                    349:                error("%s: unsupported algorithm and/or digest_type", __func__);
1.1       jakob     350:        }
                    351:
                    352:        return success;
                    353: }