Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 1 | /* $OpenBSD: auth-rh-rsa.c,v 1.44 2014/07/15 15:54:14 millert Exp $ */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 2 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 5 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 6 | * Rhosts or /etc/hosts.equiv authentication combined with RSA host |
| 7 | * authentication. |
| 8 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 9 | * As far as I am concerned, the code I have written for this software |
| 10 | * can be used freely for any purpose. Any derived versions of this |
| 11 | * software must be clearly marked as such, and if the derived work is |
| 12 | * incompatible with the protocol description in the RFC file, it must be |
| 13 | * called by a name other than "ssh" or "Secure Shell". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 14 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #include "includes.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 17 | |
Damien Miller | 76c0480 | 2015-01-13 19:38:18 +1100 | [diff] [blame] | 18 | #ifdef WITH_SSH1 |
| 19 | |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 20 | #include <sys/types.h> |
| 21 | |
| 22 | #include <pwd.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 23 | #include <stdarg.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 24 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 25 | #include "packet.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 26 | #include "uidswap.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 27 | #include "log.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 28 | #include "buffer.h" |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 29 | #include "misc.h" |
Damien Miller | 3226509 | 1999-11-12 11:33:04 +1100 | [diff] [blame] | 30 | #include "servconf.h" |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 31 | #include "key.h" |
| 32 | #include "hostfile.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 33 | #include "pathnames.h" |
| 34 | #include "auth.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 35 | #include "canohost.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 36 | #ifdef GSSAPI |
| 37 | #include "ssh-gss.h" |
| 38 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 39 | #include "monitor_wrap.h" |
| 40 | |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 41 | /* import */ |
| 42 | extern ServerOptions options; |
| 43 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 44 | int |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 45 | auth_rhosts_rsa_key_allowed(struct passwd *pw, char *cuser, char *chost, |
| 46 | Key *client_host_key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 47 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 48 | HostStatus host_status; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 49 | |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 50 | if (auth_key_is_revoked(client_host_key)) |
| 51 | return 0; |
| 52 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 53 | /* Check if we would accept it using rhosts authentication. */ |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 54 | if (!auth_rhosts(pw, cuser)) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 55 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 56 | |
Damien Miller | d221ca6 | 2002-01-22 23:11:00 +1100 | [diff] [blame] | 57 | host_status = check_key_in_hostfiles(pw, client_host_key, |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 58 | chost, _PATH_SSH_SYSTEM_HOSTFILE, |
Ben Lindstrom | a4789ef | 2001-06-25 04:40:49 +0000 | [diff] [blame] | 59 | options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE); |
Damien Miller | 33e511e | 1999-11-11 11:43:13 +1100 | [diff] [blame] | 60 | |
Ben Lindstrom | 6328ab3 | 2002-03-22 02:54:23 +0000 | [diff] [blame] | 61 | return (host_status == HOST_OK); |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | /* |
| 65 | * Tries to authenticate the user using the .rhosts file and the host using |
| 66 | * its host key. Returns true if authentication succeeds. |
| 67 | */ |
| 68 | int |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 69 | auth_rhosts_rsa(Authctxt *authctxt, char *cuser, Key *client_host_key) |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 70 | { |
| 71 | char *chost; |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 72 | struct passwd *pw = authctxt->pw; |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 73 | |
| 74 | debug("Trying rhosts with RSA host authentication for client user %.100s", |
| 75 | cuser); |
| 76 | |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 77 | if (!authctxt->valid || client_host_key == NULL || |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 78 | client_host_key->rsa == NULL) |
| 79 | return 0; |
| 80 | |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 81 | chost = (char *)get_canonical_hostname(options.use_dns); |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 82 | debug("Rhosts RSA authentication: canonical host %.900s", chost); |
| 83 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 84 | 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] | 85 | debug("Rhosts with RSA host authentication denied: unknown or invalid host key"); |
| 86 | packet_send_debug("Your host key cannot be verified: unknown or invalid host key."); |
| 87 | return 0; |
| 88 | } |
| 89 | /* A matching host key was found and is known. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 90 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 91 | /* Perform the challenge-response dialog with the client for the host key. */ |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 92 | if (!auth_rsa_challenge_dialog(client_host_key)) { |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 93 | logit("Client on %.800s failed to respond correctly to host authentication.", |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 94 | chost); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 95 | return 0; |
| 96 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 97 | /* |
| 98 | * We have authenticated the user using .rhosts or /etc/hosts.equiv, |
| 99 | * and the host using RSA. We accept the authentication. |
| 100 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 101 | |
| 102 | verbose("Rhosts with RSA host authentication accepted for %.100s, %.100s on %.700s.", |
Damien Miller | 0dc1bef | 2005-07-17 17:22:45 +1000 | [diff] [blame] | 103 | pw->pw_name, cuser, chost); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 104 | packet_send_debug("Rhosts with RSA host authentication accepted."); |
| 105 | return 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 106 | } |
Damien Miller | 76c0480 | 2015-01-13 19:38:18 +1100 | [diff] [blame] | 107 | |
| 108 | #endif /* WITH_SSH1 */ |