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 | 0dc1bef | 2005-07-17 17:22:45 +1000 | [diff] [blame] | 16 | RCSID("$OpenBSD: auth-rh-rsa.c,v 1.38 2005/07/17 07:17:54 djm 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 "uidswap.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 20 | #include "log.h" |
Damien Miller | 3226509 | 1999-11-12 11:33:04 +1100 | [diff] [blame] | 21 | #include "servconf.h" |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 22 | #include "key.h" |
| 23 | #include "hostfile.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 24 | #include "pathnames.h" |
| 25 | #include "auth.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 26 | #include "canohost.h" |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 27 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 28 | #include "monitor_wrap.h" |
| 29 | |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 30 | /* import */ |
| 31 | extern ServerOptions options; |
| 32 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 33 | int |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 34 | auth_rhosts_rsa_key_allowed(struct passwd *pw, char *cuser, char *chost, |
| 35 | Key *client_host_key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 36 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 37 | HostStatus host_status; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 38 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 39 | /* Check if we would accept it using rhosts authentication. */ |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 40 | if (!auth_rhosts(pw, cuser)) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 41 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 42 | |
Damien Miller | d221ca6 | 2002-01-22 23:11:00 +1100 | [diff] [blame] | 43 | host_status = check_key_in_hostfiles(pw, client_host_key, |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 44 | chost, _PATH_SSH_SYSTEM_HOSTFILE, |
Ben Lindstrom | a4789ef | 2001-06-25 04:40:49 +0000 | [diff] [blame] | 45 | options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE); |
Damien Miller | 33e511e | 1999-11-11 11:43:13 +1100 | [diff] [blame] | 46 | |
Ben Lindstrom | 6328ab3 | 2002-03-22 02:54:23 +0000 | [diff] [blame] | 47 | return (host_status == HOST_OK); |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | /* |
| 51 | * Tries to authenticate the user using the .rhosts file and the host using |
| 52 | * its host key. Returns true if authentication succeeds. |
| 53 | */ |
| 54 | int |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 55 | auth_rhosts_rsa(Authctxt *authctxt, char *cuser, Key *client_host_key) |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 56 | { |
| 57 | char *chost; |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 58 | struct passwd *pw = authctxt->pw; |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 59 | |
| 60 | debug("Trying rhosts with RSA host authentication for client user %.100s", |
| 61 | cuser); |
| 62 | |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 63 | if (!authctxt->valid || client_host_key == NULL || |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 64 | client_host_key->rsa == NULL) |
| 65 | return 0; |
| 66 | |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 67 | chost = (char *)get_canonical_hostname(options.use_dns); |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 68 | debug("Rhosts RSA authentication: canonical host %.900s", chost); |
| 69 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 70 | if (!PRIVSEP(auth_rhosts_rsa_key_allowed(pw, cuser, chost, client_host_key))) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 71 | debug("Rhosts with RSA host authentication denied: unknown or invalid host key"); |
| 72 | packet_send_debug("Your host key cannot be verified: unknown or invalid host key."); |
| 73 | return 0; |
| 74 | } |
| 75 | /* A matching host key was found and is known. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 76 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 77 | /* Perform the challenge-response dialog with the client for the host key. */ |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 78 | if (!auth_rsa_challenge_dialog(client_host_key)) { |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 79 | logit("Client on %.800s failed to respond correctly to host authentication.", |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 80 | chost); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 81 | return 0; |
| 82 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 83 | /* |
| 84 | * We have authenticated the user using .rhosts or /etc/hosts.equiv, |
| 85 | * and the host using RSA. We accept the authentication. |
| 86 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 87 | |
| 88 | verbose("Rhosts with RSA host authentication accepted for %.100s, %.100s on %.700s.", |
Damien Miller | 0dc1bef | 2005-07-17 17:22:45 +1000 | [diff] [blame] | 89 | pw->pw_name, cuser, chost); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 90 | packet_send_debug("Rhosts with RSA host authentication accepted."); |
| 91 | return 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 92 | } |