1999-10-27 07:42:43 +04:00
|
|
|
/*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-09-16 06:29:08 +04:00
|
|
|
* Functions for manipulating the known hosts files.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
|
|
|
|
* Copyright (c) 1999 Niels Provos. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1999-11-24 16:26:21 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "includes.h"
|
2000-11-13 14:57:25 +03:00
|
|
|
RCSID("$OpenBSD: hostfile.c,v 1.21 2000/11/12 19:50:37 markus Exp $");
|
2000-03-26 07:04:51 +04:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
#include "packet.h"
|
2000-03-26 07:04:51 +04:00
|
|
|
#include "match.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
#include "ssh.h"
|
2000-04-16 06:31:48 +04:00
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/dsa.h>
|
2000-03-26 07:04:51 +04:00
|
|
|
#include "key.h"
|
|
|
|
#include "hostfile.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
2000-03-26 07:04:51 +04:00
|
|
|
* Parses an RSA (number of bits, e, n) or DSA key from a string. Moves the
|
|
|
|
* pointer over the key. Skips any whitespace at the beginning and at end.
|
1999-11-25 03:54:57 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
int
|
2000-03-26 07:04:51 +04:00
|
|
|
hostfile_read_key(char **cpp, unsigned int *bitsp, Key *ret)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
char *cp;
|
|
|
|
|
|
|
|
/* Skip leading whitespace. */
|
1999-11-25 03:54:57 +03:00
|
|
|
for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++)
|
|
|
|
;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2000-11-13 14:57:25 +03:00
|
|
|
if (key_read(ret, &cp) != 1)
|
1999-11-24 16:26:21 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Skip trailing whitespace. */
|
1999-11-25 03:54:57 +03:00
|
|
|
for (; *cp == ' ' || *cp == '\t'; cp++)
|
|
|
|
;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
|
|
|
/* Return results. */
|
|
|
|
*cpp = cp;
|
2000-11-13 14:57:25 +03:00
|
|
|
*bitsp = key_size(ret);
|
1999-11-24 16:26:21 +03:00
|
|
|
return 1;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-03-26 07:04:51 +04:00
|
|
|
auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2000-11-13 14:57:25 +03:00
|
|
|
Key *k = key_new(KEY_RSA1);
|
2000-03-26 07:04:51 +04:00
|
|
|
int ret = hostfile_read_key(cpp, bitsp, k);
|
|
|
|
BN_copy(e, k->rsa->e);
|
|
|
|
BN_copy(n, k->rsa->n);
|
|
|
|
key_free(k);
|
|
|
|
return ret;
|
|
|
|
}
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2000-03-26 07:04:51 +04:00
|
|
|
int
|
|
|
|
hostfile_check_key(int bits, Key *key, const char *host, const char *filename, int linenum)
|
|
|
|
{
|
2000-11-13 14:57:25 +03:00
|
|
|
if (key == NULL || key->type != KEY_RSA1 || key->rsa == NULL)
|
2000-03-26 07:04:51 +04:00
|
|
|
return 1;
|
|
|
|
if (bits != BN_num_bits(key->rsa->n)) {
|
2000-04-30 04:00:53 +04:00
|
|
|
log("Warning: %s, line %d: keysize mismatch for host %s: "
|
2000-03-26 07:04:51 +04:00
|
|
|
"actual %d vs. announced %d.",
|
|
|
|
filename, linenum, host, BN_num_bits(key->rsa->n), bits);
|
2000-04-30 04:00:53 +04:00
|
|
|
log("Warning: replace %d with %d in %s, line %d.",
|
2000-03-26 07:04:51 +04:00
|
|
|
bits, BN_num_bits(key->rsa->n), filename, linenum);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
2000-03-26 07:04:51 +04:00
|
|
|
return 1;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Checks whether the given host (which must be in all lowercase) is already
|
|
|
|
* in the list of our known hosts. Returns HOST_OK if the host is known and
|
|
|
|
* has the specified key, HOST_NEW if the host is not known, and HOST_CHANGED
|
|
|
|
* if the host is known but used to have a different host key.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
HostStatus
|
2000-03-26 07:04:51 +04:00
|
|
|
check_host_in_hostfile(const char *filename, const char *host, Key *key, Key *found)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
FILE *f;
|
|
|
|
char line[8192];
|
|
|
|
int linenum = 0;
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
unsigned int kbits, hostlen;
|
1999-11-24 16:26:21 +03:00
|
|
|
char *cp, *cp2;
|
|
|
|
HostStatus end_return;
|
|
|
|
|
2000-03-26 07:04:51 +04:00
|
|
|
if (key == NULL)
|
|
|
|
fatal("no key to look up");
|
1999-11-24 16:26:21 +03:00
|
|
|
/* Open the file containing the list of known hosts. */
|
|
|
|
f = fopen(filename, "r");
|
|
|
|
if (!f)
|
|
|
|
return HOST_NEW;
|
|
|
|
|
|
|
|
/* Cache the length of the host name. */
|
|
|
|
hostlen = strlen(host);
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Return value when the loop terminates. This is set to
|
|
|
|
* HOST_CHANGED if we have seen a different key for the host and have
|
|
|
|
* not found the proper one.
|
|
|
|
*/
|
1999-11-24 16:26:21 +03:00
|
|
|
end_return = HOST_NEW;
|
|
|
|
|
|
|
|
/* Go trough the file. */
|
|
|
|
while (fgets(line, sizeof(line), f)) {
|
|
|
|
cp = line;
|
|
|
|
linenum++;
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/* Skip any leading whitespace, comments and empty lines. */
|
|
|
|
for (; *cp == ' ' || *cp == '\t'; cp++)
|
|
|
|
;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (!*cp || *cp == '#' || *cp == '\n')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Find the end of the host name portion. */
|
1999-11-25 03:54:57 +03:00
|
|
|
for (cp2 = cp; *cp2 && *cp2 != ' ' && *cp2 != '\t'; cp2++)
|
|
|
|
;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
|
|
|
/* Check if the host name matches. */
|
2000-06-07 13:55:44 +04:00
|
|
|
if (match_hostname(host, cp, (unsigned int) (cp2 - cp)) != 1)
|
1999-11-24 16:26:21 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Got a match. Skip host name. */
|
|
|
|
cp = cp2;
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Extract the key from the line. This will skip any leading
|
|
|
|
* whitespace. Ignore badly formatted lines.
|
|
|
|
*/
|
2000-03-26 07:04:51 +04:00
|
|
|
if (!hostfile_read_key(&cp, &kbits, found))
|
|
|
|
continue;
|
|
|
|
if (!hostfile_check_key(kbits, found, host, filename, linenum))
|
1999-11-24 16:26:21 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Check if the current key is the same as the given key. */
|
2000-03-26 07:04:51 +04:00
|
|
|
if (key_equal(key, found)) {
|
1999-11-24 16:26:21 +03:00
|
|
|
/* Ok, they match. */
|
|
|
|
fclose(f);
|
|
|
|
return HOST_OK;
|
|
|
|
}
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* They do not match. We will continue to go through the
|
|
|
|
* file; however, we note that we will not return that it is
|
|
|
|
* new.
|
|
|
|
*/
|
1999-11-24 16:26:21 +03:00
|
|
|
end_return = HOST_CHANGED;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
1999-11-24 16:26:21 +03:00
|
|
|
/* Clear variables and close the file. */
|
|
|
|
fclose(f);
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Return either HOST_NEW or HOST_CHANGED, depending on whether we
|
|
|
|
* saw a different key for the host.
|
|
|
|
*/
|
1999-11-24 16:26:21 +03:00
|
|
|
return end_return;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Appends an entry to the host file. Returns false if the entry could not
|
|
|
|
* be appended.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
int
|
2000-03-26 07:04:51 +04:00
|
|
|
add_host_to_hostfile(const char *filename, const char *host, Key *key)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
FILE *f;
|
2000-03-26 07:04:51 +04:00
|
|
|
int success = 0;
|
|
|
|
if (key == NULL)
|
2000-04-29 17:57:08 +04:00
|
|
|
return 1; /* XXX ? */
|
1999-11-24 16:26:21 +03:00
|
|
|
f = fopen(filename, "a");
|
|
|
|
if (!f)
|
|
|
|
return 0;
|
2000-03-26 07:04:51 +04:00
|
|
|
fprintf(f, "%s ", host);
|
|
|
|
if (key_write(key, f)) {
|
|
|
|
success = 1;
|
|
|
|
} else {
|
2000-04-29 17:57:08 +04:00
|
|
|
error("add_host_to_hostfile: saving key in %s failed", filename);
|
1999-11-24 16:26:21 +03:00
|
|
|
}
|
2000-04-29 17:57:08 +04:00
|
|
|
fprintf(f, "\n");
|
1999-11-24 16:26:21 +03:00
|
|
|
fclose(f);
|
2000-03-26 07:04:51 +04:00
|
|
|
return success;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|