blob: 29eb538ec92cc395323212a07aa10c18256c7a8e [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Rhosts or /etc/hosts.equiv authentication combined with RSA host
6 * authentication.
7 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * 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 Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Miller3e3b5142003-11-17 21:13:40 +110016RCSID("$OpenBSD: auth-rh-rsa.c,v 1.37 2003/11/04 08:54:09 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000020#include "log.h"
Damien Miller32265091999-11-12 11:33:04 +110021#include "servconf.h"
Damien Miller450a7a12000-03-26 13:04:51 +100022#include "key.h"
23#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024#include "pathnames.h"
25#include "auth.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000026#include "canohost.h"
Damien Miller450a7a12000-03-26 13:04:51 +100027
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000028#include "monitor_wrap.h"
29
Ben Lindstrom186b7da2002-03-22 01:20:32 +000030/* import */
31extern ServerOptions options;
32
Damien Miller4af51302000-04-16 11:18:38 +100033int
Ben Lindstrom186b7da2002-03-22 01:20:32 +000034auth_rhosts_rsa_key_allowed(struct passwd *pw, char *cuser, char *chost,
35 Key *client_host_key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036{
Damien Miller95def091999-11-25 00:26:21 +110037 HostStatus host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
Damien Miller95def091999-11-25 00:26:21 +110039 /* Check if we would accept it using rhosts authentication. */
Ben Lindstrom186b7da2002-03-22 01:20:32 +000040 if (!auth_rhosts(pw, cuser))
Damien Miller95def091999-11-25 00:26:21 +110041 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
Damien Millerd221ca62002-01-22 23:11:00 +110043 host_status = check_key_in_hostfiles(pw, client_host_key,
Ben Lindstrom186b7da2002-03-22 01:20:32 +000044 chost, _PATH_SSH_SYSTEM_HOSTFILE,
Ben Lindstroma4789ef2001-06-25 04:40:49 +000045 options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
Damien Miller33e511e1999-11-11 11:43:13 +110046
Ben Lindstrom6328ab32002-03-22 02:54:23 +000047 return (host_status == HOST_OK);
Ben Lindstrom186b7da2002-03-22 01:20:32 +000048}
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 */
54int
Damien Miller3e3b5142003-11-17 21:13:40 +110055auth_rhosts_rsa(Authctxt *authctxt, char *cuser, Key *client_host_key)
Ben Lindstrom186b7da2002-03-22 01:20:32 +000056{
57 char *chost;
Damien Miller3e3b5142003-11-17 21:13:40 +110058 struct passwd *pw = authctxt->pw;
Ben Lindstrom186b7da2002-03-22 01:20:32 +000059
60 debug("Trying rhosts with RSA host authentication for client user %.100s",
61 cuser);
62
Damien Miller3e3b5142003-11-17 21:13:40 +110063 if (!authctxt->valid || client_host_key == NULL ||
Ben Lindstrom186b7da2002-03-22 01:20:32 +000064 client_host_key->rsa == NULL)
65 return 0;
66
Damien Miller3a961dc2003-06-03 10:25:48 +100067 chost = (char *)get_canonical_hostname(options.use_dns);
Ben Lindstrom186b7da2002-03-22 01:20:32 +000068 debug("Rhosts RSA authentication: canonical host %.900s", chost);
69
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070 if (!PRIVSEP(auth_rhosts_rsa_key_allowed(pw, cuser, chost, client_host_key))) {
Damien Miller95def091999-11-25 00:26:21 +110071 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 Millerd4a8b7e1999-10-27 13:42:43 +100076
Damien Miller95def091999-11-25 00:26:21 +110077 /* Perform the challenge-response dialog with the client for the host key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000078 if (!auth_rsa_challenge_dialog(client_host_key)) {
Damien Miller996acd22003-04-09 20:59:48 +100079 logit("Client on %.800s failed to respond correctly to host authentication.",
Ben Lindstrom186b7da2002-03-22 01:20:32 +000080 chost);
Damien Miller95def091999-11-25 00:26:21 +110081 return 0;
82 }
Damien Miller5428f641999-11-25 11:54:57 +110083 /*
84 * We have authenticated the user using .rhosts or /etc/hosts.equiv,
85 * and the host using RSA. We accept the authentication.
86 */
Damien Miller95def091999-11-25 00:26:21 +110087
88 verbose("Rhosts with RSA host authentication accepted for %.100s, %.100s on %.700s.",
Ben Lindstrom186b7da2002-03-22 01:20:32 +000089 pw->pw_name, cuser, chost);
Damien Miller95def091999-11-25 00:26:21 +110090 packet_send_debug("Rhosts with RSA host authentication accepted.");
91 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092}