blob: 65c77805f53e55ee58404878a2e8e93add305978 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: auth-rsa.c,v 1.69 2006/07/22 20:48:22 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>
Damien Millere3476ed2006-07-24 14:13:33 +100026#include <string.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100027
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "rsa.h"
29#include "packet.h"
30#include "xmalloc.h"
31#include "ssh1.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032#include "uidswap.h"
33#include "match.h"
34#include "auth-options.h"
35#include "pathnames.h"
36#include "log.h"
37#include "servconf.h"
38#include "auth.h"
Damien Miller89681212001-12-21 12:52:39 +110039#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000040#include "monitor_wrap.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000041#include "ssh.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110042#include "misc.h"
Damien Miller874d77b2000-10-14 16:23:11 +110043
44/* import */
45extern ServerOptions options;
46
Damien Miller5428f641999-11-25 11:54:57 +110047/*
48 * Session identifier that is used to bind key exchange and authentication
49 * responses to a particular session.
50 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000051extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Damien Miller5428f641999-11-25 11:54:57 +110053/*
54 * The .ssh/authorized_keys file contains public keys, one per line, in the
55 * following format:
56 * options bits e n comment
57 * where bits, e and n are decimal numbers,
58 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110059 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110060 * description of the options.
61 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000063BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000064auth_rsa_generate_challenge(Key *key)
65{
66 BIGNUM *challenge;
67 BN_CTX *ctx;
68
69 if ((challenge = BN_new()) == NULL)
70 fatal("auth_rsa_generate_challenge: BN_new() failed");
71 /* Generate a random challenge. */
72 BN_rand(challenge, 256, 0, 0);
73 if ((ctx = BN_CTX_new()) == NULL)
74 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
75 BN_mod(challenge, challenge, key->rsa->n, ctx);
76 BN_CTX_free(ctx);
77
78 return challenge;
79}
80
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000081int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000082auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
83{
84 u_char buf[32], mdbuf[16];
85 MD5_CTX md;
86 int len;
87
Ben Lindstrome1f9e322002-03-27 17:38:43 +000088 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +000089 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +000090 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
91 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +000092 return (0);
93 }
94
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000095 /* The response is MD5 of decrypted challenge plus session id. */
96 len = BN_num_bytes(challenge);
97 if (len <= 0 || len > 32)
98 fatal("auth_rsa_verify_response: bad challenge length %d", len);
99 memset(buf, 0, 32);
100 BN_bn2bin(challenge, buf + 32 - len);
101 MD5_Init(&md);
102 MD5_Update(&md, buf, 32);
103 MD5_Update(&md, session_id, 16);
104 MD5_Final(mdbuf, &md);
105
106 /* Verify that the response is the original challenge. */
107 if (memcmp(response, mdbuf, 16) != 0) {
108 /* Wrong answer. */
109 return (0);
110 }
111 /* Correct answer. */
112 return (1);
113}
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * Performs the RSA authentication challenge-response dialog with the client,
117 * and returns true (non-zero) if the client gave the correct answer to
118 * our challenge; returns zero if the client gives a wrong answer.
119 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120
121int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000122auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123{
Damien Miller98c7ad62000-03-09 21:27:49 +1100124 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000125 u_char response[16];
126 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Millerda755162002-01-22 23:09:22 +1100128 if ((encrypted_challenge = BN_new()) == NULL)
129 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000131 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller95def091999-11-25 00:26:21 +1100133 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000134 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Damien Miller95def091999-11-25 00:26:21 +1100136 /* Send the encrypted challenge to the client. */
137 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
138 packet_put_bignum(encrypted_challenge);
139 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100140 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100141 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller98c7ad62000-03-09 21:27:49 +1100143 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100144 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100145 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100146 response[i] = (u_char)packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100147 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100148
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000149 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100150 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000151 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152}
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000155 * check if there's user key matching client_n,
156 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000159int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000160auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161{
Darren Tucker22cc7412004-12-06 22:47:41 +1100162 char line[SSH_MAX_PUBKEY_BYTES], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000163 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000164 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100165 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000166 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100167 struct stat st;
Damien Miller89681212001-12-21 12:52:39 +1100168 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100169
Damien Miller95def091999-11-25 00:26:21 +1100170 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000171 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Damien Miller95def091999-11-25 00:26:21 +1100173 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000174 file = authorized_keys_file(pw);
175 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
Damien Miller95def091999-11-25 00:26:21 +1100177 /* Fail quietly if file does not exist */
178 if (stat(file, &st) < 0) {
179 /* Restore the privileged uid. */
180 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000181 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000182 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183 }
Damien Miller95def091999-11-25 00:26:21 +1100184 /* Open the file containing the authorized keys. */
185 f = fopen(file, "r");
186 if (!f) {
187 /* Restore the privileged uid. */
188 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000189 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000190 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000192 if (options.strict_modes &&
Ben Lindstrom248c0782001-07-04 03:40:39 +0000193 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000194 xfree(file);
195 fclose(f);
Damien Miller996acd22003-04-09 20:59:48 +1000196 logit("Authentication refused: %s", line);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000197 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000198 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100199 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000200
201 /* Flag indicating whether the key is allowed. */
202 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller89681212001-12-21 12:52:39 +1100204 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100205
Damien Miller5428f641999-11-25 11:54:57 +1100206 /*
207 * Go though the accepted keys, looking for the current key. If
208 * found, perform a challenge-response dialog to verify that the
209 * user really has the corresponding private key.
210 */
Darren Tucker22cc7412004-12-06 22:47:41 +1100211 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100212 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000213 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000214 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100215
Damien Miller5428f641999-11-25 11:54:57 +1100216 /* Skip leading whitespace, empty and comment lines. */
217 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
218 ;
Damien Miller95def091999-11-25 00:26:21 +1100219 if (!*cp || *cp == '\n' || *cp == '#')
220 continue;
221
Damien Miller5428f641999-11-25 11:54:57 +1100222 /*
223 * Check if there are options for this key, and if so,
224 * save their starting address and skip the option part
225 * for now. If there are no options, set the starting
226 * address to NULL.
227 */
Damien Miller95def091999-11-25 00:26:21 +1100228 if (*cp < '0' || *cp > '9') {
229 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000230 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100231 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
232 if (*cp == '\\' && cp[1] == '"')
233 cp++; /* Skip both */
234 else if (*cp == '"')
235 quoted = !quoted;
236 }
237 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000238 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100239
240 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100241 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000242 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000243 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100244 continue;
245 }
246 /* cp now points to the comment part. */
247
Damien Miller95def091999-11-25 00:26:21 +1100248 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100249 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100250 continue;
Damien Miller95def091999-11-25 00:26:21 +1100251
Damien Milleraae6c611999-12-06 11:47:28 +1100252 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000253 keybits = BN_num_bits(key->rsa->n);
254 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000255 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100256 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100257 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100258
Damien Miller95def091999-11-25 00:26:21 +1100259 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000260 /*
261 * If our options do not allow this key to be used,
262 * do not send challenge.
263 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000264 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000265 continue;
Damien Miller95def091999-11-25 00:26:21 +1100266
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000267 /* break out, this key is allowed */
268 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100269 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270 }
271
Damien Miller95def091999-11-25 00:26:21 +1100272 /* Restore the privileged uid. */
273 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000276 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100277 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000279 /* return key if allowed */
280 if (allowed && rkey != NULL)
281 *rkey = key;
282 else
283 key_free(key);
284 return (allowed);
285}
286
287/*
288 * Performs the RSA authentication dialog with the client. This returns
289 * 0 if the client could not be authenticated, and 1 if authentication was
290 * successful. This may exit if there is a serious protocol violation.
291 */
292int
Damien Miller3e3b5142003-11-17 21:13:40 +1100293auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000294{
295 Key *key;
296 char *fp;
Damien Miller3e3b5142003-11-17 21:13:40 +1100297 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000298
299 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100300 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000301 return 0;
302
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000303 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000304 auth_clear_options();
305 return (0);
306 }
307
308 /* Perform the challenge-response dialog for this key. */
309 if (!auth_rsa_challenge_dialog(key)) {
310 /* Wrong response. */
311 verbose("Wrong response to RSA authentication challenge.");
312 packet_send_debug("Wrong response to RSA authentication challenge.");
313 /*
314 * Break out of the loop. Otherwise we might send
315 * another challenge and break the protocol.
316 */
317 key_free(key);
318 return (0);
319 }
320 /*
321 * Correct response. The client has been successfully
322 * authenticated. Note that we have not yet processed the
323 * options; this will be reset if the options cause the
324 * authentication to be rejected.
325 */
326 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
327 verbose("Found matching %s key: %s",
328 key_type(key), fp);
329 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100330 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000332 packet_send_debug("RSA authentication accepted.");
333 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334}