Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 1 | /* $OpenBSD: auth-rsa.c,v 1.71 2006/08/03 03:34:41 deraadt 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 | * RSA-based authentication. This code determines whether to admit a login |
| 7 | * based on RSA authentication. This file also contains functions to check |
| 8 | * validity of the host key. |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 9 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 10 | * As far as I am concerned, the code I have written for this software |
| 11 | * can be used freely for any purpose. Any derived versions of this |
| 12 | * software must be clearly marked as such, and if the derived work is |
| 13 | * incompatible with the protocol description in the RFC file, it must be |
| 14 | * called by a name other than "ssh" or "Secure Shell". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 15 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 16 | |
| 17 | #include "includes.h" |
Damien Miller | f17883e | 2006-03-15 11:45:54 +1100 | [diff] [blame] | 18 | |
| 19 | #include <sys/types.h> |
| 20 | #include <sys/stat.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 21 | |
| 22 | #include <openssl/rsa.h> |
| 23 | #include <openssl/md5.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 24 | |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 25 | #include <pwd.h> |
Damien Miller | a7a73ee | 2006-08-05 11:37:59 +1000 | [diff] [blame] | 26 | #include <stdio.h> |
Damien Miller | ded319c | 2006-09-01 15:38:36 +1000 | [diff] [blame] | 27 | #include <stdarg.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 28 | #include <string.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 29 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 30 | #include "xmalloc.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 31 | #include "rsa.h" |
| 32 | #include "packet.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 33 | #include "ssh1.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 34 | #include "uidswap.h" |
| 35 | #include "match.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 36 | #include "buffer.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 37 | #include "auth-options.h" |
| 38 | #include "pathnames.h" |
| 39 | #include "log.h" |
| 40 | #include "servconf.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 41 | #include "key.h" |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 42 | #include "hostfile.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 43 | #include "auth.h" |
| 44 | #ifdef GSSAPI |
| 45 | #include "ssh-gss.h" |
| 46 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 47 | #include "monitor_wrap.h" |
Ben Lindstrom | 03f3932 | 2002-04-02 20:43:11 +0000 | [diff] [blame] | 48 | #include "ssh.h" |
Darren Tucker | f0f9098 | 2004-12-11 13:39:50 +1100 | [diff] [blame] | 49 | #include "misc.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 50 | |
| 51 | /* import */ |
| 52 | extern ServerOptions options; |
| 53 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 54 | /* |
| 55 | * Session identifier that is used to bind key exchange and authentication |
| 56 | * responses to a particular session. |
| 57 | */ |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 58 | extern u_char session_id[16]; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 59 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 60 | /* |
| 61 | * The .ssh/authorized_keys file contains public keys, one per line, in the |
| 62 | * following format: |
| 63 | * options bits e n comment |
| 64 | * where bits, e and n are decimal numbers, |
| 65 | * and comment is any string of characters up to newline. The maximum |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 66 | * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 67 | * description of the options. |
| 68 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 69 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 70 | BIGNUM * |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 71 | auth_rsa_generate_challenge(Key *key) |
| 72 | { |
| 73 | BIGNUM *challenge; |
| 74 | BN_CTX *ctx; |
| 75 | |
| 76 | if ((challenge = BN_new()) == NULL) |
| 77 | fatal("auth_rsa_generate_challenge: BN_new() failed"); |
| 78 | /* Generate a random challenge. */ |
| 79 | BN_rand(challenge, 256, 0, 0); |
| 80 | if ((ctx = BN_CTX_new()) == NULL) |
| 81 | fatal("auth_rsa_generate_challenge: BN_CTX_new() failed"); |
| 82 | BN_mod(challenge, challenge, key->rsa->n, ctx); |
| 83 | BN_CTX_free(ctx); |
| 84 | |
| 85 | return challenge; |
| 86 | } |
| 87 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 88 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 89 | auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16]) |
| 90 | { |
| 91 | u_char buf[32], mdbuf[16]; |
| 92 | MD5_CTX md; |
| 93 | int len; |
| 94 | |
Ben Lindstrom | e1f9e32 | 2002-03-27 17:38:43 +0000 | [diff] [blame] | 95 | /* don't allow short keys */ |
Ben Lindstrom | 03f3932 | 2002-04-02 20:43:11 +0000 | [diff] [blame] | 96 | if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) { |
Ben Lindstrom | 2779d28 | 2002-06-11 15:47:42 +0000 | [diff] [blame] | 97 | error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits", |
| 98 | BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE); |
Ben Lindstrom | e1f9e32 | 2002-03-27 17:38:43 +0000 | [diff] [blame] | 99 | return (0); |
| 100 | } |
| 101 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 102 | /* The response is MD5 of decrypted challenge plus session id. */ |
| 103 | len = BN_num_bytes(challenge); |
| 104 | if (len <= 0 || len > 32) |
| 105 | fatal("auth_rsa_verify_response: bad challenge length %d", len); |
| 106 | memset(buf, 0, 32); |
| 107 | BN_bn2bin(challenge, buf + 32 - len); |
| 108 | MD5_Init(&md); |
| 109 | MD5_Update(&md, buf, 32); |
| 110 | MD5_Update(&md, session_id, 16); |
| 111 | MD5_Final(mdbuf, &md); |
| 112 | |
| 113 | /* Verify that the response is the original challenge. */ |
| 114 | if (memcmp(response, mdbuf, 16) != 0) { |
| 115 | /* Wrong answer. */ |
| 116 | return (0); |
| 117 | } |
| 118 | /* Correct answer. */ |
| 119 | return (1); |
| 120 | } |
| 121 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 122 | /* |
| 123 | * Performs the RSA authentication challenge-response dialog with the client, |
| 124 | * and returns true (non-zero) if the client gave the correct answer to |
| 125 | * our challenge; returns zero if the client gives a wrong answer. |
| 126 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 127 | |
| 128 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 129 | auth_rsa_challenge_dialog(Key *key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 130 | { |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 131 | BIGNUM *challenge, *encrypted_challenge; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 132 | u_char response[16]; |
| 133 | int i, success; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 134 | |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 135 | if ((encrypted_challenge = BN_new()) == NULL) |
| 136 | fatal("auth_rsa_challenge_dialog: BN_new() failed"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 137 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 138 | challenge = PRIVSEP(auth_rsa_generate_challenge(key)); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 139 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 140 | /* Encrypt the challenge with the public key. */ |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 141 | rsa_public_encrypt(encrypted_challenge, challenge, key->rsa); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 142 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 143 | /* Send the encrypted challenge to the client. */ |
| 144 | packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE); |
| 145 | packet_put_bignum(encrypted_challenge); |
| 146 | packet_send(); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 147 | BN_clear_free(encrypted_challenge); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 148 | packet_write_wait(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 149 | |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 150 | /* Wait for a response. */ |
Damien Miller | dff5099 | 2002-01-22 23:16:32 +1100 | [diff] [blame] | 151 | packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 152 | for (i = 0; i < 16; i++) |
Damien Miller | 8ba29fe | 2006-03-26 14:25:19 +1100 | [diff] [blame] | 153 | response[i] = (u_char)packet_get_char(); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 154 | packet_check_eom(); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 155 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 156 | success = PRIVSEP(auth_rsa_verify_response(key, challenge, response)); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 157 | BN_clear_free(challenge); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 158 | return (success); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 159 | } |
| 160 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 161 | /* |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 162 | * check if there's user key matching client_n, |
| 163 | * return key if login is allowed, NULL otherwise |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 164 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 165 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 166 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 167 | auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 168 | { |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 169 | char line[SSH_MAX_PUBKEY_BYTES], *file; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 170 | int allowed = 0; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 171 | u_int bits; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 172 | FILE *f; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 173 | u_long linenum = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 174 | struct stat st; |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 175 | Key *key; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 176 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 177 | /* Temporarily use the user's uid. */ |
Ben Lindstrom | 3fcf1a2 | 2001-04-08 18:26:59 +0000 | [diff] [blame] | 178 | temporarily_use_uid(pw); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 179 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 180 | /* The authorized keys. */ |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 181 | file = authorized_keys_file(pw); |
| 182 | debug("trying public RSA key file %s", file); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 183 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 184 | /* Fail quietly if file does not exist */ |
| 185 | if (stat(file, &st) < 0) { |
| 186 | /* Restore the privileged uid. */ |
| 187 | restore_uid(); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 188 | xfree(file); |
Ben Lindstrom | f6d367b | 2002-03-26 02:59:31 +0000 | [diff] [blame] | 189 | return (0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 190 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 191 | /* Open the file containing the authorized keys. */ |
| 192 | f = fopen(file, "r"); |
| 193 | if (!f) { |
| 194 | /* Restore the privileged uid. */ |
| 195 | restore_uid(); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 196 | xfree(file); |
Ben Lindstrom | f6d367b | 2002-03-26 02:59:31 +0000 | [diff] [blame] | 197 | return (0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 198 | } |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 199 | if (options.strict_modes && |
Ben Lindstrom | 248c078 | 2001-07-04 03:40:39 +0000 | [diff] [blame] | 200 | secure_filename(f, file, pw, line, sizeof(line)) != 0) { |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 201 | xfree(file); |
| 202 | fclose(f); |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 203 | logit("Authentication refused: %s", line); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 204 | restore_uid(); |
Ben Lindstrom | f6d367b | 2002-03-26 02:59:31 +0000 | [diff] [blame] | 205 | return (0); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 206 | } |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 207 | |
| 208 | /* Flag indicating whether the key is allowed. */ |
| 209 | allowed = 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 210 | |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 211 | key = key_new(KEY_RSA1); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 212 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 213 | /* |
| 214 | * Go though the accepted keys, looking for the current key. If |
| 215 | * found, perform a challenge-response dialog to verify that the |
| 216 | * user really has the corresponding private key. |
| 217 | */ |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 218 | while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 219 | char *cp; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 220 | char *key_options; |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 221 | int keybits; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 222 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 223 | /* Skip leading whitespace, empty and comment lines. */ |
| 224 | for (cp = line; *cp == ' ' || *cp == '\t'; cp++) |
| 225 | ; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 226 | if (!*cp || *cp == '\n' || *cp == '#') |
| 227 | continue; |
| 228 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 229 | /* |
| 230 | * Check if there are options for this key, and if so, |
| 231 | * save their starting address and skip the option part |
| 232 | * for now. If there are no options, set the starting |
| 233 | * address to NULL. |
| 234 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 235 | if (*cp < '0' || *cp > '9') { |
| 236 | int quoted = 0; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 237 | key_options = cp; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 238 | for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { |
| 239 | if (*cp == '\\' && cp[1] == '"') |
| 240 | cp++; /* Skip both */ |
| 241 | else if (*cp == '"') |
| 242 | quoted = !quoted; |
| 243 | } |
| 244 | } else |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 245 | key_options = NULL; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 246 | |
| 247 | /* Parse the key from the line. */ |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 248 | if (hostfile_read_key(&cp, &bits, key) == 0) { |
Ben Lindstrom | f96704d | 2001-06-25 04:17:12 +0000 | [diff] [blame] | 249 | debug("%.100s, line %lu: non ssh1 key syntax", |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 250 | file, linenum); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 251 | continue; |
| 252 | } |
| 253 | /* cp now points to the comment part. */ |
| 254 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 255 | /* Check if the we have found the desired key (identified by its modulus). */ |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 256 | if (BN_cmp(key->rsa->n, client_n) != 0) |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 257 | continue; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 258 | |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 259 | /* check the real bits */ |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 260 | keybits = BN_num_bits(key->rsa->n); |
| 261 | if (keybits < 0 || bits != (u_int)keybits) |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 262 | logit("Warning: %s, line %lu: keysize mismatch: " |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 263 | "actual %d vs. announced %d.", |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 264 | file, linenum, BN_num_bits(key->rsa->n), bits); |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 265 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 266 | /* We have found the desired key. */ |
Ben Lindstrom | 1492029 | 2000-11-21 21:24:55 +0000 | [diff] [blame] | 267 | /* |
| 268 | * If our options do not allow this key to be used, |
| 269 | * do not send challenge. |
| 270 | */ |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 271 | if (!auth_parse_options(pw, key_options, file, linenum)) |
Ben Lindstrom | 1492029 | 2000-11-21 21:24:55 +0000 | [diff] [blame] | 272 | continue; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 273 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 274 | /* break out, this key is allowed */ |
| 275 | allowed = 1; |
Damien Miller | 50a41ed | 2000-10-16 12:14:42 +1100 | [diff] [blame] | 276 | break; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 277 | } |
| 278 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 279 | /* Restore the privileged uid. */ |
| 280 | restore_uid(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 281 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 282 | /* Close the file. */ |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 283 | xfree(file); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 284 | fclose(f); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 285 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 286 | /* return key if allowed */ |
| 287 | if (allowed && rkey != NULL) |
| 288 | *rkey = key; |
| 289 | else |
| 290 | key_free(key); |
| 291 | return (allowed); |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Performs the RSA authentication dialog with the client. This returns |
| 296 | * 0 if the client could not be authenticated, and 1 if authentication was |
| 297 | * successful. This may exit if there is a serious protocol violation. |
| 298 | */ |
| 299 | int |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 300 | auth_rsa(Authctxt *authctxt, BIGNUM *client_n) |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 301 | { |
| 302 | Key *key; |
| 303 | char *fp; |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 304 | struct passwd *pw = authctxt->pw; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 305 | |
| 306 | /* no user given */ |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 307 | if (!authctxt->valid) |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 308 | return 0; |
| 309 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 310 | if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) { |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 311 | auth_clear_options(); |
| 312 | return (0); |
| 313 | } |
| 314 | |
| 315 | /* Perform the challenge-response dialog for this key. */ |
| 316 | if (!auth_rsa_challenge_dialog(key)) { |
| 317 | /* Wrong response. */ |
| 318 | verbose("Wrong response to RSA authentication challenge."); |
| 319 | packet_send_debug("Wrong response to RSA authentication challenge."); |
| 320 | /* |
| 321 | * Break out of the loop. Otherwise we might send |
| 322 | * another challenge and break the protocol. |
| 323 | */ |
| 324 | key_free(key); |
| 325 | return (0); |
| 326 | } |
| 327 | /* |
| 328 | * Correct response. The client has been successfully |
| 329 | * authenticated. Note that we have not yet processed the |
| 330 | * options; this will be reset if the options cause the |
| 331 | * authentication to be rejected. |
| 332 | */ |
| 333 | fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX); |
| 334 | verbose("Found matching %s key: %s", |
| 335 | key_type(key), fp); |
| 336 | xfree(fp); |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 337 | key_free(key); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 338 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 339 | packet_send_debug("RSA authentication accepted."); |
| 340 | return (1); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 341 | } |