2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * RSA-based authentication. This code determines whether to admit a login
6 * based on RSA authentication. This file also contains functions to check
7 * validity of the host key.
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".
17 RCSID("$OpenBSD: auth-rsa.c,v 1.63 2005/06/17 02:44:32 djm Exp $");
19 #include <openssl/rsa.h>
20 #include <openssl/md5.h>
28 #include "auth-options.h"
29 #include "pathnames.h"
34 #include "monitor_wrap.h"
39 extern ServerOptions options
;
42 * Session identifier that is used to bind key exchange and authentication
43 * responses to a particular session.
45 extern u_char session_id
[16];
48 * The .ssh/authorized_keys file contains public keys, one per line, in the
50 * options bits e n comment
51 * where bits, e and n are decimal numbers,
52 * and comment is any string of characters up to newline. The maximum
53 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
54 * description of the options.
58 auth_rsa_generate_challenge(Key
*key
)
63 if ((challenge
= BN_new()) == NULL
)
64 fatal("auth_rsa_generate_challenge: BN_new() failed");
65 /* Generate a random challenge. */
66 BN_rand(challenge
, 256, 0, 0);
67 if ((ctx
= BN_CTX_new()) == NULL
)
68 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
69 BN_mod(challenge
, challenge
, key
->rsa
->n
, ctx
);
76 auth_rsa_verify_response(Key
*key
, BIGNUM
*challenge
, u_char response
[16])
78 u_char buf
[32], mdbuf
[16];
82 /* don't allow short keys */
83 if (BN_num_bits(key
->rsa
->n
) < SSH_RSA_MINIMUM_MODULUS_SIZE
) {
84 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
85 BN_num_bits(key
->rsa
->n
), SSH_RSA_MINIMUM_MODULUS_SIZE
);
89 /* The response is MD5 of decrypted challenge plus session id. */
90 len
= BN_num_bytes(challenge
);
91 if (len
<= 0 || len
> 32)
92 fatal("auth_rsa_verify_response: bad challenge length %d", len
);
94 BN_bn2bin(challenge
, buf
+ 32 - len
);
96 MD5_Update(&md
, buf
, 32);
97 MD5_Update(&md
, session_id
, 16);
98 MD5_Final(mdbuf
, &md
);
100 /* Verify that the response is the original challenge. */
101 if (memcmp(response
, mdbuf
, 16) != 0) {
105 /* Correct answer. */
110 * Performs the RSA authentication challenge-response dialog with the client,
111 * and returns true (non-zero) if the client gave the correct answer to
112 * our challenge; returns zero if the client gives a wrong answer.
116 auth_rsa_challenge_dialog(Key
*key
)
118 BIGNUM
*challenge
, *encrypted_challenge
;
122 if ((encrypted_challenge
= BN_new()) == NULL
)
123 fatal("auth_rsa_challenge_dialog: BN_new() failed");
125 challenge
= PRIVSEP(auth_rsa_generate_challenge(key
));
127 /* Encrypt the challenge with the public key. */
128 rsa_public_encrypt(encrypted_challenge
, challenge
, key
->rsa
);
130 /* Send the encrypted challenge to the client. */
131 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE
);
132 packet_put_bignum(encrypted_challenge
);
134 BN_clear_free(encrypted_challenge
);
137 /* Wait for a response. */
138 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE
);
139 for (i
= 0; i
< 16; i
++)
140 response
[i
] = packet_get_char();
143 success
= PRIVSEP(auth_rsa_verify_response(key
, challenge
, response
));
144 BN_clear_free(challenge
);
149 * check if there's user key matching client_n,
150 * return key if login is allowed, NULL otherwise
154 auth_rsa_key_allowed(struct passwd
*pw
, BIGNUM
*client_n
, Key
**rkey
)
156 char line
[SSH_MAX_PUBKEY_BYTES
], *file
;
164 /* Temporarily use the user's uid. */
165 temporarily_use_uid(pw
);
167 /* The authorized keys. */
168 file
= authorized_keys_file(pw
);
169 debug("trying public RSA key file %s", file
);
171 /* Fail quietly if file does not exist */
172 if (stat(file
, &st
) < 0) {
173 /* Restore the privileged uid. */
178 /* Open the file containing the authorized keys. */
179 f
= fopen(file
, "r");
181 /* Restore the privileged uid. */
186 if (options
.strict_modes
&&
187 secure_filename(f
, file
, pw
, line
, sizeof(line
)) != 0) {
190 logit("Authentication refused: %s", line
);
195 /* Flag indicating whether the key is allowed. */
198 key
= key_new(KEY_RSA1
);
201 * Go though the accepted keys, looking for the current key. If
202 * found, perform a challenge-response dialog to verify that the
203 * user really has the corresponding private key.
205 while (read_keyfile_line(f
, file
, line
, sizeof(line
), &linenum
) != -1) {
210 /* Skip leading whitespace, empty and comment lines. */
211 for (cp
= line
; *cp
== ' ' || *cp
== '\t'; cp
++)
213 if (!*cp
|| *cp
== '\n' || *cp
== '#')
217 * Check if there are options for this key, and if so,
218 * save their starting address and skip the option part
219 * for now. If there are no options, set the starting
222 if (*cp
< '0' || *cp
> '9') {
225 for (; *cp
&& (quoted
|| (*cp
!= ' ' && *cp
!= '\t')); cp
++) {
226 if (*cp
== '\\' && cp
[1] == '"')
227 cp
++; /* Skip both */
234 /* Parse the key from the line. */
235 if (hostfile_read_key(&cp
, &bits
, key
) == 0) {
236 debug("%.100s, line %lu: non ssh1 key syntax",
240 /* cp now points to the comment part. */
242 /* Check if the we have found the desired key (identified by its modulus). */
243 if (BN_cmp(key
->rsa
->n
, client_n
) != 0)
246 /* check the real bits */
247 keybits
= BN_num_bits(key
->rsa
->n
);
248 if (keybits
< 0 || bits
!= (u_int
)keybits
)
249 logit("Warning: %s, line %lu: keysize mismatch: "
250 "actual %d vs. announced %d.",
251 file
, linenum
, BN_num_bits(key
->rsa
->n
), bits
);
253 /* We have found the desired key. */
255 * If our options do not allow this key to be used,
256 * do not send challenge.
258 if (!auth_parse_options(pw
, key_options
, file
, linenum
))
261 /* break out, this key is allowed */
266 /* Restore the privileged uid. */
269 /* Close the file. */
273 /* return key if allowed */
274 if (allowed
&& rkey
!= NULL
)
282 * Performs the RSA authentication dialog with the client. This returns
283 * 0 if the client could not be authenticated, and 1 if authentication was
284 * successful. This may exit if there is a serious protocol violation.
287 auth_rsa(Authctxt
*authctxt
, BIGNUM
*client_n
)
291 struct passwd
*pw
= authctxt
->pw
;
294 if (!authctxt
->valid
)
297 if (!PRIVSEP(auth_rsa_key_allowed(pw
, client_n
, &key
))) {
298 auth_clear_options();
302 /* Perform the challenge-response dialog for this key. */
303 if (!auth_rsa_challenge_dialog(key
)) {
304 /* Wrong response. */
305 verbose("Wrong response to RSA authentication challenge.");
306 packet_send_debug("Wrong response to RSA authentication challenge.");
308 * Break out of the loop. Otherwise we might send
309 * another challenge and break the protocol.
315 * Correct response. The client has been successfully
316 * authenticated. Note that we have not yet processed the
317 * options; this will be reset if the options cause the
318 * authentication to be rejected.
320 fp
= key_fingerprint(key
, SSH_FP_MD5
, SSH_FP_HEX
);
321 verbose("Found matching %s key: %s",
326 packet_send_debug("RSA authentication accepted.");