blob: ef6767bfb64fce966ecc0a593e5f001b2cae6e0d [file] [log] [blame]
Damien Miller3b903822010-05-21 14:56:25 +10001/* $OpenBSD: auth-rsa.c,v 1.76 2010/05/11 02:58:04 djm 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 Millera7a73ee2006-08-05 11:37:59 +100026#include <stdio.h>
Damien Millerded319c2006-09-01 15:38:36 +100027#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100028#include <string.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100029
Damien Millerd7834352006-08-05 12:39:39 +100030#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "rsa.h"
32#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "ssh1.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "uidswap.h"
35#include "match.h"
Damien Millerd7834352006-08-05 12:39:39 +100036#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000037#include "pathnames.h"
38#include "log.h"
39#include "servconf.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "key.h"
Damien Miller4e270b02010-04-16 15:56:21 +100041#include "auth-options.h"
Damien Miller89681212001-12-21 12:52:39 +110042#include "hostfile.h"
Damien Millerd7834352006-08-05 12:39:39 +100043#include "auth.h"
44#ifdef GSSAPI
45#include "ssh-gss.h"
46#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000047#include "monitor_wrap.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000048#include "ssh.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110049#include "misc.h"
Damien Miller874d77b2000-10-14 16:23:11 +110050
51/* import */
52extern ServerOptions options;
53
Damien Miller5428f641999-11-25 11:54:57 +110054/*
55 * Session identifier that is used to bind key exchange and authentication
56 * responses to a particular session.
57 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000058extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Damien Miller5428f641999-11-25 11:54:57 +110060/*
61 * The .ssh/authorized_keys file contains public keys, one per line, in the
62 * following format:
63 * options bits e n comment
64 * where bits, e and n are decimal numbers,
65 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110066 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110067 * description of the options.
68 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000071auth_rsa_generate_challenge(Key *key)
72{
73 BIGNUM *challenge;
74 BN_CTX *ctx;
75
76 if ((challenge = BN_new()) == NULL)
77 fatal("auth_rsa_generate_challenge: BN_new() failed");
78 /* Generate a random challenge. */
Darren Tucker0bc85572006-11-07 23:14:41 +110079 if (BN_rand(challenge, 256, 0, 0) == 0)
80 fatal("auth_rsa_generate_challenge: BN_rand failed");
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000081 if ((ctx = BN_CTX_new()) == NULL)
Darren Tucker0bc85572006-11-07 23:14:41 +110082 fatal("auth_rsa_generate_challenge: BN_CTX_new failed");
83 if (BN_mod(challenge, challenge, key->rsa->n, ctx) == 0)
84 fatal("auth_rsa_generate_challenge: BN_mod failed");
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000085 BN_CTX_free(ctx);
86
87 return challenge;
88}
89
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000090int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000091auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
92{
93 u_char buf[32], mdbuf[16];
94 MD5_CTX md;
95 int len;
96
Damien Miller1aed65e2010-03-04 21:53:35 +110097 if (auth_key_is_revoked(key))
98 return 0;
99
Ben Lindstrome1f9e322002-03-27 17:38:43 +0000100 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +0000101 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +0000102 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
103 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +0000104 return (0);
105 }
106
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000107 /* The response is MD5 of decrypted challenge plus session id. */
108 len = BN_num_bytes(challenge);
109 if (len <= 0 || len > 32)
110 fatal("auth_rsa_verify_response: bad challenge length %d", len);
111 memset(buf, 0, 32);
112 BN_bn2bin(challenge, buf + 32 - len);
113 MD5_Init(&md);
114 MD5_Update(&md, buf, 32);
115 MD5_Update(&md, session_id, 16);
116 MD5_Final(mdbuf, &md);
117
118 /* Verify that the response is the original challenge. */
119 if (memcmp(response, mdbuf, 16) != 0) {
120 /* Wrong answer. */
121 return (0);
122 }
123 /* Correct answer. */
124 return (1);
125}
126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * Performs the RSA authentication challenge-response dialog with the client,
129 * and returns true (non-zero) if the client gave the correct answer to
130 * our challenge; returns zero if the client gives a wrong answer.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
133int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000134auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135{
Damien Miller98c7ad62000-03-09 21:27:49 +1100136 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000137 u_char response[16];
138 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Millerda755162002-01-22 23:09:22 +1100140 if ((encrypted_challenge = BN_new()) == NULL)
141 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000143 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller95def091999-11-25 00:26:21 +1100145 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000146 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147
Damien Miller95def091999-11-25 00:26:21 +1100148 /* Send the encrypted challenge to the client. */
149 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
150 packet_put_bignum(encrypted_challenge);
151 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100152 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100153 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller98c7ad62000-03-09 21:27:49 +1100155 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100156 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100157 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100158 response[i] = (u_char)packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100159 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100160
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000161 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100162 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000163 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164}
165
Damien Miller5428f641999-11-25 11:54:57 +1100166/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000167 * check if there's user key matching client_n,
168 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100169 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000171int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000172auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173{
Darren Tucker22cc7412004-12-06 22:47:41 +1100174 char line[SSH_MAX_PUBKEY_BYTES], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000175 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000176 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100177 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000178 u_long linenum = 0;
Damien Miller89681212001-12-21 12:52:39 +1100179 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100180
Damien Miller95def091999-11-25 00:26:21 +1100181 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000182 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183
Damien Miller95def091999-11-25 00:26:21 +1100184 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000185 file = authorized_keys_file(pw);
186 debug("trying public RSA key file %s", file);
Darren Tucker33c787f2008-07-02 22:37:30 +1000187 f = auth_openkeyfile(file, pw, options.strict_modes);
Damien Miller95def091999-11-25 00:26:21 +1100188 if (!f) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000189 xfree(file);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000190 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000191 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100192 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000193
194 /* Flag indicating whether the key is allowed. */
195 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Damien Miller89681212001-12-21 12:52:39 +1100197 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100198
Damien Miller5428f641999-11-25 11:54:57 +1100199 /*
200 * Go though the accepted keys, looking for the current key. If
201 * found, perform a challenge-response dialog to verify that the
202 * user really has the corresponding private key.
203 */
Darren Tucker22cc7412004-12-06 22:47:41 +1100204 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100205 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000206 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000207 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100208
Damien Miller5428f641999-11-25 11:54:57 +1100209 /* Skip leading whitespace, empty and comment lines. */
210 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
211 ;
Damien Miller95def091999-11-25 00:26:21 +1100212 if (!*cp || *cp == '\n' || *cp == '#')
213 continue;
214
Damien Miller5428f641999-11-25 11:54:57 +1100215 /*
216 * Check if there are options for this key, and if so,
217 * save their starting address and skip the option part
218 * for now. If there are no options, set the starting
219 * address to NULL.
220 */
Damien Miller95def091999-11-25 00:26:21 +1100221 if (*cp < '0' || *cp > '9') {
222 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000223 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100224 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
225 if (*cp == '\\' && cp[1] == '"')
226 cp++; /* Skip both */
227 else if (*cp == '"')
228 quoted = !quoted;
229 }
230 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000231 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100232
233 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100234 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000235 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000236 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100237 continue;
238 }
239 /* cp now points to the comment part. */
240
Damien Miller95def091999-11-25 00:26:21 +1100241 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100242 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100243 continue;
Damien Miller95def091999-11-25 00:26:21 +1100244
Damien Milleraae6c611999-12-06 11:47:28 +1100245 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000246 keybits = BN_num_bits(key->rsa->n);
247 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000248 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100249 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100250 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100251
Damien Miller95def091999-11-25 00:26:21 +1100252 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000253 /*
254 * If our options do not allow this key to be used,
255 * do not send challenge.
256 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000257 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000258 continue;
Damien Miller3b903822010-05-21 14:56:25 +1000259 if (key_is_cert_authority)
260 continue;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000261 /* break out, this key is allowed */
262 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100263 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264 }
265
Damien Miller95def091999-11-25 00:26:21 +1100266 /* Restore the privileged uid. */
267 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Damien Miller95def091999-11-25 00:26:21 +1100269 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000270 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100271 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000273 /* return key if allowed */
274 if (allowed && rkey != NULL)
275 *rkey = key;
276 else
277 key_free(key);
278 return (allowed);
279}
280
281/*
282 * Performs the RSA authentication dialog with the client. This returns
283 * 0 if the client could not be authenticated, and 1 if authentication was
284 * successful. This may exit if there is a serious protocol violation.
285 */
286int
Damien Miller3e3b5142003-11-17 21:13:40 +1100287auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000288{
289 Key *key;
290 char *fp;
Damien Miller3e3b5142003-11-17 21:13:40 +1100291 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000292
293 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100294 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000295 return 0;
296
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000297 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000298 auth_clear_options();
299 return (0);
300 }
301
302 /* Perform the challenge-response dialog for this key. */
303 if (!auth_rsa_challenge_dialog(key)) {
304 /* Wrong response. */
305 verbose("Wrong response to RSA authentication challenge.");
306 packet_send_debug("Wrong response to RSA authentication challenge.");
307 /*
308 * Break out of the loop. Otherwise we might send
309 * another challenge and break the protocol.
310 */
311 key_free(key);
312 return (0);
313 }
314 /*
315 * Correct response. The client has been successfully
316 * authenticated. Note that we have not yet processed the
317 * options; this will be reset if the options cause the
318 * authentication to be rejected.
319 */
320 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
321 verbose("Found matching %s key: %s",
322 key_type(key), fp);
323 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100324 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000326 packet_send_debug("RSA authentication accepted.");
327 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328}