Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Rhosts or /etc/hosts.equiv authentication combined with RSA host |
| 6 | * authentication. |
| 7 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 13 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 14 | |
| 15 | #include "includes.h" |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 16 | RCSID("$OpenBSD: auth-rh-rsa.c,v 1.22 2001/02/03 10:08:36 markus Exp $"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 17 | |
| 18 | #include "packet.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 19 | #include "xmalloc.h" |
| 20 | #include "uidswap.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 21 | #include "log.h" |
Damien Miller | 3226509 | 1999-11-12 11:33:04 +1100 | [diff] [blame] | 22 | #include "servconf.h" |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 23 | #include "key.h" |
| 24 | #include "hostfile.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 25 | #include "pathnames.h" |
| 26 | #include "auth.h" |
| 27 | #include "tildexpand.h" |
| 28 | #include "canohost.h" |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 29 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 30 | /* |
| 31 | * Tries to authenticate the user using the .rhosts file and the host using |
| 32 | * its host key. Returns true if authentication succeeds. |
| 33 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 34 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 35 | int |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 36 | auth_rhosts_rsa(struct passwd *pw, const char *client_user, RSA *client_host_key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 37 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 38 | extern ServerOptions options; |
| 39 | const char *canonical_hostname; |
| 40 | HostStatus host_status; |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 41 | Key *client_key, *found; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 42 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 43 | debug("Trying rhosts with RSA host authentication for client user %.100s", client_user); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 44 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 45 | if (pw == NULL || client_host_key == NULL) |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 46 | return 0; |
| 47 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 48 | /* Check if we would accept it using rhosts authentication. */ |
| 49 | if (!auth_rhosts(pw, client_user)) |
| 50 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 51 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 52 | canonical_hostname = get_canonical_hostname( |
| 53 | options.reverse_mapping_check); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 54 | |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 55 | debug("Rhosts RSA authentication: canonical host %.900s", canonical_hostname); |
| 56 | |
| 57 | /* wrap the RSA key into a 'generic' key */ |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 58 | client_key = key_new(KEY_RSA1); |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 59 | BN_copy(client_key->rsa->e, client_host_key->e); |
| 60 | BN_copy(client_key->rsa->n, client_host_key->n); |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 61 | found = key_new(KEY_RSA1); |
Damien Miller | 3226509 | 1999-11-12 11:33:04 +1100 | [diff] [blame] | 62 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 63 | /* Check if we know the host and its host key. */ |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 64 | host_status = check_host_in_hostfile(_PATH_SSH_SYSTEM_HOSTFILE, canonical_hostname, |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 65 | client_key, found, NULL); |
Damien Miller | 33e511e | 1999-11-11 11:43:13 +1100 | [diff] [blame] | 66 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 67 | /* Check user host file unless ignored. */ |
| 68 | if (host_status != HOST_OK && !options.ignore_user_known_hosts) { |
| 69 | struct stat st; |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 70 | char *user_hostfile = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid); |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 71 | /* |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 72 | * Check file permissions of _PATH_SSH_USER_HOSTFILE, auth_rsa() |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 73 | * did already check pw->pw_dir, but there is a race XXX |
| 74 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 75 | if (options.strict_modes && |
| 76 | (stat(user_hostfile, &st) == 0) && |
| 77 | ((st.st_uid != 0 && st.st_uid != pw->pw_uid) || |
| 78 | (st.st_mode & 022) != 0)) { |
| 79 | log("Rhosts RSA authentication refused for %.100s: bad owner or modes for %.200s", |
| 80 | pw->pw_name, user_hostfile); |
| 81 | } else { |
| 82 | /* XXX race between stat and the following open() */ |
| 83 | temporarily_use_uid(pw->pw_uid); |
| 84 | host_status = check_host_in_hostfile(user_hostfile, canonical_hostname, |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 85 | client_key, found, NULL); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 86 | restore_uid(); |
| 87 | } |
| 88 | xfree(user_hostfile); |
| 89 | } |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 90 | key_free(client_key); |
| 91 | key_free(found); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 92 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 93 | if (host_status != HOST_OK) { |
| 94 | debug("Rhosts with RSA host authentication denied: unknown or invalid host key"); |
| 95 | packet_send_debug("Your host key cannot be verified: unknown or invalid host key."); |
| 96 | return 0; |
| 97 | } |
| 98 | /* A matching host key was found and is known. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 99 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 100 | /* Perform the challenge-response dialog with the client for the host key. */ |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 101 | if (!auth_rsa_challenge_dialog(client_host_key)) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 102 | log("Client on %.800s failed to respond correctly to host authentication.", |
| 103 | canonical_hostname); |
| 104 | return 0; |
| 105 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 106 | /* |
| 107 | * We have authenticated the user using .rhosts or /etc/hosts.equiv, |
| 108 | * and the host using RSA. We accept the authentication. |
| 109 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 110 | |
| 111 | verbose("Rhosts with RSA host authentication accepted for %.100s, %.100s on %.700s.", |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 112 | pw->pw_name, client_user, canonical_hostname); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 113 | packet_send_debug("Rhosts with RSA host authentication accepted."); |
| 114 | return 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 115 | } |