blob: c331c267d21938c3d53a03a88ae6b86132507969 [file] [log] [blame]
Damien Miller8ba29fe2006-03-26 14:25:19 +11001/* $OpenBSD: auth-rsa.c,v 1.67 2006/03/25 18:29:35 deraadt Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * 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 Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * 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 Miller95def091999-11-25 00:26:21 +110015 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110018
19#include <sys/types.h>
20#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
22#include <openssl/rsa.h>
23#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
Ben Lindstrom226cfa02001-01-22 05:34:40 +000025#include "rsa.h"
26#include "packet.h"
27#include "xmalloc.h"
28#include "ssh1.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "uidswap.h"
30#include "match.h"
31#include "auth-options.h"
32#include "pathnames.h"
33#include "log.h"
34#include "servconf.h"
35#include "auth.h"
Damien Miller89681212001-12-21 12:52:39 +110036#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000037#include "monitor_wrap.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000038#include "ssh.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110039#include "misc.h"
Damien Miller874d77b2000-10-14 16:23:11 +110040
41/* import */
42extern ServerOptions options;
43
Damien Miller5428f641999-11-25 11:54:57 +110044/*
45 * Session identifier that is used to bind key exchange and authentication
46 * responses to a particular session.
47 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000048extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Damien Miller5428f641999-11-25 11:54:57 +110050/*
51 * The .ssh/authorized_keys file contains public keys, one per line, in the
52 * following format:
53 * options bits e n comment
54 * where bits, e and n are decimal numbers,
55 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110056 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110057 * description of the options.
58 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000060BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000061auth_rsa_generate_challenge(Key *key)
62{
63 BIGNUM *challenge;
64 BN_CTX *ctx;
65
66 if ((challenge = BN_new()) == NULL)
67 fatal("auth_rsa_generate_challenge: BN_new() failed");
68 /* Generate a random challenge. */
69 BN_rand(challenge, 256, 0, 0);
70 if ((ctx = BN_CTX_new()) == NULL)
71 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
72 BN_mod(challenge, challenge, key->rsa->n, ctx);
73 BN_CTX_free(ctx);
74
75 return challenge;
76}
77
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000078int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000079auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
80{
81 u_char buf[32], mdbuf[16];
82 MD5_CTX md;
83 int len;
84
Ben Lindstrome1f9e322002-03-27 17:38:43 +000085 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +000086 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +000087 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
88 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +000089 return (0);
90 }
91
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000092 /* The response is MD5 of decrypted challenge plus session id. */
93 len = BN_num_bytes(challenge);
94 if (len <= 0 || len > 32)
95 fatal("auth_rsa_verify_response: bad challenge length %d", len);
96 memset(buf, 0, 32);
97 BN_bn2bin(challenge, buf + 32 - len);
98 MD5_Init(&md);
99 MD5_Update(&md, buf, 32);
100 MD5_Update(&md, session_id, 16);
101 MD5_Final(mdbuf, &md);
102
103 /* Verify that the response is the original challenge. */
104 if (memcmp(response, mdbuf, 16) != 0) {
105 /* Wrong answer. */
106 return (0);
107 }
108 /* Correct answer. */
109 return (1);
110}
111
Damien Miller5428f641999-11-25 11:54:57 +1100112/*
113 * Performs the RSA authentication challenge-response dialog with the client,
114 * and returns true (non-zero) if the client gave the correct answer to
115 * our challenge; returns zero if the client gives a wrong answer.
116 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
118int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000119auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120{
Damien Miller98c7ad62000-03-09 21:27:49 +1100121 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000122 u_char response[16];
123 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Damien Millerda755162002-01-22 23:09:22 +1100125 if ((encrypted_challenge = BN_new()) == NULL)
126 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000128 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Damien Miller95def091999-11-25 00:26:21 +1100130 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000131 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller95def091999-11-25 00:26:21 +1100133 /* Send the encrypted challenge to the client. */
134 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
135 packet_put_bignum(encrypted_challenge);
136 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100137 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100138 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller98c7ad62000-03-09 21:27:49 +1100140 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100141 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100142 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100143 response[i] = (u_char)packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100144 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100145
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000146 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100147 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000148 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149}
150
Damien Miller5428f641999-11-25 11:54:57 +1100151/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000152 * check if there's user key matching client_n,
153 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100154 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000156int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000157auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Darren Tucker22cc7412004-12-06 22:47:41 +1100159 char line[SSH_MAX_PUBKEY_BYTES], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000160 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000161 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100162 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000163 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100164 struct stat st;
Damien Miller89681212001-12-21 12:52:39 +1100165 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100166
Damien Miller95def091999-11-25 00:26:21 +1100167 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000168 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
Damien Miller95def091999-11-25 00:26:21 +1100170 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000171 file = authorized_keys_file(pw);
172 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
Damien Miller95def091999-11-25 00:26:21 +1100174 /* Fail quietly if file does not exist */
175 if (stat(file, &st) < 0) {
176 /* Restore the privileged uid. */
177 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000178 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000179 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180 }
Damien Miller95def091999-11-25 00:26:21 +1100181 /* Open the file containing the authorized keys. */
182 f = fopen(file, "r");
183 if (!f) {
184 /* Restore the privileged uid. */
185 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000186 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000187 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000189 if (options.strict_modes &&
Ben Lindstrom248c0782001-07-04 03:40:39 +0000190 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000191 xfree(file);
192 fclose(f);
Damien Miller996acd22003-04-09 20:59:48 +1000193 logit("Authentication refused: %s", line);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000194 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000195 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100196 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000197
198 /* Flag indicating whether the key is allowed. */
199 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200
Damien Miller89681212001-12-21 12:52:39 +1100201 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100202
Damien Miller5428f641999-11-25 11:54:57 +1100203 /*
204 * Go though the accepted keys, looking for the current key. If
205 * found, perform a challenge-response dialog to verify that the
206 * user really has the corresponding private key.
207 */
Darren Tucker22cc7412004-12-06 22:47:41 +1100208 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100209 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000210 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000211 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100212
Damien Miller5428f641999-11-25 11:54:57 +1100213 /* Skip leading whitespace, empty and comment lines. */
214 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
215 ;
Damien Miller95def091999-11-25 00:26:21 +1100216 if (!*cp || *cp == '\n' || *cp == '#')
217 continue;
218
Damien Miller5428f641999-11-25 11:54:57 +1100219 /*
220 * Check if there are options for this key, and if so,
221 * save their starting address and skip the option part
222 * for now. If there are no options, set the starting
223 * address to NULL.
224 */
Damien Miller95def091999-11-25 00:26:21 +1100225 if (*cp < '0' || *cp > '9') {
226 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000227 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100228 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
229 if (*cp == '\\' && cp[1] == '"')
230 cp++; /* Skip both */
231 else if (*cp == '"')
232 quoted = !quoted;
233 }
234 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000235 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100236
237 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100238 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000239 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000240 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100241 continue;
242 }
243 /* cp now points to the comment part. */
244
Damien Miller95def091999-11-25 00:26:21 +1100245 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100246 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100247 continue;
Damien Miller95def091999-11-25 00:26:21 +1100248
Damien Milleraae6c611999-12-06 11:47:28 +1100249 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000250 keybits = BN_num_bits(key->rsa->n);
251 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000252 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100253 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100254 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100255
Damien Miller95def091999-11-25 00:26:21 +1100256 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000257 /*
258 * If our options do not allow this key to be used,
259 * do not send challenge.
260 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000261 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000262 continue;
Damien Miller95def091999-11-25 00:26:21 +1100263
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000264 /* break out, this key is allowed */
265 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100266 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267 }
268
Damien Miller95def091999-11-25 00:26:21 +1100269 /* Restore the privileged uid. */
270 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
Damien Miller95def091999-11-25 00:26:21 +1100272 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000273 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100274 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000276 /* return key if allowed */
277 if (allowed && rkey != NULL)
278 *rkey = key;
279 else
280 key_free(key);
281 return (allowed);
282}
283
284/*
285 * Performs the RSA authentication dialog with the client. This returns
286 * 0 if the client could not be authenticated, and 1 if authentication was
287 * successful. This may exit if there is a serious protocol violation.
288 */
289int
Damien Miller3e3b5142003-11-17 21:13:40 +1100290auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000291{
292 Key *key;
293 char *fp;
Damien Miller3e3b5142003-11-17 21:13:40 +1100294 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000295
296 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100297 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000298 return 0;
299
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000300 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000301 auth_clear_options();
302 return (0);
303 }
304
305 /* Perform the challenge-response dialog for this key. */
306 if (!auth_rsa_challenge_dialog(key)) {
307 /* Wrong response. */
308 verbose("Wrong response to RSA authentication challenge.");
309 packet_send_debug("Wrong response to RSA authentication challenge.");
310 /*
311 * Break out of the loop. Otherwise we might send
312 * another challenge and break the protocol.
313 */
314 key_free(key);
315 return (0);
316 }
317 /*
318 * Correct response. The client has been successfully
319 * authenticated. Note that we have not yet processed the
320 * options; this will be reset if the options cause the
321 * authentication to be rejected.
322 */
323 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
324 verbose("Found matching %s key: %s",
325 key_type(key), fp);
326 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100327 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000329 packet_send_debug("RSA authentication accepted.");
330 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331}