2010-03-04 11:53:35 +01:00
|
|
|
/* $OpenBSD: auth-rsa.c,v 1.74 2010/03/04 10:36:03 djm Exp $ */
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* RSA-based authentication. This code determines whether to admit a login
|
|
|
|
* based on RSA authentication. This file also contains functions to check
|
|
|
|
* validity of the host key.
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02: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".
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
2006-03-15 01:45:54 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2001-01-22 06:34:40 +01:00
|
|
|
|
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/md5.h>
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2006-07-10 12:53:08 +02:00
|
|
|
#include <pwd.h>
|
2006-08-05 03:37:59 +02:00
|
|
|
#include <stdio.h>
|
2006-09-01 07:38:36 +02:00
|
|
|
#include <stdarg.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-07-10 12:53:08 +02:00
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "xmalloc.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "rsa.h"
|
|
|
|
#include "packet.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "ssh1.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "uidswap.h"
|
2000-03-26 05:04:51 +02:00
|
|
|
#include "match.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "buffer.h"
|
2000-06-18 06:50:44 +02:00
|
|
|
#include "auth-options.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "pathnames.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "servconf.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "key.h"
|
2001-12-21 02:52:39 +01:00
|
|
|
#include "hostfile.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "auth.h"
|
|
|
|
#ifdef GSSAPI
|
|
|
|
#include "ssh-gss.h"
|
|
|
|
#endif
|
2002-03-22 03:30:41 +01:00
|
|
|
#include "monitor_wrap.h"
|
2002-04-02 22:43:11 +02:00
|
|
|
#include "ssh.h"
|
2004-12-11 03:39:50 +01:00
|
|
|
#include "misc.h"
|
2000-10-14 07:23:11 +02:00
|
|
|
|
|
|
|
/* import */
|
|
|
|
extern ServerOptions options;
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Session identifier that is used to bind key exchange and authentication
|
|
|
|
* responses to a particular session.
|
|
|
|
*/
|
2000-12-22 02:43:59 +01:00
|
|
|
extern u_char session_id[16];
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* The .ssh/authorized_keys file contains public keys, one per line, in the
|
|
|
|
* following format:
|
|
|
|
* options bits e n comment
|
|
|
|
* where bits, e and n are decimal numbers,
|
|
|
|
* and comment is any string of characters up to newline. The maximum
|
2004-12-06 12:47:41 +01:00
|
|
|
* length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
|
1999-11-25 01:54:57 +01:00
|
|
|
* description of the options.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
BIGNUM *
|
2002-03-22 02:12:58 +01:00
|
|
|
auth_rsa_generate_challenge(Key *key)
|
|
|
|
{
|
|
|
|
BIGNUM *challenge;
|
|
|
|
BN_CTX *ctx;
|
|
|
|
|
|
|
|
if ((challenge = BN_new()) == NULL)
|
|
|
|
fatal("auth_rsa_generate_challenge: BN_new() failed");
|
|
|
|
/* Generate a random challenge. */
|
2006-11-07 13:14:41 +01:00
|
|
|
if (BN_rand(challenge, 256, 0, 0) == 0)
|
|
|
|
fatal("auth_rsa_generate_challenge: BN_rand failed");
|
2002-03-22 02:12:58 +01:00
|
|
|
if ((ctx = BN_CTX_new()) == NULL)
|
2006-11-07 13:14:41 +01:00
|
|
|
fatal("auth_rsa_generate_challenge: BN_CTX_new failed");
|
|
|
|
if (BN_mod(challenge, challenge, key->rsa->n, ctx) == 0)
|
|
|
|
fatal("auth_rsa_generate_challenge: BN_mod failed");
|
2002-03-22 02:12:58 +01:00
|
|
|
BN_CTX_free(ctx);
|
|
|
|
|
|
|
|
return challenge;
|
|
|
|
}
|
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
int
|
2002-03-22 02:12:58 +01:00
|
|
|
auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
|
|
|
|
{
|
|
|
|
u_char buf[32], mdbuf[16];
|
|
|
|
MD5_CTX md;
|
|
|
|
int len;
|
|
|
|
|
2010-03-04 11:53:35 +01:00
|
|
|
if (auth_key_is_revoked(key))
|
|
|
|
return 0;
|
|
|
|
|
2002-03-27 18:38:43 +01:00
|
|
|
/* don't allow short keys */
|
2002-04-02 22:43:11 +02:00
|
|
|
if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
|
2002-06-11 17:47:42 +02:00
|
|
|
error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
|
|
|
|
BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
|
2002-03-27 18:38:43 +01:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2002-03-22 02:12:58 +01:00
|
|
|
/* The response is MD5 of decrypted challenge plus session id. */
|
|
|
|
len = BN_num_bytes(challenge);
|
|
|
|
if (len <= 0 || len > 32)
|
|
|
|
fatal("auth_rsa_verify_response: bad challenge length %d", len);
|
|
|
|
memset(buf, 0, 32);
|
|
|
|
BN_bn2bin(challenge, buf + 32 - len);
|
|
|
|
MD5_Init(&md);
|
|
|
|
MD5_Update(&md, buf, 32);
|
|
|
|
MD5_Update(&md, session_id, 16);
|
|
|
|
MD5_Final(mdbuf, &md);
|
|
|
|
|
|
|
|
/* Verify that the response is the original challenge. */
|
|
|
|
if (memcmp(response, mdbuf, 16) != 0) {
|
|
|
|
/* Wrong answer. */
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
/* Correct answer. */
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Performs the RSA authentication challenge-response dialog with the client,
|
|
|
|
* and returns true (non-zero) if the client gave the correct answer to
|
|
|
|
* our challenge; returns zero if the client gives a wrong answer.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
int
|
2002-03-22 02:12:58 +01:00
|
|
|
auth_rsa_challenge_dialog(Key *key)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
- 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 11:27:49 +01:00
|
|
|
BIGNUM *challenge, *encrypted_challenge;
|
2002-03-22 02:12:58 +01:00
|
|
|
u_char response[16];
|
|
|
|
int i, success;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2002-01-22 13:09:22 +01:00
|
|
|
if ((encrypted_challenge = BN_new()) == NULL)
|
|
|
|
fatal("auth_rsa_challenge_dialog: BN_new() failed");
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
challenge = PRIVSEP(auth_rsa_generate_challenge(key));
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Encrypt the challenge with the public key. */
|
2002-03-22 02:12:58 +01:00
|
|
|
rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Send the encrypted challenge to the client. */
|
|
|
|
packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
|
|
|
|
packet_put_bignum(encrypted_challenge);
|
|
|
|
packet_send();
|
- 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 11:27:49 +01:00
|
|
|
BN_clear_free(encrypted_challenge);
|
1999-11-24 14:26:21 +01:00
|
|
|
packet_write_wait();
|
|
|
|
|
- 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 11:27:49 +01:00
|
|
|
/* Wait for a response. */
|
2002-01-22 13:16:32 +01:00
|
|
|
packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
|
- 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 11:27:49 +01:00
|
|
|
for (i = 0; i < 16; i++)
|
2006-03-26 05:25:19 +02:00
|
|
|
response[i] = (u_char)packet_get_char();
|
2002-01-22 13:11:40 +01:00
|
|
|
packet_check_eom();
|
- 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 11:27:49 +01:00
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
|
1999-11-24 14:26:21 +01:00
|
|
|
BN_clear_free(challenge);
|
2002-03-22 02:12:58 +01:00
|
|
|
return (success);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
2002-03-22 02:12:58 +01:00
|
|
|
* check if there's user key matching client_n,
|
|
|
|
* return key if login is allowed, NULL otherwise
|
1999-11-25 01:54:57 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
int
|
2002-03-22 02:12:58 +01:00
|
|
|
auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2004-12-06 12:47:41 +01:00
|
|
|
char line[SSH_MAX_PUBKEY_BYTES], *file;
|
2002-03-22 03:30:41 +01:00
|
|
|
int allowed = 0;
|
2000-12-22 02:43:59 +01:00
|
|
|
u_int bits;
|
1999-11-24 14:26:21 +01:00
|
|
|
FILE *f;
|
2000-12-22 02:43:59 +01:00
|
|
|
u_long linenum = 0;
|
2001-12-21 02:52:39 +01:00
|
|
|
Key *key;
|
2000-10-14 07:23:11 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Temporarily use the user's uid. */
|
2001-04-08 20:26:59 +02:00
|
|
|
temporarily_use_uid(pw);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* The authorized keys. */
|
2001-06-05 22:25:05 +02:00
|
|
|
file = authorized_keys_file(pw);
|
|
|
|
debug("trying public RSA key file %s", file);
|
2008-07-02 14:37:30 +02:00
|
|
|
f = auth_openkeyfile(file, pw, options.strict_modes);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (!f) {
|
2001-06-05 22:25:05 +02:00
|
|
|
xfree(file);
|
|
|
|
restore_uid();
|
2002-03-26 03:59:31 +01:00
|
|
|
return (0);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2002-03-22 02:12:58 +01:00
|
|
|
|
|
|
|
/* Flag indicating whether the key is allowed. */
|
|
|
|
allowed = 0;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-12-21 02:52:39 +01:00
|
|
|
key = key_new(KEY_RSA1);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Go though the accepted keys, looking for the current key. If
|
|
|
|
* found, perform a challenge-response dialog to verify that the
|
|
|
|
* user really has the corresponding private key.
|
|
|
|
*/
|
2004-12-06 12:47:41 +01:00
|
|
|
while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
|
1999-11-24 14:26:21 +01:00
|
|
|
char *cp;
|
2004-06-22 04:56:01 +02:00
|
|
|
char *key_options;
|
2005-06-17 04:59:34 +02:00
|
|
|
int keybits;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/* Skip leading whitespace, empty and comment lines. */
|
|
|
|
for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
|
|
|
|
;
|
1999-11-24 14:26:21 +01:00
|
|
|
if (!*cp || *cp == '\n' || *cp == '#')
|
|
|
|
continue;
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Check if there are options for this key, and if so,
|
|
|
|
* save their starting address and skip the option part
|
|
|
|
* for now. If there are no options, set the starting
|
|
|
|
* address to NULL.
|
|
|
|
*/
|
1999-11-24 14:26:21 +01:00
|
|
|
if (*cp < '0' || *cp > '9') {
|
|
|
|
int quoted = 0;
|
2004-06-22 04:56:01 +02:00
|
|
|
key_options = cp;
|
1999-11-24 14:26:21 +01:00
|
|
|
for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
|
|
|
|
if (*cp == '\\' && cp[1] == '"')
|
|
|
|
cp++; /* Skip both */
|
|
|
|
else if (*cp == '"')
|
|
|
|
quoted = !quoted;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
} else
|
2004-06-22 04:56:01 +02:00
|
|
|
key_options = NULL;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Parse the key from the line. */
|
2001-12-21 02:52:39 +01:00
|
|
|
if (hostfile_read_key(&cp, &bits, key) == 0) {
|
2001-06-25 06:17:12 +02:00
|
|
|
debug("%.100s, line %lu: non ssh1 key syntax",
|
2001-01-22 06:34:40 +01:00
|
|
|
file, linenum);
|
1999-11-24 14:26:21 +01:00
|
|
|
continue;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
/* cp now points to the comment part. */
|
|
|
|
|
|
|
|
/* Check if the we have found the desired key (identified by its modulus). */
|
2001-12-21 02:52:39 +01:00
|
|
|
if (BN_cmp(key->rsa->n, client_n) != 0)
|
1999-11-25 01:54:57 +01:00
|
|
|
continue;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-12-06 01:47:28 +01:00
|
|
|
/* check the real bits */
|
2005-06-17 04:59:34 +02:00
|
|
|
keybits = BN_num_bits(key->rsa->n);
|
|
|
|
if (keybits < 0 || bits != (u_int)keybits)
|
2003-04-09 12:59:48 +02:00
|
|
|
logit("Warning: %s, line %lu: keysize mismatch: "
|
1999-12-06 01:47:28 +01:00
|
|
|
"actual %d vs. announced %d.",
|
2001-12-21 02:52:39 +01:00
|
|
|
file, linenum, BN_num_bits(key->rsa->n), bits);
|
1999-12-06 01:47:28 +01:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* We have found the desired key. */
|
2000-11-21 22:24:55 +01:00
|
|
|
/*
|
|
|
|
* If our options do not allow this key to be used,
|
|
|
|
* do not send challenge.
|
|
|
|
*/
|
2004-06-22 04:56:01 +02:00
|
|
|
if (!auth_parse_options(pw, key_options, file, linenum))
|
2000-11-21 22:24:55 +01:00
|
|
|
continue;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2002-03-22 02:12:58 +01:00
|
|
|
/* break out, this key is allowed */
|
|
|
|
allowed = 1;
|
2000-10-16 03:14:42 +02:00
|
|
|
break;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Restore the privileged uid. */
|
|
|
|
restore_uid();
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Close the file. */
|
2001-06-05 22:25:05 +02:00
|
|
|
xfree(file);
|
1999-11-24 14:26:21 +01:00
|
|
|
fclose(f);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2002-03-22 02:12:58 +01:00
|
|
|
/* return key if allowed */
|
|
|
|
if (allowed && rkey != NULL)
|
|
|
|
*rkey = key;
|
2000-10-14 07:23:11 +02:00
|
|
|
else
|
2002-03-22 02:12:58 +01:00
|
|
|
key_free(key);
|
|
|
|
return (allowed);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Performs the RSA authentication dialog with the client. This returns
|
|
|
|
* 0 if the client could not be authenticated, and 1 if authentication was
|
|
|
|
* successful. This may exit if there is a serious protocol violation.
|
|
|
|
*/
|
|
|
|
int
|
2003-11-17 11:13:40 +01:00
|
|
|
auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
|
2002-03-22 02:12:58 +01:00
|
|
|
{
|
|
|
|
Key *key;
|
|
|
|
char *fp;
|
2003-11-17 11:13:40 +01:00
|
|
|
struct passwd *pw = authctxt->pw;
|
2002-03-22 02:12:58 +01:00
|
|
|
|
|
|
|
/* no user given */
|
2003-11-17 11:13:40 +01:00
|
|
|
if (!authctxt->valid)
|
2002-03-22 02:12:58 +01:00
|
|
|
return 0;
|
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
|
2000-10-14 07:23:11 +02:00
|
|
|
auth_clear_options();
|
2002-03-22 02:12:58 +01:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform the challenge-response dialog for this key. */
|
|
|
|
if (!auth_rsa_challenge_dialog(key)) {
|
|
|
|
/* Wrong response. */
|
|
|
|
verbose("Wrong response to RSA authentication challenge.");
|
|
|
|
packet_send_debug("Wrong response to RSA authentication challenge.");
|
|
|
|
/*
|
|
|
|
* Break out of the loop. Otherwise we might send
|
|
|
|
* another challenge and break the protocol.
|
|
|
|
*/
|
|
|
|
key_free(key);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Correct response. The client has been successfully
|
|
|
|
* authenticated. Note that we have not yet processed the
|
|
|
|
* options; this will be reset if the options cause the
|
|
|
|
* authentication to be rejected.
|
|
|
|
*/
|
|
|
|
fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
|
|
|
|
verbose("Found matching %s key: %s",
|
|
|
|
key_type(key), fp);
|
|
|
|
xfree(fp);
|
|
|
|
key_free(key);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2002-03-22 02:12:58 +01:00
|
|
|
packet_send_debug("RSA authentication accepted.");
|
|
|
|
return (1);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|