Home | History | Annotate | Line # | Download | only in dist
hostfile.c revision 1.1.1.13
      1 /* $OpenBSD: hostfile.c,v 1.77 2020/01/25 00:21:08 djm Exp $ */
      2 /*
      3  * Author: Tatu Ylonen <ylo (at) cs.hut.fi>
      4  * Copyright (c) 1995 Tatu Ylonen <ylo (at) cs.hut.fi>, Espoo, Finland
      5  *                    All rights reserved
      6  * Functions for manipulating the known hosts files.
      7  *
      8  * As far as I am concerned, the code I have written for this software
      9  * can be used freely for any purpose.  Any derived versions of this
     10  * software must be clearly marked as such, and if the derived work is
     11  * incompatible with the protocol description in the RFC file, it must be
     12  * called by a name other than "ssh" or "Secure Shell".
     13  *
     14  *
     15  * Copyright (c) 1999, 2000 Markus Friedl.  All rights reserved.
     16  * Copyright (c) 1999 Niels Provos.  All rights reserved.
     17  *
     18  * Redistribution and use in source and binary forms, with or without
     19  * modification, are permitted provided that the following conditions
     20  * are met:
     21  * 1. Redistributions of source code must retain the above copyright
     22  *    notice, this list of conditions and the following disclaimer.
     23  * 2. Redistributions in binary form must reproduce the above copyright
     24  *    notice, this list of conditions and the following disclaimer in the
     25  *    documentation and/or other materials provided with the distribution.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     28  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     29  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     30  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     31  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     32  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     33  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     34  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     36  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include <sys/types.h>
     40 #include <sys/stat.h>
     41 
     42 #include <netinet/in.h>
     43 
     44 #include <errno.h>
     45 #include <resolv.h>
     46 #include <stdio.h>
     47 #include <stdlib.h>
     48 #include <string.h>
     49 #include <stdarg.h>
     50 #include <unistd.h>
     51 
     52 #include "xmalloc.h"
     53 #include "match.h"
     54 #include "sshkey.h"
     55 #include "hostfile.h"
     56 #include "log.h"
     57 #include "misc.h"
     58 #include "ssherr.h"
     59 #include "digest.h"
     60 #include "hmac.h"
     61 
     62 struct hostkeys {
     63 	struct hostkey_entry *entries;
     64 	u_int num_entries;
     65 };
     66 
     67 /* XXX hmac is too easy to dictionary attack; use bcrypt? */
     68 
     69 static int
     70 extract_salt(const char *s, u_int l, u_char *salt, size_t salt_len)
     71 {
     72 	char *p, *b64salt;
     73 	u_int b64len;
     74 	int ret;
     75 
     76 	if (l < sizeof(HASH_MAGIC) - 1) {
     77 		debug2("extract_salt: string too short");
     78 		return (-1);
     79 	}
     80 	if (strncmp(s, HASH_MAGIC, sizeof(HASH_MAGIC) - 1) != 0) {
     81 		debug2("extract_salt: invalid magic identifier");
     82 		return (-1);
     83 	}
     84 	s += sizeof(HASH_MAGIC) - 1;
     85 	l -= sizeof(HASH_MAGIC) - 1;
     86 	if ((p = memchr(s, HASH_DELIM, l)) == NULL) {
     87 		debug2("extract_salt: missing salt termination character");
     88 		return (-1);
     89 	}
     90 
     91 	b64len = p - s;
     92 	/* Sanity check */
     93 	if (b64len == 0 || b64len > 1024) {
     94 		debug2("extract_salt: bad encoded salt length %u", b64len);
     95 		return (-1);
     96 	}
     97 	b64salt = xmalloc(1 + b64len);
     98 	memcpy(b64salt, s, b64len);
     99 	b64salt[b64len] = '\0';
    100 
    101 	ret = __b64_pton(b64salt, salt, salt_len);
    102 	free(b64salt);
    103 	if (ret == -1) {
    104 		debug2("extract_salt: salt decode error");
    105 		return (-1);
    106 	}
    107 	if (ret != (int)ssh_hmac_bytes(SSH_DIGEST_SHA1)) {
    108 		debug2("extract_salt: expected salt len %zd, got %d",
    109 		    ssh_hmac_bytes(SSH_DIGEST_SHA1), ret);
    110 		return (-1);
    111 	}
    112 
    113 	return (0);
    114 }
    115 
    116 char *
    117 host_hash(const char *host, const char *name_from_hostfile, u_int src_len)
    118 {
    119 	struct ssh_hmac_ctx *ctx;
    120 	u_char salt[256], result[256];
    121 	char uu_salt[512], uu_result[512];
    122 	static char encoded[1024];
    123 	u_int len;
    124 
    125 	len = ssh_digest_bytes(SSH_DIGEST_SHA1);
    126 
    127 	if (name_from_hostfile == NULL) {
    128 		/* Create new salt */
    129 		arc4random_buf(salt, len);
    130 	} else {
    131 		/* Extract salt from known host entry */
    132 		if (extract_salt(name_from_hostfile, src_len, salt,
    133 		    sizeof(salt)) == -1)
    134 			return (NULL);
    135 	}
    136 
    137 	if ((ctx = ssh_hmac_start(SSH_DIGEST_SHA1)) == NULL ||
    138 	    ssh_hmac_init(ctx, salt, len) < 0 ||
    139 	    ssh_hmac_update(ctx, host, strlen(host)) < 0 ||
    140 	    ssh_hmac_final(ctx, result, sizeof(result)))
    141 		fatal("%s: ssh_hmac failed", __func__);
    142 	ssh_hmac_free(ctx);
    143 
    144 	if (__b64_ntop(salt, len, uu_salt, sizeof(uu_salt)) == -1 ||
    145 	    __b64_ntop(result, len, uu_result, sizeof(uu_result)) == -1)
    146 		fatal("%s: __b64_ntop failed", __func__);
    147 
    148 	snprintf(encoded, sizeof(encoded), "%s%s%c%s", HASH_MAGIC, uu_salt,
    149 	    HASH_DELIM, uu_result);
    150 
    151 	return (encoded);
    152 }
    153 
    154 /*
    155  * Parses an RSA (number of bits, e, n) or DSA key from a string.  Moves the
    156  * pointer over the key.  Skips any whitespace at the beginning and at end.
    157  */
    158 
    159 int
    160 hostfile_read_key(char **cpp, u_int *bitsp, struct sshkey *ret)
    161 {
    162 	char *cp;
    163 
    164 	/* Skip leading whitespace. */
    165 	for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++)
    166 		;
    167 
    168 	if (sshkey_read(ret, &cp) != 0)
    169 		return 0;
    170 
    171 	/* Skip trailing whitespace. */
    172 	for (; *cp == ' ' || *cp == '\t'; cp++)
    173 		;
    174 
    175 	/* Return results. */
    176 	*cpp = cp;
    177 	if (bitsp != NULL)
    178 		*bitsp = sshkey_size(ret);
    179 	return 1;
    180 }
    181 
    182 static HostkeyMarker
    183 check_markers(char **cpp)
    184 {
    185 	char marker[32], *sp, *cp = *cpp;
    186 	int ret = MRK_NONE;
    187 
    188 	while (*cp == '@') {
    189 		/* Only one marker is allowed */
    190 		if (ret != MRK_NONE)
    191 			return MRK_ERROR;
    192 		/* Markers are terminated by whitespace */
    193 		if ((sp = strchr(cp, ' ')) == NULL &&
    194 		    (sp = strchr(cp, '\t')) == NULL)
    195 			return MRK_ERROR;
    196 		/* Extract marker for comparison */
    197 		if (sp <= cp + 1 || sp >= cp + sizeof(marker))
    198 			return MRK_ERROR;
    199 		memcpy(marker, cp, sp - cp);
    200 		marker[sp - cp] = '\0';
    201 		if (strcmp(marker, CA_MARKER) == 0)
    202 			ret = MRK_CA;
    203 		else if (strcmp(marker, REVOKE_MARKER) == 0)
    204 			ret = MRK_REVOKE;
    205 		else
    206 			return MRK_ERROR;
    207 
    208 		/* Skip past marker and any whitespace that follows it */
    209 		cp = sp;
    210 		for (; *cp == ' ' || *cp == '\t'; cp++)
    211 			;
    212 	}
    213 	*cpp = cp;
    214 	return ret;
    215 }
    216 
    217 struct hostkeys *
    218 init_hostkeys(void)
    219 {
    220 	struct hostkeys *ret = xcalloc(1, sizeof(*ret));
    221 
    222 	ret->entries = NULL;
    223 	return ret;
    224 }
    225 
    226 struct load_callback_ctx {
    227 	const char *host;
    228 	u_long num_loaded;
    229 	struct hostkeys *hostkeys;
    230 };
    231 
    232 static int
    233 record_hostkey(struct hostkey_foreach_line *l, void *_ctx)
    234 {
    235 	struct load_callback_ctx *ctx = (struct load_callback_ctx *)_ctx;
    236 	struct hostkeys *hostkeys = ctx->hostkeys;
    237 	struct hostkey_entry *tmp;
    238 
    239 	if (l->status == HKF_STATUS_INVALID) {
    240 		/* XXX make this verbose() in the future */
    241 		debug("%s:%ld: parse error in hostkeys file",
    242 		    l->path, l->linenum);
    243 		return 0;
    244 	}
    245 
    246 	debug3("%s: found %skey type %s in file %s:%lu", __func__,
    247 	    l->marker == MRK_NONE ? "" :
    248 	    (l->marker == MRK_CA ? "ca " : "revoked "),
    249 	    sshkey_type(l->key), l->path, l->linenum);
    250 	if ((tmp = recallocarray(hostkeys->entries, hostkeys->num_entries,
    251 	    hostkeys->num_entries + 1, sizeof(*hostkeys->entries))) == NULL)
    252 		return SSH_ERR_ALLOC_FAIL;
    253 	hostkeys->entries = tmp;
    254 	hostkeys->entries[hostkeys->num_entries].host = xstrdup(ctx->host);
    255 	hostkeys->entries[hostkeys->num_entries].file = xstrdup(l->path);
    256 	hostkeys->entries[hostkeys->num_entries].line = l->linenum;
    257 	hostkeys->entries[hostkeys->num_entries].key = l->key;
    258 	l->key = NULL; /* steal it */
    259 	hostkeys->entries[hostkeys->num_entries].marker = l->marker;
    260 	hostkeys->num_entries++;
    261 	ctx->num_loaded++;
    262 
    263 	return 0;
    264 }
    265 
    266 void
    267 load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path)
    268 {
    269 	int r;
    270 	struct load_callback_ctx ctx;
    271 
    272 	ctx.host = host;
    273 	ctx.num_loaded = 0;
    274 	ctx.hostkeys = hostkeys;
    275 
    276 	if ((r = hostkeys_foreach(path, record_hostkey, &ctx, host, NULL,
    277 	    HKF_WANT_MATCH|HKF_WANT_PARSE_KEY)) != 0) {
    278 		if (r != SSH_ERR_SYSTEM_ERROR && errno != ENOENT)
    279 			debug("%s: hostkeys_foreach failed for %s: %s",
    280 			    __func__, path, ssh_err(r));
    281 	}
    282 	if (ctx.num_loaded != 0)
    283 		debug3("%s: loaded %lu keys from %s", __func__,
    284 		    ctx.num_loaded, host);
    285 }
    286 
    287 void
    288 free_hostkeys(struct hostkeys *hostkeys)
    289 {
    290 	u_int i;
    291 
    292 	for (i = 0; i < hostkeys->num_entries; i++) {
    293 		free(hostkeys->entries[i].host);
    294 		free(hostkeys->entries[i].file);
    295 		sshkey_free(hostkeys->entries[i].key);
    296 		explicit_bzero(hostkeys->entries + i, sizeof(*hostkeys->entries));
    297 	}
    298 	free(hostkeys->entries);
    299 	explicit_bzero(hostkeys, sizeof(*hostkeys));
    300 	free(hostkeys);
    301 }
    302 
    303 static int
    304 check_key_not_revoked(struct hostkeys *hostkeys, struct sshkey *k)
    305 {
    306 	int is_cert = sshkey_is_cert(k);
    307 	u_int i;
    308 
    309 	for (i = 0; i < hostkeys->num_entries; i++) {
    310 		if (hostkeys->entries[i].marker != MRK_REVOKE)
    311 			continue;
    312 		if (sshkey_equal_public(k, hostkeys->entries[i].key))
    313 			return -1;
    314 		if (is_cert &&
    315 		    sshkey_equal_public(k->cert->signature_key,
    316 		    hostkeys->entries[i].key))
    317 			return -1;
    318 	}
    319 	return 0;
    320 }
    321 
    322 /*
    323  * Match keys against a specified key, or look one up by key type.
    324  *
    325  * If looking for a keytype (key == NULL) and one is found then return
    326  * HOST_FOUND, otherwise HOST_NEW.
    327  *
    328  * If looking for a key (key != NULL):
    329  *  1. If the key is a cert and a matching CA is found, return HOST_OK
    330  *  2. If the key is not a cert and a matching key is found, return HOST_OK
    331  *  3. If no key matches but a key with a different type is found, then
    332  *     return HOST_CHANGED
    333  *  4. If no matching keys are found, then return HOST_NEW.
    334  *
    335  * Finally, check any found key is not revoked.
    336  */
    337 static HostStatus
    338 check_hostkeys_by_key_or_type(struct hostkeys *hostkeys,
    339     struct sshkey *k, int keytype, const struct hostkey_entry **found)
    340 {
    341 	u_int i;
    342 	HostStatus end_return = HOST_NEW;
    343 	int want_cert = sshkey_is_cert(k);
    344 	HostkeyMarker want_marker = want_cert ? MRK_CA : MRK_NONE;
    345 
    346 	if (found != NULL)
    347 		*found = NULL;
    348 
    349 	for (i = 0; i < hostkeys->num_entries; i++) {
    350 		if (hostkeys->entries[i].marker != want_marker)
    351 			continue;
    352 		if (k == NULL) {
    353 			if (hostkeys->entries[i].key->type != keytype)
    354 				continue;
    355 			end_return = HOST_FOUND;
    356 			if (found != NULL)
    357 				*found = hostkeys->entries + i;
    358 			k = hostkeys->entries[i].key;
    359 			break;
    360 		}
    361 		if (want_cert) {
    362 			if (sshkey_equal_public(k->cert->signature_key,
    363 			    hostkeys->entries[i].key)) {
    364 				/* A matching CA exists */
    365 				end_return = HOST_OK;
    366 				if (found != NULL)
    367 					*found = hostkeys->entries + i;
    368 				break;
    369 			}
    370 		} else {
    371 			if (sshkey_equal(k, hostkeys->entries[i].key)) {
    372 				end_return = HOST_OK;
    373 				if (found != NULL)
    374 					*found = hostkeys->entries + i;
    375 				break;
    376 			}
    377 			/* A non-maching key exists */
    378 			end_return = HOST_CHANGED;
    379 			if (found != NULL)
    380 				*found = hostkeys->entries + i;
    381 		}
    382 	}
    383 	if (check_key_not_revoked(hostkeys, k) != 0) {
    384 		end_return = HOST_REVOKED;
    385 		if (found != NULL)
    386 			*found = NULL;
    387 	}
    388 	return end_return;
    389 }
    390 
    391 HostStatus
    392 check_key_in_hostkeys(struct hostkeys *hostkeys, struct sshkey *key,
    393     const struct hostkey_entry **found)
    394 {
    395 	if (key == NULL)
    396 		fatal("no key to look up");
    397 	return check_hostkeys_by_key_or_type(hostkeys, key, 0, found);
    398 }
    399 
    400 int
    401 lookup_key_in_hostkeys_by_type(struct hostkeys *hostkeys, int keytype,
    402     const struct hostkey_entry **found)
    403 {
    404 	return (check_hostkeys_by_key_or_type(hostkeys, NULL, keytype,
    405 	    found) == HOST_FOUND);
    406 }
    407 
    408 static int
    409 write_host_entry(FILE *f, const char *host, const char *ip,
    410     const struct sshkey *key, int store_hash)
    411 {
    412 	int r, success = 0;
    413 	char *hashed_host = NULL, *lhost;
    414 
    415 	lhost = xstrdup(host);
    416 	lowercase(lhost);
    417 
    418 	if (store_hash) {
    419 		if ((hashed_host = host_hash(lhost, NULL, 0)) == NULL) {
    420 			error("%s: host_hash failed", __func__);
    421 			free(lhost);
    422 			return 0;
    423 		}
    424 		fprintf(f, "%s ", hashed_host);
    425 	} else if (ip != NULL)
    426 		fprintf(f, "%s,%s ", lhost, ip);
    427 	else {
    428 		fprintf(f, "%s ", lhost);
    429 	}
    430 	free(lhost);
    431 	if ((r = sshkey_write(key, f)) == 0)
    432 		success = 1;
    433 	else
    434 		error("%s: sshkey_write failed: %s", __func__, ssh_err(r));
    435 	fputc('\n', f);
    436 	return success;
    437 }
    438 
    439 /*
    440  * Appends an entry to the host file.  Returns false if the entry could not
    441  * be appended.
    442  */
    443 int
    444 add_host_to_hostfile(const char *filename, const char *host,
    445     const struct sshkey *key, int store_hash)
    446 {
    447 	FILE *f;
    448 	int success;
    449 
    450 	if (key == NULL)
    451 		return 1;	/* XXX ? */
    452 	f = fopen(filename, "a");
    453 	if (!f)
    454 		return 0;
    455 	success = write_host_entry(f, host, NULL, key, store_hash);
    456 	fclose(f);
    457 	return success;
    458 }
    459 
    460 struct host_delete_ctx {
    461 	FILE *out;
    462 	int quiet;
    463 	const char *host;
    464 	int *skip_keys; /* XXX split for host/ip? might want to ensure both */
    465 	struct sshkey * const *keys;
    466 	size_t nkeys;
    467 	int modified;
    468 };
    469 
    470 static int
    471 host_delete(struct hostkey_foreach_line *l, void *_ctx)
    472 {
    473 	struct host_delete_ctx *ctx = (struct host_delete_ctx *)_ctx;
    474 	int loglevel = ctx->quiet ? SYSLOG_LEVEL_DEBUG1 : SYSLOG_LEVEL_VERBOSE;
    475 	size_t i;
    476 
    477 	if (l->status == HKF_STATUS_MATCHED) {
    478 		if (l->marker != MRK_NONE) {
    479 			/* Don't remove CA and revocation lines */
    480 			fprintf(ctx->out, "%s\n", l->line);
    481 			return 0;
    482 		}
    483 
    484 		/*
    485 		 * If this line contains one of the keys that we will be
    486 		 * adding later, then don't change it and mark the key for
    487 		 * skipping.
    488 		 */
    489 		for (i = 0; i < ctx->nkeys; i++) {
    490 			if (sshkey_equal(ctx->keys[i], l->key)) {
    491 				ctx->skip_keys[i] = 1;
    492 				fprintf(ctx->out, "%s\n", l->line);
    493 				debug3("%s: %s key already at %s:%ld", __func__,
    494 				    sshkey_type(l->key), l->path, l->linenum);
    495 				return 0;
    496 			}
    497 		}
    498 
    499 		/*
    500 		 * Hostname matches and has no CA/revoke marker, delete it
    501 		 * by *not* writing the line to ctx->out.
    502 		 */
    503 		do_log2(loglevel, "%s%s%s:%ld: Removed %s key for host %s",
    504 		    ctx->quiet ? __func__ : "", ctx->quiet ? ": " : "",
    505 		    l->path, l->linenum, sshkey_type(l->key), ctx->host);
    506 		ctx->modified = 1;
    507 		return 0;
    508 	}
    509 	/* Retain non-matching hosts and invalid lines when deleting */
    510 	if (l->status == HKF_STATUS_INVALID) {
    511 		do_log2(loglevel, "%s%s%s:%ld: invalid known_hosts entry",
    512 		    ctx->quiet ? __func__ : "", ctx->quiet ? ": " : "",
    513 		    l->path, l->linenum);
    514 	}
    515 	fprintf(ctx->out, "%s\n", l->line);
    516 	return 0;
    517 }
    518 
    519 int
    520 hostfile_replace_entries(const char *filename, const char *host, const char *ip,
    521     struct sshkey **keys, size_t nkeys, int store_hash, int quiet, int hash_alg)
    522 {
    523 	int r, fd, oerrno = 0;
    524 	int loglevel = quiet ? SYSLOG_LEVEL_DEBUG1 : SYSLOG_LEVEL_VERBOSE;
    525 	struct host_delete_ctx ctx;
    526 	char *fp, *temp = NULL, *back = NULL;
    527 	mode_t omask;
    528 	size_t i;
    529 
    530 	omask = umask(077);
    531 
    532 	memset(&ctx, 0, sizeof(ctx));
    533 	ctx.host = host;
    534 	ctx.quiet = quiet;
    535 	if ((ctx.skip_keys = calloc(nkeys, sizeof(*ctx.skip_keys))) == NULL)
    536 		return SSH_ERR_ALLOC_FAIL;
    537 	ctx.keys = keys;
    538 	ctx.nkeys = nkeys;
    539 	ctx.modified = 0;
    540 
    541 	/*
    542 	 * Prepare temporary file for in-place deletion.
    543 	 */
    544 	if ((r = asprintf(&temp, "%s.XXXXXXXXXXX", filename)) == -1 ||
    545 	    (r = asprintf(&back, "%s.old", filename)) == -1) {
    546 		r = SSH_ERR_ALLOC_FAIL;
    547 		goto fail;
    548 	}
    549 
    550 	if ((fd = mkstemp(temp)) == -1) {
    551 		oerrno = errno;
    552 		error("%s: mkstemp: %s", __func__, strerror(oerrno));
    553 		r = SSH_ERR_SYSTEM_ERROR;
    554 		goto fail;
    555 	}
    556 	if ((ctx.out = fdopen(fd, "w")) == NULL) {
    557 		oerrno = errno;
    558 		close(fd);
    559 		error("%s: fdopen: %s", __func__, strerror(oerrno));
    560 		r = SSH_ERR_SYSTEM_ERROR;
    561 		goto fail;
    562 	}
    563 
    564 	/* Remove all entries for the specified host from the file */
    565 	if ((r = hostkeys_foreach(filename, host_delete, &ctx, host, ip,
    566 	    HKF_WANT_PARSE_KEY)) != 0) {
    567 		oerrno = errno;
    568 		error("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
    569 		goto fail;
    570 	}
    571 
    572 	/* Add the requested keys */
    573 	for (i = 0; i < nkeys; i++) {
    574 		if (ctx.skip_keys[i])
    575 			continue;
    576 		if ((fp = sshkey_fingerprint(keys[i], hash_alg,
    577 		    SSH_FP_DEFAULT)) == NULL) {
    578 			r = SSH_ERR_ALLOC_FAIL;
    579 			goto fail;
    580 		}
    581 		do_log2(loglevel, "%s%sAdding new key for %s to %s: %s %s",
    582 		    quiet ? __func__ : "", quiet ? ": " : "", host, filename,
    583 		    sshkey_ssh_name(keys[i]), fp);
    584 		free(fp);
    585 		if (!write_host_entry(ctx.out, host, ip, keys[i], store_hash)) {
    586 			r = SSH_ERR_INTERNAL_ERROR;
    587 			goto fail;
    588 		}
    589 		ctx.modified = 1;
    590 	}
    591 	fclose(ctx.out);
    592 	ctx.out = NULL;
    593 
    594 	if (ctx.modified) {
    595 		/* Backup the original file and replace it with the temporary */
    596 		if (unlink(back) == -1 && errno != ENOENT) {
    597 			oerrno = errno;
    598 			error("%s: unlink %.100s: %s", __func__,
    599 			    back, strerror(errno));
    600 			r = SSH_ERR_SYSTEM_ERROR;
    601 			goto fail;
    602 		}
    603 		if (link(filename, back) == -1) {
    604 			oerrno = errno;
    605 			error("%s: link %.100s to %.100s: %s", __func__,
    606 			    filename, back, strerror(errno));
    607 			r = SSH_ERR_SYSTEM_ERROR;
    608 			goto fail;
    609 		}
    610 		if (rename(temp, filename) == -1) {
    611 			oerrno = errno;
    612 			error("%s: rename \"%s\" to \"%s\": %s", __func__,
    613 			    temp, filename, strerror(errno));
    614 			r = SSH_ERR_SYSTEM_ERROR;
    615 			goto fail;
    616 		}
    617 	} else {
    618 		/* No changes made; just delete the temporary file */
    619 		if (unlink(temp) != 0)
    620 			error("%s: unlink \"%s\": %s", __func__,
    621 			    temp, strerror(errno));
    622 	}
    623 
    624 	/* success */
    625 	r = 0;
    626  fail:
    627 	if (temp != NULL && r != 0)
    628 		unlink(temp);
    629 	free(temp);
    630 	free(back);
    631 	if (ctx.out != NULL)
    632 		fclose(ctx.out);
    633 	free(ctx.skip_keys);
    634 	umask(omask);
    635 	if (r == SSH_ERR_SYSTEM_ERROR)
    636 		errno = oerrno;
    637 	return r;
    638 }
    639 
    640 static int
    641 match_maybe_hashed(const char *host, const char *names, int *was_hashed)
    642 {
    643 	int hashed = *names == HASH_DELIM;
    644 	const char *hashed_host;
    645 	size_t nlen = strlen(names);
    646 
    647 	if (was_hashed != NULL)
    648 		*was_hashed = hashed;
    649 	if (hashed) {
    650 		if ((hashed_host = host_hash(host, names, nlen)) == NULL)
    651 			return -1;
    652 		return nlen == strlen(hashed_host) &&
    653 		    strncmp(hashed_host, names, nlen) == 0;
    654 	}
    655 	return match_hostname(host, names) == 1;
    656 }
    657 
    658 int
    659 hostkeys_foreach(const char *path, hostkeys_foreach_fn *callback, void *ctx,
    660     const char *host, const char *ip, u_int options)
    661 {
    662 	FILE *f;
    663 	char *line = NULL, ktype[128];
    664 	u_long linenum = 0;
    665 	char *cp, *cp2;
    666 	u_int kbits;
    667 	int hashed;
    668 	int s, r = 0;
    669 	struct hostkey_foreach_line lineinfo;
    670 	size_t linesize = 0, l;
    671 
    672 	memset(&lineinfo, 0, sizeof(lineinfo));
    673 	if (host == NULL && (options & HKF_WANT_MATCH) != 0)
    674 		return SSH_ERR_INVALID_ARGUMENT;
    675 	if ((f = fopen(path, "r")) == NULL)
    676 		return SSH_ERR_SYSTEM_ERROR;
    677 
    678 	debug3("%s: reading file \"%s\"", __func__, path);
    679 	while (getline(&line, &linesize, f) != -1) {
    680 		linenum++;
    681 		line[strcspn(line, "\n")] = '\0';
    682 
    683 		free(lineinfo.line);
    684 		sshkey_free(lineinfo.key);
    685 		memset(&lineinfo, 0, sizeof(lineinfo));
    686 		lineinfo.path = path;
    687 		lineinfo.linenum = linenum;
    688 		lineinfo.line = xstrdup(line);
    689 		lineinfo.marker = MRK_NONE;
    690 		lineinfo.status = HKF_STATUS_OK;
    691 		lineinfo.keytype = KEY_UNSPEC;
    692 
    693 		/* Skip any leading whitespace, comments and empty lines. */
    694 		for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
    695 			;
    696 		if (!*cp || *cp == '#' || *cp == '\n') {
    697 			if ((options & HKF_WANT_MATCH) == 0) {
    698 				lineinfo.status = HKF_STATUS_COMMENT;
    699 				if ((r = callback(&lineinfo, ctx)) != 0)
    700 					break;
    701 			}
    702 			continue;
    703 		}
    704 
    705 		if ((lineinfo.marker = check_markers(&cp)) == MRK_ERROR) {
    706 			verbose("%s: invalid marker at %s:%lu",
    707 			    __func__, path, linenum);
    708 			if ((options & HKF_WANT_MATCH) == 0)
    709 				goto bad;
    710 			continue;
    711 		}
    712 
    713 		/* Find the end of the host name portion. */
    714 		for (cp2 = cp; *cp2 && *cp2 != ' ' && *cp2 != '\t'; cp2++)
    715 			;
    716 		lineinfo.hosts = cp;
    717 		*cp2++ = '\0';
    718 
    719 		/* Check if the host name matches. */
    720 		if (host != NULL) {
    721 			if ((s = match_maybe_hashed(host, lineinfo.hosts,
    722 			    &hashed)) == -1) {
    723 				debug2("%s: %s:%ld: bad host hash \"%.32s\"",
    724 				    __func__, path, linenum, lineinfo.hosts);
    725 				goto bad;
    726 			}
    727 			if (s == 1) {
    728 				lineinfo.status = HKF_STATUS_MATCHED;
    729 				lineinfo.match |= HKF_MATCH_HOST |
    730 				    (hashed ? HKF_MATCH_HOST_HASHED : 0);
    731 			}
    732 			/* Try matching IP address if supplied */
    733 			if (ip != NULL) {
    734 				if ((s = match_maybe_hashed(ip, lineinfo.hosts,
    735 				    &hashed)) == -1) {
    736 					debug2("%s: %s:%ld: bad ip hash "
    737 					    "\"%.32s\"", __func__, path,
    738 					    linenum, lineinfo.hosts);
    739 					goto bad;
    740 				}
    741 				if (s == 1) {
    742 					lineinfo.status = HKF_STATUS_MATCHED;
    743 					lineinfo.match |= HKF_MATCH_IP |
    744 					    (hashed ? HKF_MATCH_IP_HASHED : 0);
    745 				}
    746 			}
    747 			/*
    748 			 * Skip this line if host matching requested and
    749 			 * neither host nor address matched.
    750 			 */
    751 			if ((options & HKF_WANT_MATCH) != 0 &&
    752 			    lineinfo.status != HKF_STATUS_MATCHED)
    753 				continue;
    754 		}
    755 
    756 		/* Got a match.  Skip host name and any following whitespace */
    757 		for (; *cp2 == ' ' || *cp2 == '\t'; cp2++)
    758 			;
    759 		if (*cp2 == '\0' || *cp2 == '#') {
    760 			debug2("%s:%ld: truncated before key type",
    761 			    path, linenum);
    762 			goto bad;
    763 		}
    764 		lineinfo.rawkey = cp = cp2;
    765 
    766 		if ((options & HKF_WANT_PARSE_KEY) != 0) {
    767 			/*
    768 			 * Extract the key from the line.  This will skip
    769 			 * any leading whitespace.  Ignore badly formatted
    770 			 * lines.
    771 			 */
    772 			if ((lineinfo.key = sshkey_new(KEY_UNSPEC)) == NULL) {
    773 				error("%s: sshkey_new failed", __func__);
    774 				r = SSH_ERR_ALLOC_FAIL;
    775 				break;
    776 			}
    777 			if (!hostfile_read_key(&cp, &kbits, lineinfo.key)) {
    778 				goto bad;
    779 			}
    780 			lineinfo.keytype = lineinfo.key->type;
    781 			lineinfo.comment = cp;
    782 		} else {
    783 			/* Extract and parse key type */
    784 			l = strcspn(lineinfo.rawkey, " \t");
    785 			if (l <= 1 || l >= sizeof(ktype) ||
    786 			    lineinfo.rawkey[l] == '\0')
    787 				goto bad;
    788 			memcpy(ktype, lineinfo.rawkey, l);
    789 			ktype[l] = '\0';
    790 			lineinfo.keytype = sshkey_type_from_name(ktype);
    791 
    792 			/*
    793 			 * Assume legacy RSA1 if the first component is a short
    794 			 * decimal number.
    795 			 */
    796 			if (lineinfo.keytype == KEY_UNSPEC && l < 8 &&
    797 			    strspn(ktype, "0123456789") == l)
    798 				goto bad;
    799 
    800 			/*
    801 			 * Check that something other than whitespace follows
    802 			 * the key type. This won't catch all corruption, but
    803 			 * it does catch trivial truncation.
    804 			 */
    805 			cp2 += l; /* Skip past key type */
    806 			for (; *cp2 == ' ' || *cp2 == '\t'; cp2++)
    807 				;
    808 			if (*cp2 == '\0' || *cp2 == '#') {
    809 				debug2("%s:%ld: truncated after key type",
    810 				    path, linenum);
    811 				lineinfo.keytype = KEY_UNSPEC;
    812 			}
    813 			if (lineinfo.keytype == KEY_UNSPEC) {
    814  bad:
    815 				sshkey_free(lineinfo.key);
    816 				lineinfo.key = NULL;
    817 				lineinfo.status = HKF_STATUS_INVALID;
    818 				if ((r = callback(&lineinfo, ctx)) != 0)
    819 					break;
    820 				continue;
    821 			}
    822 		}
    823 		if ((r = callback(&lineinfo, ctx)) != 0)
    824 			break;
    825 	}
    826 	sshkey_free(lineinfo.key);
    827 	free(lineinfo.line);
    828 	free(line);
    829 	fclose(f);
    830 	return r;
    831 }
    832