1 /* $OpenBSD: auth-rsa.c,v 1.71 2006/08/03 03:34:41 deraadt Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
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.
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".
19 #include <sys/types.h>
22 #include <openssl/rsa.h>
23 #include <openssl/md5.h>
37 #include "auth-options.h"
38 #include "pathnames.h"
47 #include "monitor_wrap.h"
52 extern ServerOptions options
;
55 * Session identifier that is used to bind key exchange and authentication
56 * responses to a particular session.
58 extern u_char session_id
[16];
61 * The .ssh/authorized_keys file contains public keys, one per line, in the
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
66 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
67 * description of the options.
71 auth_rsa_generate_challenge(Key
*key
)
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
);
89 auth_rsa_verify_response(Key
*key
, BIGNUM
*challenge
, u_char response
[16])
91 u_char buf
[32], mdbuf
[16];
95 /* don't allow short keys */
96 if (BN_num_bits(key
->rsa
->n
) < SSH_RSA_MINIMUM_MODULUS_SIZE
) {
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
);
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
);
107 BN_bn2bin(challenge
, buf
+ 32 - len
);
109 MD5_Update(&md
, buf
, 32);
110 MD5_Update(&md
, session_id
, 16);
111 MD5_Final(mdbuf
, &md
);
113 /* Verify that the response is the original challenge. */
114 if (memcmp(response
, mdbuf
, 16) != 0) {
118 /* Correct answer. */
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.
129 auth_rsa_challenge_dialog(Key
*key
)
131 BIGNUM
*challenge
, *encrypted_challenge
;
135 if ((encrypted_challenge
= BN_new()) == NULL
)
136 fatal("auth_rsa_challenge_dialog: BN_new() failed");
138 challenge
= PRIVSEP(auth_rsa_generate_challenge(key
));
140 /* Encrypt the challenge with the public key. */
141 rsa_public_encrypt(encrypted_challenge
, challenge
, key
->rsa
);
143 /* Send the encrypted challenge to the client. */
144 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE
);
145 packet_put_bignum(encrypted_challenge
);
147 BN_clear_free(encrypted_challenge
);
150 /* Wait for a response. */
151 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE
);
152 for (i
= 0; i
< 16; i
++)
153 response
[i
] = (u_char
)packet_get_char();
156 success
= PRIVSEP(auth_rsa_verify_response(key
, challenge
, response
));
157 BN_clear_free(challenge
);
162 * check if there's user key matching client_n,
163 * return key if login is allowed, NULL otherwise
167 auth_rsa_key_allowed(struct passwd
*pw
, BIGNUM
*client_n
, Key
**rkey
)
169 char line
[SSH_MAX_PUBKEY_BYTES
], *file
;
177 /* Temporarily use the user's uid. */
178 temporarily_use_uid(pw
);
180 /* The authorized keys. */
181 file
= authorized_keys_file(pw
);
182 debug("trying public RSA key file %s", file
);
184 /* Fail quietly if file does not exist */
185 if (stat(file
, &st
) < 0) {
186 /* Restore the privileged uid. */
191 /* Open the file containing the authorized keys. */
192 f
= fopen(file
, "r");
194 /* Restore the privileged uid. */
199 if (options
.strict_modes
&&
200 secure_filename(f
, file
, pw
, line
, sizeof(line
)) != 0) {
203 logit("Authentication refused: %s", line
);
208 /* Flag indicating whether the key is allowed. */
211 key
= key_new(KEY_RSA1
);
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.
218 while (read_keyfile_line(f
, file
, line
, sizeof(line
), &linenum
) != -1) {
223 /* Skip leading whitespace, empty and comment lines. */
224 for (cp
= line
; *cp
== ' ' || *cp
== '\t'; cp
++)
226 if (!*cp
|| *cp
== '\n' || *cp
== '#')
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
235 if (*cp
< '0' || *cp
> '9') {
238 for (; *cp
&& (quoted
|| (*cp
!= ' ' && *cp
!= '\t')); cp
++) {
239 if (*cp
== '\\' && cp
[1] == '"')
240 cp
++; /* Skip both */
247 /* Parse the key from the line. */
248 if (hostfile_read_key(&cp
, &bits
, key
) == 0) {
249 debug("%.100s, line %lu: non ssh1 key syntax",
253 /* cp now points to the comment part. */
255 /* Check if the we have found the desired key (identified by its modulus). */
256 if (BN_cmp(key
->rsa
->n
, client_n
) != 0)
259 /* check the real bits */
260 keybits
= BN_num_bits(key
->rsa
->n
);
261 if (keybits
< 0 || bits
!= (u_int
)keybits
)
262 logit("Warning: %s, line %lu: keysize mismatch: "
263 "actual %d vs. announced %d.",
264 file
, linenum
, BN_num_bits(key
->rsa
->n
), bits
);
266 /* We have found the desired key. */
268 * If our options do not allow this key to be used,
269 * do not send challenge.
271 if (!auth_parse_options(pw
, key_options
, file
, linenum
))
274 /* break out, this key is allowed */
279 /* Restore the privileged uid. */
282 /* Close the file. */
286 /* return key if allowed */
287 if (allowed
&& rkey
!= NULL
)
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.
300 auth_rsa(Authctxt
*authctxt
, BIGNUM
*client_n
)
304 struct passwd
*pw
= authctxt
->pw
;
307 if (!authctxt
->valid
)
310 if (!PRIVSEP(auth_rsa_key_allowed(pw
, client_n
, &key
))) {
311 auth_clear_options();
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.");
321 * Break out of the loop. Otherwise we might send
322 * another challenge and break the protocol.
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.
333 fp
= key_fingerprint(key
, SSH_FP_MD5
, SSH_FP_HEX
);
334 verbose("Found matching %s key: %s",
339 packet_send_debug("RSA authentication accepted.");