blob: c51400c2a93b41323e72950b7beb623405c5eaa2 [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"
Ben Lindstromf6d367b2002-03-26 02:59:31 +000017RCSID("$OpenBSD: auth-rsa.c,v 1.53 2002/03/25 09:21:13 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
19#include <openssl/rsa.h>
20#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Ben Lindstrom226cfa02001-01-22 05:34:40 +000022#include "rsa.h"
23#include "packet.h"
24#include "xmalloc.h"
25#include "ssh1.h"
26#include "mpaux.h"
27#include "uidswap.h"
28#include "match.h"
29#include "auth-options.h"
30#include "pathnames.h"
31#include "log.h"
32#include "servconf.h"
33#include "auth.h"
Damien Miller89681212001-12-21 12:52:39 +110034#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000035#include "monitor_wrap.h"
Damien Miller874d77b2000-10-14 16:23:11 +110036
37/* import */
38extern ServerOptions options;
39
Damien Miller5428f641999-11-25 11:54:57 +110040/*
41 * Session identifier that is used to bind key exchange and authentication
42 * responses to a particular session.
43 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000044extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller5428f641999-11-25 11:54:57 +110046/*
47 * The .ssh/authorized_keys file contains public keys, one per line, in the
48 * following format:
49 * options bits e n comment
50 * where bits, e and n are decimal numbers,
51 * and comment is any string of characters up to newline. The maximum
52 * length of a line is 8000 characters. See the documentation for a
53 * description of the options.
54 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000056BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000057auth_rsa_generate_challenge(Key *key)
58{
59 BIGNUM *challenge;
60 BN_CTX *ctx;
61
62 if ((challenge = BN_new()) == NULL)
63 fatal("auth_rsa_generate_challenge: BN_new() failed");
64 /* Generate a random challenge. */
65 BN_rand(challenge, 256, 0, 0);
66 if ((ctx = BN_CTX_new()) == NULL)
67 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
68 BN_mod(challenge, challenge, key->rsa->n, ctx);
69 BN_CTX_free(ctx);
70
71 return challenge;
72}
73
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000074int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000075auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
76{
77 u_char buf[32], mdbuf[16];
78 MD5_CTX md;
79 int len;
80
81 /* The response is MD5 of decrypted challenge plus session id. */
82 len = BN_num_bytes(challenge);
83 if (len <= 0 || len > 32)
84 fatal("auth_rsa_verify_response: bad challenge length %d", len);
85 memset(buf, 0, 32);
86 BN_bn2bin(challenge, buf + 32 - len);
87 MD5_Init(&md);
88 MD5_Update(&md, buf, 32);
89 MD5_Update(&md, session_id, 16);
90 MD5_Final(mdbuf, &md);
91
92 /* Verify that the response is the original challenge. */
93 if (memcmp(response, mdbuf, 16) != 0) {
94 /* Wrong answer. */
95 return (0);
96 }
97 /* Correct answer. */
98 return (1);
99}
100
Damien Miller5428f641999-11-25 11:54:57 +1100101/*
102 * Performs the RSA authentication challenge-response dialog with the client,
103 * and returns true (non-zero) if the client gave the correct answer to
104 * our challenge; returns zero if the client gives a wrong answer.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
107int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000108auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109{
Damien Miller98c7ad62000-03-09 21:27:49 +1100110 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000111 u_char response[16];
112 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Millerda755162002-01-22 23:09:22 +1100114 if ((encrypted_challenge = BN_new()) == NULL)
115 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000117 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118
Damien Miller95def091999-11-25 00:26:21 +1100119 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000120 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller95def091999-11-25 00:26:21 +1100122 /* Send the encrypted challenge to the client. */
123 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
124 packet_put_bignum(encrypted_challenge);
125 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100126 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100127 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller98c7ad62000-03-09 21:27:49 +1100129 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100130 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100131 for (i = 0; i < 16; i++)
132 response[i] = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100133 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100134
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000135 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100136 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000137 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138}
139
Damien Miller5428f641999-11-25 11:54:57 +1100140/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000141 * check if there's user key matching client_n,
142 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000145int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000146auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147{
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000148 char line[8192], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000149 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000150 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100151 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000152 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100153 struct stat st;
Damien Miller89681212001-12-21 12:52:39 +1100154 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100155
Damien Miller95def091999-11-25 00:26:21 +1100156 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000157 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Damien Miller95def091999-11-25 00:26:21 +1100159 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000160 file = authorized_keys_file(pw);
161 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162
Damien Miller95def091999-11-25 00:26:21 +1100163 /* Fail quietly if file does not exist */
164 if (stat(file, &st) < 0) {
165 /* Restore the privileged uid. */
166 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000167 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000168 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169 }
Damien Miller95def091999-11-25 00:26:21 +1100170 /* Open the file containing the authorized keys. */
171 f = fopen(file, "r");
172 if (!f) {
173 /* Restore the privileged uid. */
174 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000175 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000176 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000178 if (options.strict_modes &&
Ben Lindstrom248c0782001-07-04 03:40:39 +0000179 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000180 xfree(file);
181 fclose(f);
182 log("Authentication refused: %s", line);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000183 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000184 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100185 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000186
187 /* Flag indicating whether the key is allowed. */
188 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Miller89681212001-12-21 12:52:39 +1100190 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100191
Damien Miller5428f641999-11-25 11:54:57 +1100192 /*
193 * Go though the accepted keys, looking for the current key. If
194 * found, perform a challenge-response dialog to verify that the
195 * user really has the corresponding private key.
196 */
Damien Miller95def091999-11-25 00:26:21 +1100197 while (fgets(line, sizeof(line), f)) {
198 char *cp;
199 char *options;
200
201 linenum++;
202
Damien Miller5428f641999-11-25 11:54:57 +1100203 /* Skip leading whitespace, empty and comment lines. */
204 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
205 ;
Damien Miller95def091999-11-25 00:26:21 +1100206 if (!*cp || *cp == '\n' || *cp == '#')
207 continue;
208
Damien Miller5428f641999-11-25 11:54:57 +1100209 /*
210 * Check if there are options for this key, and if so,
211 * save their starting address and skip the option part
212 * for now. If there are no options, set the starting
213 * address to NULL.
214 */
Damien Miller95def091999-11-25 00:26:21 +1100215 if (*cp < '0' || *cp > '9') {
216 int quoted = 0;
217 options = cp;
218 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
219 if (*cp == '\\' && cp[1] == '"')
220 cp++; /* Skip both */
221 else if (*cp == '"')
222 quoted = !quoted;
223 }
224 } else
225 options = NULL;
226
227 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100228 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000229 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000230 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100231 continue;
232 }
233 /* cp now points to the comment part. */
234
Damien Miller95def091999-11-25 00:26:21 +1100235 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100236 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100237 continue;
Damien Miller95def091999-11-25 00:26:21 +1100238
Damien Milleraae6c611999-12-06 11:47:28 +1100239 /* check the real bits */
Damien Miller89681212001-12-21 12:52:39 +1100240 if (bits != BN_num_bits(key->rsa->n))
Ben Lindstrom940fb862001-08-06 21:01:49 +0000241 log("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100242 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100243 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100244
Damien Miller95def091999-11-25 00:26:21 +1100245 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000246 /*
247 * If our options do not allow this key to be used,
248 * do not send challenge.
249 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000250 if (!auth_parse_options(pw, options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000251 continue;
Damien Miller95def091999-11-25 00:26:21 +1100252
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000253 /* break out, this key is allowed */
254 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100255 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256 }
257
Damien Miller95def091999-11-25 00:26:21 +1100258 /* Restore the privileged uid. */
259 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260
Damien Miller95def091999-11-25 00:26:21 +1100261 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000262 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100263 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000265 /* return key if allowed */
266 if (allowed && rkey != NULL)
267 *rkey = key;
268 else
269 key_free(key);
270 return (allowed);
271}
272
273/*
274 * Performs the RSA authentication dialog with the client. This returns
275 * 0 if the client could not be authenticated, and 1 if authentication was
276 * successful. This may exit if there is a serious protocol violation.
277 */
278int
279auth_rsa(struct passwd *pw, BIGNUM *client_n)
280{
281 Key *key;
282 char *fp;
283
284 /* no user given */
285 if (pw == NULL)
286 return 0;
287
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000288 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000289 auth_clear_options();
290 return (0);
291 }
292
293 /* Perform the challenge-response dialog for this key. */
294 if (!auth_rsa_challenge_dialog(key)) {
295 /* Wrong response. */
296 verbose("Wrong response to RSA authentication challenge.");
297 packet_send_debug("Wrong response to RSA authentication challenge.");
298 /*
299 * Break out of the loop. Otherwise we might send
300 * another challenge and break the protocol.
301 */
302 key_free(key);
303 return (0);
304 }
305 /*
306 * Correct response. The client has been successfully
307 * authenticated. Note that we have not yet processed the
308 * options; this will be reset if the options cause the
309 * authentication to be rejected.
310 */
311 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
312 verbose("Found matching %s key: %s",
313 key_type(key), fp);
314 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100315 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000317 packet_send_debug("RSA authentication accepted.");
318 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319}