blob: 1c66b86a4c70295c18c496b1ed33cb1eea343d36 [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: auth-rsa.c,v 1.71 2006/08/03 03:34:41 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
Damien Miller9f2abc42006-07-10 20:53:08 +100025#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100026#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100027#include <string.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100028
Damien Millerd7834352006-08-05 12:39:39 +100029#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "rsa.h"
31#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032#include "ssh1.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "uidswap.h"
34#include "match.h"
Damien Millerd7834352006-08-05 12:39:39 +100035#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "auth-options.h"
37#include "pathnames.h"
38#include "log.h"
39#include "servconf.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "key.h"
Damien Miller89681212001-12-21 12:52:39 +110041#include "hostfile.h"
Damien Millerd7834352006-08-05 12:39:39 +100042#include "auth.h"
43#ifdef GSSAPI
44#include "ssh-gss.h"
45#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000046#include "monitor_wrap.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000047#include "ssh.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110048#include "misc.h"
Damien Miller874d77b2000-10-14 16:23:11 +110049
50/* import */
51extern ServerOptions options;
52
Damien Miller5428f641999-11-25 11:54:57 +110053/*
54 * Session identifier that is used to bind key exchange and authentication
55 * responses to a particular session.
56 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000057extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Damien Miller5428f641999-11-25 11:54:57 +110059/*
60 * The .ssh/authorized_keys file contains public keys, one per line, in the
61 * following format:
62 * options bits e n comment
63 * where bits, e and n are decimal numbers,
64 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110065 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110066 * description of the options.
67 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000069BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000070auth_rsa_generate_challenge(Key *key)
71{
72 BIGNUM *challenge;
73 BN_CTX *ctx;
74
75 if ((challenge = BN_new()) == NULL)
76 fatal("auth_rsa_generate_challenge: BN_new() failed");
77 /* Generate a random challenge. */
78 BN_rand(challenge, 256, 0, 0);
79 if ((ctx = BN_CTX_new()) == NULL)
80 fatal("auth_rsa_generate_challenge: BN_CTX_new() failed");
81 BN_mod(challenge, challenge, key->rsa->n, ctx);
82 BN_CTX_free(ctx);
83
84 return challenge;
85}
86
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000088auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
89{
90 u_char buf[32], mdbuf[16];
91 MD5_CTX md;
92 int len;
93
Ben Lindstrome1f9e322002-03-27 17:38:43 +000094 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +000095 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +000096 error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
97 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +000098 return (0);
99 }
100
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000101 /* The response is MD5 of decrypted challenge plus session id. */
102 len = BN_num_bytes(challenge);
103 if (len <= 0 || len > 32)
104 fatal("auth_rsa_verify_response: bad challenge length %d", len);
105 memset(buf, 0, 32);
106 BN_bn2bin(challenge, buf + 32 - len);
107 MD5_Init(&md);
108 MD5_Update(&md, buf, 32);
109 MD5_Update(&md, session_id, 16);
110 MD5_Final(mdbuf, &md);
111
112 /* Verify that the response is the original challenge. */
113 if (memcmp(response, mdbuf, 16) != 0) {
114 /* Wrong answer. */
115 return (0);
116 }
117 /* Correct answer. */
118 return (1);
119}
120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Performs the RSA authentication challenge-response dialog with the client,
123 * and returns true (non-zero) if the client gave the correct answer to
124 * our challenge; returns zero if the client gives a wrong answer.
125 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
127int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000128auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129{
Damien Miller98c7ad62000-03-09 21:27:49 +1100130 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000131 u_char response[16];
132 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Damien Millerda755162002-01-22 23:09:22 +1100134 if ((encrypted_challenge = BN_new()) == NULL)
135 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000137 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138
Damien Miller95def091999-11-25 00:26:21 +1100139 /* Encrypt the challenge with the public key. */
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000140 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Damien Miller95def091999-11-25 00:26:21 +1100142 /* Send the encrypted challenge to the client. */
143 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
144 packet_put_bignum(encrypted_challenge);
145 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100146 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100147 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller98c7ad62000-03-09 21:27:49 +1100149 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100150 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100151 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100152 response[i] = (u_char)packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100153 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100154
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000155 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100156 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000157 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158}
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000161 * check if there's user key matching client_n,
162 * return key if login is allowed, NULL otherwise
Damien Miller5428f641999-11-25 11:54:57 +1100163 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000165int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000166auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167{
Darren Tucker22cc7412004-12-06 22:47:41 +1100168 char line[SSH_MAX_PUBKEY_BYTES], *file;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000169 int allowed = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000170 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100171 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000172 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100173 struct stat st;
Damien Miller89681212001-12-21 12:52:39 +1100174 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100175
Damien Miller95def091999-11-25 00:26:21 +1100176 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000177 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178
Damien Miller95def091999-11-25 00:26:21 +1100179 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000180 file = authorized_keys_file(pw);
181 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Damien Miller95def091999-11-25 00:26:21 +1100183 /* Fail quietly if file does not exist */
184 if (stat(file, &st) < 0) {
185 /* Restore the privileged uid. */
186 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000187 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000188 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189 }
Damien Miller95def091999-11-25 00:26:21 +1100190 /* Open the file containing the authorized keys. */
191 f = fopen(file, "r");
192 if (!f) {
193 /* Restore the privileged uid. */
194 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000195 xfree(file);
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000196 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000198 if (options.strict_modes &&
Ben Lindstrom248c0782001-07-04 03:40:39 +0000199 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000200 xfree(file);
201 fclose(f);
Damien Miller996acd22003-04-09 20:59:48 +1000202 logit("Authentication refused: %s", line);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000203 restore_uid();
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000204 return (0);
Damien Miller95def091999-11-25 00:26:21 +1100205 }
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000206
207 /* Flag indicating whether the key is allowed. */
208 allowed = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209
Damien Miller89681212001-12-21 12:52:39 +1100210 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100211
Damien Miller5428f641999-11-25 11:54:57 +1100212 /*
213 * Go though the accepted keys, looking for the current key. If
214 * found, perform a challenge-response dialog to verify that the
215 * user really has the corresponding private key.
216 */
Darren Tucker22cc7412004-12-06 22:47:41 +1100217 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100218 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000219 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000220 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100221
Damien Miller5428f641999-11-25 11:54:57 +1100222 /* Skip leading whitespace, empty and comment lines. */
223 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
224 ;
Damien Miller95def091999-11-25 00:26:21 +1100225 if (!*cp || *cp == '\n' || *cp == '#')
226 continue;
227
Damien Miller5428f641999-11-25 11:54:57 +1100228 /*
229 * Check if there are options for this key, and if so,
230 * save their starting address and skip the option part
231 * for now. If there are no options, set the starting
232 * address to NULL.
233 */
Damien Miller95def091999-11-25 00:26:21 +1100234 if (*cp < '0' || *cp > '9') {
235 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000236 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100237 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
238 if (*cp == '\\' && cp[1] == '"')
239 cp++; /* Skip both */
240 else if (*cp == '"')
241 quoted = !quoted;
242 }
243 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000244 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100245
246 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100247 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000248 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000249 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100250 continue;
251 }
252 /* cp now points to the comment part. */
253
Damien Miller95def091999-11-25 00:26:21 +1100254 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller89681212001-12-21 12:52:39 +1100255 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100256 continue;
Damien Miller95def091999-11-25 00:26:21 +1100257
Damien Milleraae6c611999-12-06 11:47:28 +1100258 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000259 keybits = BN_num_bits(key->rsa->n);
260 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000261 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100262 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100263 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100264
Damien Miller95def091999-11-25 00:26:21 +1100265 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000266 /*
267 * If our options do not allow this key to be used,
268 * do not send challenge.
269 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000270 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000271 continue;
Damien Miller95def091999-11-25 00:26:21 +1100272
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000273 /* break out, this key is allowed */
274 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100275 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276 }
277
Damien Miller95def091999-11-25 00:26:21 +1100278 /* Restore the privileged uid. */
279 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280
Damien Miller95def091999-11-25 00:26:21 +1100281 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000282 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100283 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000285 /* return key if allowed */
286 if (allowed && rkey != NULL)
287 *rkey = key;
288 else
289 key_free(key);
290 return (allowed);
291}
292
293/*
294 * Performs the RSA authentication dialog with the client. This returns
295 * 0 if the client could not be authenticated, and 1 if authentication was
296 * successful. This may exit if there is a serious protocol violation.
297 */
298int
Damien Miller3e3b5142003-11-17 21:13:40 +1100299auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000300{
301 Key *key;
302 char *fp;
Damien Miller3e3b5142003-11-17 21:13:40 +1100303 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000304
305 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100306 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000307 return 0;
308
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000309 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000310 auth_clear_options();
311 return (0);
312 }
313
314 /* Perform the challenge-response dialog for this key. */
315 if (!auth_rsa_challenge_dialog(key)) {
316 /* Wrong response. */
317 verbose("Wrong response to RSA authentication challenge.");
318 packet_send_debug("Wrong response to RSA authentication challenge.");
319 /*
320 * Break out of the loop. Otherwise we might send
321 * another challenge and break the protocol.
322 */
323 key_free(key);
324 return (0);
325 }
326 /*
327 * Correct response. The client has been successfully
328 * authenticated. Note that we have not yet processed the
329 * options; this will be reset if the options cause the
330 * authentication to be rejected.
331 */
332 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
333 verbose("Found matching %s key: %s",
334 key_type(key), fp);
335 xfree(fp);
Damien Miller89681212001-12-21 12:52:39 +1100336 key_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000338 packet_send_debug("RSA authentication accepted.");
339 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340}