blob: effff5d2ae0ed8b2d3866970cbcc6a105cceda2b [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 * 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.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * 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".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110017
18#include <sys/types.h>
19#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
21#include <openssl/rsa.h>
22#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024#include "rsa.h"
25#include "packet.h"
26#include "xmalloc.h"
27#include "ssh1.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "uidswap.h"
29#include "match.h"
30#include "auth-options.h"
31#include "pathnames.h"
32#include "log.h"
33#include "servconf.h"
34#include "auth.h"
Damien Miller89681212001-12-21 12:52:39 +110035#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000036#include "monitor_wrap.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000037#include "ssh.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110038#include "misc.h"
Damien Miller874d77b2000-10-14 16:23:11 +110039
40/* import */
41extern ServerOptions options;
42
Damien Miller5428f641999-11-25 11:54:57 +110043/*
44 * Session identifier that is used to bind key exchange and authentication
45 * responses to a particular session.
46 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000047extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
Damien Miller5428f641999-11-25 11:54:57 +110049/*
50 * The .ssh/authorized_keys file contains public keys, one per line, in the
51 * following format:
52 * options bits e n comment
53 * where bits, e and n are decimal numbers,
54 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110055 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110056 * description of the options.
57 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000059BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000060auth_rsa_generate_challenge(Key *key)
61{
62 BIGNUM *challenge;
63 BN_CTX *ctx;
64
65 if ((challenge = BN_new()) == NULL)
66 fatal("auth_rsa_generate_challenge: BN_new() failed");
67 /* Generate a random challenge. */
68 BN_rand(challenge, 256, 0, 0);
69 if ((ctx = BN_CTX_new()) == NULL)
70 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
71 BN_mod(challenge, challenge, key->rsa->n, ctx);
72 BN_CTX_free(ctx);
73
74 return challenge;
75}
76
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000077int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000078auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
79{
80 u_char buf[32], mdbuf[16];
81 MD5_CTX md;
82 int len;
83
Ben Lindstrome1f9e322002-03-27 17:38:43 +000084 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +000085 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +000086 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
87 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +000088 return (0);
89 }
90
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000091 /* The response is MD5 of decrypted challenge plus session id. */
92 len = BN_num_bytes(challenge);
93 if (len <= 0 || len > 32)
94 fatal("auth_rsa_verify_response: bad challenge length %d", len);
95 memset(buf, 0, 32);
96 BN_bn2bin(challenge, buf + 32 - len);
97 MD5_Init(&md);
98 MD5_Update(&md, buf, 32);
99 MD5_Update(&md, session_id, 16);
100 MD5_Final(mdbuf, &md);
101
102 /* Verify that the response is the original challenge. */
103 if (memcmp(response, mdbuf, 16) != 0) {
104 /* Wrong answer. */
105 return (0);
106 }
107 /* Correct answer. */
108 return (1);
109}
110
Damien Miller5428f641999-11-25 11:54:57 +1100111/*
112 * Performs the RSA authentication challenge-response dialog with the client,
113 * and returns true (non-zero) if the client gave the correct answer to
114 * our challenge; returns zero if the client gives a wrong answer.
115 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116
117int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000118auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119{
Damien Miller98c7ad62000-03-09 21:27:49 +1100120 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000121 u_char response[16];
122 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123
Damien Millerda755162002-01-22 23:09:22 +1100124 if ((encrypted_challenge = BN_new()) == NULL)
125 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000127 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller95def091999-11-25 00:26:21 +1100129 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000130 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller95def091999-11-25 00:26:21 +1100132 /* Send the encrypted challenge to the client. */
133 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
134 packet_put_bignum(encrypted_challenge);
135 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100136 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100137 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138
Damien Miller98c7ad62000-03-09 21:27:49 +1100139 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100140 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100141 for (i = 0; i < 16; i++)
142 response[i] = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100143 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100144
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000145 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100146 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000147 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148}
149
Damien Miller5428f641999-11-25 11:54:57 +1100150/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000151 * check if there's user key matching client_n,
152 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000155int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000156auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157{
Darren Tucker22cc7412004-12-06 22:47:41 +1100158 char line[SSH_MAX_PUBKEY_BYTES], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000159 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000160 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100161 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000162 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100163 struct stat st;
Damien Miller89681212001-12-21 12:52:39 +1100164 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100165
Damien Miller95def091999-11-25 00:26:21 +1100166 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000167 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
Damien Miller95def091999-11-25 00:26:21 +1100169 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000170 file = authorized_keys_file(pw);
171 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Damien Miller95def091999-11-25 00:26:21 +1100173 /* Fail quietly if file does not exist */
174 if (stat(file, &st) < 0) {
175 /* Restore the privileged uid. */
176 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000177 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000178 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179 }
Damien Miller95def091999-11-25 00:26:21 +1100180 /* Open the file containing the authorized keys. */
181 f = fopen(file, "r");
182 if (!f) {
183 /* Restore the privileged uid. */
184 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000185 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000186 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000188 if (options.strict_modes &&
Ben Lindstrom248c0782001-07-04 03:40:39 +0000189 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000190 xfree(file);
191 fclose(f);
Damien Miller996acd22003-04-09 20:59:48 +1000192 logit("Authentication refused: %s", line);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000193 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000194 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100195 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000196
197 /* Flag indicating whether the key is allowed. */
198 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
Damien Miller89681212001-12-21 12:52:39 +1100200 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100201
Damien Miller5428f641999-11-25 11:54:57 +1100202 /*
203 * Go though the accepted keys, looking for the current key. If
204 * found, perform a challenge-response dialog to verify that the
205 * user really has the corresponding private key.
206 */
Darren Tucker22cc7412004-12-06 22:47:41 +1100207 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100208 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000209 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000210 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100211
Damien Miller5428f641999-11-25 11:54:57 +1100212 /* Skip leading whitespace, empty and comment lines. */
213 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
214 ;
Damien Miller95def091999-11-25 00:26:21 +1100215 if (!*cp || *cp == '\n' || *cp == '#')
216 continue;
217
Damien Miller5428f641999-11-25 11:54:57 +1100218 /*
219 * Check if there are options for this key, and if so,
220 * save their starting address and skip the option part
221 * for now. If there are no options, set the starting
222 * address to NULL.
223 */
Damien Miller95def091999-11-25 00:26:21 +1100224 if (*cp < '0' || *cp > '9') {
225 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000226 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100227 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
228 if (*cp == '\\' && cp[1] == '"')
229 cp++; /* Skip both */
230 else if (*cp == '"')
231 quoted = !quoted;
232 }
233 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000234 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100235
236 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100237 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000238 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000239 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100240 continue;
241 }
242 /* cp now points to the comment part. */
243
Damien Miller95def091999-11-25 00:26:21 +1100244 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100245 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100246 continue;
Damien Miller95def091999-11-25 00:26:21 +1100247
Damien Milleraae6c611999-12-06 11:47:28 +1100248 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000249 keybits = BN_num_bits(key->rsa->n);
250 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000251 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100252 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100253 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100254
Damien Miller95def091999-11-25 00:26:21 +1100255 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000256 /*
257 * If our options do not allow this key to be used,
258 * do not send challenge.
259 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000260 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000261 continue;
Damien Miller95def091999-11-25 00:26:21 +1100262
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000263 /* break out, this key is allowed */
264 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100265 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266 }
267
Damien Miller95def091999-11-25 00:26:21 +1100268 /* Restore the privileged uid. */
269 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Damien Miller95def091999-11-25 00:26:21 +1100271 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000272 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100273 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000275 /* return key if allowed */
276 if (allowed && rkey != NULL)
277 *rkey = key;
278 else
279 key_free(key);
280 return (allowed);
281}
282
283/*
284 * Performs the RSA authentication dialog with the client. This returns
285 * 0 if the client could not be authenticated, and 1 if authentication was
286 * successful. This may exit if there is a serious protocol violation.
287 */
288int
Damien Miller3e3b5142003-11-17 21:13:40 +1100289auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000290{
291 Key *key;
292 char *fp;
Damien Miller3e3b5142003-11-17 21:13:40 +1100293 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000294
295 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100296 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000297 return 0;
298
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000299 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000300 auth_clear_options();
301 return (0);
302 }
303
304 /* Perform the challenge-response dialog for this key. */
305 if (!auth_rsa_challenge_dialog(key)) {
306 /* Wrong response. */
307 verbose("Wrong response to RSA authentication challenge.");
308 packet_send_debug("Wrong response to RSA authentication challenge.");
309 /*
310 * Break out of the loop. Otherwise we might send
311 * another challenge and break the protocol.
312 */
313 key_free(key);
314 return (0);
315 }
316 /*
317 * Correct response. The client has been successfully
318 * authenticated. Note that we have not yet processed the
319 * options; this will be reset if the options cause the
320 * authentication to be rejected.
321 */
322 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
323 verbose("Found matching %s key: %s",
324 key_type(key), fp);
325 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100326 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000328 packet_send_debug("RSA authentication accepted.");
329 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330}