blob: 867597642e4054db3d75e3aa7c7d7b8268b4e08a [file] [log] [blame]
Damien Miller9f2abc42006-07-10 20:53:08 +10001/* $OpenBSD: auth-rsa.c,v 1.68 2006/07/06 16:03:53 stevesk 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
Damien Miller9f2abc42006-07-10 20:53:08 +100025#include <pwd.h>
26
Ben Lindstrom226cfa02001-01-22 05:34:40 +000027#include "rsa.h"
28#include "packet.h"
29#include "xmalloc.h"
30#include "ssh1.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "uidswap.h"
32#include "match.h"
33#include "auth-options.h"
34#include "pathnames.h"
35#include "log.h"
36#include "servconf.h"
37#include "auth.h"
Damien Miller89681212001-12-21 12:52:39 +110038#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000039#include "monitor_wrap.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000040#include "ssh.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110041#include "misc.h"
Damien Miller874d77b2000-10-14 16:23:11 +110042
43/* import */
44extern ServerOptions options;
45
Damien Miller5428f641999-11-25 11:54:57 +110046/*
47 * Session identifier that is used to bind key exchange and authentication
48 * responses to a particular session.
49 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000050extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051
Damien Miller5428f641999-11-25 11:54:57 +110052/*
53 * The .ssh/authorized_keys file contains public keys, one per line, in the
54 * following format:
55 * options bits e n comment
56 * where bits, e and n are decimal numbers,
57 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110058 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110059 * description of the options.
60 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000062BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000063auth_rsa_generate_challenge(Key *key)
64{
65 BIGNUM *challenge;
66 BN_CTX *ctx;
67
68 if ((challenge = BN_new()) == NULL)
69 fatal("auth_rsa_generate_challenge: BN_new() failed");
70 /* Generate a random challenge. */
71 BN_rand(challenge, 256, 0, 0);
72 if ((ctx = BN_CTX_new()) == NULL)
73 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
74 BN_mod(challenge, challenge, key->rsa->n, ctx);
75 BN_CTX_free(ctx);
76
77 return challenge;
78}
79
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000080int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000081auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
82{
83 u_char buf[32], mdbuf[16];
84 MD5_CTX md;
85 int len;
86
Ben Lindstrome1f9e322002-03-27 17:38:43 +000087 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +000088 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +000089 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
90 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +000091 return (0);
92 }
93
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000094 /* The response is MD5 of decrypted challenge plus session id. */
95 len = BN_num_bytes(challenge);
96 if (len <= 0 || len > 32)
97 fatal("auth_rsa_verify_response: bad challenge length %d", len);
98 memset(buf, 0, 32);
99 BN_bn2bin(challenge, buf + 32 - len);
100 MD5_Init(&md);
101 MD5_Update(&md, buf, 32);
102 MD5_Update(&md, session_id, 16);
103 MD5_Final(mdbuf, &md);
104
105 /* Verify that the response is the original challenge. */
106 if (memcmp(response, mdbuf, 16) != 0) {
107 /* Wrong answer. */
108 return (0);
109 }
110 /* Correct answer. */
111 return (1);
112}
113
Damien Miller5428f641999-11-25 11:54:57 +1100114/*
115 * Performs the RSA authentication challenge-response dialog with the client,
116 * and returns true (non-zero) if the client gave the correct answer to
117 * our challenge; returns zero if the client gives a wrong answer.
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
120int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000121auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122{
Damien Miller98c7ad62000-03-09 21:27:49 +1100123 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000124 u_char response[16];
125 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
Damien Millerda755162002-01-22 23:09:22 +1100127 if ((encrypted_challenge = BN_new()) == NULL)
128 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000130 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller95def091999-11-25 00:26:21 +1100132 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000133 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134
Damien Miller95def091999-11-25 00:26:21 +1100135 /* Send the encrypted challenge to the client. */
136 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
137 packet_put_bignum(encrypted_challenge);
138 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100139 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100140 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Damien Miller98c7ad62000-03-09 21:27:49 +1100142 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100143 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100144 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100145 response[i] = (u_char)packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100146 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100147
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000148 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100149 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000150 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151}
152
Damien Miller5428f641999-11-25 11:54:57 +1100153/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000154 * check if there's user key matching client_n,
155 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100156 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000158int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000159auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160{
Darren Tucker22cc7412004-12-06 22:47:41 +1100161 char line[SSH_MAX_PUBKEY_BYTES], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000162 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000163 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100164 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000165 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100166 struct stat st;
Damien Miller89681212001-12-21 12:52:39 +1100167 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100168
Damien Miller95def091999-11-25 00:26:21 +1100169 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000170 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171
Damien Miller95def091999-11-25 00:26:21 +1100172 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000173 file = authorized_keys_file(pw);
174 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
Damien Miller95def091999-11-25 00:26:21 +1100176 /* Fail quietly if file does not exist */
177 if (stat(file, &st) < 0) {
178 /* Restore the privileged uid. */
179 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000180 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000181 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182 }
Damien Miller95def091999-11-25 00:26:21 +1100183 /* Open the file containing the authorized keys. */
184 f = fopen(file, "r");
185 if (!f) {
186 /* Restore the privileged uid. */
187 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000188 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000189 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000191 if (options.strict_modes &&
Ben Lindstrom248c0782001-07-04 03:40:39 +0000192 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000193 xfree(file);
194 fclose(f);
Damien Miller996acd22003-04-09 20:59:48 +1000195 logit("Authentication refused: %s", line);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000196 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000197 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100198 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000199
200 /* Flag indicating whether the key is allowed. */
201 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
Damien Miller89681212001-12-21 12:52:39 +1100203 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100204
Damien Miller5428f641999-11-25 11:54:57 +1100205 /*
206 * Go though the accepted keys, looking for the current key. If
207 * found, perform a challenge-response dialog to verify that the
208 * user really has the corresponding private key.
209 */
Darren Tucker22cc7412004-12-06 22:47:41 +1100210 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100211 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000212 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000213 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100214
Damien Miller5428f641999-11-25 11:54:57 +1100215 /* Skip leading whitespace, empty and comment lines. */
216 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
217 ;
Damien Miller95def091999-11-25 00:26:21 +1100218 if (!*cp || *cp == '\n' || *cp == '#')
219 continue;
220
Damien Miller5428f641999-11-25 11:54:57 +1100221 /*
222 * Check if there are options for this key, and if so,
223 * save their starting address and skip the option part
224 * for now. If there are no options, set the starting
225 * address to NULL.
226 */
Damien Miller95def091999-11-25 00:26:21 +1100227 if (*cp < '0' || *cp > '9') {
228 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000229 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100230 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
231 if (*cp == '\\' && cp[1] == '"')
232 cp++; /* Skip both */
233 else if (*cp == '"')
234 quoted = !quoted;
235 }
236 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000237 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100238
239 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100240 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000241 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000242 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100243 continue;
244 }
245 /* cp now points to the comment part. */
246
Damien Miller95def091999-11-25 00:26:21 +1100247 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100248 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100249 continue;
Damien Miller95def091999-11-25 00:26:21 +1100250
Damien Milleraae6c611999-12-06 11:47:28 +1100251 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000252 keybits = BN_num_bits(key->rsa->n);
253 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000254 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100255 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100256 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100257
Damien Miller95def091999-11-25 00:26:21 +1100258 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000259 /*
260 * If our options do not allow this key to be used,
261 * do not send challenge.
262 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000263 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000264 continue;
Damien Miller95def091999-11-25 00:26:21 +1100265
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000266 /* break out, this key is allowed */
267 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100268 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269 }
270
Damien Miller95def091999-11-25 00:26:21 +1100271 /* Restore the privileged uid. */
272 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Miller95def091999-11-25 00:26:21 +1100274 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000275 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100276 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000278 /* return key if allowed */
279 if (allowed && rkey != NULL)
280 *rkey = key;
281 else
282 key_free(key);
283 return (allowed);
284}
285
286/*
287 * Performs the RSA authentication dialog with the client. This returns
288 * 0 if the client could not be authenticated, and 1 if authentication was
289 * successful. This may exit if there is a serious protocol violation.
290 */
291int
Damien Miller3e3b5142003-11-17 21:13:40 +1100292auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000293{
294 Key *key;
295 char *fp;
Damien Miller3e3b5142003-11-17 21:13:40 +1100296 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000297
298 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100299 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000300 return 0;
301
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000302 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000303 auth_clear_options();
304 return (0);
305 }
306
307 /* Perform the challenge-response dialog for this key. */
308 if (!auth_rsa_challenge_dialog(key)) {
309 /* Wrong response. */
310 verbose("Wrong response to RSA authentication challenge.");
311 packet_send_debug("Wrong response to RSA authentication challenge.");
312 /*
313 * Break out of the loop. Otherwise we might send
314 * another challenge and break the protocol.
315 */
316 key_free(key);
317 return (0);
318 }
319 /*
320 * Correct response. The client has been successfully
321 * authenticated. Note that we have not yet processed the
322 * options; this will be reset if the options cause the
323 * authentication to be rejected.
324 */
325 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
326 verbose("Found matching %s key: %s",
327 key_type(key), fp);
328 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100329 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000331 packet_send_debug("RSA authentication accepted.");
332 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333}